Fix a bug in allow-ignore-software-db-update-failure.patch

This commit is contained in:
Aaron Rainbolt 2026-03-13 13:33:51 -04:00
parent b99dbaa6df
commit 3be64a5310
Signed by untrusted user who does not match committer: arraybolt3
GPG Key ID: 39ADDC9EE23AEB08
2 changed files with 16 additions and 0 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
calamares (3.3.14-0ubuntu22) resolute; urgency=medium
* Fix a missing Python import in
'allow-ignore-software-db-update-failure.patch'.
-- Aaron Rainbolt <arraybolt3@ubuntu.com> Fri, 13 Mar 2026 13:32:41 -0400
calamares (3.3.14-0ubuntu21) resolute; urgency=medium
* Fix icon corruption on the "Users" page (LP: #2139358)

View File

@ -1,5 +1,14 @@
--- a/src/modules/packages/main.py
+++ b/src/modules/packages/main.py
@@ -19,7 +19,7 @@ from string import Template
import subprocess
import libcalamares
-from libcalamares.utils import check_target_env_call, target_env_call
+from libcalamares.utils import check_target_env_call, target_env_call, target_env_process_output
from libcalamares.utils import gettext_path, gettext_languages
import gettext
@@ -252,7 +252,7 @@ class PMApk(PackageManager):
check_target_env_call(["apk", "del", pkg])