update denpendencies version
[tools/build.git] / build-pkg-rpm
1 #
2 # RPM specific functions.
3 #
4 ################################################################
5 #
6 # Copyright (c) 1995-2014 SUSE Linux Products GmbH
7 #
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License version 2 or 3 as
10 # published by the Free Software Foundation.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program (see the file COPYING); if not, write to the
19 # Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
21 #
22 ################################################################
23
24
25 pkg_initdb_rpm() {
26     echo "initializing rpm db..."
27     mkdir -p "$BUILD_ROOT"/var/lib/rpm
28     # rpm v5 does not have initdb
29     if ! test -e "$BUILD_ROOT"/usr/lib/rpm/cpuinfo.yaml ; then
30         if test -x "$BUILD_ROOT"/usr/bin/rpmdb ; then
31             chroot "$BUILD_ROOT" /usr/bin/rpmdb --initdb || cleanup_and_exit 1
32         else
33             chroot "$BUILD_ROOT" rpm --initdb || cleanup_and_exit 1
34         fi
35     fi
36     # hack: add nofsync to db config to speed up install
37     mkdir -p "$BUILD_ROOT"/root
38     DBI_OTHER=`chroot "$BUILD_ROOT" rpm --eval '%{?__dbi_other}'`
39     echo "%__dbi_other $DBI_OTHER nofsync" > "$BUILD_ROOT"/.rpmmacros
40     echo "%__dbi_other $DBI_OTHER nofsync" > "$BUILD_ROOT"/root/.rpmmacros
41 }
42
43 pkg_prepare_rpm() {
44     rpm_set_checkopts
45     rpm_init_cumulate
46 }
47
48 pkg_erase_rpm() {
49     chroot "$BUILD_ROOT" rpm --nodeps -e $PKG 2>&1 | {
50         local retry
51         while read line; do
52             case "$line" in
53                 r*failed:\ No\ such\ file\ or\ directory) ;;
54                 error:\ failed\ to\ stat\ *:\ No\ such\ file\ or\ directory) ;;
55                 error:\ *scriptlet\ failed*)
56                     echo "$line"
57                     retry=1
58                 ;;
59                 *) echo "$line" ;;
60             esac
61         done
62         if test -n "$retry" ; then
63             echo "re-try deleting $PKG using --noscripts"
64             chroot "$BUILD_ROOT" rpm --nodeps --noscripts -e $PKG || true
65         fi
66     }
67 }
68
69 rpm_set_checkopts() {
70     RPMCHECKOPTS=
71     # on Fedora 10 rpmbuild is in a separate package so we need something else to
72     # detect rpm4
73     test -x "$BUILD_ROOT"/usr/bin/rpmquery && RPMCHECKOPTS="--nodigest --nosignature"
74 }
75
76 rpm_init_cumulate() {
77     cumulate=-1
78     CUMULATED_LIST=()
79     CUMULATED_PIDS=()
80     CUMULATED_HMD5=()
81     DO_CUMULATE=
82     typeset -ri suse_version=$(chroot "$BUILD_ROOT" rpm --eval '%{?suse_version}' 2>/dev/null)
83     if ((suse_version > 1220)) ; then
84         DO_CUMULATE=true
85     fi
86 }
87
88 pkg_verify_installed_rpm() {
89     chroot "$BUILD_ROOT" rpm --verify $PKG 2>&1 | tee $TMPFILE
90     if grep ^missing $TMPFILE > /dev/null ; then
91         return 1
92     fi
93     return 0
94 }
95
96 pkg_cumulate_rpm() {
97     test "$DO_CUMULATE" = true || return 1
98     # work around for cross-build installs, we must not overwrite the running rpm
99     if test "$PKG" = rpm ; then
100         for i in "$BUILD_ROOT"/.init_b_cache/preinstalls/rpm-x86-* ; do
101             test -e "$i" && return 1
102         done
103     fi
104     let cumulate++
105     CUMULATED_LIST[$cumulate]=".init_b_cache/$PKG.rpm"
106     CUMULATED_PIDS[$cumulate]="$PKGID"
107     CUMULATED_HMD5[$cumulate]="$PKG_HDRMD5"
108     return 0
109 }
110
111 pkg_install_rpm() {
112     ( cd "$BUILD_ROOT" && chroot "$BUILD_ROOT" rpm --ignorearch --nodeps -U --oldpackage --ignoresize $RPMCHECKOPTS \
113                 $ADDITIONAL_PARAMS .init_b_cache/$PKG.rpm 2>&1 || \
114           touch "$BUILD_ROOT"/exit ) | \
115               grep -v "^warning:.*saved as.*rpmorig$"
116 }
117
118 pkg_finalize_rpm() {
119     if test -n "${CUMULATED_LIST[*]}" ; then
120         echo "now installing cumulated packages"
121         for ((num=0; num<=cumulate; num++)) ; do
122             echo ${CUMULATED_LIST[$num]}
123             PKG=${CUMULATED_LIST[$num]##*/}
124             test "$BUILD_ROOT/.init_b_cache/rpms/$PKG" -ef "$BUILD_ROOT/${CUMULATED_LIST[$num]}" && continue
125             rm -f "$BUILD_ROOT"/${CUMULATED_LIST[$num]}
126             cp "$BUILD_ROOT"/.init_b_cache/rpms/$PKG "$BUILD_ROOT"/${CUMULATED_LIST[$num]} || cleanup_and_exit 1
127         done > "$BUILD_ROOT"/.init_b_cache/manifest
128         ( cd "$BUILD_ROOT" && chroot "$BUILD_ROOT" rpm --ignorearch --nodeps -Uh --oldpackage --ignoresize --verbose $RPMCHECKOPTS \
129                 $ADDITIONAL_PARAMS .init_b_cache/manifest 2>&1 || touch "$BUILD_ROOT"/exit )
130         for ((num=0; num<=cumulate; num++)) ; do
131             rm -f "$BUILD_ROOT"/${CUMULATED_LIST[$num]}
132         done
133         rm -f "$BUILD_ROOT"/.init_b_cache/manifest
134         check_exit
135         for ((num=0; num<=cumulate; num++)) ; do
136             PKG=${CUMULATED_LIST[$num]##*/}
137             echo "${CUMULATED_PIDS[$num]}" > "$BUILD_ROOT"/installed-pkg/${PKG%.rpm}
138             test -n "${CUMULATED_HMD5[$num]}" || continue
139             echo "${CUMULATED_HMD5[$num]} ${CUMULATED_PIDS[$num]}" > "$BUILD_ROOT"/.preinstall_image/${PKG%.rpm}
140         done
141     fi
142 }
143
144 pkg_preinstall_rpm() {
145     PAYLOADDECOMPRESS=cat
146     case `rpm -qp --nodigest --nosignature --qf "%{PAYLOADCOMPRESSOR}\n" "'$BUILD_ROOT'/.init_b_cache/rpms/$PKG.rpm"` in
147         lzma) rpm --showrc | egrep 'PayloadIsLzma|_lzma' > /dev/null || PAYLOADDECOMPRESS="lzma -d" ;;
148         xz) rpm --showrc | egrep 'PayloadIsXz|_xz' > /dev/null || PAYLOADDECOMPRESS="xz -d" ;;
149     esac
150     if test "$PAYLOADDECOMPRESS" = "lzma -d" ; then
151         if ! lzma </dev/null >/dev/null 2>&1 ; then
152             test -f "$BUILD_DIR/lzmadec.sh" && PAYLOADDECOMPRESS="bash $BUILD_DIR/lzmadec.sh"
153         fi
154     fi
155     if test "$PAYLOADDECOMPRESS" = "xz -d" ; then
156         if ! xz </dev/null >/dev/null 2>&1 ; then
157             test -f "$BUILD_DIR/xzdec.sh" && PAYLOADDECOMPRESS="bash $BUILD_DIR/xzdec.sh"
158         fi
159     fi
160     if test "$PAYLOADDECOMPRESS" = cat ; then
161         rpm2cpio "$BUILD_ROOT/.init_b_cache/rpms/$PKG.rpm" | $CPIO
162     else
163         rpm2cpio "$BUILD_ROOT/.init_b_cache/rpms/$PKG.rpm" | $PAYLOADDECOMPRESS | $CPIO
164     fi
165     if test -e ".init_b_cache/scripts/$PKG.run" ; then
166         rpm -qp --nodigest --nosignature --qf "%{PREIN}" "'$BUILD_ROOT'/.init_b_cache/rpms/$PKG.rpm" > ".init_b_cache/scripts/$PKG.pre"
167         rpm -qp --nodigest --nosignature --qf "%{POSTIN}" "'$BUILD_ROOT'/.init_b_cache/rpms/$PKG.rpm" > ".init_b_cache/scripts/$PKG.post"
168         echo -n '(none)' > .init_b_cache/scripts/.none
169         cmp -s ".init_b_cache/scripts/$PKG.pre" .init_b_cache/scripts/.none && rm -f ".init_b_cache/scripts/$PKG.pre"
170         cmp -s ".init_b_cache/scripts/$PKG.post" .init_b_cache/scripts/.none && rm -f ".init_b_cache/scripts/$PKG.post"
171         rm -f .init_b_cache/scripts/.none
172     fi
173     # hack for rpm erasures
174     if test -d "$BUILD_ROOT/installed-pkg" ; then
175         # call for rpm-4.x and not rpm-devel
176         test -z "${PKG##rpm-[0-9]*}" && chroot "$BUILD_ROOT" rpm --rebuilddb
177         # also exec for exchanged rpm !  naming is rpm-x86-<target>-<ver>
178         test -z "${PKG##rpm-x86-*[0-9]*}" && chroot "$BUILD_ROOT" rpm --rebuilddb
179     fi
180 }
181
182 pkg_runscripts_rpm() {
183     if test -e "$BUILD_ROOT/.init_b_cache/scripts/$PKG.pre" ; then
184         echo "running $PKG preinstall script"
185         (cd "$BUILD_ROOT" && chroot "$BUILD_ROOT" sh ".init_b_cache/scripts/$PKG.pre" 0)
186         rm -f "$BUILD_ROOT/.init_b_cache/scripts/$PKG.pre"
187     fi
188     if test -e "$BUILD_ROOT/.init_b_cache/scripts/$PKG.post" ; then
189         echo "running $PKG postinstall script"
190         (cd "$BUILD_ROOT" && chroot "$BUILD_ROOT" sh ".init_b_cache/scripts/$PKG.post" 1)
191         rm -f "$BUILD_ROOT/.init_b_cache/scripts/$PKG.post"
192     fi
193 }