]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - builder.sh
Implement shallow copy of only one branch
[packages/rpm-build-tools.git] / builder.sh
CommitLineData
10d92f71 1#!/bin/ksh
44058243 2#
dece74ed
AM
3# This program is free software, distributed under the terms of
4# the GNU General Public License Version 2.
5#
cd445739 6# -----------
cd445739 7# Exit codes:
2a5f078d 8# 0 - succesful
9# 1 - help displayed
10# 2 - no spec file name in cmdl parameters
11# 3 - spec file not stored in repo
12# 4 - some source, patch or icon files not stored in repo
13# 5 - package build failed
14# 6 - spec file with errors
15# 7 - wrong source in /etc/poldek.conf
16# 8 - Failed installing buildrequirements and subrequirements
17# 9 - Requested tag already exist
18# 10 - Refused to build fractional release
19# 100 - Unknown error (should not happen)
67963237 20# 110 - Functions not yet implemented
cd445739 21
f8e50be5 22# Notes (todo/bugs):
f8e50be5
ER
23# - when Icon: field is present, -5 and -a5 doesn't work
24# - builder -R skips installing BR if spec is not present before builder invocation (need to run builder twice)
19aa2571 25# - does not respect NoSource: X, and tries to cvs up such files [ example: VirtualBox-bin.spec and its Source0 ]
f8e50be5
ER
26# TODO:
27# - ability to do ./builder -bb foo.spec foo2.spec foo3.spec
1ffcdaff
ER
28# - funny bug, if source-md5 is set then builder will download from distfiles even if there is no url present:
29# Source10: forwardfix.pl
30# # Source10-md5: 8bf85f7368933a4e0cb4f875bac28733
6ca6f876
ZU
31# - builder --help:
32# basename: missing operand
33# Try `basename --help' for more information.
34# -- and the normal usage info --
35
9d99a240
ER
36PROGRAM=${0##*/}
37APPDIR=$(d=$0; [ -L "$d" ] && d=$(readlink -f "$d"); dirname "$d")
cd112f74 38RCSID='$Id: builder,v 1.645 2011/02/13 17:54:10 glen Exp $' r=${RCSID#* * } rev=${r%% *}
b0f031e7 39VERSION="v0.35/$rev"
d43959a2 40VERSIONSTRING="\
b71f5024
ER
41Build package utility from PLD Linux Packages repository
42$VERSION (C) 1999-2011 Free Penguins".
d43959a2 43
d6a77ddb 44PATH="/bin:/usr/bin:/usr/sbin:/sbin:/usr/X11R6/bin"
b03f053b 45
b7cc0c94
ER
46# required rpm-build-macros
47RPM_MACROS_VER=1.534
48
cd445739 49COMMAND="build"
64ea5308 50TARGET=""
cd445739 51
bde1c404 52SPECFILE=""
d287305c 53BE_VERBOSE=""
4003ad8c 54QUIET=""
cd445739
AM
55CLEAN=""
56DEBUG=""
57NOURLS=""
cd445739
AM
58NOCVSSPEC=""
59NODIST=""
47761337 60NOINIT=""
bc10f694 61PREFMIRRORS=""
cd445739 62UPDATE=""
cd445739
AM
63ADD5=""
64NO5=""
65ALWAYS_CVSUP=${ALWAYS_CVSUP:-"yes"}
c8f50498 66CVSROOT=""
cd445739 67
6c1b2e7d
PZ
68# use rpm 4.4.6+ digest format instead of comments if non-zero
69USEDIGEST=
70
e3aa6f5e
ER
71# user agent when fetching files
72USER_AGENT="PLD/Builder($VERSION)"
73
cd445739
AM
74# It can be used i.e. in log file naming.
75# See LOGFILE example.
76DATE=`date +%Y-%m-%d_%H-%M-%S`
77
78# Example: LOGFILE='../log.$PACKAGE_NAME'
79# Example: LOGFILE='../LOGS/log.$PACKAGE_NAME.$DATE'
d280fd97 80# Example: LOGFILE='$PACKAGE_NAME/$PACKAGE_NAME.$DATE.log'
f5687002 81# Example: LOGFILE='$PACKAGE_NAME.$DATE.log'
cd445739
AM
82# Yes, you can use variable name! Note _single_ quotes!
83LOGFILE=''
84
85LOGDIR=""
86LOGDIROK=""
87LOGDIRFAIL=""
88LASTLOG_FILE=""
89
90CHMOD="no"
1da227e8 91CHMOD_MODE="0644"
cd445739 92RPMOPTS=""
d1c5a9a7 93RPMBUILDOPTS=""
cd445739
AM
94BCOND=""
95GROUP_BCONDS="no"
ccffa567
ER
96
97# create symlinks for tools in PACKAGE_DIR, see get_spec()
2dd0af86 98SYMLINK_TOOLS="no"
d287305c 99
100PATCHES=""
101SOURCES=""
cd445739 102ICONS=""
d287305c 103PACKAGE_RELEASE=""
104PACKAGE_VERSION=""
105PACKAGE_NAME=""
14bead22 106ASSUMED_NAME=""
fd71d65c 107PROTOCOL="http"
cd445739 108WGET_RETRIES=${MAX_WGET_RETRIES:-0}
cd445739 109
db5831da 110CVS_COMMAND=${CVS_COMMAND:-cvs}
939f2c12 111CVS_FORCE=""
f123bcb5 112CVSIGNORE_DF="yes"
939f2c12
ER
113CVS_RETRIES=${MAX_CVS_RETRIES:-1000}
114CVS_SERVER="cvs.pld-linux.org"
cd445739 115CVSTAG=""
6892acf6 116GIT_SERVER="git://github.com/draenog"
a8f917c2 117HEAD_DETACHED=""
3189511a 118DEPTH=""
939f2c12 119
cd445739
AM
120RES_FILE=""
121
cd445739 122DISTFILES_SERVER="://distfiles.pld-linux.org"
d4730dae 123ATTICDISTFILES_SERVER="://attic-distfiles.pld-linux.org"
cd445739 124
36d03934 125DEF_NICE_LEVEL=19
86aafdbe 126SCHEDTOOL="auto"
cd445739
AM
127
128FAIL_IF_NO_SOURCES="yes"
129
18e5347d
ER
130# let get_files skip over files which are present to get those damn files fetched
131SKIP_EXISTING_FILES="no"
132
975d7b23 133TRY_UPGRADE=""
257af81b
ER
134# should the specfile be restored if upgrade failed?
135REVERT_BROKEN_UPGRADE="yes"
136
90baf90b
ER
137if rpm --specsrpm 2>/dev/null; then
138 FETCH_BUILD_REQUIRES_RPMSPECSRPM="yes"
ce40491a 139 FETCH_BUILD_REQUIRES_RPMGETDEPS="no"
90baf90b
ER
140else
141 FETCH_BUILD_REQUIRES_RPMSPECSRPM="no"
142 if [ -x /usr/bin/rpm-getdeps ]; then
143 FETCH_BUILD_REQUIRES_RPMGETDEPS="yes"
144 else
145 FETCH_BUILD_REQUIRES_RPMGETDEPS="no"
146 fi
ab4a2b6e
ER
147fi
148
90baf90b 149
cd445739
AM
150# Here we load saved user environment used to
151# predefine options set above, or passed to builder
152# in command line.
153# This one reads global system environment settings:
154if [ -f ~/etc/builderrc ]; then
155 . ~/etc/builderrc
156fi
157# And this one cascades settings using user personal
158# builder settings.
159# Example of ~/.builderrc:
160#
161#UPDATE_POLDEK_INDEXES="yes"
162#FETCH_BUILD_REQUIRES="yes"
163#REMOVE_BUILD_REQUIRES="force"
164#GROUP_BCONDS="yes"
165#LOGFILE='../LOGS/log.$PACKAGE_NAME.$DATE'
982e358c 166#TITLECHANGE=no
cd445739 167#
a83e5405 168SU_SUDO=""
cd445739
AM
169if [ -n "$HOME_ETC" ]; then
170 USER_CFG="$HOME_ETC/.builderrc"
20117088 171 BUILDER_MACROS="$HOME_ETC/.builder-rpmmacros"
cd445739
AM
172else
173 USER_CFG=~/.builderrc
20117088 174 BUILDER_MACROS=~/.builder-rpmmacros
cd445739
AM
175fi
176
177[ -f "$USER_CFG" ] && . "$USER_CFG"
178
86aafdbe
ER
179if [ "$SCHEDTOOL" = "auto" ]; then
180 if [ -x /usr/bin/schedtool ] && schedtool -B -e echo >/dev/null; then
181 SCHEDTOOL="schedtool -B -e"
182 else
183 SCHEDTOOL="no"
184 fi
185fi
186
ca2e6c31 187if [ -n "$USE_PROZILLA" ]; then
7e365483
KK
188 GETURI="proz --no-getch -r -P ./ -t$WGET_RETRIES $PROZILLA_OPTS"
189 GETURI2="$GETURI"
190 OUTFILEOPT="-O"
ca2e6c31 191elif [ -n "$USE_AXEL" ]; then
cede92b3 192 GETURI="axel -a $AXEL_OPTS"
7e365483
KK
193 GETURI2="$GETURI"
194 OUTFILEOPT="-o"
ca2e6c31 195else
5700ee32
ER
196 wget --help 2>&1 | grep -q -- ' --no-check-certificate ' && WGET_OPTS="$WGET_OPTS --no-check-certificate"
197 wget --help 2>&1 | grep -q -- ' --inet ' && WGET_OPTS="$WGET_OPTS --inet"
198 wget --help 2>&1 | grep -q -- ' --retry-connrefused ' && WGET_OPTS="$WGET_OPTS --retry-connrefused"
e3aa6f5e 199 WGET_OPTS="$WGET_OPTS --user-agent=$USER_AGENT"
6f9a5d76 200
7e365483
KK
201 GETURI="wget --passive-ftp -c -nd -t$WGET_RETRIES $WGET_OPTS"
202 GETURI2="wget -c -nd -t$WGET_RETRIES $WGET_OPTS"
203 OUTFILEOPT="-O"
2bc5451f 204fi
11468b23 205
11468b23
AM
206GETLOCAL="cp -a"
207
208if (rpm --version 2>&1 | grep -q '4.0.[0-2]'); then
209 RPM="rpm"
210 RPMBUILD="rpm"
211else
212 RPM="rpm"
213 RPMBUILD="rpmbuild"
214fi
215
c86939e2 216#
217# sanity checks
218#
219if [ -d $HOME/rpm/SOURCES ]; then
220 echo "ERROR: ~/rpm/{SPECS,SOURCES} structure is obsolete" >&2
221 echo "ERROR: get rid of your ~/rpm/SOURCES" >&2
222 exit 1
223fi
224
a8c9a155 225POLDEK_INDEX_DIR="$($RPM --eval %_rpmdir)/"
a83e5405 226POLDEK_CMD="$SU_SUDO /usr/bin/poldek --noask"
11468b23 227
f6711e2a 228run_poldek() {
390d081d 229 RES_FILE=$(tempfile)
cd445739
AM
230 if [ -n "$LOGFILE" ]; then
231 LOG=`eval echo $LOGFILE`
232 if [ -n "$LASTLOG_FILE" ]; then
233 echo "LASTLOG=$LOG" > $LASTLOG_FILE
234 fi
86aafdbe 235 (${NICE_COMMAND} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE})|tee -a $LOG
cd445739
AM
236 return $exit_pldk
237 else
86aafdbe 238 (${NICE_COMMAND} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE}) 1>&2 >/dev/null
cd445739
AM
239 return `cat ${RES_FILE}`
240 rm -rf ${RES_FILE}
241 fi
242}
243
cd445739
AM
244#---------------------------------------------
245# functions
da946cd6 246
f6711e2a 247usage() {
cd445739
AM
248 if [ -n "$DEBUG" ]; then set -xv; fi
249 echo "\
db9fdf51 250Usage: builder [-D|--debug] [-V|--version] [--short-version] [--as_anon] [-a|--add_cvs] [-b|-ba|--build]
6594293d 251[-bb|--build-binary] [-bs|--build-source] [-bc] [-bi] [-bl] [-u|--try-upgrade]
3189511a 252[{-cf|--cvs-force}] [{-B|--branch} <branch>] [{-d|--cvsroot} <cvsroot>] [--depth <number>]
fd71d65c 253[-g|--get] [-h|--help] [--ftp] [--http] [{-l|--logtofile} <logfile>] [-m|--mr-proper]
19dc5591 254[-q|--quiet] [--date <yyyy-mm-dd> [-r <cvstag>] [{-T|--tag <cvstag>]
a7b2951c 255[-Tvs|--tag-version-stable] [-Ts|--tag-stable] [-Tv|--tag-version]
b3b584c5 256[{-Tp|--tag-prefix} <prefix>] [{-tt|--test-tag}]
6594293d 257[-nu|--no-urls] [-v|--verbose] [--opts <rpm opts>] [--short-circuit]
3009b80d 258[--show-bconds] [--with/--without <feature>] [--define <macro> <value>]
6594293d 259<package>[.spec][:cvstag]
2a5f078d 260
cd445739
AM
261-5, --update-md5 - update md5 comments in spec, implies -nd -ncs
262-a5, --add-md5 - add md5 comments to URL sources, implies -nc -nd -ncs
263-n5, --no-md5 - ignore md5 comments in spec
9243e80b
ER
264-D, --debug - enable builder script debugging mode,
265-debug - produce rpm debug package (same as --opts -debug)
d43959a2
ER
266-V, --version - output builder version string
267--short-version - output builder short version
db9fdf51
ER
268--as_anon - get files via pserver as cvs@$CVS_SERVER,
269-a, --add_cvs - try add new package to CVS.
cd445739
AM
270-b, -ba, --build - get all files from CVS repo or HTTP/FTP and build package
271 from <package>.spec,
272-bb, --build-binary - get all files from CVS repo or HTTP/FTP and build binary
273 only package from <package>.spec,
c56807e0 274-bp, --build-prep - execute the %prep phase of <package>.spec,
6594293d
AG
275-bc - execute the %build phase of <package>.spec,
276-bi - execute the %install phase of <package>.spec
277-bl - execute the %files phase of <package>.spec
cd445739
AM
278-bs, --build-source - get all files from CVS repo or HTTP/FTP and only pack
279 them into src.rpm,
6594293d 280--short-circuit - short-circuit build
cd445739 281-B, --branch - add branch
387eaf99
ER
282-c, --clean - clean all temporarily created files (in BUILD\$RPM_BUILD_ROOT) after rpmbuild commands.
283 may be used with building process.
6f10b394
ER
284-m, --mr-proper - clean all temporarily created files (in BUILD, SOURCES,
285 SPECS and \$RPM_BUILD_ROOT and CVS/Entries). Doesn't run
286 any rpm building.
39dcc7de 287-cf, --cvs-force - use -F when tagging (useful when moving branches)
2a5f078d 288-d <cvsroot>, --cvsroot <cvsroot>
cd445739
AM
289 - setup \$CVSROOT,
290--define <macro> <value>
291 - define a macro <macro> with value <value>,
3189511a
KK
292--depth <number>
293 - make shallow fetch
44058243
ER
294--alt_kernel <kernel>
295 - same as --define 'alt_kernel <kernel>'
cd445739
AM
296--nodeps - rpm won't check any dependences
297-g, --get - get <package>.spec and all related files from CVS repo
298 or HTTP/FTP,
299-h, --help - this message,
6c5362e5 300-jN, -j N - set %_smp_mflags to propagate concurrent jobs
fd71d65c 301--ftp, --http - use ftp or http protocol to access distfiles server
cd445739
AM
302-l <logfile>, --logtofile <logfile>
303 - log all to file,
cd445739
AM
304-ncs, --no-cvs-specs
305 - don't check specs in CVS
306-nd, --no-distfiles - don't download from distfiles
307-nm, --no-mirrors - don't download from mirror, if source URL is given,
308-nu, --no-urls - don't try to download from FTP/HTTP location,
7cbc2d88 309-ns, --no-srcs - don't download Sources/Patches
cd445739
AM
310-ns0, --no-source0 - don't download Source0
311-nn, --no-net - don't download anything from the net
a93e8cdf 312-pm, --prefer-mirrors - prefer mirrors (if any) over distfiles for SOURCES
b572253e 313--no-init - don't initialize builder paths (SPECS and SOURCES)
18e5347d
ER
314-ske,
315--skip-existing-files - skip existing files in get_files
cd445739
AM
316--opts <rpm opts> - additional options for rpm
317-q, --quiet - be quiet,
318--date yyyy-mm-dd - build package using resources from specified CVS date,
319-r <cvstag>, --cvstag <cvstag>
320 - build package using resources from specified CVS tag,
5323fffd 321-A - build package using CVS resources as any sticky tags/date/kopts being reset.
cd445739
AM
322-R, --fetch-build-requires
323 - fetch what is BuildRequired,
324-RB, --remove-build-requires
325 - remove all you fetched with -R or --fetch-build-requires
326 remember, this option requires confirmation,
327-FRB, --force-remove-build-requires
328 - remove all you fetched with -R or --fetch-build-requires
329 remember, this option works without confirmation,
06541433
JR
330-sd, --source-distfiles - list sources available from distfiles (intended for offline
331 operations; does not work when Icon field is present
332 but icon file is absent),
e15852ab 333-sc, --source-cvs - list sources available from CVS
06541433
JR
334-sdp, --source-distfiles-paths - list sources available from distfiles -
335 paths relative to distfiles directory (intended for offline
336 operations; does not work when Icon field is present
337 but icon file is absent),
a7eefc54 338-sf, --source-files - list sources - bare filenames (intended for offline
339 operations; does not work when Icon field is present
3621e588 340 but icon file is absent),
8bd5e66d 341-lsp, --source-paths - list sources - filenames with full local paths (intended for
a7eefc54 342 offline operations; does not work when Icon field is present
3621e588 343 but icon file is absent),
2dddf439
ER
344-su, --source-urls - list urls - urls to sources and patches
345 intended for copying urls with spec with lots of macros in urls
cd445739
AM
346-T <cvstag> , --tag <cvstag>
347 - add cvs tag <cvstag> for files,
348-Tvs, --tag-version-stable
094bd95b 349 - add cvs tags STABLE and NAME-VERSION-RELEASE for files,
cd445739
AM
350-Ts, --tag-stable
351 - add cvs tag STABLE for files,
cd445739 352-Tv, --tag-version
1691a37b 353 - add cvs tag NAME-VERSION-RELEASE for files,
cd445739
AM
354-Tp, --tag-prefix <prefix>
355 - add <prefix> to NAME-VERSION-RELEASE tags,
356-tt, --test-tag <prefix>
357 - fail if tag is already present,
50321881
JK
358-ir, --integer-release-only
359 - allow only integer and snapshot releases
cd445739
AM
360-v, --verbose - be verbose,
361-u, --try-upgrade - check version, and try to upgrade package
362-un, --try-upgrade-with-float-version
363 - as above, but allow float version
0907f1eb
ER
364 php-pear-Services_Digg/
365--upgrade-version - upgrade to specified version in try-upgrade
deccc50e 366-U, --update - refetch sources, don't use distfiles, and update md5 comments
cd445739
AM
367-Upi, --update-poldek-indexes
368 - refresh or make poldek package index files.
8bd5e66d
ER
369-sp, --skip-patch <patchnumber>
370 - don't apply <patchnumber>. may be repeated.
c890b916 371-np, --nopatch <patchnumber>
8bd5e66d 372 - abort instead of applying patch <patchnumber>
dfe2cb9a
MK
373--show-bconds - show available conditional builds, which can be used
374 - with --with and/or --without switches.
9b78be50
ER
375--show-bcond-args - show active bconds, from ~/.bcondrc. this is used by
376 ./repackage.sh script. in other words, the output is
377 parseable by scripts.
24a97174 378--show-avail-bconds - show available bconds
cd445739
AM
379--with/--without <feature>
380 - conditional build package depending on %_with_<feature>/
381 %_without_<feature> macro switch. You may now use
382 --with feat1 feat2 feat3 --without feat4 feat5 --with feat6
383 constructions. Set GROUP_BCONDS to yes to make use of it.
6dd19291 384--target <platform>, --target=<platform>
3621e588
ER
385 - build for platform <platform>.
386--init-rpm-dir - initialize ~/rpm directory structure
5a491465 387"
388}
389
390d081d
ER
390# create tempfile. as secure as possible
391tempfile() {
392 mktemp -t builder.XXXXXX || ${TMPDIR:-/tmp}/builder.$RANDOM.$$
393}
394
31d2bd0b
ER
395# change dependency to specname
396# common changes:
397# - perl(Package::Name) -> perl-Package-Name
398depspecname() {
399 local package="$1"
400
560c4b1a 401 package=$(echo "$package" | sed -e '/perl(.*)/{s,perl(\(.*\)),perl-\1,;s,::,-,g};' -e 's/-\(devel\|static\)$//' )
31d2bd0b
ER
402 echo "$package"
403}
404
c890b916 405update_shell_title() {
a0d6396b 406 [ -t 1 ] || return
0b65d15e 407 local len=${COLUMNS:-80}
5c795f16 408 local msg="$(echo "$*" | cut -c-$len)"
0b65d15e 409
e225de91
ER
410 if [ -n "$BE_VERBOSE" ]; then
411 echo >&2 "$(date +%s.%N) $*"
412 fi
413
5c795f16 414 if [ "x$TITLECHANGE" = "xyes" -o "x$TITLECHANGE" = "x" ]; then
138bbc98
ER
415 local pkg
416 if [ -n "$PACKAGE_NAME" ]; then
417 pkg=${PACKAGE_NAME}-${PACKAGE_VERSION}-${PACKAGE_RELEASE}
418 else
419 pkg=${SPECFILE}
420 fi
421
422 msg="$pkg: ${SHELL_TITLE_PREFIX:+$SHELL_TITLE_PREFIX }$msg"
a8c9a155 423 msg=$(echo $msg | tr -d '\n\r')
982e358c
MP
424 case "$TERM" in
425 cygwin|xterm*)
426 echo >&2 -ne "\033]1;$msg\007\033]2;$msg\007"
427 ;;
428 screen*)
429 echo >&2 -ne "\033]0;$msg\007"
430 ;;
431 esac
432 fi
c890b916
ER
433}
434
7e40520f
ER
435# set TARGET from BuildArch: from SPECFILE
436set_spec_target() {
ce40491a 437 if [ -n "$SPECFILE" ] && [ -z "$TARGET" ]; then
b45a3b2a 438 tmp=$(awk '/^BuildArch:/ { print $NF; exit }' $ASSUMED_NAME/$SPECFILE)
ce40491a 439 if [ "$tmp" ]; then
f9109a96 440 target_platform=$(rpm -E '%{_target_vendor}-%{_target_os}%{?_gnu}')
7e40520f
ER
441 TARGET="$tmp"
442 case "$RPMBUILD" in
443 "rpmbuild")
f9109a96 444 TARGET_SWITCH="--target ${TARGET}-${target_platform}" ;;
7e40520f 445 "rpm")
ce40491a 446 TARGET_SWITCH="--target=$TARGET" ;;
7e40520f 447 esac
ce40491a
ER
448 fi
449 fi
7e40520f
ER
450}
451
ace3fd80
ER
452# runs rpm with minimal macroset
453minirpm() {
fa4bf1df 454 # we reset macros not to contain macros.build as all the %() macros are
559d511f 455 # executed here, while none of them are actually needed.
559d511f 456 # at the time of this writing macros.build + macros contained 70 "%(...)" macros.
525bf240 457 safe_macrofiles=$(rpm $TARGET_SWITCH --showrc | awk -F: '/^macrofiles/ { gsub(/^macrofiles[ \t]+:/, "", $0); gsub(/:.*macros.build:/, ":", $0); print $0 } ')
ace3fd80
ER
458
459 # TODO: move these to /usr/lib/rpm/macros
20117088 460 cat > $BUILDER_MACROS <<'EOF'
5b5e5f7f 461%x8664 x86_64 amd64 ia32e
f78a0bb7 462%alt_kernel %{nil}
463%_alt_kernel %{nil}
5ff15c97 464%bootstrap_release() %{1}
407b204b
ER
465%requires_releq_kernel_up(s:n:) %{nil}
466%requires_releq_kernel_smp(s:n:) %{nil}
467%requires_releq_kernel(s:n:) %{nil}
6b8134e3 468%requires_releq() %{nil}
bb01dee9 469%pyrequires_eq() %{nil}
559d511f 470%requires_eq() %{nil}
c13be3d1 471%requires_eq_to() %{nil}
99c05e13 472%requires_ge() %{nil}
500b0eb8
ER
473%requires_ge_to() %{nil}
474%requires_ge() %{nil}
407b204b
ER
475%releq_kernel_up(n:) ERROR
476%releq_kernel_smp(n:) ERROR
477%releq_kernel(n:) ERROR
74d9fd14 478%kgcc_package ERROR
237bd3f1 479%_fontsdir ERROR
7141278d 480%ruby_version ERROR
481%ruby_ver_requires_eq() %{nil}
482%ruby_mod_ver_requires_eq() %{nil}
c13be3d1 483%__php_api_requires() %{nil}
7141278d 484%php_major_version ERROR
485%php_api_version ERROR
99f819cf
AM
486%requires_xorg_xserver_extension %{nil}
487%requires_xorg_xserver_xinput %{nil}
488%requires_xorg_xserver_font %{nil}
489%requires_xorg_xserver_videodrv %{nil}
7141278d 490%py_ver ERROR
41035426
ER
491%perl_vendorarch ERROR
492%perl_vendorlib ERROR
703ae20b
ER
493# damn. need it here! - copied from /usr/lib/rpm/macros.build
494%tmpdir %(echo "${TMPDIR:-/tmp}")
1f28fcb7
ER
495%patchset_source(f:b:) %(
496 base=%{-b*}%{!-b*:10000};
497 start=$(expr $base + %1);
498 end=$(expr $base + %{?2}%{!?2:%{1}});
499 # we need to call seq twice as it doesn't allow two formats
500 seq -f 'Patch%g:' $start $end > %{tmpdir}/__ps1;
501 seq -f '%{-f*}' %1 %{?2}%{!?2:%{1}} > %{tmpdir}/__ps2;
502 paste %{tmpdir}/__ps{1,2};
503 rm -f %{tmpdir}/__ps{1,2};
504) \
505%{nil}
991f09a5
ER
506%add_etc_shells(p) %{p:<lua>}
507%remove_etc_shells(p) %{p:<lua>}
709995c4
ER
508%lua_add_etc_shells() %{nil}
509%lua_remove_etc_shells() %{nil}
0ca65fa4
JK
510%required_jdk %{nil}
511%buildrequires_jdk %{nil}
f9063abe 512%pear_package_print_optionalpackages %{nil}
fb198857 513EOF
3d12d055 514 if [ "$NOINIT" = "yes" ] ; then
20117088 515 cat >> $BUILDER_MACROS <<'EOF'
3d12d055
JR
516%_specdir ./
517%_sourcedir ./
518EOF
c039643c 519 fi
fff1b991 520 eval $RPMBUILD $TARGET_SWITCH --macros "$safe_macrofiles:$BUILDER_MACROS" $QUIET $RPMOPTS $RPMBUILDOPTS $BCOND $* 2>&1
ace3fd80
ER
521}
522
523cache_rpm_dump() {
524 if [ -n "$DEBUG" ]; then
525 set -x
526 set -v
527 fi
528
d1d24c14 529 if [ -x /usr/bin/rpm-specdump ]; then
525bf240 530 update_shell_title "cache_rpm_dump using rpm-specdump command"
fff1b991 531 rpm_dump_cache=$(rpm-specdump $TARGET_SWITCH $BCOND $SPECFILE)
d1d24c14 532 else
525bf240 533 update_shell_title "cache_rpm_dump using rpmbuild command"
d1d24c14
ER
534 local rpm_dump
535 rpm_dump=`
536 # what we need from dump is NAME, VERSION, RELEASE and PATCHES/SOURCES.
537 dump='%{echo:dummy: PACKAGE_NAME %{name} }%dump'
538 case "$RPMBUILD" in
539 rpm)
540 ARGS='-bp'
541 ;;
542 rpmbuild)
543 ARGS='--nodigest --nosignature --nobuild'
544 ;;
545 esac
546 minirpm $ARGS --define "'prep $dump'" --nodeps $SPECFILE
547 `
548 if [ $? -gt 0 ]; then
549 error=$(echo "$rpm_dump" | sed -ne '/^error:/,$p')
550 echo "$error" >&2
551 Exit_error err_build_fail
552 fi
d05e8080 553
d1d24c14
ER
554 # make small dump cache
555 rpm_dump_cache=`echo "$rpm_dump" | awk '
556 $2 ~ /^SOURCEURL/ {print}
557 $2 ~ /^PATCHURL/ {print}
558 $2 ~ /^nosource/ {print}
559 $2 ~ /^PACKAGE_/ {print}
560 '`
561 fi
d05e8080 562
13974367 563 update_shell_title "cache_rpm_dump: OK!"
cd445739
AM
564}
565
ace3fd80 566rpm_dump() {
cd445739 567 if [ -z "$rpm_dump_cache" ] ; then
45e2a818 568 echo >&2 "internal error: cache_rpm_dump not called! (missing %prep?)"
cd445739
AM
569 fi
570 echo "$rpm_dump_cache"
571}
572
f6711e2a 573get_icons() {
d05e8080 574 update_shell_title "get icons"
9d99a240 575 ICONS=$(awk '/^Icon:/ {print $2}' $PACKAGE_DIR/${SPECFILE})
d05e8080
ER
576 if [ -z "$ICONS" ]; then
577 return
578 fi
579
975d7b23 580 rpm_dump_cache="kalasaba" NODIST="yes" get_files $ICONS
d05e8080
ER
581}
582
f6711e2a 583parse_spec() {
af4d5315 584 update_shell_title "parsing specfile"
cd445739 585 if [ -n "$DEBUG" ]; then
518ff1fb
ER
586 set -x
587 set -v
cd445739 588 fi
b2975fc3 589
d05e8080 590 # icons are needed for successful spec parse
518ff1fb 591 get_icons
d05e8080 592
9c909460 593 cd $PACKAGE_DIR
cd445739 594 cache_rpm_dump
00fcec7e 595
cd445739
AM
596 if (rpm_dump | grep -qEi ":.*nosource.*1"); then
597 FAIL_IF_NO_SOURCES="no"
598 fi
599
7cbc2d88
ER
600 if [ "$NOSRCS" != "yes" ]; then
601 SOURCES=$(rpm_dump | awk '$2 ~ /^SOURCEURL[0-9]+/ {print substr($2, length("SOURCEURL") + 1), $3}' | LC_ALL=C sort -n | awk '{print $2}')
602 PATCHES=$(rpm_dump | awk '$2 ~ /^PATCHURL[0-9]+/ {print substr($2, length("PATCHURL") + 1), $3}' | LC_ALL=C sort -n | awk '{print $2}')
603 ICONS=$(awk '/^Icon:/ {print $2}' ${SPECFILE})
604 fi
605
dfe2b2d9
ER
606 PACKAGE_NAME=$(rpm_dump | awk '$2 == "PACKAGE_NAME" { print $3; exit}')
607 PACKAGE_VERSION=$(rpm_dump | awk '$2 == "PACKAGE_VERSION" { print $3; exit}')
608 PACKAGE_RELEASE=$(rpm_dump | awk '$2 == "PACKAGE_RELEASE" { print $3; exit}')
78eab2a1 609
0b4119a2 610 if [ "$PACKAGE_NAME" != "$ASSUMED_NAME" ]; then
7854d40c 611 echo >&2 "WARNING! Spec name ($ASSUMED_NAME) does not agree with package name ($PACKAGE_NAME)"
0b4119a2
JR
612 fi
613
cd445739
AM
614 if [ -n "$BE_VERBOSE" ]; then
615 echo "- Sources : `nourl $SOURCES`"
616 if [ -n "$PATCHES" ]; then
617 echo "- Patches : `nourl $PATCHES`"
618 else
619 echo "- Patches : *no patches needed*"
620 fi
621 if [ -n "$ICONS" ]; then
622 echo "- Icon : `nourl $ICONS`"
623 else
624 echo "- Icon : *no package icon*"
625 fi
626 echo "- Name : $PACKAGE_NAME"
627 echo "- Version : $PACKAGE_VERSION"
628 echo "- Release : $PACKAGE_RELEASE"
629 fi
13974367
ER
630
631 update_shell_title "parse_spec: OK!"
cd445739
AM
632}
633
f6711e2a 634Exit_error() {
cd445739 635 if [ -n "$DEBUG" ]; then
518ff1fb
ER
636 set -x
637 set -v
cd445739
AM
638 fi
639
640 cd "$__PWD"
641
642 case "$1" in
643 "err_no_spec_in_cmdl" )
644 remove_build_requires
45e2a818 645 echo >&2 "ERROR: spec file name not specified."
cd445739 646 exit 2 ;;
a08d92fc 647 "err_invalid_cmdline" )
45e2a818 648 echo >&2 "ERROR: invalid command line arg ($2)."
a08d92fc 649 exit 2 ;;
cd445739
AM
650 "err_no_spec_in_repo" )
651 remove_build_requires
45e2a818 652 echo >&2 "Error: spec file not stored in CVS repo."
cd445739
AM
653 exit 3 ;;
654 "err_no_source_in_repo" )
655 remove_build_requires
45e2a818 656 echo >&2 "Error: some source, patch or icon files not stored in CVS repo. ($2)"
cd445739 657 exit 4 ;;
703b6deb
ER
658 "err_cvs_add_failed" )
659 echo >&2 "Error: failed to add package to CVS repo."
660 exit 4 ;;
cd445739
AM
661 "err_build_fail" )
662 remove_build_requires
45e2a818 663 echo >&2 "Error: package build failed. (${2:-no more info})"
cd445739 664 exit 5 ;;
78eab2a1
AM
665 "err_no_package_data" )
666 remove_build_requires
45e2a818 667 echo >&2 "Error: couldn't get out package name/version/release from spec file."
78eab2a1 668 exit 6 ;;
ce40491a 669 "err_tag_exists" )
50321881 670 remove_build_requires
45e2a818 671 echo >&2 "Tag ${2} already exists (spec release: ${3})."
50321881 672 exit 9 ;;
ce40491a 673 "err_fract_rel" )
50321881 674 remove_build_requires
45e2a818 675 echo >&2 "Release ${2} not integer and not a snapshot."
50321881 676 exit 10 ;;
fb96e0b5
AM
677 "err_branch_exists" )
678 remove_build_requires
45e2a818 679 echo >&2 "Tree branch already exists (${2})."
fb96e0b5 680 exit 11 ;;
cfc497c0
ER
681 "err_acl_deny" )
682 remove_build_requires
45e2a818 683 echo >&2 "Error: conditions reject building this spec (${2})."
cfc497c0 684 exit 12 ;;
67963237 685 "err_not_implemented" )
779fcca4 686 remove_build_requires
67963237
KK
687 echo >&2 "Error: functionality not yet imlemented"
688 exit 110 ;;
cd445739 689 esac
45e2a818 690 echo >&2 "Unknown error."
73848362 691 exit 100
cd445739
AM
692}
693
f6711e2a 694init_builder() {
cd445739 695 if [ -n "$DEBUG" ]; then
518ff1fb
ER
696 set -x
697 set -v
0dd6320d 698 fi
cd445739 699
4aeb9973 700 if [ "$NOINIT" != "yes" ] ; then
9c909460 701 TOP_DIR=$(eval $RPM $RPMOPTS --eval '%{_topdir}')
b7cc0c94 702
09bf17c9 703 local macros_ver=$(rpm -E %?rpm_build_macros)
b7cc0c94
ER
704 if [ -z "$macros_ver" ]; then
705 REPO_DIR=$TOP_DIR/packages
706 PACKAGE_DIR=$TOP_DIR/packages/$ASSUMED_NAME
707 else
708 if awk "BEGIN{exit($macros_ver>=$RPM_MACROS_VER)}"; then
709 echo >&2 "builder requires rpm-build-macros >= $RPM_MACROS_VER"
710 exit 1
711 fi
712 REPO_DIR=$TOP_DIR
713 PACKAGE_DIR=$REPO_DIR/$ASSUMED_NAME
714 fi
29e90b02 715 else
9c909460
AM
716 REPO_DIR="."
717 PACKAGE_DIR="."
29e90b02 718 fi
52f3ced3
KK
719 export GIT_WORK_TREE=$PACKAGE_DIR
720 export GIT_DIR=$PACKAGE_DIR/.git
cd445739 721
a8c9a155 722 __PWD=$(pwd)
00fcec7e 723}
724
f6711e2a 725get_spec() {
c890b916 726
2e5be021 727 update_shell_title "get_spec"
c890b916 728
cd445739 729 if [ -n "$DEBUG" ]; then
518ff1fb
ER
730 set -x
731 set -v
cd445739
AM
732 fi
733
9c909460
AM
734 cd "$REPO_DIR"
735 if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
6277f15f
ER
736 # XXX: still needed?
737 SPECFILE=$(basename $SPECFILE)
cd445739 738 fi
cd445739 739
1ef6f5de 740 if [ "$NOCVSSPEC" != "yes" ]; then
3189511a
KK
741 if [ -z "$DEPTH" ]; then
742 if [ -d "$ASSUMED_NAME/.git" ]; then
743 git fetch origin || Exit_error err_no_spec_in_repo
744 elif [ "$ADD_PACKAGE_CVS" = "yes" ]; then
745 if [ ! -r "$ASSUMED_NAME/$SPECFILE" ]; then
746 echo "ERROR: No package to add ($ASSUMED_NAME/$SPECFILE)" >&2
747 exit 101
748 fi
749 Exit_error err_not_implemented
750 else
751 (
752 unset GIT_WORK_TREE
753 git clone ${GIT_SERVER}/${ASSUMED_NAME}.git || {
754 # softfail if new package, i.e not yet added to cvs
755 [ ! -f "$ASSUMED_NAME/$SPECFILE" ] && Exit_error err_no_spec_in_repo
756 echo "Warning: package not in CVS - assuming new package"
757 NOCVSSPEC="yes"
758 }
759 )
703b6deb 760 fi
9c909460 761 else
3189511a
KK
762 if [ ! -d "$ASSUMED_NAME/.git" ]; then
763 if [ ! -d "$ASSUMED_NAME" ]; then
764 mkdir $ASSUMED_NAME
765 fi
766 git init
767 git remote add origin ${GIT_SERVER}/${ASSUMED_NAME}.git
768 fi
769 git fetch "$DEPTH" origin ${CVSTAG}:remotes/origin/${CVSTAG} || {
770 echo >&2 "Error: branch $CVSTAG does not exist"
771 exit 3
772 }
703b6deb 773 fi
0c3beb90 774
0d494abd 775 cvsignore_df .gitignore
703b6deb
ER
776
777 # add default log format to .cvsignore if it is relative to package dir
778 if [ -n "$LOGFILE" -a "$LOGFILE" = "${LOGFILE##*/}" ]; then
779 # substitute known "macros" to glob
780 local logfile=$(echo "$LOGFILE" | sed -e 's,\$\(PACKAGE_NAME\|DATE\),*,g')
781 if [ "$logfile" ]; then
782 cvsignore_df "$logfile"
daeab113 783 fi
9c909460 784 fi
703b6deb
ER
785
786 # create symlinks for tools
787 if [ "$SYMLINK_TOOLS" != "no" ]; then
788 for a in dropin md5 adapter builder {relup,compile,repackage,rsync,pearize}.sh pldnotify.awk; do
789 [ -f $a ] || continue
790 ln -sf ../$a $ASSUMED_NAME
791 cvsignore_df $a
792 done
793 fi
cd445739 794 fi
049ab214 795
b0121b45 796 if [ -n "$CVSTAG" ]; then
6cfb5e59 797 git checkout "$CVSTAG" -- 2>/dev/null || git checkout -t "origin/$CVSTAG" > /dev/null || exit
52f3ced3
KK
798 git symbolic-ref -q HEAD > /dev/null &&
799 git merge '@{u}'
52020f4c 800 if [ -n "$CVSDATE" ]; then
c4c0f339
KK
801 git checkout $(git rev-list -n1 --before="'$CVSDATE'" $CVSTAG) || exit 1
802 fi
b0121b45
KK
803 fi
804
9c909460 805 if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
518ff1fb 806 Exit_error err_no_spec_in_repo
cd445739
AM
807 fi
808
809 if [ "$CHMOD" = "yes" -a -n "$SPECFILE" ]; then
9c909460 810 chmod $CHMOD_MODE $ASSUMED_NAME/$SPECFILE
cd445739
AM
811 fi
812 unset OPTIONS
9c909460 813 [ -n "$DONT_PRINT_REVISION" ] || grep -E -m 1 "^#.*Revision:.*Date" $ASSUMED_NAME/$SPECFILE
7e40520f 814
ce40491a 815 set_spec_target
cd445739
AM
816}
817
f6711e2a 818find_mirror() {
9c909460 819 cd "$REPO_DIR"
782518da 820 local url="$1"
cd445739 821 if [ ! -f "mirrors" -a "$NOCVSSPEC" != "yes" ] ; then
939f2c12 822 $CVS_COMMAND update mirrors >&2
cd445739
AM
823 fi
824
825 IFS="|"
782518da
ER
826 local origin mirror name rest ol prefix
827 while read origin mirror name rest; do
828 # skip comments and empty lines
2faa4c32 829 if [ -z "$origin" ] || [ "${origin#\#}" != "$origin" ]; then
782518da
ER
830 continue
831 fi
a8c9a155
ER
832 ol=$(echo -n "$origin" | wc -c)
833 prefix=$(echo -n "$url" | head -c $ol)
cd445739 834 if [ "$prefix" = "$origin" ] ; then
a8c9a155 835 suffix=$(echo "$url" | cut -b $((ol+1))-)
cd445739
AM
836 echo -n "$mirror$suffix"
837 return 0
838 fi
839 done < mirrors
840 echo "$url"
841}
842
e7e0d4ec 843# Warning: unpredictable results if same URL used twice
f6711e2a 844src_no() {
9c909460 845 cd $PACKAGE_DIR
cd445739
AM
846 rpm_dump | \
847 grep "SOURCEURL[0-9]*[ ]*$1""[ ]*$" | \
848 sed -e 's/.*SOURCEURL\([0-9][0-9]*\).*/\1/' | \
849 head -n 1 | xargs
1471f6d6 850}
851
f6711e2a 852src_md5() {
e7e0d4ec 853 [ "$NO5" = "yes" ] && return
cd445739
AM
854 no=$(src_no "$1")
855 [ -z "$no" ] && return
9c909460 856 cd $PACKAGE_DIR
e7e0d4ec
ER
857 local md5
858
859 if [ -f additional-md5sums ]; then
e7e0d4ec 860 md5=$(grep -s -v '^#' additional-md5sums | \
9413a514 861 grep -E "[ ]$(basename "$1")([ ,]|\$)" | \
e7e0d4ec
ER
862 sed -e 's/^\([0-9a-f]\{32\}\).*/\1/' | \
863 grep -E '^[0-9a-f]{32}$')
864
865 if [ "$md5" ]; then
866 if [ $(echo "$md5" | wc -l) != 1 ] ; then
867 echo "$SPECFILE: more then one entry in additional-md5sums for $1" 1>&2
868 fi
869 echo "$md5" | tail -n 1
870 return
871 fi
cd445739 872 fi
e7e0d4ec 873
657d488b 874 source_md5=`grep -i "^#[ ]*Source$no-md5[ ]*:" $SPECFILE | sed -e 's/.*://'`
e7e0d4ec
ER
875 if [ -n "$source_md5" ]; then
876 echo $source_md5
cd445739 877 else
7805dcb4
PZ
878 source_md5=`grep -i "BuildRequires:[ ]*digest(%SOURCE$no)[ ]*=" $SPECFILE | sed -e 's/.*=//'`
879 if [ -n "$source_md5" ]; then
880 echo $source_md5
881 else
882 # we have empty SourceX-md5, but it is still possible
883 # that we have NoSourceX-md5 AND NoSource: X
657d488b 884 nosource_md5=`grep -i "^#[ ]*NoSource$no-md5[ ]*:" $SPECFILE | sed -e 's/.*://'`
7805dcb4
PZ
885 if [ -n "$nosource_md5" -a -n "`grep -i "^NoSource:[ ]*$no$" $SPECFILE`" ] ; then
886 echo $nosource_md5
887 fi
cd445739 888 fi
cd445739
AM
889 fi
890}
891
f6711e2a 892distfiles_path() {
06541433
JR
893 echo "by-md5/$(src_md5 "$1" | sed -e 's|^\(.\)\(.\)|\1/\2/&|')/$(basename "$1")"
894}
895
f6711e2a 896distfiles_url() {
06541433 897 echo "$PROTOCOL$DISTFILES_SERVER/distfiles/$(distfiles_path "$1")"
cd445739
AM
898}
899
f6711e2a 900distfiles_attic_url() {
06541433 901 echo "$PROTOCOL$ATTICDISTFILES_SERVER/distfiles/Attic/$(distfiles_path "$1")"
cd445739
AM
902}
903
f6711e2a 904good_md5() {
cd445739
AM
905 md5=$(src_md5 "$1")
906 [ "$md5" = "" ] || \
907 [ "$md5" = "$(md5sum $(nourl "$1") 2> /dev/null | sed -e 's/ .*//')" ]
8ba5cdda
PG
908}
909
f6711e2a 910good_size() {
a8c9a155 911 size=$(find $(nourl "$1") -printf "%s" 2>/dev/null)
ce40491a 912 [ -n "$size" -a "$size" -gt 0 ]
a4b50627
AF
913}
914
f6711e2a 915cvsignore_df() {
947025e5 916 if [ "$CVSIGNORE_DF" != "yes" ]; then
917 return
918 fi
0d494abd 919 cvsignore=${PACKAGE_DIR}/.gitignore
7dc8d095
ER
920
921 # add only if not yet there
aa189b05 922 if ! awk -vf="$1" -vc=1 '$0 == f { c = 0 } END { exit c }' $cvsignore 2>/dev/null; then
947025e5 923 echo "$1" >> $cvsignore
924 fi
925}
926
71f8e908 927# returns true if "$1" is ftp, http or https protocol url
f6711e2a 928is_url() {
71f8e908
ER
929 case "$1" in
930 ftp://*|http://*|https://*)
931 return 0
932 ;;
933 esac
934 return 1
935}
936
f6711e2a 937update_md5() {
ecba6ad5
ER
938 if [ $# -eq 0 ]; then
939 return
940 fi
941
942 update_shell_title "update md5"
943 if [ -n "$DEBUG" ]; then
518ff1fb
ER
944 set -x
945 set -v
ecba6ad5
ER
946 fi
947
9c909460 948 cd "$PACKAGE_DIR"
ecba6ad5
ER
949
950 # pass 1: check files to be fetched
951 local todo
952 local need_files
953 for i in "$@"; do
954 local fp=$(nourl "$i")
955 local srcno=$(src_no "$i")
6392b5fd
ER
956 if [ -n "$ADD5" ]; then
957 [ "$fp" = "$i" ] && continue # FIXME what is this check doing?
9c909460
AM
958 grep -qiE '^#[ ]*Source'$srcno'-md5[ ]*:' $PACKAGE_DIR/$SPECFILE && continue
959 grep -qiE '^BuildRequires:[ ]*digest[(]%SOURCE'$srcno'[)][ ]*=' $PACKAGE_DIR/$SPECFILE && continue
6392b5fd 960 else
9c909460 961 grep -qiE '^#[ ]*Source'$srcno'-md5[ ]*:' $PACKAGE_DIR/$SPECFILE || grep -qiE '^BuildRequires:[ ]*digest[(]%SOURCE'$srcno'[)][ ]*=' $PACKAGE_DIR/$SPECFILE || continue
ecba6ad5
ER
962 fi
963 if [ ! -f "$fp" ] || [ $ALWAYS_CVSUP = "yes" ]; then
964 need_files="$need_files $i"
965 fi
966 done
967
968 # pass 1a: get needed files
969 if [ "$need_files" ]; then
970 get_files $need_files
971 fi
972
973 # pass 2: proceed with md5 adding or updating
974 for i in "$@"; do
975 local fp=$(nourl "$i")
976 local srcno=$(src_no "$i")
9c909460 977 local md5=$(grep -iE '^#[ ]*(No)?Source'$srcno'-md5[ ]*:' $PACKAGE_DIR/$SPECFILE )
e19ad799 978 if [ -z "$md5" ]; then
9c909460 979 md5=$(grep -iE '^[ ]*BuildRequires:[ ]*digest[(]%SOURCE'$srcno'[)][ ]*=' $PACKAGE_DIR/$SPECFILE )
6c1b2e7d 980 fi
71f8e908 981 if [ -n "$ADD5" ] && is_url $i || [ -n "$md5" ]; then
6c1b2e7d 982 local tag="# Source$srcno-md5:\t"
71f8e908 983 if [[ "$md5" == *NoSource* ]]; then
6c1b2e7d
PZ
984 tag="# NoSource$srcno-md5:\t"
985 elif [ -n "$USEDIGEST" ]; then
986 tag="BuildRequires:\tdigest(%SOURCE$srcno) = "
71f8e908 987 fi
ecba6ad5 988 md5=$(md5sum "$fp" | cut -f1 -d' ')
15bf3e99 989 echo "Updating Source$srcno ($md5: $fp)."
ecba6ad5 990 perl -i -ne '
6c1b2e7d
PZ
991 print unless (/^\s*#\s*(No)?Source'$srcno'-md5\s*:/i or /^\s*BuildRequires:\s*digest\(%SOURCE'$srcno'\)/i);
992 print "'"$tag$md5"'\n" if /^Source'$srcno'\s*:\s+/;
ecba6ad5 993 ' \
9c909460 994 $PACKAGE_DIR/$SPECFILE
ecba6ad5
ER
995 fi
996 done
997}
998
f6711e2a 999check_md5() {
60499e54 1000 local bad
3fbff8b8
ER
1001 [ "$NO5" = "yes" ] && return
1002
ecba6ad5
ER
1003 update_shell_title "check md5"
1004
1005 for i in "$@"; do
60499e54
AM
1006 bad=0
1007 if ! good_md5 "$i"; then
1008 echo -n "MD5 sum mismatch."
1009 bad=1
1010 fi
1011 if ! good_size "$i"; then
1012 echo -n "0 sized file."
1013 bad=1
ecba6ad5
ER
1014 fi
1015
60499e54
AM
1016 if [ $bad -eq 1 ]; then
1017 echo " Use -U to refetch sources,"
1018 echo "or -5 to update md5 sums, if you're sure files are correct."
1019 Exit_error err_no_source_in_repo $i
1020 fi
ecba6ad5
ER
1021 done
1022}
1023
f6711e2a 1024get_files() {
7cb24972 1025 update_shell_title "get_files"
cd445739
AM
1026
1027 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1028 set -x
1029 set -v
cd445739
AM
1030 fi
1031
f09c0772 1032 if [ $# -gt 0 ]; then
9c909460 1033 cd "$PACKAGE_DIR"
cd445739 1034
f2e42a41 1035 local nc=0
e7fa3b9f 1036 local get_files_cvs=""
3815b69a 1037 for i in "$@"; do
f2e42a41 1038 nc=$((nc + 1))
dcebdffb 1039 local cvsup=0
3815b69a 1040 SHELL_TITLE_PREFIX="get_files[$nc/$#]"
f2e42a41 1041 update_shell_title "$i"
f09c0772 1042 local fp=`nourl "$i"`
ecba6ad5 1043 if [ "$SKIP_EXISTING_FILES" = "yes" ] && [ -f "$fp" ]; then
ce40491a 1044 continue
18e5347d 1045 fi
ecba6ad5 1046
cd445739 1047 FROM_DISTFILES=0
e7e0d4ec 1048 local srcmd5=$(src_md5 "$i")
ecba6ad5
ER
1049
1050 # we know if source/patch is present in cvs/distfiles
1051 # - has md5 (in distfiles)
1052 # - in cvs... ideas?
1053
1054 # CHECK: local file didn't exist or always cvs up (first) requested.
f09c0772 1055 if [ ! -f "$fp" ] || [ $ALWAYS_CVSUP = "yes" ]; then
cd445739
AM
1056 if echo $i | grep -vE '(http|ftp|https|cvs|svn)://' | grep -qE '\.(gz|bz2)$']; then
1057 echo "Warning: no URL given for $i"
1058 fi
08908161 1059 target="$fp"
cd445739 1060
e7e0d4ec 1061 if [ -z "$NODIST" ] && [ -n "$srcmd5" ]; then
a4b50627 1062 if good_md5 "$i" && good_size "$i"; then
e7e0d4ec 1063 echo "$fp having proper md5sum already exists"
cd445739
AM
1064 continue
1065 fi
28b34560 1066
bc10f694 1067 # optionally prefer mirror over distfiles if there's mirror
28b34560 1068 # TODO: build url list and then try each url from the list
bc10f694 1069 if [ -n "$PREFMIRRORS" ] && [ -z "$NOMIRRORS" ] && im=$(find_mirror "$i") && [ "$im" != "$i" ]; then
28b34560
ER
1070 url="$im"
1071 else
1072 url=$(distfiles_url "$i")
1073 fi
1074
cd445739
AM
1075 url_attic=$(distfiles_attic_url "$i")
1076 FROM_DISTFILES=1
ecba6ad5
ER
1077 # is $url local file?
1078 if [[ "$url" = [./]* ]]; then
18a52930 1079 update_shell_title "${GETLOCAL%% *}: $url"
cd445739
AM
1080 ${GETLOCAL} $url $target
1081 else
1082 if [ -z "$NOMIRRORS" ]; then
9e9f8920 1083 url=$(find_mirror "$url")
cd445739 1084 fi
9e9f8920
ER
1085
1086 local uri=${url}
1087 # make shorter message for distfiles urls
1088 if [[ "$uri" = ${PROTOCOL}${DISTFILES_SERVER}* ]] || [[ "$uri" = ${PROTOCOL}${ATTICDISTFILES_SERVER}* ]]; then
1089 uri=${uri#${PROTOCOL}${DISTFILES_SERVER}/distfiles/by-md5/?/?/*/}
1090 uri=${uri#${PROTOCOL}${ATTICDISTFILES_SERVER}/distfiles/by-md5/?/?/*/}
1091 uri="df: $uri"
1092 fi
1093 update_shell_title "${GETURI%% *}: $uri"
ca2e6c31 1094 ${GETURI} ${OUTFILEOPT} "$target" "$url" || \
33da77c4 1095 if [ "`echo $url | grep -E 'ftp://'`" ]; then
18a52930 1096 update_shell_title "${GETURI2%% *}: $url"
ca2e6c31 1097 ${GETURI2} ${OUTFILEOPT} "$target" "$url"
cd445739
AM
1098 fi
1099 fi
ecba6ad5
ER
1100
1101 # is it empty file?
1102 if [ ! -s "$target" ]; then
cd445739
AM
1103 rm -f "$target"
1104 if [ `echo $url_attic | grep -E '^(\.|/)'` ]; then
18a52930 1105 update_shell_title "${GETLOCAL%% *}: $url_attic"
cd445739
AM
1106 ${GETLOCAL} $url_attic $target
1107 else
1108 if [ -z "$NOMIRRORS" ]; then
a8c9a155 1109 url_attic=$(find_mirror "$url_attic")
cd445739 1110 fi
18a52930 1111 update_shell_title "${GETURI%% *}: $url_attic"
ca2e6c31 1112 ${GETURI} ${OUTFILEOPT} "$target" "$url_attic" || \
33da77c4 1113 if [ "`echo $url_attic | grep -E 'ftp://'`" ]; then
ce40491a 1114 update_shell_title "${GETURI2%% *}: $url_attic"
ca2e6c31 1115 ${GETURI2} ${OUTFILEOPT} "$target" "$url_attic"
cd445739 1116 fi
1cd7fc57 1117 test -s "$target" || rm -f "$target"
cd445739
AM
1118 fi
1119 fi
ecba6ad5
ER
1120
1121 if [ -s "$target" ]; then
947025e5 1122 cvsignore_df $target
1123 else
cd445739
AM
1124 rm -f "$target"
1125 FROM_DISTFILES=0
1126 fi
cd445739
AM
1127 fi
1128
f09c0772 1129 if [ -z "$NOURLS" ] && [ ! -f "$fp" -o -n "$UPDATE" ] && [ "`echo $i | grep -E 'ftp://|http://|https://'`" ]; then
cd445739 1130 if [ -z "$NOMIRRORS" ]; then
a8c9a155 1131 im=$(find_mirror "$i")
cd445739
AM
1132 else
1133 im="$i"
1134 fi
ce40491a 1135 update_shell_title "${GETURI%% *}: $im"
08908161 1136 ${GETURI} "$im" ${OUTFILEOPT} "$target" || \
33da77c4 1137 if [ "`echo $im | grep -E 'ftp://'`" ]; then
ce40491a 1138 update_shell_title "${GETURI2%% *}: $im"
08908161 1139 ${GETURI2} "$im" ${OUTFILEOPT} "$target"
7e365483 1140 fi
1cd7fc57 1141 test -s "$target" || rm -f "$target"
cd445739
AM
1142 fi
1143
dcebdffb
ER
1144 if [ "$cvsup" = 1 ]; then
1145 continue
1146 fi
1147
cd445739 1148 fi
ecba6ad5
ER
1149
1150 # the md5 check must be moved elsewhere as if we've called from update_md5 the md5 is wrong.
f09c0772 1151 if [ ! -f "$fp" -a "$FAIL_IF_NO_SOURCES" != "no" ]; then
b3b584c5 1152 Exit_error err_no_source_in_repo $i
cd445739 1153 fi
2a5f078d 1154
ecba6ad5 1155 # we check md5 here just only to refetch immediately
a4b50627 1156 if good_md5 "$i" && good_size "$i"; then
cd445739
AM
1157 :
1158 elif [ "$FROM_DISTFILES" = 1 ]; then
deccc50e 1159 # wrong md5 from distfiles: remove the file and try again
cd445739 1160 # but only once ...
deccc50e 1161 echo "MD5 sum mismatch. Trying full fetch."
cd445739
AM
1162 FROM_DISTFILES=2
1163 rm -f $target
18a52930 1164 update_shell_title "${GETURI%% *}: $url"
ca2e6c31 1165 ${GETURI} ${OUTFILEOPT} "$target" "$url" || \
33da77c4 1166 if [ "`echo $url | grep -E 'ftp://'`" ]; then
ce40491a 1167 update_shell_title "${GETURI2%% *}: $url"
ca2e6c31 1168 ${GETURI2} ${OUTFILEOPT} "$target" "$url"
cd445739 1169 fi
ecba6ad5 1170 if [ ! -s "$target" ]; then
cd445739 1171 rm -f "$target"
18a52930 1172 update_shell_title "${GETURI%% *}: $url_attic"
ca2e6c31 1173 ${GETURI} ${OUTFILEOPT} "$target" "$url_attic" || \
33da77c4 1174 if [ "`echo $url_attic | grep -E 'ftp://'`" ]; then
ce40491a 1175 update_shell_title "${GETURI2%% *}: $url_attic"
ca2e6c31 1176 ${GETURI2} ${OUTFILEOPT} "$target" "$url_attic"
cd445739
AM
1177 fi
1178 fi
1179 test -s "$target" || rm -f "$target"
1180 fi
cd445739 1181 done
e7fa3b9f
ER
1182 SHELL_TITLE_PREFIX=""
1183
cd445739
AM
1184
1185 if [ "$CHMOD" = "yes" ]; then
a8c9a155 1186 CHMOD_FILES=$(nourl "$@")
cd445739
AM
1187 if [ -n "$CHMOD_FILES" ]; then
1188 chmod $CHMOD_MODE $CHMOD_FILES
1189 fi
1190 fi
cd445739
AM
1191 fi
1192}
1193
1194make_tagver() {
ce40491a 1195 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1196 set -x
1197 set -v
ce40491a 1198 fi
78eab2a1 1199
ce40491a
ER
1200 # Check whether first character of PACKAGE_NAME is legal for tag name
1201 if [ -z "${PACKAGE_NAME##[_0-9]*}" -a -z "$TAG_PREFIX" ]; then
1202 TAG_PREFIX=tag_
1203 fi
d712cc12
ER
1204
1205 # NOTE: CVS tags may must not contain the characters `$,.:;@'
392187d9 1206 TAGVER=$(echo $TAG_PREFIX$PACKAGE_NAME-$PACKAGE_VERSION-$PACKAGE_RELEASE | tr '[.@]' '[_#]')
d712cc12 1207
ce40491a
ER
1208 # Remove #kernel.version_release from TAGVER because tagging sources
1209 # could occur with different kernel-headers than kernel-headers used at build time.
d712cc12
ER
1210 # besides, %{_kernel_ver_str} is not expanded.
1211
1212 # TAGVER=auto-ac-madwifi-ng-0-0_20070225_1#%{_kernel_ver_str}
1213 # TAGVER=auto-ac-madwifi-ng-0-0_20070225_1
1214
1215 TAGVER=${TAGVER%#*}
ce40491a 1216 echo -n "$TAGVER"
cd445739
AM
1217}
1218
f6711e2a 1219tag_files() {
cd445739
AM
1220 TAG_FILES="$@"
1221
1222 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1223 set -x
1224 set -v
cd445739
AM
1225 fi
1226
73ef63d8
ER
1227 echo "Version: $PACKAGE_VERSION"
1228 echo "Release: $PACKAGE_RELEASE"
cd445739 1229
a18a9761 1230 local TAGVER
73ef63d8 1231 if [ "$TAG_VERSION" = "yes" ]; then
a18a9761 1232 TAGVER=`make_tagver`
48ab9915 1233 echo "tag: $TAGVER"
73ef63d8
ER
1234 fi
1235 if [ -n "$TAG" ]; then
48ab9915 1236 echo "tag: $TAG"
73ef63d8 1237 fi
cd445739 1238
39dcc7de 1239 local OPTIONS="tag $CVS_FORCE"
cd445739 1240
c713aac3
AG
1241 local _tag=$TAG
1242 if [ "$TAG_VERSION" = "yes" ]; then
1243 _tag=$TAGVER
1244 fi;
c713aac3 1245
9c909460 1246 cd "$PACKAGE_DIR"
03db3356 1247
73ef63d8 1248 if [ "$TAG_VERSION" = "yes" ]; then
48ab9915
KK
1249 update_shell_title "tag sources: $TAGVER"
1250 git $OPTIONS $TAGVER || exit
73ef63d8
ER
1251 fi
1252 if [ -n "$TAG" ]; then
48ab9915
KK
1253 update_shell_title "tag sources: $TAG"
1254 git $OPTIONS $TAG $chunk || exit
73ef63d8 1255 fi
cd445739
AM
1256}
1257
f6711e2a 1258branch_files() {
cd445739 1259 TAG=$1
f663f264 1260 echo "Git branch: $TAG"
518ff1fb 1261 shift
cd445739 1262
cd445739 1263 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1264 set -x
1265 set -v
cd445739
AM
1266 fi
1267
f663f264 1268 local OPTIONS="branch $CVS_FORCE"
c10fa4fa 1269
9c909460 1270 cd "$PACKAGE_DIR"
f663f264 1271 git $OPTIONS $TAG || exit
cd445739
AM
1272}
1273
1274
3009b80d
ER
1275# this function should exit early if package can't be built for this arch
1276# this avoids unneccessary BR filling.
1277check_buildarch() {
1278 local out ret
13c3c336 1279 out=$(minirpm --short-circuit -bp --define "'prep exit 0'" --nodeps $SPECFILE 2>&1)
3009b80d
ER
1280 ret=$?
1281 if [ $ret -ne 0 ]; then
1282 echo >&2 "$out"
1283 exit $ret
1284 fi
1285}
1286
9d99a240
ER
1287# from relup.sh
1288set_release() {
1289 local specfile="$1"
1290 local rel="$2"
1291 local newrel="$3"
1292 sed -i -e "
1293 s/^\(%define[ \t]\+_\?rel[ \t]\+\)$rel\$/\1$newrel/
1294 s/^\(Release:[ \t]\+\)$rel\$/\1$newrel/
1295 " $specfile
1296}
1297
1298set_version() {
1299 local specfile="$1"
bc8502e6
ER
1300 local ver="$2" subver=$ver
1301 local newver="$3" newsubver=$newver
1302
1303 # try handling subver, everything that's not numeric-dotted in version
1304 if grep -Eq '%define\s+subver' $specfile; then
1305 subver=$(echo "$ver" | sed -re 's,^[0-9.]+,,')
1306 ver=${ver%$subver}
1307 newsubver=$(echo "$newver" | sed -re 's,^[0-9.]+,,')
1308 newver=${newver%$newsubver}
1309 fi
9d99a240
ER
1310 sed -i -e "
1311 s/^\(%define[ \t]\+_\?ver[ \t]\+\)$ver\$/\1$newver/
bc8502e6 1312 s/^\(%define[ \t]\+subver[ \t]\+\)$subver\$/\1$newsubver/
9d99a240
ER
1313 s/^\(Version:[ \t]\+\)$ver\$/\1$newver/
1314 " $specfile
1315}
1316
cacef28c 1317try_upgrade() {
cd445739 1318 if [ -n "$TRY_UPGRADE" ]; then
9d99a240 1319 local TNOTIFY TNEWVER TOLDVER
ce40491a 1320 update_shell_title "build_package: try_upgrade"
9d99a240 1321
cacef28c 1322 cd "$PACKAGE_DIR"
1323
0907f1eb
ER
1324 if [ "$UPGRADE_VERSION" ]; then
1325 TNEWVER=$UPGRADE_VERSION
cd445739 1326 else
0907f1eb
ER
1327 if [ -n "$FLOAT_VERSION" ]; then
1328 TNOTIFY=$($APPDIR/pldnotify.awk ${BE_VERBOSE:+-vDEBUG=1} $SPECFILE -n) || exit 1
1329 else
1330 TNOTIFY=$($APPDIR/pldnotify.awk ${BE_VERBOSE:+-vDEBUG=1} $SPECFILE) || exit 1
1331 fi
cd445739 1332
b9bef5ce
ER
1333 # pldnotify.awk does not set exit codes, but it has match for ERROR
1334 # in output which means so.
1335 if [[ "$TNOTIFY" = *ERROR* ]]; then
1336 echo >&2 "$TNOTIFY"
1337 exit 1
1338 fi
1339
0907f1eb
ER
1340 TNEWVER=$(echo $TNOTIFY | awk '{ match($4,/\[NEW\]/); print $5 }')
1341 fi
cd445739
AM
1342
1343 if [ -n "$TNEWVER" ]; then
1344 TOLDVER=`echo $TNOTIFY | awk '{ print $3; }'`
9d99a240 1345 echo "New version found, updating spec file from $TOLDVER to version $TNEWVER"
257af81b
ER
1346 if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
1347 cp -f $SPECFILE $SPECFILE.bak
1348 fi
cd445739 1349 chmod +w $SPECFILE
cacef28c 1350 set_release $SPECFILE $PACKAGE_RELEASE 1
9d99a240 1351 set_version $SPECFILE $PACKAGE_VERSION $TNEWVER
518ff1fb 1352 parse_spec
6decb793
ER
1353 if [ "$PACKAGE_VERSION" != "$TNEWVER" ]; then
1354 echo >&2 "Upgrading version failed, you need to update spec yourself"
1355 exit 1
1356 fi
cacef28c 1357 return 1
cd445739
AM
1358 fi
1359 fi
cacef28c 1360 return 0
1361}
1362
1363build_package() {
1364 update_shell_title "build_package"
1365 if [ -n "$DEBUG" ]; then
1366 set -x
1367 set -v
1368 fi
1369
9c909460 1370 cd "$PACKAGE_DIR"
2a5f078d 1371
cd445739
AM
1372 case "$COMMAND" in
1373 build )
1374 BUILD_SWITCH="-ba" ;;
1375 build-binary )
1376 BUILD_SWITCH="-bb" ;;
1377 build-source )
1378 BUILD_SWITCH="-bs --nodeps" ;;
1379 build-prep )
1380 BUILD_SWITCH="-bp --nodeps" ;;
6594293d
AG
1381 build-build )
1382 BUILD_SWITCH="-bc" ;;
1383 build-install )
1384 BUILD_SWITCH="-bi" ;;
1385 build-list )
1386 BUILD_SWITCH="-bl" ;;
1387
cd445739 1388 esac
c890b916 1389
2e5be021 1390 update_shell_title "build_package: $COMMAND"
cd445739
AM
1391 if [ -n "$LOGFILE" ]; then
1392 LOG=`eval echo $LOGFILE`
1393 if [ -d "$LOG" ]; then
1394 echo "Log file $LOG is a directory."
1395 echo "Parse error in the spec?"
518ff1fb 1396 Exit_error err_build_fail
cd445739
AM
1397 fi
1398 if [ -n "$LASTLOG_FILE" ]; then
1399 echo "LASTLOG=$LOG" > $LASTLOG_FILE
1400 fi
390d081d 1401 RES_FILE=$(tempfile)
525bf240 1402
9c909460 1403 (time eval ${NICE_COMMAND} $RPMBUILD $TARGET_SWITCH $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $RPMBUILDOPTS $BCOND --define \'_specdir $PACKAGE_DIR\' --define \'_sourcedir $PACKAGE_DIR\' $SPECFILE; echo $? > $RES_FILE) 2>&1 |tee $LOG
cd445739
AM
1404 RETVAL=`cat $RES_FILE`
1405 rm $RES_FILE
1406 if [ -n "$LOGDIROK" ] && [ -n "$LOGDIRFAIL" ]; then
1407 if [ "$RETVAL" -eq "0" ]; then
1408 mv $LOG $LOGDIROK
1409 else
1410 mv $LOG $LOGDIRFAIL
1411 fi
1412 fi
8ba5cdda 1413 else
9c909460 1414 eval ${NICE_COMMAND} $RPMBUILD $TARGET_SWITCH $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $RPMBUILDOPTS $BCOND --define \'_specdir $PACKAGE_DIR\' --define \'_sourcedir $PACKAGE_DIR\' $SPECFILE
cd445739 1415 RETVAL=$?
8ba5cdda 1416 fi
cd445739
AM
1417 if [ "$RETVAL" -ne "0" ]; then
1418 if [ -n "$TRY_UPGRADE" ]; then
cacef28c 1419 echo "\nUpgrade package to new version failed."
257af81b 1420 if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
cacef28c 1421 echo "Restoring old spec file."
257af81b
ER
1422 mv -f $SPECFILE.bak $SPECFILE
1423 fi
cacef28c 1424 echo ""
cd445739 1425 fi
518ff1fb 1426 Exit_error err_build_fail
cd445739
AM
1427 fi
1428 unset BUILD_SWITCH
1429}
1430
f6711e2a 1431nourl() {
cd445739
AM
1432 echo "$@" | sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g'
1433}
1434
f6711e2a 1435install_required_packages() {
cd445739
AM
1436 run_poldek -vi $1
1437 return $?
1438}
1439
f6711e2a 1440find_spec_bcond() { # originally from /usr/lib/rpm/find-spec-bcond
fa4bf1df 1441 local SPEC="$1"
fa4bf1df
ER
1442 awk -F"\n" '
1443 /^%changelog/ { exit }
fa4bf1df
ER
1444 /^%bcond_with/{
1445 match($0, /bcond_with(out)?[ \t]+[_a-zA-Z0-9]+/);
8ff97f39
ER
1446 bcond = substr($0, RSTART + 6, RLENGTH - 6);
1447 gsub(/[ \t]+/, "_", bcond);
fa4bf1df
ER
1448 print bcond
1449 }' $SPEC | LC_ALL=C sort -u
1450}
1451
117d9861 1452process_bcondrc() {
301cbfd4
ER
1453 # expand bconds from ~/.bcondrc
1454 # The file structure is like gentoo's package.use:
1455 # ---
1456 # * -selinux
1457 # samba -mysql -pgsql
47a8df12 1458 # w32codec-installer license_agreement
301cbfd4
ER
1459 # php +mysqli
1460 # ---
fa4bf1df 1461 if ([ -f $HOME/.bcondrc ] || ([ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ])); then
117d9861
ER
1462 :
1463 else
1464 return
1465 fi
301cbfd4 1466
117d9861 1467 SN=${SPECFILE%%\.spec}
c8a3e2ac 1468
117d9861
ER
1469 local bcondrc=$HOME/.bcondrc
1470 [ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ] && bcondrc=$HOME_ETC/.bcondrc
301cbfd4 1471
117d9861 1472 local bcond_avail=$(find_spec_bcond $SPECFILE)
301cbfd4 1473
117d9861
ER
1474 while read pkg flags; do
1475 # ignore comments
1476 [[ "$pkg" == \#* ]] && continue
1477
1478 # any package or current package?
1479 if [ "$pkg" = "*" ] || [ "$pkg" = "$PACKAGE_NAME" ] || [ "$pkg" = "$SN" ]; then
1480 for flag in $flags; do
1481 local opt=${flag#[+-]}
1482
1483 # use only flags which are in this package.
1484 if [[ $bcond_avail = *${opt}* ]]; then
1485 if [[ $flag = -* ]]; then
1486 if [[ $BCOND != *--with?${opt}* ]]; then
1487 BCOND="$BCOND --without $opt"
1488 fi
1489 else
1490 if [[ $BCOND != *--without?${opt}* ]]; then
1491 BCOND="$BCOND --with $opt"
301cbfd4
ER
1492 fi
1493 fi
117d9861
ER
1494 fi
1495 done
1496 fi
1497 done < $bcondrc
1498 update_shell_title "parse ~/.bcondrc: DONE!"
1499}
1500
8ff97f39 1501set_bconds_values() {
117d9861
ER
1502 update_shell_title "set bcond values"
1503
1504 AVAIL_BCONDS_WITHOUT=""
1505 AVAIL_BCONDS_WITH=""
8ff97f39 1506
5a28189c 1507 if grep -Eq '^# *_with' ${SPECFILE}; then
8ff97f39
ER
1508 echo >&2 "ERROR: This spec has old style bconds."
1509 exit 1
1510 fi
1511
1512 if ! grep -q '^%bcond' ${SPECFILE}; then
117d9861 1513 return
301cbfd4
ER
1514 fi
1515
117d9861
ER
1516 local bcond_avail=$(find_spec_bcond $SPECFILE)
1517 process_bcondrc "$SPECFILE"
1518
fa4bf1df 1519 update_shell_title "parse bconds"
2a5f078d 1520
8ff97f39
ER
1521 local opt bcond
1522 for opt in $bcond_avail; do
1523 case "$opt" in
1524 without_*)
1525 bcond=${opt#without_}
10d92f71
ER
1526 case "$BCOND" in
1527 *--without?${bcond}*)
8ff97f39 1528 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT <$bcond>"
10d92f71
ER
1529 ;;
1530 *)
8ff97f39 1531 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT $bcond"
10d92f71
ER
1532 ;;
1533 esac
cd445739 1534 ;;
8ff97f39
ER
1535 with_*)
1536 bcond=${opt#with_}
10d92f71
ER
1537 case "$BCOND" in
1538 *--with?${bcond}*)
8ff97f39 1539 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH <$bcond>"
10d92f71
ER
1540 ;;
1541 *)
8ff97f39 1542 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH $bcond"
10d92f71
ER
1543 ;;
1544 esac
cd445739 1545 ;;
8ff97f39
ER
1546 *)
1547 echo >&2 "ERROR: unexpected '$opt' in set_bconds_values"
1548 exit 1
1549 ;;
1550 esac
1551 done
cd445739
AM
1552}
1553
f6711e2a 1554run_sub_builder() {
cd445739 1555 package_name="${1}"
af6b168f 1556 update_shell_title "run_sub_builder $package_name"
cd445739
AM
1557 #
1558