From 063b34aa550408d81467e576fde14bb454539e70 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Mon, 30 Jun 2025 19:57:05 +0200 Subject: [PATCH] Also add linux-restricted-modules to "don't remove cruft" list We missed that in the previous commit, these are the only inconsistent packages left. --- britney2/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney2/utils.py b/britney2/utils.py index 305078f..427c128 100644 --- a/britney2/utils.py +++ b/britney2/utils.py @@ -360,7 +360,7 @@ def old_libraries(mi_factory, suite_info, outofsync_arches=frozenset()): for pkg_name in binaries_t[arch]: pkg = binaries_t[arch][pkg_name] # FIXME: If linux-meta packages are old we break the suite consistency. - if pkg.source.startswith("linux-meta"): + if pkg.source.startswith("linux-meta") or pkg.source.startswith("linux-restricted-modules"): continue if sources_t[pkg.source].version != pkg.source_version and \ (arch not in outofsync_arches or pkg_name not in binaries_s[arch]):