Whamcloud - gitweb
LU-3476 build: eliminate bad macros in lustre spec file
[fs/lustre-release.git] / contrib / lbuild / funcs.sh
1 cleanup() {
2
3     true
4 }
5
6 error() {
7     local msg="$1"
8
9     if [ -n "$msg" ]; then
10         echo -e "\n${0##*/}: $msg" >&$STDOUT
11     fi
12 }
13
14 fatal() {
15     cleanup
16     error "$2"
17     exit $1
18 }
19
20 #
21 # in a given directory, find the first rpm matching given requirements
22 #
23 find_rpm() {
24     local dir="$1"
25     local match_type="$2"
26     local match="$3"
27
28     pushd "$dir" > /dev/null || \
29         fatal 1 "Unable to chdir to directory \"$dir\" in find_rpm()"
30
31     local file
32     for file in $(ls *.rpm); do
33         if [ ! -f "$file" ]; then
34             continue
35         fi
36         case "$match_type" in
37             provides)
38                 # match is any valid ERE (i.e. given to egrep) match
39                 if rpm -q --provides -p "$file" 2>&$STDOUT | egrep "$match" >&$STDOUT; then
40                     echo "$file"
41                     popd >/dev/null
42                     return 0
43                 fi
44                 ;;
45             *)
46                 popd >/dev/null
47                 fatal 1 "Unknown match type \"$match_type\" given to find_rpm()"
48                 ;;
49         esac
50     done
51
52     popd >/dev/null
53     return 1
54 }
55
56 find_linux_rpms() {
57     local prefix="$1"
58     local pathtorpms=${2:-"${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}/${TARGET_ARCH}"}
59
60     local wanted_kernel="${lnxmaj}${lnxmin}-${lnxrel}"
61     local kernel_rpms=$(find_linux_rpm "$prefix" "$pathtorpms")
62     # call a distro specific hook, if available
63     if type -p find_linux_rpms-$DISTRO; then
64         local rpm
65         if rpm=$(find_linux_rpms-$DISTRO "$prefix" "$wanted_kernel" "$pathtorpms"); then
66             kernel_rpms="$kernel_rpms $rpm"
67         else
68             return 255
69         fi
70     fi
71
72     echo "$kernel_rpms"
73     return 0
74
75 }
76
77 # a noop function which can be overridden by a distro method implementation
78 resolve_arch() {
79     local arch="$1"
80
81     echo "$arch"
82 }
83
84 # XXX this needs to be re-written as a wrapper around find_rpm
85 #     or just gotten rid of.  :-)
86 find_linux_rpm() {
87     local prefix="$1"
88     local pathtorpms=${2:-"${KERNELRPMSBASE}/${lnxmaj}/${DISTRO}/${TARGET_ARCH}"}
89
90     local found_rpm=""
91     local wanted_kernel="${lnxmaj}${lnxmin}-${lnxrel}"
92     local ret=1
93     if [ -d "$pathtorpms" ]; then
94         local rpm
95         for rpm in $(ls ${pathtorpms}/*.$(resolve_arch $TARGET_ARCH $PATCHLESS).rpm); do
96             if rpm -q --provides -p "$rpm" 2>&$STDOUT | grep -q "kernel${prefix} = $wanted_kernel" 2>&$STDOUT; then
97                 found_rpm="$rpm"
98                 ret=0
99                 break
100             fi
101         done
102     else
103         mkdir -p "$pathtorpms"
104     fi
105     # see above "XXX"
106     #     [ -f "$found_rpm" ] && break
107     # done
108     if [ -z "$found_rpm" ]; then
109         # see if there is a distro specific way of getting the RPM
110         if type -p find_linux_rpm-$DISTRO; then
111             if found_rpm=$(find_linux_rpm-$DISTRO "$prefix" "$wanted_kernel" "$pathtorpms"); then
112                 found_rpm="${pathtorpms}/$found_rpm"
113                 ret=0
114             else
115                 ret=${PIPESTATUS[0]}
116             fi
117         fi
118     fi
119
120     echo "$found_rpm"
121     return $ret
122
123 }
124
125 # autodetect used Distro
126 autodetect_distro() {
127
128     local name
129     local version
130
131     if which lsb_release >/dev/null 2>&1; then
132         name="$(lsb_release -s -i)"
133         version="$(lsb_release -s -r)"
134         case "$name" in
135             "EnterpriseEnterpriseServer")
136                 name="oel"
137                 version="${version%%.*}"
138                 ;;
139             "RedHatEnterpriseServer" | "ScientificSL" | "CentOS")
140                 name="rhel"
141                 version="${version%%.*}"
142                 ;;
143             "SUSE LINUX")
144                 name="sles"
145                 ;;
146             "Fedora")
147                 name="fc"
148                 ;;
149             *)
150                 fatal 1 "I don't know what distro name $name and version $version is.\nEither update autodetect_distro() or use the --distro argument."
151                 ;;
152         esac
153     else
154         echo "You really ought to install lsb_release for accurate distro identification"
155         # try some heuristics
156         if [ -f /etc/SuSE-release ]; then
157             name=sles
158             version=$(grep ^VERSION /etc/SuSE-release)
159             version=${version#*= }
160         elif [ -f /etc/redhat-release ]; then
161             #name=$(head -1 /etc/redhat-release)
162             name=rhel
163             version=$(echo "$distroname" |
164                       sed -e 's/^[^0-9.]*//g' | sed -e 's/[ \.].*//')
165         fi
166         if [ -z "$name" -o -z "$version" ]; then
167             fatal 1 "I don't know how to determine distro type/version.\nEither update autodetect_distro() or use the --distro argument."
168         fi
169     fi
170
171     echo ${name}${version}
172     return 0
173
174 }
175
176 # autodetect target
177 autodetect_target() {
178     local distro="$1"
179
180     local target=""
181     case ${distro} in
182           oel5) target="2.6-oel5";;
183          rhel5) target="2.6-rhel5";;
184          rhel6) target="2.6-rhel6";;
185         sles10) target="2.6-sles10";;
186         sles11) target="$(uname -r | cut -d . -f 1,2)-sles11";;
187           fc15) target="2.6-fc15";;
188           fc18) target="3.x-fc18";;
189             *) fatal 1 "I don't know what distro $distro is.\nEither update autodetect_target() or use the --target argument.";;
190     esac
191
192     echo ${target}
193     return 0
194
195 }