1 | #!/bin/bash
|
---|
2 | # Create a GCC Patch
|
---|
3 |
|
---|
4 | # Get Version #
|
---|
5 | #
|
---|
6 | VERSION=$1
|
---|
7 |
|
---|
8 | # Check Input
|
---|
9 | #
|
---|
10 | if [ "${VERSION}" = "" ]; then
|
---|
11 | echo "$0 - GCC_Version"
|
---|
12 | echo "This will Create a Patch for GCC GCC_Version"
|
---|
13 | exit 255
|
---|
14 | fi
|
---|
15 |
|
---|
16 | # Download GCC Source
|
---|
17 | #
|
---|
18 | cd /usr/src
|
---|
19 | if ! [ -e gcc-${VERSION}.tar.bz2 ]; then
|
---|
20 | wget ftp://gcc.gnu.org/pub/gcc/releases/gcc-${VERSION}/gcc-${VERSION}.tar.bz2
|
---|
21 | fi
|
---|
22 |
|
---|
23 | # Set Patch Number
|
---|
24 | #
|
---|
25 | cd /usr/src
|
---|
26 | wget http://svn.cross-lfs.org/svn/repos/cross-lfs/trunk/patches/ --no-remove-listing
|
---|
27 | PATCH_NUM=$(cat index.html | grep gcc | grep "${VERSION}" | grep branch_update | cut -f2 -d'"' | cut -f1 -d'"'| cut -f4 -d- | cut -f1 -d. | tail -n 1)
|
---|
28 | PATCH_NUM=$(expr ${PATCH_NUM} + 1)
|
---|
29 | rm -f index.html
|
---|
30 |
|
---|
31 | # Cleanup Directory
|
---|
32 | #
|
---|
33 | rm -rf gcc-${VERSION} gcc-${VERSION}.orig
|
---|
34 | tar xvf gcc-${VERSION}.tar.bz2
|
---|
35 | mv gcc-${VERSION} gcc-${VERSION}.orig
|
---|
36 | CURRENTDIR=$(pwd -P)
|
---|
37 |
|
---|
38 | # Get Current Updates from SVN
|
---|
39 | #
|
---|
40 | cd /usr/src
|
---|
41 | NUM1=$(echo ${VERSION} | cut -f1 -d.)
|
---|
42 | NUM2=$(echo ${VERSION} | cut -f2 -d.)
|
---|
43 | FIXEDVERSION=$(echo -n "$NUM1" ; echo -n "_" ; echo -e "$NUM2")
|
---|
44 | svn export svn://gcc.gnu.org/svn/gcc/branches/gcc-${FIXEDVERSION}-branch gcc-${VERSION}
|
---|
45 |
|
---|
46 | # Add a custom version string
|
---|
47 | sed -i "s:PKGVERSION:\"(Cross-LFS - Branch Update ${PATCH_NUM}) \":" gcc-${VERSION}/gcc/version.c
|
---|
48 |
|
---|
49 | # Cleanup
|
---|
50 | DIRS="gcc-${VERSION} gcc-${VERSION}.orig"
|
---|
51 | for DIRECTORY in ${DIRS}; do
|
---|
52 | cd ${DIRECTORY}
|
---|
53 | REMOVE="ABOUT-NLS COPYING COPYING.LIB ChangeLog ChangeLog.tree-ssa MAINTAINERS Makefile.def
|
---|
54 | Makefile.in Makefile.tpl README README.SCO boehm-gc/ChangeLog BUGS FAQ LAST_UPDATED
|
---|
55 | MD5SUMS NEWS bugs.html faq.html gcc/BASE-VER gcc/DATESTAMP gcc/DEV-PHASE gcc/c-parse.c
|
---|
56 | gcc/gengtype-lex.c gcc/c-parse.y gcc/gengtype-yacc.c gcc/gengtype-yacc.h gcc/f/BUGS gcc/f/NEWS
|
---|
57 | gcc/java/parse-scan.c gcc/java/parse.c gcc/objc/objc-parse.c gcc/objc/objc-parse.y"
|
---|
58 | for file in ${REMOVE}; do
|
---|
59 | rm -f $file
|
---|
60 | done
|
---|
61 | rm -rf INSTALL
|
---|
62 | rm -f fastjar/*.{1,info} gcc/doc/*.{1,info,7} gcc/fortran/*.{1,info,7}
|
---|
63 | rm -f gcc/po/*.{gmo,po} libcpp/po/*.{gmo,po} libgomp/*.{1,info,7}
|
---|
64 | cd ..
|
---|
65 | done
|
---|
66 |
|
---|
67 | # Create Patch
|
---|
68 | #
|
---|
69 | cd /usr/src
|
---|
70 | echo "Submitted By: Jim Gifford (jim at cross-lfs dot org)" > gcc-${VERSION}-branch_update-${PATCH_NUM}.patch
|
---|
71 | echo "Date: `date +%m-%d-%Y`" >> gcc-${VERSION}-branch_update-${PATCH_NUM}.patch
|
---|
72 | echo "Initial Package Version: ${VERSION}" >> gcc-${VERSION}-branch_update-${PATCH_NUM}.patch
|
---|
73 | echo "Origin: Upstream" >> gcc-${VERSION}-branch_update-${PATCH_NUM}.patch
|
---|
74 | echo "Upstream Status: Applied" >> gcc-${VERSION}-branch_update-${PATCH_NUM}.patch
|
---|
75 | echo "Description: This is a branch update for gcc-${VERSION}, and should be" >> gcc-${VERSION}-branch_update-${PATCH_NUM}.patch
|
---|
76 | echo " rechecked periodically." >> gcc-${VERSION}-branch_update-${PATCH_NUM}.patch
|
---|
77 | echo "" >> gcc-${VERSION}-branch_update-${PATCH_NUM}.patch
|
---|
78 | diff -Naur gcc-${VERSION}.orig gcc-${VERSION} >> gcc-${VERSION}-branch_update-${PATCH_NUM}.patch
|
---|
79 | echo "Created /usr/src/gcc-${VERSION}-branch_update-${PATCH_NUM}.patch."
|
---|