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