[SM-Commit] GIT changes to master grimoire by Remko van der Vossen (24ca14defd6de54178cb76b40ad2454b40aa869a)

Remko van der Vossen scm at sourcemage.org
Thu Oct 9 13:29:52 EDT 2008


GIT changes to master grimoire by Remko van der Vossen <wich at radio0.stack.nl>:

 shell-term-fm/bash/FINAL                               |    2 +
 shell-term-fm/bash/HISTORY                             |    4 +++
 shell-term-fm/bash/POST_REMOVE                         |    3 ++
 shell-term-fm/bash/POST_RESURRECT                      |    3 ++
 shell-term-fm/dash/HISTORY                             |    3 ++
 shell-term-fm/dash/POST_REMOVE                         |    2 +
 shell-term-fm/dash/POST_RESURRECT                      |    2 +
 shell-term-fm/fish/HISTORY                             |    3 ++
 shell-term-fm/fish/POST_RESURRECT                      |    2 +
 shell-term-fm/pdksh/HISTORY                            |    3 ++
 shell-term-fm/pdksh/POST_RESURRECT                     |    2 +
 shell-term-fm/sash/FINAL                               |    2 +
 shell-term-fm/sash/HISTORY                             |    4 +++
 shell-term-fm/sash/POST_REMOVE                         |    2 +
 shell-term-fm/sash/POST_RESURRECT                      |    2 +
 shell-term-fm/tcsh/DETAILS                             |    4 +--
 shell-term-fm/tcsh/HISTORY                             |    6 +++++
 shell-term-fm/tcsh/POST_RESURRECT                      |    2 +
 shell-term-fm/tcsh/PRE_BUILD                           |    3 --
 shell-term-fm/tcsh/tcsh-6.14.00-debian-dircolors.patch |   19 -----------------
 20 files changed, 49 insertions(+), 24 deletions(-)

New commits:
commit 344e6dba857480d86c7929589874da19ffdd9822
Author: Remko van der Vossen <wich at radio0.stack.nl>
Commit: Remko van der Vossen <wich at radio0.stack.nl>

    bash: register after resurrect, fixes bug 14335
      register in final and unregister in post_remove

commit 14328e2237a87bad2ea3a74af9a36a7faedc6de4
Author: Remko van der Vossen <wich at radio0.stack.nl>
Commit: Remko van der Vossen <wich at radio0.stack.nl>

    sash: register after resurrect, fixes bug 14335
      register in final and unregister in post_remove

commit 3b932df062b1f2e80cbef1674f79a70b79e2a9eb
Author: Remko van der Vossen <wich at radio0.stack.nl>
Commit: Remko van der Vossen <wich at radio0.stack.nl>

    fish: register after resurrect, fixes bug 14335

commit 6ac9d0a4ffbde90257caee9e32d42cbb4737263e
Author: Remko van der Vossen <wich at radio0.stack.nl>
Commit: Remko van der Vossen <wich at radio0.stack.nl>

    dash: register after resurrect, fixes bug 14335
      unregister after remove

commit c373f39459ca51f778d72753bad3fbc9ed2bf8aa
Author: Remko van der Vossen <wich at radio0.stack.nl>
Commit: Remko van der Vossen <wich at radio0.stack.nl>

    pdksh: register after resurrect, fixes bug 14335

commit c05464a420a51c61dd9891b82b9427b0a1dddcc3
Author: Remko van der Vossen <wich at radio0.stack.nl>
Commit: Remko van der Vossen <wich at radio0.stack.nl>

    tcsh: version 6.15

commit 69d41fcdb256c72624090185a129609ab03f2b5b
Author: Remko van der Vossen <wich at radio0.stack.nl>
Commit: Remko van der Vossen <wich at radio0.stack.nl>

    tcsh: register after resurrect, fixes bug 14335

diff --git a/shell-term-fm/bash/FINAL b/shell-term-fm/bash/FINAL
new file mode 100755
index 0000000..11b887e
--- /dev/null
+++ b/shell-term-fm/bash/FINAL
@@ -0,0 +1,2 @@
+install_shell  $SPELL  $TRACK_ROOT/bin/$SPELL
+install_shell  $SPELL  $TRACK_ROOT/bin/$SPELL.static
diff --git a/shell-term-fm/bash/HISTORY b/shell-term-fm/bash/HISTORY
index ba20e50..d11bdc0 100644
--- a/shell-term-fm/bash/HISTORY
+++ b/shell-term-fm/bash/HISTORY
@@ -1,3 +1,7 @@
+2008-10-09 Remko van der Vossen <wich at sourcemage.org>
+	* POST_RESURRECT: Added, fix bug 14335
+	* FINAL, POST_REMOVE: install and remove shell from /etc/shells
+
 2008-05-03 George Sherwood <george at beernabeer.com>
 	* DETAILS: PATCHLEVEL++
 	* PRE_BUILD: Added bash32-034-39
diff --git a/shell-term-fm/bash/POST_REMOVE b/shell-term-fm/bash/POST_REMOVE
index e2901cd..341c66c 100755
--- a/shell-term-fm/bash/POST_REMOVE
+++ b/shell-term-fm/bash/POST_REMOVE
@@ -1 +1,4 @@
+. $GRIMOIRE/FUNCTIONS
 install-info  --delete bash  --info-dir ${INSTALL_ROOT}/usr/share/info
+remove_shell $SPELL /bin/$SPELL
+remove_shell $SPELL /bin/$SPELL.static
diff --git a/shell-term-fm/bash/POST_RESURRECT b/shell-term-fm/bash/POST_RESURRECT
new file mode 100755
index 0000000..a136ff4
--- /dev/null
+++ b/shell-term-fm/bash/POST_RESURRECT
@@ -0,0 +1,3 @@
+. $GRIMOIRE/FUNCTIONS
+install_shell  $SPELL  $TRACK_ROOT/bin/$SPELL
+install_shell  $SPELL  $TRACK_ROOT/bin/$SPELL.static
diff --git a/shell-term-fm/dash/HISTORY b/shell-term-fm/dash/HISTORY
index 9a54b98..5dcda8d 100644
--- a/shell-term-fm/dash/HISTORY
+++ b/shell-term-fm/dash/HISTORY
@@ -1,3 +1,6 @@
+2008-10-09 Remko van der Vossen <wich at sourcemage.org>
+	* POST_REMOVE, POST_RESURRECT: Added, fix bug 14335
+
 2008-07-30 Ethan Grammatikidis <eekee57 at fastmail.fm>
 	* DETAILS: WEBSITE -> WEB_SITE
 	* DETAILS: 0.5.4
diff --git a/shell-term-fm/dash/POST_REMOVE b/shell-term-fm/dash/POST_REMOVE
new file mode 100755
index 0000000..3373532
--- /dev/null
+++ b/shell-term-fm/dash/POST_REMOVE
@@ -0,0 +1,2 @@
+. $GRIMOIRE/FUNCTIONS
+remove_shell $SPELL /bin/$SPELL
diff --git a/shell-term-fm/dash/POST_RESURRECT b/shell-term-fm/dash/POST_RESURRECT
new file mode 100755
index 0000000..9d875a5
--- /dev/null
+++ b/shell-term-fm/dash/POST_RESURRECT
@@ -0,0 +1,2 @@
+. $GRIMOIRE/FUNCTIONS
+install_shell  $SPELL  $TRACK_ROOT/bin/$SPELL
diff --git a/shell-term-fm/fish/HISTORY b/shell-term-fm/fish/HISTORY
index b6eb4be..dbfe04a 100644
--- a/shell-term-fm/fish/HISTORY
+++ b/shell-term-fm/fish/HISTORY
@@ -1,3 +1,6 @@
+2008-10-09 Remko van der Vossen <wich at sourcemage.org>
+	* POST_RESURRECT: Added, fix bug 14335
+
 2007-02-08 Ladislav Hagara <hgr at vabo.cz>
 	* DETAILS: 1.22.3
 
diff --git a/shell-term-fm/fish/POST_RESURRECT b/shell-term-fm/fish/POST_RESURRECT
new file mode 100755
index 0000000..9d875a5
--- /dev/null
+++ b/shell-term-fm/fish/POST_RESURRECT
@@ -0,0 +1,2 @@
+. $GRIMOIRE/FUNCTIONS
+install_shell  $SPELL  $TRACK_ROOT/bin/$SPELL
diff --git a/shell-term-fm/pdksh/HISTORY b/shell-term-fm/pdksh/HISTORY
index 67a4ed6..672584c 100644
--- a/shell-term-fm/pdksh/HISTORY
+++ b/shell-term-fm/pdksh/HISTORY
@@ -1,3 +1,6 @@
+2008-10-09 Remko van der Vossen <wich at sourcemage.org>
+	* POST_RESURRECT: Added, fix bug 14335
+
 2008-07-29 Remko van der Vossen <wich at sourcemage.org>
 	* PRE_BUILD: sedit siglist.sh to update sort syntax, old syntax is not
 	  valid anymore.
diff --git a/shell-term-fm/pdksh/POST_RESURRECT b/shell-term-fm/pdksh/POST_RESURRECT
new file mode 100755
index 0000000..567044b
--- /dev/null
+++ b/shell-term-fm/pdksh/POST_RESURRECT
@@ -0,0 +1,2 @@
+. $GRIMOIRE/FUNCTIONS
+install_shell  ksh  $TRACK_ROOT/bin/ksh
diff --git a/shell-term-fm/sash/FINAL b/shell-term-fm/sash/FINAL
new file mode 100755
index 0000000..3eb1237
--- /dev/null
+++ b/shell-term-fm/sash/FINAL
@@ -0,0 +1,2 @@
+remove_shell   $SPELL  $TRACK_ROOT/usr/bin/$SPELL
+install_shell  $SPELL  $TRACK_ROOT/bin/$SPELL
diff --git a/shell-term-fm/sash/HISTORY b/shell-term-fm/sash/HISTORY
index 0b8e256..1f43fd7 100644
--- a/shell-term-fm/sash/HISTORY
+++ b/shell-term-fm/sash/HISTORY
@@ -1,3 +1,7 @@
+2008-10-09 Remko van der Vossen <wich at sourcemage.org>
+	* POST_RESURRECT: Added, fix bug 14335
+	* FINAL, POST_REMOVE: install and remove shell from /etc/shells
+
 2008-06-05 Arjan Bouter <abouter at sourcemage.org>
 	* BUILD: corrected manpage install dirs
 	* PRE_BUILD: moved patching and sedit from BUILD
diff --git a/shell-term-fm/sash/POST_REMOVE b/shell-term-fm/sash/POST_REMOVE
new file mode 100755
index 0000000..3373532
--- /dev/null
+++ b/shell-term-fm/sash/POST_REMOVE
@@ -0,0 +1,2 @@
+. $GRIMOIRE/FUNCTIONS
+remove_shell $SPELL /bin/$SPELL
diff --git a/shell-term-fm/sash/POST_RESURRECT b/shell-term-fm/sash/POST_RESURRECT
new file mode 100755
index 0000000..9d875a5
--- /dev/null
+++ b/shell-term-fm/sash/POST_RESURRECT
@@ -0,0 +1,2 @@
+. $GRIMOIRE/FUNCTIONS
+install_shell  $SPELL  $TRACK_ROOT/bin/$SPELL
diff --git a/shell-term-fm/tcsh/DETAILS b/shell-term-fm/tcsh/DETAILS
index 4b07837..2640271 100755
--- a/shell-term-fm/tcsh/DETAILS
+++ b/shell-term-fm/tcsh/DETAILS
@@ -1,11 +1,11 @@
            SPELL=tcsh
-         VERSION=6.14
+         VERSION=6.15
           SOURCE=$SPELL-$VERSION.00.tar.gz
 SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION.00
    SOURCE_URL[0]=ftp://ftp.astron.com/pub/tcsh/$SOURCE
    SOURCE_URL[1]=ftp://ftp.gw.com/pub/unix/tcsh/$SOURCE
    SOURCE_URL[2]=ftp://ftp.funet.fi/pub/unix/shells/tcsh/$SOURCE
-     SOURCE_HASH=sha512:8ce70edc456b309f2e27f05bbf49a6b9c1a994a7578a7faa31265746c3810b11bea07490b99a98b9188dce05b8ced4807a459e5d8e351b4bb9f5fb5256250c7b
+     SOURCE_HASH=sha512:e31a7f0aa8a954edca6341f76cc1e4d57e85df3b2012282114d576cd7115afdad3acc38911f72611de0ddb5901be716ace8b923093b6bcd0ae0aa5060564a952
       LICENSE[0]=BSD
       PATCHLEVEL=1
         WEB_SITE=http://www.tcsh.org
diff --git a/shell-term-fm/tcsh/HISTORY b/shell-term-fm/tcsh/HISTORY
index f32154f..8488500 100644
--- a/shell-term-fm/tcsh/HISTORY
+++ b/shell-term-fm/tcsh/HISTORY
@@ -1,3 +1,9 @@
+2008-10-09 Remko van der Vossen <wich at sourcemage.org>
+	* DETAILS: version 6.15
+	* PRE_BUILD, tcsh-6.14.00-debian-dircolors.patch: removed, 6.15 now
+	    recognises su= and sg= in LS_COLORS
+	* POST_RESURRECT: Added, fix bug 14335
+
 2007-03-24 Jeremy Blosser <jblosser-smgl at firinn.org>
 	* POST_REMOVE: Added, fix bug 10995.
 
diff --git a/shell-term-fm/tcsh/POST_RESURRECT b/shell-term-fm/tcsh/POST_RESURRECT
new file mode 100755
index 0000000..9d875a5
--- /dev/null
+++ b/shell-term-fm/tcsh/POST_RESURRECT
@@ -0,0 +1,2 @@
+. $GRIMOIRE/FUNCTIONS
+install_shell  $SPELL  $TRACK_ROOT/bin/$SPELL
diff --git a/shell-term-fm/tcsh/PRE_BUILD b/shell-term-fm/tcsh/PRE_BUILD
deleted file mode 100755
index 53cf377..0000000
--- a/shell-term-fm/tcsh/PRE_BUILD
+++ /dev/null
@@ -1,3 +0,0 @@
-default_pre_build                                             &&
-patch  $SOURCE_DIRECTORY/tw.color.c                           \
-       $SCRIPT_DIRECTORY/tcsh-6.14.00-debian-dircolors.patch
diff --git a/shell-term-fm/tcsh/tcsh-6.14.00-debian-dircolors.patch b/shell-term-fm/tcsh/tcsh-6.14.00-debian-dircolors.patch
deleted file mode 100644
index 194d478..0000000
--- a/shell-term-fm/tcsh/tcsh-6.14.00-debian-dircolors.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- tcsh-6.14.00/tw.color.c
-+++ tcsh-6.14.00/tw.color.c
-@@ -235,13 +235,10 @@
- 		    if ((Char)variables[i].variable[0] == (v[0] & CHAR) &&
- 			(Char)variables[i].variable[1] == (v[1] & CHAR))
- 			break;
--		if (i < nvariables) {
--		    v += 3;
-+		v += 3;
-+		if (i < nvariables)
- 		    getstring(&c, &v, &variables[i].color, ':');
--		    continue;
--		}
--		else
--		    stderror(ERR_BADCOLORVAR, v[0], v[1]);
-+		continue;
- 	    }
- 	    break;
- 	}



More information about the SM-Commit mailing list