I am uploading a NMU to fix this. The debdiff is attached.
diff -Nru gdebi-0.9.5.7+nmu6/data/gdebi.desktop.in
gdebi-0.9.5.7+nmu7/data/gdebi.desktop.in
--- gdebi-0.9.5.7+nmu6/data/gdebi.desktop.in 2021-01-13 19:45:14.000000000
+0100
+++ gdebi-0.9.5.7+nmu7/data/gdebi.desktop.in 2023-08-06 12:33:07.000000000
+0200
@@ -3,7 +3,7 @@
_GenericName=Package Installer
_Comment=Install and view software packages
Exec=gdebi-gtk %f
-Icon=gnome-mime-application-x-deb
+Icon=package-x-generic
Terminal=false
Type=Application
Categories=System;
diff -Nru gdebi-0.9.5.7+nmu6/debian/changelog
gdebi-0.9.5.7+nmu7/debian/changelog
--- gdebi-0.9.5.7+nmu6/debian/changelog 2021-10-14 23:45:16.000000000 +0200
+++ gdebi-0.9.5.7+nmu7/debian/changelog 2023-08-06 12:33:07.000000000 +0200
@@ -1,3 +1,13 @@
+gdebi (0.9.5.7+nmu7) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Replace policykit-1 with pkexec. (Closes: #1025563, #983683)
+ * Remove X-Python3-Version.
+ * Drop dependency against gnome-icon-theme. (Closes: #831050, #887056)
+ * Drop unnecessary python3-nose. (Closes: #1018366)
+
+ -- Bastian Germann <[email protected]> Sun, 06 Aug 2023 12:33:07 +0200
+
gdebi (0.9.5.7+nmu6) unstable; urgency=medium
* Non-maintainer upload
diff -Nru gdebi-0.9.5.7+nmu6/debian/control gdebi-0.9.5.7+nmu7/debian/control
--- gdebi-0.9.5.7+nmu6/debian/control 2021-05-19 21:07:02.000000000 +0200
+++ gdebi-0.9.5.7+nmu7/debian/control 2023-08-06 12:33:07.000000000 +0200
@@ -10,13 +10,11 @@
python3-all,
python3-apt,
python3-gi,
- python3-nose,
python3-setuptools,
intltool,
xvfb,
xauth,
lintian,
-X-Python3-Version: >= 3.3
Standards-Version: 3.9.6
Vcs-Bzr: https://code.launchpad.net/~gdebi-developers/gdebi/trunk
@@ -45,8 +43,7 @@
gir1.2-gtk-3.0,
gir1.2-vte-2.91,
python3-gi,
- policykit-1,
- gnome-icon-theme
+ pkexec
Recommends: libgtk2-perl, shared-mime-info, lintian
Description: simple tool to view and install deb files - GNOME GUI
gdebi lets you install local deb packages resolving and installing
@@ -57,18 +54,3 @@
possible to inspect the control and data members of the packages.
.
This package contains the graphical user interface.
-
-#Package: gdebi-kde
-#Architecture: all
-#Depends: ${python3:Depends},
-# ${misc:Depends},
-# gdebi-core (= ${source:Version}),
-# python3-pykde4,
-# kdebase-runtime | kde-runtime | kdesudo
-#Recommends: shared-mime-info
-#Description: simple tool to install deb files - KDE GUI
-# gdebi lets you install local deb packages resolving and installing
-# its dependencies. apt does the same, but only for remote (http, ftp)
-# located packages.
-# .
-# This package contains the KDE user interface.
diff -Nru gdebi-0.9.5.7+nmu6/GDebi/GDebiGtk.py
gdebi-0.9.5.7+nmu7/GDebi/GDebiGtk.py
--- gdebi-0.9.5.7+nmu6/GDebi/GDebiGtk.py 2021-10-14 21:58:18.000000000
+0200
+++ gdebi-0.9.5.7+nmu7/GDebi/GDebiGtk.py 2023-08-06 12:33:07.000000000
+0200
@@ -71,7 +71,7 @@
# use a nicer default icon
icons = Gtk.IconTheme.get_default()
try:
- logo=icons.load_icon("gnome-mime-application-x-deb", 48, 0)
+ logo=icons.load_icon("package-x-generic", 48, 0)
if logo != "":
Gtk.Window.set_default_icon_list([logo])
except Exception as e: