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