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