Tagged the 0.2 branch
This commit is contained in:
parent
aecc799c07
commit
d494c36eac
2 changed files with 17 additions and 14 deletions
15
jhalfs
15
jhalfs
|
@ -176,11 +176,14 @@ get_book() {
|
|||
extract_commands
|
||||
fi
|
||||
else
|
||||
if [ $LFSVRS = development ] ; then
|
||||
svn co $SVN/LFS/trunk/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1
|
||||
else
|
||||
svn co $SVN/LFS/branches/$LFSVRS/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1
|
||||
fi
|
||||
case $LFSVRS in
|
||||
development)
|
||||
svn co $SVN/LFS/trunk/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 ;;
|
||||
alphabetical)
|
||||
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"
|
||||
# Set the canonical book version
|
||||
cd $JHALFSDIR
|
||||
|
@ -974,7 +977,7 @@ while test $# -gt 0 ; do
|
|||
dev* | SVN | trunk )
|
||||
LFSVRS=development
|
||||
;;
|
||||
testing | 6.1.1 )
|
||||
6.1.1 )
|
||||
LFSVRS=6.1.1
|
||||
;;
|
||||
|
||||
|
|
|
@ -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
|
||||
Debian 3.1 stable.
|
||||
|
||||
--- jhalfs.orig 2005-11-01 07:10:00.104763416 -0500
|
||||
+++ jhalfs 2005-11-01 07:10:02.472416413 -0500
|
||||
@@ -192,9 +192,12 @@
|
||||
DIR=`echo $1 | sed -e 's@-doc@@' -e 's@-linuxthreads@@' -e 's@-libidn@@'`
|
||||
--- jhalfs.orig 2005-12-01 00:57:13.000000000 +0000
|
||||
+++ jhalfs 2005-12-01 00:57:26.000000000 +0000
|
||||
@@ -260,9 +260,12 @@
|
||||
DIR=`echo $1 | sed 's@-doc@@;s@-linuxthreads@@;s@-libidn@@;s@-testsuite@@'`
|
||||
|
||||
# Find the md5 sum for this package.
|
||||
- if [ $2 != MD5SUMS ] ; then MD5=`grep " $2" MD5SUMS` ; fi
|
||||
|
@ -24,7 +24,7 @@ Debian 3.1 stable.
|
|||
case $DL in
|
||||
wget )
|
||||
wget $HTTP/$DIR/$2
|
||||
@@ -206,7 +209,7 @@
|
||||
@@ -274,7 +277,7 @@
|
||||
echo "$DL not supported at this time."
|
||||
;;
|
||||
esac
|
||||
|
@ -33,7 +33,7 @@ Debian 3.1 stable.
|
|||
case $DL in
|
||||
wget )
|
||||
wget -c $HTTP/$DIR/$2
|
||||
@@ -219,8 +222,11 @@
|
||||
@@ -287,8 +290,11 @@
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
@ -45,5 +45,5 @@ Debian 3.1 stable.
|
|||
+ exit 1
|
||||
+ fi
|
||||
fi
|
||||
}
|
||||
|
||||
if [ $2 != MD5SUMS ] ; then
|
||||
echo `grep "$MD5" MD5SUMS` >> MD5SUMS-$VERSION
|
||||
|
|
Reference in a new issue