Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to devel-bash-4.4 grimoire by Pavel Vinogradov (92405d49fdc6bdf7a95f4db35a1c80b55a72e890)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to devel-bash-4.4 grimoire by Pavel Vinogradov (92405d49fdc6bdf7a95f4db35a1c80b55a72e890)
  • Date: Wed, 7 Dec 2016 00:35:16 +0000

GIT changes to devel-bash-4.4 grimoire by Pavel Vinogradov
<public AT sourcemage.org>:

shell-term-fm/bash/DETAILS | 16 ++++++++++------
shell-term-fm/bash/HISTORY | 3 +++
2 files changed, 13 insertions(+), 6 deletions(-)

New commits:
commit 92405d49fdc6bdf7a95f4db35a1c80b55a72e890
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

shell-term-fm/bash: simplified computation of indices for patch sources
and URLs in DETAILS

diff --git a/shell-term-fm/bash/DETAILS b/shell-term-fm/bash/DETAILS
index 6cf08b1..34254d0 100755
--- a/shell-term-fm/bash/DETAILS
+++ b/shell-term-fm/bash/DETAILS
@@ -17,13 +17,17 @@ SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$XVERSION"
SOURCE2_IGNORE=signature
SOURCE4_IGNORE=signature
PATCHES_URL="${GNU_URL}/${SPELL}/${SPELL}-${XVERSION}-patches"
+declare -i index=5
+declare -i sigindex=index+1
for i in $(seq -w 1 $BASH_PATCHLEVEL); do
- eval "SOURCE$((2*i+3))=bash\${XVERSION//./}-\${i}
- SOURCE$((2*i+3))_URL[0]=\${PATCHES_URL}/\${SOURCE$((2*i+3))}
- SOURCE$((2*i+4))=\${SOURCE$((2*i+3))}.sig
- SOURCE$((2*i+4))_URL[0]=\${SOURCE$((2*i+3))_URL[0]}.sig
- SOURCE$((2*i+3))_GPG=gnu.gpg:\${SOURCE$((2*i+4))}:UPSTREAM_KEY
- SOURCE$((2*i+4))_IGNORE=signature"
+ eval "SOURCE${index}=\${SPELL}\${XVERSION//./}-\${i}
+ SOURCE${index}_URL[0]=\${PATCHES_URL}/\${SOURCE${index}}
+ SOURCE${sigindex}=\${SOURCE${index}}.sig
+ SOURCE${sigindex}_URL[0]=\${SOURCE${index}_URL[0]}.sig
+ SOURCE${index}_GPG=gnu.gpg:\${SOURCE${sigindex}}:UPSTREAM_KEY
+ SOURCE${sigindex}_IGNORE=signature"
+ ((index+=2))
+ ((sigindex+=2))
done
WEB_SITE=http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html
ENTERED=20010922
diff --git a/shell-term-fm/bash/HISTORY b/shell-term-fm/bash/HISTORY
index 05ae541..485150a 100644
--- a/shell-term-fm/bash/HISTORY
+++ b/shell-term-fm/bash/HISTORY
@@ -1,3 +1,6 @@
+2016-12-06 Pavel Vinogradov <public AT sourcemage.org>
+ * DETAILS: simplified computation of indices for patch sources and
URLs
+
2016-12-02 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: optimized variable generation code




  • [SM-Commit] GIT changes to devel-bash-4.4 grimoire by Pavel Vinogradov (92405d49fdc6bdf7a95f4db35a1c80b55a72e890), Pavel Vinogradov, 12/06/2016

Archive powered by MHonArc 2.6.24.

Top of Page