Changeset aebe03a


Ignore:
Timestamp:
10/15/2005 04:31:28 PM (19 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
0.2, 1.0, 2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
8742984
Parents:
fd691b4
Message:

Adding support for LFS-6.1.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • jhalfs

    rfd691b4 raebe03a  
    9090        dev* | SVN | trunk )
    9191          LFSVRS=development
     92          ;;
     93        testing | 6.1.1 )
     94          LFSVRS=6.1.1
    9295          ;;
    9396        * )
     
    387390      # Needed for Groff patchlevel patch on UTF-8 branch
    388391      GROFFLEVEL=`echo $i | sed -e 's/groff-patchlevel //' -e 's/"//g'`
    389 
    390       # Someone used some silly entities right next to the valid package entities.
    391       if [ "$PKG" = "expect-lib" -o "$PKG" = "linux-dl" -o "$PKG" = "groff-patchlevel" ] ; then continue ; fi
     392      # Needed for IPRoute2 patch on 6.1.1 book
     393      IPROUTE2PATCH=`echo $i | sed -e 's/iproute2-patch-version //' -e 's/"//g'`
     394
     395      # There is some entities that aren't valid package entities.
     396      if [ "$PKG" = "expect-lib" -o "$PKG" = "linux-dl" -o "$PKG" = "groff-patchlevel" -o "$PKG" = "iproute2-patch" ] ; then continue ; fi
    392397
    393398      VRS=`echo $i | sed -e 's/.* //' -e 's/"//g'`
     
    399404      download $PKG $FILE
    400405      for patch in `grep "$PKG-&$PKG" $JHALFSDIR/patches` ; do
    401         PATCH=`echo $patch | sed 's@&'$PKG'-version;@'$VRS'@'`
    402         download $PKG $PATCH
     406        if [ "$patch" = "iproute2-&iproute2-patch-version;-remove_db-1.patch" ] ; then
     407          PATCH=`echo $patch | sed 's@&'$PKG'-patch-version;@'$IPROUTE2PATCH'@'`
     408          download $PKG $PATCH
     409        else
     410          PATCH=`echo $patch | sed 's@&'$PKG'-version;@'$VRS'@'`
     411          download $PKG $PATCH
     412        fi
    403413      done
    404414      # Needed for Groff patchlevel patch on UTF-8 branch
Note: See TracChangeset for help on using the changeset viewer.