Update of /cvsroot/beepmp/bmp/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24116/scripts
Modified Files:
Tag: release_0_9_7_1
armageddon.sh cvs2cl.pl rm-backups.sh
Removed Files:
Tag: release_0_9_7_1
cleanall.sh code-stats.sh gen-auto-scripts.sh genesis.sh
make-dist.sh
Log Message:
* autogen.sh: Update from HEAD.
* scripts/: Update scripts from HEAD.
--- code-stats.sh DELETED ---
--- gen-auto-scripts.sh DELETED ---
Index: cvs2cl.pl
===================================================================
RCS file: /cvsroot/beepmp/bmp/scripts/cvs2cl.pl,v
retrieving revision 1.4
retrieving revision 1.4.8.1
diff -C2 -d -r1.4 -r1.4.8.1
*** cvs2cl.pl 19 Apr 2004 06:55:46 -0000 1.4
--- cvs2cl.pl 22 Oct 2005 08:41:28 -0000 1.4.8.1
***************
*** 143,148 ****
# Globals --------------------------------------------------------------------
- use constant MAILNAME => "/etc/mailname";
-
# In case we have to print it out:
my $VERSION = '$Revision$';
--- 143,146 ----
***************
*** 258,261 ****
--- 256,262 ----
[...1551 lines suppressed...]
+
=item Akos Kiss
***************
*** 3035,3039 ****
=item Thomas Parmelan
! =item Johanne Stezenbach
=item Joseph Walton
--- 3167,3175 ----
=item Thomas Parmelan
! =item Jordan Russell
!
! =item Jacek Sliwerski
!
! =item Johannes Stezenbach
=item Joseph Walton
--- cleanall.sh DELETED ---
Index: rm-backups.sh
===================================================================
RCS file: /cvsroot/beepmp/bmp/scripts/rm-backups.sh,v
retrieving revision 1.1
retrieving revision 1.1.10.1
diff -C2 -d -r1.1 -r1.1.10.1
*** rm-backups.sh 19 Nov 2003 16:39:56 -0000 1.1
--- rm-backups.sh 22 Oct 2005 08:41:28 -0000 1.1.10.1
***************
*** 19,23 ****
Regexp=$1
! for File in `cat $TempFile | grep $Regexp`; do
rm $RemoveOptions $File
RemoveCount=$((RemoveCount+1))
--- 19,23 ----
Regexp=$1
! for File in `grep $Regexp $TempFile`; do
rm $RemoveOptions $File
RemoveCount=$((RemoveCount+1))
--- make-dist.sh DELETED ---
--- genesis.sh DELETED ---
Index: armageddon.sh
===================================================================
RCS file: /cvsroot/beepmp/bmp/scripts/armageddon.sh,v
retrieving revision 1.3
retrieving revision 1.3.10.1
diff -C2 -d -r1.3 -r1.3.10.1
*** armageddon.sh 28 Nov 2003 02:09:41 -0000 1.3
--- armageddon.sh 22 Oct 2005 08:41:28 -0000 1.3.10.1
***************
*** 1,23 ****
#!/bin/sh
- #
- # armageddon.sh
- #
- # By Chong Kai Xiong
- #
- # CAUTION! This script removes everything gettextize, libtoolize and
- # autotools generates. Meant for updating gettext, libtool and
- # autotool scripts only. Not fit for daily consumption.
- #
- # Tested on Fedora Core 1:
- # automake 1.7.8
- # autoconf 2.57
- # libtool 1.5
- # gettext 0.12.1
- #
- # Must be run in top level directory.
RM="rm -v"
! RemoveMakeIns()
{
# scan for Makefile.ins and remove only if
--- 1,7 ----
#!/bin/sh
RM="rm -v"
! remove_makefile_ins()
{
# scan for Makefile.ins and remove only if
***************
*** 44,75 ****
# remove files from aclocal
! $RM -f aclocal.m4 libbeep/aclocal.m4
# remove files from autoheader
! $RM -f include/config.h.in
! $RM -f include/stamp-h1 include/stamp-h.in
# remove files from libtoolize
! $RM -f ltmain.sh libbeep/ltmain.sh
! $RM -f libtool libbeep/libtool
! # remove files from gettextize
$RM -f ABOUT-NLS config.rpath
! $RM -f po/Makefile.in.in
! $RM -f *.gettext ChangeLog*
! $RM -rf intl m4
./scripts/rm-backups.sh po -fv
# remove files from automake
$RM -f missing mkinstalldirs install-sh
! $RM -f depcomp
! RemoveMakeIns
# remove files from autoconf and configure
! $RM -f configure libbeep/configure
! $RM -rf autom4te.cache libbeep/autom4te.cache
! $RM -f config.status libbeep/config.status
# remove architecture detection scripts
! $RM -f config.guess libbeep/config.guess
! $RM -f config.sub libbeep/config.sub
--- 28,57 ----
# remove files from aclocal
! $RM -f aclocal.m4
# remove files from autoheader
! $RM -f config.h.in
# remove files from libtoolize
! $RM -f ltmain.sh libtool
! # remove files from autopoint
$RM -f ABOUT-NLS config.rpath
! $RM -f po/Makefile.in* po/*.{sed,header,sin} po/Makevars*
! $RM -rf intl
./scripts/rm-backups.sh po -fv
# remove files from automake
$RM -f missing mkinstalldirs install-sh
! $RM -f depcomp compile
! remove_makefile_ins
# remove files from autoconf and configure
! $RM -f configure config.status
! $RM -rf autom4te.cache
# remove architecture detection scripts
! $RM -f config.guess config.sub
!
! # remove files from cvs2cl.pl
! $RM -f ChangeLog
|