unattended-upgrades: upgrade 2.9.1 -> 2.13

Minor release. Dropped 0001-setup.py-Disable-autodection-of-modules.patch:
2.13's setup.py already passes both packages=[] and py_modules=[] itself, so
re-adding py_modules=[] produced a "keyword argument repeated" SyntaxError.
Rebased 0001-unattended-upgrade-Remove-distro_info-usage-to-check.patch onto
the new import block and the shifted run() body.

AI-Generated: Uses Claude Code
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
This commit is contained in:
Khem Raj
2026-08-06 02:56:32 +00:00
parent d3944ca940
commit 9bb75c42fc
3 changed files with 9 additions and 41 deletions
@@ -1,28 +0,0 @@
From 8fd80ead718ffc53d7182b9df6f49974113ff8fc Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Mon, 23 May 2022 11:23:58 -0700
Subject: [PATCH] setup.py: Disable autodection of modules
This helps to fix build with latest setuptools
Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
setup.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/setup.py b/setup.py
index 932bf01..fd5a092 100755
--- a/setup.py
+++ b/setup.py
@@ -12,6 +12,7 @@ if __name__ == "__main__":
name='unattended-upgrades',
version='0.1',
scripts=['unattended-upgrade'],
+ py_modules=[],
data_files=[
('../etc/logrotate.d/',
["data/logrotate.d/unattended-upgrades"]),
--
2.36.1
@@ -17,24 +17,20 @@ Signed-off-by: Aníbal Limón <anibal@rzerosystems.com>
Upstream-Status: Inappropriate
---
unattended-upgrade | 38 --------------------------------------
1 file changed, 38 deletions(-)
diff --git a/unattended-upgrade b/unattended-upgrade
index 802d4d5..3b4e83e 100755
index b72e59e..8ff0c1c 100755
--- a/unattended-upgrade
+++ b/unattended-upgrade
@@ -83,9 +83,6 @@ import apt
@@ -89,8 +89,6 @@ import apt
import apt_inst
import apt_pkg
-import distro_info
-
-
# the reboot required flag file used by packages
REBOOT_REQUIRED_FILE = "/var/run/reboot-required"
KEPT_PACKAGES_FILE = "var/lib/unattended-upgrades/kept-back"
@@ -2061,41 +2058,6 @@ def run(options, # type: Options
# workaround debian #1076097, it's unclear why we get the warning:
# "DeprecationWarning: This process (pid=3710789) is multi-threaded,
# use of fork() may lead to deadlocks in the child."
@@ -2436,42 +2434,6 @@ def run(options, # type: Options
if should_stop():
return UnattendedUpgradesResult(False)
@@ -53,7 +49,8 @@ index 802d4d5..3b4e83e 100755
- except Exception as e:
- logging.warning("Could not figure out development release: %s" % e)
- else:
- if ((devel.series == DISTRO_CODENAME
- if ((isinstance(devel, distro_info.DistroRelease)
- and devel.series == DISTRO_CODENAME
- and devel.release is not None
- and devel.release - date.today() > DEVEL_UNTIL_RELEASE)):
- syslog.syslog((_("Not running on this development "
@@ -7,10 +7,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
SRC_URI = "git://github.com/mvo5/unattended-upgrades.git;protocol=https;branch=master \
file://0001-unattended-upgrade-Remove-distro_info-usage-to-check.patch \
file://0001-setup.py-Disable-autodection-of-modules.patch \
"
SRCREV = "5aff8fa2b5b60b7c11bbfb39c884477e72d11d02"
SRCREV = "221b1a688ee291fd7e0d116dccb57073b921619a"
inherit setuptools3_legacy