You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The .deb in release doesn't installs on Sid/Ubuntu devel
.deb need : libgdk-pixbuf2.0-0 as depends but this package is a transitionnal package on Debian 12, and will disapear, replaced by libgdk-pixbuf-xlib-2.0-0
on trixie sid and ubuntu, the depends is libgdk-pixbuf-2.0-0 but this is a transitionnal package.
the control file need to point to libgdk-pixbuf-xlib-2.0-0. this package exists on all distros
I have submitted a PR for the change, but for anyone who just wants to get it working in the meantime, you can use equivs like so:
# install the equivs package
sudo apt install -y equivs
# create a temporary directorycd$(mktemp -d)# create a control file for the "dummy-pixbuf-equiv" package
cat <<EOF | tee dummy-pixbuf-equivSection: miscPriority: optionalStandards-Version: 4.7.2Package: dummy-pixbuf-equivDepends: libgdk-pixbuf-xlib-2.0-0Provides: libgdk-pixbuf2.0-0Architecture: allDescription: libgdk-pixbuf2.0-0 transition extension Provide libgdk-pixbuf2.0-0 . See: https://github.com/balena-io/etcher/issues/4398EOF# build a .deb for the equiv
equivs-build dummy-pixbuf-equiv
# install it
sudo dpkg -i dummy-pixbuf-equiv_1.0_all.deb
Hi dev,
The .deb in release doesn't installs on Sid/Ubuntu devel
.deb need :
libgdk-pixbuf2.0-0
as depends but this package is a transitionnal package on Debian 12, and will disapear, replaced bylibgdk-pixbuf-xlib-2.0-0
on trixie sid and ubuntu, the depends is libgdk-pixbuf-2.0-0 but this is a transitionnal package.
the control file need to point to
libgdk-pixbuf-xlib-2.0-0
. this package exists on all distroshttps://packages.debian.org/fr/source/sid/gdk-pixbuf-xlib
regards
davius
The text was updated successfully, but these errors were encountered: