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