Changeset 4648865 for scripts/patch
- Timestamp:
- Aug 15, 2009, 11:50:40 AM (15 years ago)
- Branches:
- clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- efa1f61
- Parents:
- 29f6db3
- Location:
- scripts/patch
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/patch/bash-patch.sh
r29f6db3 r4648865 37 37 wget http://svn.cross-lfs.org/svn/repos/patches/bash/ --no-remove-listing 38 38 for num in $(seq 1 99); do 39 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num} | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)39 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num}.patch | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1) 40 40 if [ "${PATCH_NUM}" = "0" -a "${num}" = "1" ]; then 41 41 PATCH_NUM=$(expr ${PATCH_NUM} + 1) -
scripts/patch/binutils-patch.sh
r29f6db3 r4648865 33 33 wget http://svn.cross-lfs.org/svn/repos/patches/binutils/ --no-remove-listing 34 34 for num in $(seq 1 99); do 35 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num} | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)35 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num}.patch | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1) 36 36 if [ "${PATCH_NUM}" = "0" -a "${num}" = "1" ]; then 37 37 PATCH_NUM=$(expr ${PATCH_NUM} + 1) … … 44 44 done 45 45 for num in $(seq 1 99); do 46 PATCH_NUM2=$(cat index.html | grep "${SOURCEVERSION}" | grep fixes-${num} | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)46 PATCH_NUM2=$(cat index.html | grep "${SOURCEVERSION}" | grep fixes-${num}.patch | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1) 47 47 if [ "${PATCH_NUM2}" = "0" -a "${num}" = "1" ]; then 48 48 PATCH_NUM2=$(expr ${PATCH_NUM2} + 1) -
scripts/patch/gcc-patch.sh
r29f6db3 r4648865 31 31 wget http://svn.cross-lfs.org/svn/repos/patches/gcc/ --no-remove-listing 32 32 for num in $(seq 1 99); do 33 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num} | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)33 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num}.patch | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1) 34 34 if [ "${PATCH_NUM}" = "0" -a "${num}" = "1" ]; then 35 35 PATCH_NUM=$(expr ${PATCH_NUM} + 1) … … 42 42 done 43 43 for num in $(seq 1 99); do 44 PATCH_NUM2=$(cat index.html | grep "${SOURCEVERSION}" | grep fixes-${num} | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)44 PATCH_NUM2=$(cat index.html | grep "${SOURCEVERSION}" | grep fixes-${num}.patch | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1) 45 45 if [ "${PATCH_NUM2}" = "0" -a "${num}" = "1" ]; then 46 46 PATCH_NUM2=$(expr ${PATCH_NUM2} + 1) -
scripts/patch/ncurses-patch.sh
r29f6db3 r4648865 36 36 wget http://svn.cross-lfs.org/svn/repos/patches/ncurses/ --no-remove-listing 37 37 for num in $(seq 1 99); do 38 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num} | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)38 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num}.patch | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1) 39 39 if [ "${PATCH_NUM}" = "0" -a "${num}" = "1" ]; then 40 40 PATCH_NUM=$(expr ${PATCH_NUM} + 1) -
scripts/patch/perl-patch.sh
r29f6db3 r4648865 26 26 wget http://svn.cross-lfs.org/svn/repos/patches/perl/ --no-remove-listing 27 27 for num in $(seq 1 99); do 28 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num} | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)28 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num}.patch | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1) 29 29 if [ "${PATCH_NUM}" = "0" -a "${num}" = "1" ]; then 30 30 PATCH_NUM=$(expr ${PATCH_NUM} + 1) -
scripts/patch/readline-patch.sh
r29f6db3 r4648865 37 37 wget http://svn.cross-lfs.org/svn/repos/patches/readline/ --no-remove-listing 38 38 for num in $(seq 1 99); do 39 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num} | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)39 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num}.patch | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1) 40 40 if [ "${PATCH_NUM}" = "0" -a "${num}" = "1" ]; then 41 41 PATCH_NUM=$(expr ${PATCH_NUM} + 1) -
scripts/patch/vim-patch.sh
r29f6db3 r4648865 36 36 wget http://svn.cross-lfs.org/svn/repos/patches/vim/ --no-remove-listing 37 37 for num in $(seq 1 99); do 38 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num} | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)38 PATCH_NUM=$(cat index.html | grep "${VERSION}" | grep branch_update-${num}.patch | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1) 39 39 if [ "${PATCH_NUM}" = "0" -a "${num}" = "1" ]; then 40 40 PATCH_NUM=$(expr ${PATCH_NUM} + 1)
Note:
See TracChangeset
for help on using the changeset viewer.