Changes in scripts/patch/ncurses-patch.sh [c7ef534:d8a9d8b]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/patch/ncurses-patch.sh
rc7ef534 rd8a9d8b 16 16 # Get Patch Names 17 17 # 18 cd /usr/src18 cd ~/tmp 19 19 wget ftp://invisible-island.net/ncurses/${VERSION}/ --no-remove-listing 20 20 ROLLUP=$(cat index.html | grep bz2 | cut -f2 -d'>' | cut -f1 -d'<' | tail -n 1) … … 26 26 # Download Ncurses Source 27 27 # 28 cd ~/tmp 28 29 if ! [ -e ncurses-${VERSION}.tar.gz ]; then 29 30 wget ftp://invisible-island.net/ncurses/ncurses-${VERSION}.tar.gz … … 32 33 # Set Patch Number 33 34 # 34 cd /usr/src35 cd ~/tmp 35 36 wget http://svn.cross-lfs.org/svn/repos/cross-lfs/trunk/patches/ --no-remove-listing 36 37 PATCH_NUM=$(cat index.html | grep ncurses | grep "${VERSION}" | grep branch_update | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1) … … 40 41 # Cleanup Directory 41 42 # 43 cd ~/tmp 42 44 rm -rf ncurses-${VERSION} ncurses-${VERSION}.orig 43 45 tar xvf ncurses-${VERSION}.tar.gz 44 46 cp -ar ncurses-${VERSION} ncurses-${VERSION}.orig 45 cd ncurses-${VERSION}46 47 47 48 # Download and Apply Rollup Patch 48 49 # 50 cd ~/tmp/ncurses-${VERSION} 49 51 CURRENTDIR=$(pwd -P) 50 mkdir /tmp/ncurses-${VERSION}51 cd /tmp/ncurses-${VERSION}52 mkdir ~/tmp/ncurses-${VERSION}-patches 53 cd ~/tmp/ncurses-${VERSION} 52 54 if [ "${ROLLUP}" != "" ]; then 53 55 echo "Getting Rollup ${ROLLUP} Patch..." 56 cd ~/tmp/ncurses-${VERSION}-patches 54 57 wget --quiet ftp://invisible-island.net/ncurses/${VERSION}/${ROLLUP} 55 58 cd ${CURRENTDIR} 56 59 echo "Applying Rollup ${ROLLUP} Patch..." 57 cp /tmp/ncurses-${VERSION}/${ROLLUP} ${CURRENTDIR}/${ROLLUP}60 cp ~/tmp/ncurses-${VERSION}-patches/${ROLLUP} ${CURRENTDIR}/${ROLLUP} 58 61 bunzip2 ${ROLLUP} 59 62 ROLLUP2=$(echo ${ROLLUP} | sed -e 's/.bz2//g') … … 63 66 # Download and Apply Patches 64 67 # 68 install -d ~/tmp/ncurses-${VERSION}-patches 69 cd ~/tmp/ncurses-${VERSION} 70 CURRENTDIR=$(pwd -P) 65 71 for file in ${FILES}; do 66 72 if [ "${ROLLPATCH}" != "" ]; then … … 70 76 fi 71 77 if [ "${TEST}" = "0" ]; then 72 cd /tmp/ncurses-${VERSION}78 cd ~/tmp/ncurses-${VERSION}-patches 73 79 echo "Getting Patch ${file}..." 74 80 wget --quiet ftp://invisible-island.net/ncurses/${VERSION}/${file} 75 81 cd ${CURRENTDIR} 76 gunzip -c /tmp/ncurses-${VERSION}/${file} | patch --dry-run -s -f -Np182 gunzip -c ~/tmp/ncurses-${VERSION}-patches/${file} | patch --dry-run -s -f -Np1 77 83 if [ "$?" = "0" ]; then 78 84 echo "Apply Patch ${file}..." 79 gunzip -c /tmp/ncurses-${VERSION}/${file} | patch -Np185 gunzip -c ~/tmp/ncurses-${VERSION}-patches/${file} | patch -Np1 80 86 LASTFILE=$(echo ${file} | cut -f2 -d. | cut -f2 -d-) 81 87 fi … … 85 91 # Cleanup Directory 86 92 # 87 # Cleanup Directory 88 # 93 cd ~/tmp 94 cd ncurses-${VERSION} 89 95 for dir in $(find * -type d); do 90 cd /usr/src/ncurses-${VERSION}/${dir}96 cd ~/tmp/ncurses-${VERSION}/${dir} 91 97 for file in $(find . -name '*~'); do 92 98 rm -f ${file} … … 96 102 done 97 103 done 98 cd /usr/src/ncurses-${VERSION}104 cd ~/tmp/ncurses-${VERSION} 99 105 rm -f *~ *.orig 100 106 101 107 # Create Patch 102 108 # 103 cd /usr/src 104 echo "Submitted By: Jim Gifford (jim at cross-lfs dot org)" > ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 105 echo "Date: `date +%m-%d-%Y`" >> ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 106 echo "Initial Package Version: ${VERSION}" >> ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 107 echo "Origin: Upstream" >> ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 108 echo "Upstream Status: Applied" >> ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 109 echo "Description: This is a branch update for NCurses-${VERSION}, and should be" >> ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 110 echo " rechecked periodically. This patch covers up to ${VERSION}-${LASTFILE}." >> ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 111 echo "" >> ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 112 diff -Naur ncurses-${VERSION}.orig ncurses-${VERSION} >> ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 113 echo "Created /usr/src/ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch." 109 cd ~/tmp 110 echo "Submitted By: Jim Gifford (jim at cross-lfs dot org)" > ~/patches/ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 111 echo "Date: `date +%m-%d-%Y`" >> ~/patches/ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 112 echo "Initial Package Version: ${VERSION}" >> ~/patches/ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 113 echo "Origin: Upstream" >> ~/patches/ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 114 echo "Upstream Status: Applied" >> ~/patches/ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 115 echo "Description: This is a branch update for NCurses-${VERSION}, and should be" >> ~/patches/ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 116 echo " rechecked periodically. This patch covers up to ${VERSION}-${LASTFILE}." >> ~/patches/ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 117 echo "" >> ~/patches/ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 118 diff -Naur ncurses-${VERSION}.orig ncurses-${VERSION} >> ~/patches/ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch 119 echo "Created ~/patches/ncurses-${VERSION}-branch_update-${PATCH_NUM}.patch." 120 121 # Cleanup Directory 122 # 123 cd ~/tmp 124 rm -rf ncurses-${VERSION} ncurses-${VERSION}.orig
Note:
See TracChangeset
for help on using the changeset viewer.