Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (201ecb2d480e824168efd2b391549181c346d515)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Jaka Kranjc <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (201ecb2d480e824168efd2b391549181c346d515)
  • Date: Tue, 2 Sep 2008 16:24:07 -0500

GIT changes to master sorcery by Jaka Kranjc <lynxlynxlynx AT sourcemage.org>:

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

New commits:
commit 201ecb2d480e824168efd2b391549181c346d515
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

libgpg: internalised extra pipes into the existing awk call in
gpg_get_hashes

diff --git a/ChangeLog b/ChangeLog
index fe31c73..0e5f68b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@
* libdepends: only put the broken spell into the failed list, "drop"
the dependees and dependencies
* libgpg: set LC_ALL=C for commands output of which we parse #14705
+ internalised extra pipes into the existing awk call in
gpg_get_hashes

2008-09-01 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* cast, libspell, libsorcery, libcast, libsummon: fixed bug #2209
diff --git a/var/lib/sorcery/modules/libgpg b/var/lib/sorcery/modules/libgpg
index 464e58c..7fef812 100755
--- a/var/lib/sorcery/modules/libgpg
+++ b/var/lib/sorcery/modules/libgpg
@@ -350,7 +350,7 @@ function gpg_hashsum() {
## This assumes the caller has already verified that gpg is installed.
#---------------------------------------------------------------------
function gpg_get_hashes() {
- LC_ALL=C gpg --version 2> /dev/null | grep '^Hash' | awk -F: '{ print $2
}' | tr , ' ' | tr 'A-Z' 'a-z'
+ LC_ALL=C gpg --version 2> /dev/null | awk -F: '/^Hash/ { gsub(","," ",$2);
print tolower($2); }'
}

#---------------------------------------------------------------------



  • [SM-Commit] GIT changes to master sorcery by Jaka Kranjc (201ecb2d480e824168efd2b391549181c346d515), Jaka Kranjc, 09/02/2008

Archive powered by MHonArc 2.6.24.

Top of Page