Tagged the 0.2 branch

This commit is contained in:
Jeremy Huntwork 2005-12-01 01:11:17 +00:00
parent aecc799c07
commit d494c36eac
2 changed files with 17 additions and 14 deletions

15
jhalfs
View file

@ -176,11 +176,14 @@ get_book() {
extract_commands extract_commands
fi fi
else else
if [ $LFSVRS = development ] ; then case $LFSVRS in
svn co $SVN/LFS/trunk/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 development)
else svn co $SVN/LFS/trunk/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 ;;
svn co $SVN/LFS/branches/$LFSVRS/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 alphabetical)
fi svn co $SVN/LFS/branches/$LFSVRS/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 ;;
6.1.1)
svn co $SVN/LFS/tags/$LFSVRS/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 ;;
esac
echo -ne "done\n" echo -ne "done\n"
# Set the canonical book version # Set the canonical book version
cd $JHALFSDIR cd $JHALFSDIR
@ -974,7 +977,7 @@ while test $# -gt 0 ; do
dev* | SVN | trunk ) dev* | SVN | trunk )
LFSVRS=development LFSVRS=development
;; ;;
testing | 6.1.1 ) 6.1.1 )
LFSVRS=6.1.1 LFSVRS=6.1.1
;; ;;

View file

@ -7,10 +7,10 @@ Description: Allow jhalfs to work with a md5sum program
that doesn't accept '-' as a filename, like the one shipped with that doesn't accept '-' as a filename, like the one shipped with
Debian 3.1 stable. Debian 3.1 stable.
--- jhalfs.orig 2005-11-01 07:10:00.104763416 -0500 --- jhalfs.orig 2005-12-01 00:57:13.000000000 +0000
+++ jhalfs 2005-11-01 07:10:02.472416413 -0500 +++ jhalfs 2005-12-01 00:57:26.000000000 +0000
@@ -192,9 +192,12 @@ @@ -260,9 +260,12 @@
DIR=`echo $1 | sed -e 's@-doc@@' -e 's@-linuxthreads@@' -e 's@-libidn@@'` DIR=`echo $1 | sed 's@-doc@@;s@-linuxthreads@@;s@-libidn@@;s@-testsuite@@'`
# Find the md5 sum for this package. # Find the md5 sum for this package.
- if [ $2 != MD5SUMS ] ; then MD5=`grep " $2" MD5SUMS` ; fi - if [ $2 != MD5SUMS ] ; then MD5=`grep " $2" MD5SUMS` ; fi
@ -24,7 +24,7 @@ Debian 3.1 stable.
case $DL in case $DL in
wget ) wget )
wget $HTTP/$DIR/$2 wget $HTTP/$DIR/$2
@@ -206,7 +209,7 @@ @@ -274,7 +277,7 @@
echo "$DL not supported at this time." echo "$DL not supported at this time."
;; ;;
esac esac
@ -33,7 +33,7 @@ Debian 3.1 stable.
case $DL in case $DL in
wget ) wget )
wget -c $HTTP/$DIR/$2 wget -c $HTTP/$DIR/$2
@@ -219,8 +222,11 @@ @@ -287,8 +290,11 @@
;; ;;
esac esac
fi fi
@ -45,5 +45,5 @@ Debian 3.1 stable.
+ exit 1 + exit 1
+ fi + fi
fi fi
} if [ $2 != MD5SUMS ] ; then
echo `grep "$MD5" MD5SUMS` >> MD5SUMS-$VERSION