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