1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#!/bin/sh
#
# patch.sh
#
# Copyright (C) 2007 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# Written by Shakthi Kannan <[email protected]>.
get_apply_patches() {
package_dir=$1 # $1 = package directory, ${GLIBC_DIR}
patch_level=$2 # $2 = patch-level, p0/p1;
patch_URL=$3 # $3 = patch directory/URL
patches_array=$4 # $4 = list (array) of patches; 0 for all patches
# TODO: do exception handling for above arguments?
echo $1
# create patch directory
mkdir -p ${package_dir}/${patch_level}
# starts with a . or /, means patches are in a directory
first_char=`expr "$patch_URL" : '\(.\)'`
# get patches
case $first_char in
.|/)if [ ! -z ${patches_array} ]; then # if 0, copy all patches
for file in `ls ${patch_URL}/`; do
cp ${patch_URL}/$file ${package_dir}/${patch_level}
done
fi ;;
*)# default, a URL
if [ ! -z ${patches_array} ]; then # if 0, copy all patches
wget -r -np -nd -P ${package_dir}/${patch_level} ${patch_URL}/*
else # copy listed patches only
index=0
while [ $index -lt ${#patches_array[@]} ]; do
wget -r -np -nd -P ${package_dir}/${patch_level} ${patch_URL}/${patches_array[index]}
let "index = $index + 1"
done
fi
esac
#apply patches
index=0
cd ${package_dir}
if [ ! -z ${patches_array} ]; then # if 0, all patches to be applied
for file in `ls ${patch_URL}/`; do
patch -${patch_level} -N < ${package_dir}/${patch_level}/${file}
done
else # only selected patches from array
while [ $index -lt ${#patches_array[@]} ]; do
patch -${patch_level} -N < ${package_dir}/${patch_level}/${patches_array[index]}
let "index = $index + 1"
done
fi
}
|