source: scripts/patch/bash-patch.sh @ 2a7925b

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 2a7925b was 2803d79, checked in by Jim Gifford <clfs@…>, 15 years ago

Fixes to Patch Creaters

  • Property mode set to 100755
File size: 3.1 KB
Line 
1#!/bin/bash
2# Create a Bash Patch
3
4# Get Version #
5#
6VERSION=$1
7
8# Check Input
9#
10if [ "${VERSION}" = "" ]; then
11        echo "$0 - Bash_Version"
12        echo "This will Create a Patch for Bash Bash_Version"
13fi
14
15# Get the # of Patches
16#
17cd /usr/src
18wget ftp://ftp.cwru.edu/pub/bash/bash-${VERSION}-patches/ --no-remove-listing
19VERSION2=$(echo ${VERSION} | sed -e 's/\.//g')
20FILES=$(cat index.html | grep "${VERSION2}" | cut -f2 -d'"' | cut -f4 -d. | cut -f3 -d- | tail -n 1)
21rm -f .listing
22rm -f index.html
23SKIPPATCH=""
24SKIPPED=""
25
26# Download BASH Source
27#
28if ! [ -e bash-${VERSION}.tar.gz ]; then
29        wget ftp://ftp.cwru.edu/pub/bash/bash-${VERSION}.tar.gz
30fi
31
32# Cleanup Directory
33#
34rm -rf bash-${VERSION} bash-${VERSION}.orig
35tar xvf bash-${VERSION}.tar.gz
36cp -ar bash-${VERSION} bash-${VERSION}.orig
37cd bash-${VERSION}
38CURRENTDIR=$(pwd -P)
39
40# Download and Apply Patches
41#
42PATCHURL=ftp://ftp.cwru.edu/pub/bash/bash-${VERSION}-patches
43mkdir /tmp/bash-${VERSION}
44COUNT=1
45while [ ${COUNT} -le ${FILES} ]; do
46        cd /tmp/bash-${VERSION}           
47        DLCOUNT="${COUNT}"
48        SKIPME=no
49        if [ "${COUNT}" -lt "100" ]; then
50                DLCOUNT="0${COUNT}"
51        fi
52        if [ "${COUNT}" -lt "10" ]; then
53                DLCOUNT="00${COUNT}"
54        fi
55        for skip in ${SKIPPATCH} ; do
56                if [ "${DLCOUNT}" = "$skip" ]; then
57                        echo "Patch bash${VERSION2}-${DLCOUNT} skipped"
58                        SKIPPED="${SKIPPED} ${DLCOUNT}"
59                        SKIPME=yes
60                fi
61        done
62        if [ "${SKIPME}" != "yes" ]; then
63                if ! [ -e ${VERSION}.${DLCOUNT} ]; then
64                        wget --quiet ${PATCHURL}/bash${VERSION2}-${DLCOUNT}
65                fi
66                cd ${CURRENTDIR}
67                patch --dry-run -s -f -Np0 -i /tmp/bash-${VERSION}/bash${VERSION2}-${DLCOUNT}
68                if [ "$?" = "0" ]; then
69                        echo "Patch bash${VERSION2}-${DLCOUNT} applied"
70                        patch -s -Np0 -i /tmp/bash-${VERSION}/bash${VERSION2}-${DLCOUNT}
71                else
72                        echo "Patch bash${VERSION2}-${DLCOUNT} not applied"
73                        rm -f /tmp/bash-${VERSION}/bash${VERSION2}-${DLCOUNT}
74                        SKIPPED="${SKIPPED} ${DLCOUNT}"
75                fi
76        fi
77        COUNT=`expr ${COUNT} + 1`
78done
79
80# Cleanup Directory
81#
82
83for dir in $(find * -type d); do
84        cd /usr/src/bash-${VERSION}/${dir}
85        for file in $(find . -name '*~'); do
86                rm -f ${file}
87        done
88        for file in $(find . -name '*.orig'); do
89                rm -f ${file}
90        done
91done
92cd /usr/src/bash-${VERSION}
93rm -f *~ *.orig
94
95# Create Patch
96#
97cd /usr/src
98echo "Submitted By: Jim Gifford (jim at cross-lfs dot org)" > bash-${VERSION}-branch_update-x.patch
99echo "Date: `date +%m-%d-%Y`" >> bash-${VERSION}-branch_update-x.patch
100echo "Initial Package Version: ${VERSION}" >> bash-${VERSION}-branch_update-x.patch
101echo "Origin: Upstream" >> bash-${VERSION}-branch_update-x.patch
102echo "Upstream Status: Applied" >> bash-${VERSION}-branch_update-x.patch
103echo "Description: Contains all upstream patches up to ${VERSION}-${FILES}" >> bash-${VERSION}-branch_update-x.patch
104if [ -n "${SKIPPED}" ]; then
105        echo "             The following patches were skipped" >> bash-${VERSION}-branch_update-x.patch
106        echo "            ${SKIPPED}" >> bash-${VERSION}-branch_update-x.patch
107fi
108echo "" >> bash-${VERSION}-branch_update-x.patch
109diff -Naur bash-${VERSION}.orig bash-${VERSION} >> bash-${VERSION}-branch_update-x.patch
110echo "Created /usr/src/bash-${VERSION}-branch_update-x.patch."
111
Note: See TracBrowser for help on using the repository browser.