Frogging-Family / wine-tkg-git

The wine-tkg build systems, to create custom Wine and Proton builds
883 stars 159 forks source link

Restarting from scratch required if failing at 'Remove gst-editing-services' step #1140

Closed luthis1124 closed 6 months ago

luthis1124 commented 6 months ago

Failed at this step due to rygel dependency:

    # Remove gst-editing-services on pacman distros
    if [ -e /usr/bin/pacman ]; then
      if pacman -Qq gst-editing-services &> /dev/null; then
        echo '! found gst-editing-services package, known to break wine prefix creation !'
        read -rp "  Uninstall it?"$'\n> N/y : ' _gst_editing_services;
        if [[ "$_gst_editing_services" =~ [yY] ]]; then
          sudo pacman -R gst-editing-services
        fi
      fi
    fi

error: failed to prepare transaction (could not satisfy dependencies) :: removing gst-editing-services breaks dependency 'gst-editing-services' required by rygel

Just needs some error handling.

Tk-Glitch commented 6 months ago

That's pacman for you. The gst-editing-services issue with wine might be fixed now, I'll have to check.