From 493ee47bb6f1c4611f604c0e462db3146f84b204 Mon Sep 17 00:00:00 2001 From: DetachHead <57028336+DetachHead@users.noreply.github.com> Date: Tue, 29 Jul 2025 23:46:12 +1000 Subject: [PATCH 1/2] don't filter out any packages starting with "libre" --- usr/lib/python3/dist-packages/mintcommon/installer/_apt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/python3/dist-packages/mintcommon/installer/_apt.py b/usr/lib/python3/dist-packages/mintcommon/installer/_apt.py index e1dae59..3970f68 100644 --- a/usr/lib/python3/dist-packages/mintcommon/installer/_apt.py +++ b/usr/lib/python3/dist-packages/mintcommon/installer/_apt.py @@ -68,7 +68,7 @@ def process_full_apt_cache(cache): name = apt_cache[key].name pkg = apt_cache[key] - if name.startswith("lib") and not name.startswith(("libreoffice", "librecad", "libk3b7", "libimage-exiftool-perl")): + if name.startswith("lib") and not name.startswith(("libre", "libk3b7", "libimage-exiftool-perl")): continue if name.endswith(":i386") and name != "steam:i386": continue From 223364cbd1e2befc19bf0f664d66830be0c12948 Mon Sep 17 00:00:00 2001 From: DetachHead <57028336+DetachHead@users.noreply.github.com> Date: Wed, 30 Jul 2025 09:51:49 +1000 Subject: [PATCH 2/2] special-case librewolf instead as suggested --- usr/lib/python3/dist-packages/mintcommon/installer/_apt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/python3/dist-packages/mintcommon/installer/_apt.py b/usr/lib/python3/dist-packages/mintcommon/installer/_apt.py index 3970f68..4c56a78 100644 --- a/usr/lib/python3/dist-packages/mintcommon/installer/_apt.py +++ b/usr/lib/python3/dist-packages/mintcommon/installer/_apt.py @@ -68,7 +68,7 @@ def process_full_apt_cache(cache): name = apt_cache[key].name pkg = apt_cache[key] - if name.startswith("lib") and not name.startswith(("libre", "libk3b7", "libimage-exiftool-perl")): + if name.startswith("lib") and not name.startswith(("libreoffice", "librecad", "librewolf", "libk3b7", "libimage-exiftool-perl")): continue if name.endswith(":i386") and name != "steam:i386": continue