Looks like the file I created today:

ls -la /var/lib/dpkg/info/python3.preinst
-rwxr-xr-x 1 root root 994 Aug 29 16:36 /var/lib/dpkg/info/python3.preinst

Still has  the set -x:

cat /var/lib/dpkg/info/python3.preinst
#! /bin/sh
set -e
set -x

# remove the python3 alternatives before installing our own python3 link

update-alternatives --auto /usr/bin/python3 >/dev/null 2>&1 || true

[ -L /usr/share/doc/python3/html ] || rm -rf /usr/share/doc/python3/html

case "$1" in
    upgrade)
        oldv=$(echo $2 | sed 's/^\(...\).*/\1/')
        if [ "$DEBIAN_FRONTEND" != noninteractive ]; then
            echo "running python pre-rtupdate hooks for python3.12..."
        fi
        for hook in /usr/share/python3/runtime.d/*.rtupdate; do
            [ -x $hook ] || continue
            if ! $hook pre-rtupdate python$oldv python3.12; then
                hb=$(basename $hook .rtupdate)
                echo >&2 "error running python pre-rtupdate hook $hb"
                echo >&2 "running python failed-pre-rtupdate hook $hb"
                $hook failed-pre-rtupdate python$oldv python3.12
                errors=yes
                break
            fi
        done
        [ -z "$errors" ] || exit 3
esac

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2078356

Title:
  python3 upgrade has unmet dependencies

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python3-defaults/+bug/2078356/+subscriptions


-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to