Changes in scripts/patch/binutils-patch.sh [3820147:d8a9d8b]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/patch/binutils-patch.sh
r3820147 rd8a9d8b 19 19 # Download Binutils Source 20 20 # 21 cd /usr/src 21 install -d ~/tmp 22 cd ~/tmp 22 23 if ! [ -e binutils-${SOURCEVERSION}.tar.bz2 ]; then 23 24 wget ftp://ftp.gnu.org/gnu/binutils/binutils-${SOURCEVERSION}.tar.bz2 … … 26 27 # Set Patch Number 27 28 # 28 cd /usr/src29 cd ~/tmp 29 30 wget http://svn.cross-lfs.org/svn/repos/cross-lfs/trunk/patches/ --no-remove-listing 30 31 PATCH_NUM=$(cat index.html | grep binutils | grep "${SOURCEVERSION}" | grep branch_update | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1) 31 32 PATCH_NUM=$(expr ${PATCH_NUM} + 1) 33 PATCH_NUM2=$(cat index.html | grep binutils | grep "${SOURCEVERSION}" | grep fixes | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1) 34 PATCH_NUM2=$(expr ${PATCH_NUM2} + 1) 32 35 rm -f index.html 33 36 34 37 # Cleanup Directory 35 38 # 39 cd ~/tmp 36 40 rm -rf binutils-${SOURCEVERSION} binutils-${SOURCEVERSION}.orig 37 41 tar xvf binutils-${SOURCEVERSION}.tar.bz2 38 mv binutils-${SOURCEVERSION} binutils-${SOURCEVERSION}.orig39 CURRENTDIR=$(pwd -P)40 42 41 43 # Get Current Updates from CVS 42 44 # 43 cd /usr/src 45 cd ~/tmp 46 mv binutils-${SOURCEVERSION} binutils-${SOURCEVERSION}.orig 47 CURRENTDIR=$(pwd -P) 44 48 FIXEDVERSION=$(echo ${VERSION} | sed -e 's/\./_/g') 45 49 cvs -z 9 -d :pserver:anoncvs@sourceware.org:/cvs/src export -rbinutils-${FIXEDVERSION}-branch binutils … … 48 52 # Cleanup 49 53 # 54 cd ~/tmp 50 55 DIRS="binutils-${SOURCEVERSION} binutils-${SOURCEVERSION}.orig" 51 56 for DIRECTORY in ${DIRS}; do 52 cd /usr/src/${DIRECTORY}57 cd ~/tmp/${DIRECTORY} 53 58 FILE_LIST=".cvsignore *.gmo" 54 59 for files in ${FILE_LIST}; do … … 66 71 cd .. 67 72 done 68 cd /usr/src/binutils-${SOURCEVERSION}69 rm -f /usr/src/binutils-${SOURCEVERSION}.orig/md5.sum73 cd ~/tmp/binutils-${SOURCEVERSION} 74 rm -f ~/tmp/binutils-${SOURCEVERSION}.orig/md5.sum 70 75 71 76 # Make Binutils a Release 72 77 # 73 cd /usr/src/binutils-${SOURCEVERSION}78 cd ~/tmp/binutils-${SOURCEVERSION} 74 79 sed -i 's/# RELEASE=y/RELEASE=y/g' bfd/Makefile.am 75 80 sed -i 's/# RELEASE=y/RELEASE=y/g' bfd/Makefile.in … … 77 82 # Customize the version string, so we know it's patched 78 83 # 79 cd /usr/src/binutils-${SOURCEVERSION}84 cd ~/tmp/binutils-${SOURCEVERSION} 80 85 DATE_STAMP=$(date +%Y%m%d) 81 cd /usr/src/binutils-${SOURCEVERSION}86 cd ~/tmp/binutils-${SOURCEVERSION} 82 87 sed -i "s:@PKGVERSION@:(GNU Binutils for Cross-LFS) :" bfd/Makefile.in 83 88 sed -i "s:^[[:space:]]VERSION=\(.*\)$: VERSION=\1.${DATE_STAMP}:g" bfd/configure … … 85 90 # Create Patch 86 91 # 87 cd /usr/src 88 echo "Submitted By: Jim Gifford (jim at cross-lfs dot org)" > binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 89 echo "Date: `date +%m-%d-%Y`" >> binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 90 echo "Initial Package Version: ${SOURCEVERSION}" >> binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 91 echo "Origin: Upstream" >> binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 92 echo "Upstream Status: Applied" >> binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 93 echo "Description: This is a branch update for binutils-${SOURCEVERSION}, and should be" >> binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 94 echo " rechecked periodically." >> binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 95 echo "" >> binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 96 echo "This patch was created on ${DATE_STAMP}" >> binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 97 echo "" >> binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 98 diff -Naur binutils-${SOURCEVERSION}.orig binutils-${SOURCEVERSION} >> binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 99 echo "Created /usr/src/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch." 92 cd ~/tmp 93 install -d ~/patches 94 echo "Submitted By: Jim Gifford (jim at cross-lfs dot org)" > ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 95 echo "Date: `date +%m-%d-%Y`" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 96 echo "Initial Package Version: ${SOURCEVERSION}" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 97 echo "Origin: Upstream" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 98 echo "Upstream Status: Applied" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 99 echo "Description: This is a branch update for binutils-${SOURCEVERSION}, and should be" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 100 echo " rechecked periodically." >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 101 echo "" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 102 echo "This patch was created on ${DATE_STAMP}" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 103 echo "" >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 104 diff -Naur binutils-${SOURCEVERSION}.orig binutils-${SOURCEVERSION} >> ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch 105 echo "Created ~/patches/binutils-${SOURCEVERSION}-branch_update-${PATCH_NUM}.patch." 100 106 101 107 # Cleanliness is the name of my game! 102 108 # 103 109 unset DATE_STAMP 110 111 # Create Another Copy to create fixes patch 112 # 113 cd ~/tmp 114 if [ -e ${PATCH_DIR}/${VERSION} ]; then 115 rm -rf binutils-${SOURCEVERSION}.orig 116 cp -ar binutils-${SOURCEVERSION} binutils-${SOURCEVERSION}.orig 117 118 # Apply Patches from directories 119 # 120 cd ~/tmp/binutils-${SOURCEVERSION} 121 PATCH_FILES=$(ls ${PATCH_DIR}/${VERSION}/*.patch) 122 if [ "${PATCH_FILES}" != "" ]; then 123 for pfile in ${PATCH_FILES}; do 124 echo "Applying - ${pfile}..." 125 for pvalue in $(seq 0 5); do 126 patch --dry-run -Np${pvalue} -i ${pfile} > /dev/null 2>&1 127 if [ "${?}" = "0" ]; then 128 PVALUE=${pvalue} 129 break 130 fi 131 done 132 if [ "${PVALUE}" != "" ]; then 133 patch -Np${PVALUE} -i ${pfile} 134 else 135 echo "Patch: ${pfile} Failed to Apply..." 136 exit 255 137 fi 138 done 139 fi 140 141 # Cleanup Directory 142 # 143 cd ~/tmp/binutils-${SOURCEVERSION} 144 rm -f $(find * -name "*~") 145 rm -f $(find * -name "*.orig") 146 rm -f $(find * -name "*.rej") 147 rm -f *.orig *~ *.rej 148 149 # Create Patch 150 # 151 cd ~/tmp 152 install -d ~/patches 153 echo "Submitted By: Jim Gifford (jim at cross-lfs dot org)" > ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch 154 echo "Date: `date +%m-%d-%Y`" >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch 155 echo "Initial Package Version: ${VERSION}" >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch 156 echo "Origin: Upstream" >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch 157 echo "Upstream Status: Applied" >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch 158 echo "Description: This Patch contains fixes for binutils-${SOURCEVERSION}, and should be" >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch 159 echo " rechecked periodically." >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch 160 echo "" >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch 161 diff -Naur binutils-${SOURCEVERSION}.orig binutils-${SOURCEVERSION} >> ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch 162 echo "Created ~/patches/binutils-${SOURCEVERSION}-fixes-${PATCH_NUM2}.patch." 163 fi 164 165 # Cleanup Directory 166 # 167 cd ~/tmp 168 rm -rf binutils-${SOURCEVERSION} binutils-${SOURCEVERSION}.orig
Note:
See TracChangeset
for help on using the changeset viewer.