Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master sorcery by Ismael Luceno (c4b7e0066e80367e6206ce24e540fecaf2916c9c)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master sorcery by Ismael Luceno (c4b7e0066e80367e6206ce24e540fecaf2916c9c)
  • Date: Sat, 27 Jan 2024 16:58:46 +0000

GIT changes to master sorcery by Ismael Luceno <ismael AT sourcemage.org>:

var/lib/sorcery/modules/libgpg | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit c4b7e0066e80367e6206ce24e540fecaf2916c9c
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

libgpg: Fix LANGUAGE overriding LC_ALL

Fixes: da2b9f84a380 ("libmisc: introduce get_safe_locale and use it in
cast, libgpg", 2020-03-18)
Fixes: 496fc22b0037 ("Fix build issues related to non-UTF-8 LC_ALL",
2018-03-10)
Fixes: 7aafabba713f ("libgpg: set LC_ALL=C for commands output of which
we parse #14705", 2008-09-02)

diff --git a/var/lib/sorcery/modules/libgpg b/var/lib/sorcery/modules/libgpg
index a7bbee1..8928815 100755
--- a/var/lib/sorcery/modules/libgpg
+++ b/var/lib/sorcery/modules/libgpg
@@ -49,7 +49,8 @@ gpg_verify_signature() { # $1 sig $2 file $3 pubring $4
algo var
return 200
else
local output=$TMP_DIR/$(smgl_basename $file).gpgout
- LC_ALL="$(get_safe_locale)" gpg --no-default-keyring \
+ LANGUAGE= LC_ALL="$(get_safe_locale)" \
+ gpg --no-default-keyring \
--always-trust \
--keyring $keyring \
--batch \



  • [SM-Commit] GIT changes to master sorcery by Ismael Luceno (c4b7e0066e80367e6206ce24e540fecaf2916c9c), Ismael Luceno, 01/27/2024

Archive powered by MHonArc 2.6.24.

Top of Page