]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - builder.sh
- take only first NEVR (see http://permalink.gmane.org/gmane.linux.pld.devel.english...
[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
AM
50
51# It can be used i.e. in log file naming.
52# See LOGFILE example.
53DATE=`date +%Y-%m-%d_%H-%M-%S`
54
55# Example: LOGFILE='../log.$PACKAGE_NAME'
56# Example: LOGFILE='../LOGS/log.$PACKAGE_NAME.$DATE'
57# Yes, you can use variable name! Note _single_ quotes!
58LOGFILE=''
59
60LOGDIR=""
61LOGDIROK=""
62LOGDIRFAIL=""
63LASTLOG_FILE=""
64
65CHMOD="no"
66CHMOD_MODE="0444"
67RPMOPTS=""
d1c5a9a7 68RPMBUILDOPTS=""
cd445739
AM
69BCOND=""
70GROUP_BCONDS="no"
947025e5 71CVSIGNORE_DF="no"
d287305c 72
73PATCHES=""
74SOURCES=""
cd445739 75ICONS=""
d287305c 76PACKAGE_RELEASE=""
77PACKAGE_VERSION=""
78PACKAGE_NAME=""
cd445739
AM
79PROTOCOL="ftp"
80WGET_RETRIES=${MAX_WGET_RETRIES:-0}
81CVS_RETRIES=${MAX_CVS_RETRIES:-1000}
82
83CVSTAG=""
84RES_FILE=""
39dcc7de 85CVS_FORCE=""
cd445739
AM
86
87CVS_SERVER="cvs.pld-linux.org"
88DISTFILES_SERVER="://distfiles.pld-linux.org"
d4730dae 89ATTICDISTFILES_SERVER="://attic-distfiles.pld-linux.org"
cd445739 90
36d03934 91DEF_NICE_LEVEL=19
86aafdbe 92SCHEDTOOL="auto"
cd445739
AM
93
94FAIL_IF_NO_SOURCES="yes"
95
18e5347d
ER
96# let get_files skip over files which are present to get those damn files fetched
97SKIP_EXISTING_FILES="no"
98
975d7b23 99TRY_UPGRADE=""
257af81b
ER
100# should the specfile be restored if upgrade failed?
101REVERT_BROKEN_UPGRADE="yes"
102
ab4a2b6e 103if [ -x /usr/bin/rpm-getdeps ]; then
ce40491a 104 FETCH_BUILD_REQUIRES_RPMGETDEPS="yes"
ab4a2b6e 105else
ce40491a 106 FETCH_BUILD_REQUIRES_RPMGETDEPS="no"
ab4a2b6e
ER
107fi
108
cd445739
AM
109# Here we load saved user environment used to
110# predefine options set above, or passed to builder
111# in command line.
112# This one reads global system environment settings:
113if [ -f ~/etc/builderrc ]; then
114 . ~/etc/builderrc
115fi
116# And this one cascades settings using user personal
117# builder settings.
118# Example of ~/.builderrc:
119#
120#UPDATE_POLDEK_INDEXES="yes"
121#FETCH_BUILD_REQUIRES="yes"
122#REMOVE_BUILD_REQUIRES="force"
123#GROUP_BCONDS="yes"
124#LOGFILE='../LOGS/log.$PACKAGE_NAME.$DATE'
982e358c 125#TITLECHANGE=no
cd445739 126#
a83e5405 127SU_SUDO=""
cd445739
AM
128if [ -n "$HOME_ETC" ]; then
129 USER_CFG="$HOME_ETC/.builderrc"
130else
131 USER_CFG=~/.builderrc
132fi
133
134[ -f "$USER_CFG" ] && . "$USER_CFG"
135
86aafdbe
ER
136if [ "$SCHEDTOOL" = "auto" ]; then
137 if [ -x /usr/bin/schedtool ] && schedtool -B -e echo >/dev/null; then
138 SCHEDTOOL="schedtool -B -e"
139 else
140 SCHEDTOOL="no"
141 fi
142fi
143
ca2e6c31 144if [ -n "$USE_PROZILLA" ]; then
7e365483
KK
145 GETURI="proz --no-getch -r -P ./ -t$WGET_RETRIES $PROZILLA_OPTS"
146 GETURI2="$GETURI"
147 OUTFILEOPT="-O"
ca2e6c31 148elif [ -n "$USE_AXEL" ]; then
cede92b3 149 GETURI="axel -a $AXEL_OPTS"
7e365483
KK
150 GETURI2="$GETURI"
151 OUTFILEOPT="-o"
ca2e6c31 152else
5700ee32
ER
153 wget --help 2>&1 | grep -q -- ' --no-check-certificate ' && WGET_OPTS="$WGET_OPTS --no-check-certificate"
154 wget --help 2>&1 | grep -q -- ' --inet ' && WGET_OPTS="$WGET_OPTS --inet"
155 wget --help 2>&1 | grep -q -- ' --retry-connrefused ' && WGET_OPTS="$WGET_OPTS --retry-connrefused"
6f9a5d76 156
7e365483
KK
157 GETURI="wget --passive-ftp -c -nd -t$WGET_RETRIES $WGET_OPTS"
158 GETURI2="wget -c -nd -t$WGET_RETRIES $WGET_OPTS"
159 OUTFILEOPT="-O"
2bc5451f 160fi
11468b23 161
11468b23
AM
162GETLOCAL="cp -a"
163
164if (rpm --version 2>&1 | grep -q '4.0.[0-2]'); then
165 RPM="rpm"
166 RPMBUILD="rpm"
167else
168 RPM="rpm"
169 RPMBUILD="rpmbuild"
170fi
171
172POLDEK_INDEX_DIR="`$RPM --eval %_rpmdir`/"
a83e5405 173POLDEK_CMD="$SU_SUDO /usr/bin/poldek --noask"
11468b23 174
cd445739
AM
175run_poldek()
176{
177 RES_FILE=~/tmp/poldek-exit-status.$RANDOM
178 if [ -n "$LOGFILE" ]; then
179 LOG=`eval echo $LOGFILE`
180 if [ -n "$LASTLOG_FILE" ]; then
181 echo "LASTLOG=$LOG" > $LASTLOG_FILE
182 fi
86aafdbe 183 (${NICE_COMMAND} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE})|tee -a $LOG
cd445739
AM
184 return $exit_pldk
185 else
86aafdbe 186 (${NICE_COMMAND} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE}) 1>&2 >/dev/null
cd445739
AM
187 return `cat ${RES_FILE}`
188 rm -rf ${RES_FILE}
189 fi
190}
191
cd445739
AM
192#---------------------------------------------
193# functions
da946cd6 194
5a491465 195usage()
196{
cd445739
AM
197 if [ -n "$DEBUG" ]; then set -xv; fi
198 echo "\
d43959a2 199Usage: builder [-D|--debug] [-V|--version] [--short-version] [-a|--as_anon] [-b|-ba|--build]
6594293d 200[-bb|--build-binary] [-bs|--build-source] [-bc] [-bi] [-bl] [-u|--try-upgrade]
4efa0b98 201[{-cf|--cvs-force}] [{-B|--branch} <branch>] [{-d|--cvsroot} <cvsroot>]
19dc5591 202[-g|--get] [-h|--help] [--http] [{-l|--logtofile} <logfile>] [-m|--mr-proper]
203[-q|--quiet] [--date <yyyy-mm-dd> [-r <cvstag>] [{-T|--tag <cvstag>]
a7b2951c 204[-Tvs|--tag-version-stable] [-Ts|--tag-stable] [-Tv|--tag-version]
cd445739 205[{-Tp|--tag-prefix} <prefix>] [{-tt|--test-tag}]
6594293d 206[-nu|--no-urls] [-v|--verbose] [--opts <rpm opts>] [--short-circuit]
3009b80d 207[--show-bconds] [--with/--without <feature>] [--define <macro> <value>]
6594293d 208<package>[.spec][:cvstag]
2a5f078d 209
cd445739
AM
210-5, --update-md5 - update md5 comments in spec, implies -nd -ncs
211-a5, --add-md5 - add md5 comments to URL sources, implies -nc -nd -ncs
212-n5, --no-md5 - ignore md5 comments in spec
9243e80b
ER
213-D, --debug - enable builder script debugging mode,
214-debug - produce rpm debug package (same as --opts -debug)
d43959a2
ER
215-V, --version - output builder version string
216--short-version - output builder short version
cd445739
AM
217-a, --as_anon - get files via pserver as cvs@$CVS_SERVER,
218-b, -ba, --build - get all files from CVS repo or HTTP/FTP and build package
219 from <package>.spec,
220-bb, --build-binary - get all files from CVS repo or HTTP/FTP and build binary
221 only package from <package>.spec,
c56807e0 222-bp, --build-prep - execute the %prep phase of <package>.spec,
6594293d
AG
223-bc - execute the %build phase of <package>.spec,
224-bi - execute the %install phase of <package>.spec
225-bl - execute the %files phase of <package>.spec
cd445739
AM
226-bs, --build-source - get all files from CVS repo or HTTP/FTP and only pack
227 them into src.rpm,
6594293d 228--short-circuit - short-circuit build
cd445739
AM
229-B, --branch - add branch
230-c, --clean - clean all temporarily created files (in BUILD, SOURCES,
231 SPECS and \$RPM_BUILD_ROOT),
39dcc7de 232-cf, --cvs-force - use -F when tagging (useful when moving branches)
2a5f078d 233-d <cvsroot>, --cvsroot <cvsroot>
cd445739
AM
234 - setup \$CVSROOT,
235--define <macro> <value>
236 - define a macro <macro> with value <value>,
237--nodeps - rpm won't check any dependences
238-g, --get - get <package>.spec and all related files from CVS repo
239 or HTTP/FTP,
240-h, --help - this message,
241--http - use http instead of ftp,
242-l <logfile>, --logtofile <logfile>
243 - log all to file,
244-m, --mr-proper - only remove all files related to spec file and all work
245 resources,
246-nc, --no-cvs - don't download sources from CVS, if source URL is given,
247-ncs, --no-cvs-specs
248 - don't check specs in CVS
249-nd, --no-distfiles - don't download from distfiles
250-nm, --no-mirrors - don't download from mirror, if source URL is given,
251-nu, --no-urls - don't try to download from FTP/HTTP location,
252-ns, --no-srcs - don't download Sources
253-ns0, --no-source0 - don't download Source0
254-nn, --no-net - don't download anything from the net
b572253e 255--no-init - don't initialize builder paths (SPECS and SOURCES)
18e5347d
ER
256-ske,
257--skip-existing-files - skip existing files in get_files
cd445739
AM
258--opts <rpm opts> - additional options for rpm
259-q, --quiet - be quiet,
260--date yyyy-mm-dd - build package using resources from specified CVS date,
261-r <cvstag>, --cvstag <cvstag>
262 - build package using resources from specified CVS tag,
5323fffd 263-A - build package using CVS resources as any sticky tags/date/kopts being reset.
cd445739
AM
264-R, --fetch-build-requires
265 - fetch what is BuildRequired,
266-RB, --remove-build-requires
267 - remove all you fetched with -R or --fetch-build-requires
268 remember, this option requires confirmation,
269-FRB, --force-remove-build-requires
270 - remove all you fetched with -R or --fetch-build-requires
271 remember, this option works without confirmation,
06541433
JR
272-sd, --source-distfiles - list sources available from distfiles (intended for offline
273 operations; does not work when Icon field is present
274 but icon file is absent),
275-sdp, --source-distfiles-paths - list sources available from distfiles -
276 paths relative to distfiles directory (intended for offline
277 operations; does not work when Icon field is present
278 but icon file is absent),
a7eefc54 279-sf, --source-files - list sources - bare filenames (intended for offline
280 operations; does not work when Icon field is present
3621e588 281 but icon file is absent),
a7eefc54 282-sp, --source-paths - list sources - filenames with full local paths (intended for
283 offline operations; does not work when Icon field is present
3621e588 284 but icon file is absent),
2dddf439
ER
285-su, --source-urls - list urls - urls to sources and patches
286 intended for copying urls with spec with lots of macros in urls
cd445739
AM
287-T <cvstag> , --tag <cvstag>
288 - add cvs tag <cvstag> for files,
289-Tvs, --tag-version-stable
094bd95b 290 - add cvs tags STABLE and NAME-VERSION-RELEASE for files,
cd445739
AM
291-Ts, --tag-stable
292 - add cvs tag STABLE for files,
cd445739 293-Tv, --tag-version
1691a37b 294 - add cvs tag NAME-VERSION-RELEASE for files,
cd445739
AM
295-Tp, --tag-prefix <prefix>
296 - add <prefix> to NAME-VERSION-RELEASE tags,
297-tt, --test-tag <prefix>
298 - fail if tag is already present,
50321881
JK
299-ir, --integer-release-only
300 - allow only integer and snapshot releases
cd445739
AM
301-v, --verbose - be verbose,
302-u, --try-upgrade - check version, and try to upgrade package
303-un, --try-upgrade-with-float-version
304 - as above, but allow float version
deccc50e 305-U, --update - refetch sources, don't use distfiles, and update md5 comments
cd445739
AM
306-Upi, --update-poldek-indexes
307 - refresh or make poldek package index files.
c890b916 308-np, --nopatch <patchnumber>
bed98670 309 - don't apply <patchnumber>
dfe2cb9a
MK
310--show-bconds - show available conditional builds, which can be used
311 - with --with and/or --without switches.
9b78be50
ER
312--show-bcond-args - show active bconds, from ~/.bcondrc. this is used by
313 ./repackage.sh script. in other words, the output is
314 parseable by scripts.
cd445739
AM
315--with/--without <feature>
316 - conditional build package depending on %_with_<feature>/
317 %_without_<feature> macro switch. You may now use
318 --with feat1 feat2 feat3 --without feat4 feat5 --with feat6
319 constructions. Set GROUP_BCONDS to yes to make use of it.
6dd19291 320--target <platform>, --target=<platform>
3621e588
ER
321 - build for platform <platform>.
322--init-rpm-dir - initialize ~/rpm directory structure
5a491465 323"
324}
325
c890b916 326update_shell_title() {
a0d6396b 327 [ -t 1 ] || return
0b65d15e
ER
328 local len=${COLUMNS:-80}
329 local msg=$(echo "$*" | cut -c-$len)
330
e225de91
ER
331 if [ -n "$BE_VERBOSE" ]; then
332 echo >&2 "$(date +%s.%N) $*"
333 fi
334
982e358c 335 if [ "x$TITLECHANGE" == "xyes" -o "x$TITLECHANGE" == "x" ]; then
138bbc98
ER
336 local pkg
337 if [ -n "$PACKAGE_NAME" ]; then
338 pkg=${PACKAGE_NAME}-${PACKAGE_VERSION}-${PACKAGE_RELEASE}
339 else
340 pkg=${SPECFILE}
341 fi
342
343 msg="$pkg: ${SHELL_TITLE_PREFIX:+$SHELL_TITLE_PREFIX }$msg"
10c1e115 344 msg="$(echo $msg | tr -d '\n\r')"
982e358c
MP
345 case "$TERM" in
346 cygwin|xterm*)
347 echo >&2 -ne "\033]1;$msg\007\033]2;$msg\007"
348 ;;
349 screen*)
350 echo >&2 -ne "\033]0;$msg\007"
351 ;;
352 esac
353 fi
c890b916
ER
354}
355
7e40520f
ER
356# set TARGET from BuildArch: from SPECFILE
357set_spec_target() {
ce40491a
ER
358 if [ -n "$SPECFILE" ] && [ -z "$TARGET" ]; then
359 tmp=$(awk '/^BuildArch:/ { print $NF}' $SPECFILE)
360 if [ "$tmp" ]; then
f9109a96 361 target_platform=$(rpm -E '%{_target_vendor}-%{_target_os}%{?_gnu}')
7e40520f
ER
362 TARGET="$tmp"
363 case "$RPMBUILD" in
364 "rpmbuild")
f9109a96 365 TARGET_SWITCH="--target ${TARGET}-${target_platform}" ;;
7e40520f 366 "rpm")
ce40491a 367 TARGET_SWITCH="--target=$TARGET" ;;
7e40520f 368 esac
ce40491a
ER
369 fi
370 fi
7e40520f
ER
371}
372
ace3fd80
ER
373# runs rpm with minimal macroset
374minirpm() {
fa4bf1df 375 # we reset macros not to contain macros.build as all the %() macros are
559d511f 376 # executed here, while none of them are actually needed.
559d511f 377 # at the time of this writing macros.build + macros contained 70 "%(...)" macros.
36433112 378 macrofiles="/usr/lib/rpm/macros:$SPECS_DIR/.builder-rpmmacros:~/etc/.rpmmacros:~/.rpmmacros"
8ebeba63
AM
379 if [ -f /usr/lib/rpm/rpmrc ]; then
380 # FIXME: better ideas than .rpmrc?
381 printf 'include:/usr/lib/rpm/rpmrc\nmacrofiles:%s\n' $macrofiles > .builder-rpmrc
382 else
383 printf 'macrofiles:%s\n' $macrofiles > .builder-rpmrc
384 fi
ace3fd80
ER
385
386 # TODO: move these to /usr/lib/rpm/macros
36433112 387 cat > .builder-rpmmacros <<'EOF'
f78a0bb7 388%alt_kernel %{nil}
389%_alt_kernel %{nil}
fb198857
ER
390%requires_releq_kernel_up %{nil}
391%requires_releq_kernel_smp %{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
74d9fd14 398%kgcc_package ERROR
237bd3f1 399%_fontsdir ERROR
7141278d 400%ruby_version ERROR
401%ruby_ver_requires_eq() %{nil}
402%ruby_mod_ver_requires_eq() %{nil}
c13be3d1 403%__php_api_requires() %{nil}
7141278d 404%php_major_version ERROR
405%php_api_version ERROR
406%py_ver ERROR
41035426
ER
407%perl_vendorarch ERROR
408%perl_vendorlib ERROR
703ae20b
ER
409# damn. need it here! - copied from /usr/lib/rpm/macros.build
410%tmpdir %(echo "${TMPDIR:-/tmp}")
1f28fcb7
ER
411%patchset_source(f:b:) %(
412 base=%{-b*}%{!-b*:10000};
413 start=$(expr $base + %1);
414 end=$(expr $base + %{?2}%{!?2:%{1}});
415 # we need to call seq twice as it doesn't allow two formats
416 seq -f 'Patch%g:' $start $end > %{tmpdir}/__ps1;
417 seq -f '%{-f*}' %1 %{?2}%{!?2:%{1}} > %{tmpdir}/__ps2;
418 paste %{tmpdir}/__ps{1,2};
419 rm -f %{tmpdir}/__ps{1,2};
420) \
421%{nil}
fb198857 422EOF
3d12d055
JR
423 if [ "$NOINIT" = "yes" ] ; then
424 cat >> .builder-rpmmacros <<'EOF'
425%_specdir ./
426%_sourcedir ./
427EOF
c039643c 428 fi
ace3fd80
ER
429# set -x
430 eval $RPMBUILD --rcfile .builder-rpmrc $QUIET $RPMOPTS $RPMBUILDOPTS $BCOND $TARGET_SWITCH $* 2>&1
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
1084 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"`
1085 # Remove #kernel.version_release from TAGVER because tagging sources
1086 # could occur with different kernel-headers than kernel-headers used at build time.
1087 TAGVER=$(echo "$TAGVER" | sed -e 's/#.*//g')
1088 echo -n "$TAGVER"
cd445739
AM
1089}
1090
1091tag_files()
1092{
1093 TAG_FILES="$@"
1094
1095 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1096 set -x
1097 set -v
cd445739
AM
1098 fi
1099
73ef63d8
ER
1100 echo "Version: $PACKAGE_VERSION"
1101 echo "Release: $PACKAGE_RELEASE"
cd445739 1102
73ef63d8 1103 TAGVER=`make_tagver`
cd445739 1104
73ef63d8
ER
1105 if [ "$TAG_VERSION" = "yes" ]; then
1106 echo "CVS tag: $TAGVER"
1107 fi
1108 if [ -n "$TAG" ]; then
1109 echo "CVS tag: $TAG"
1110 fi
cd445739 1111
39dcc7de 1112 local OPTIONS="tag $CVS_FORCE"
73ef63d8
ER
1113 if [ -n "$CVSROOT" ]; then
1114 OPTIONS="-d $CVSROOT $OPTIONS"
1115 fi
cd445739 1116
73ef63d8
ER
1117 cd "$SOURCE_DIR"
1118 local tag_files
1119 for i in $TAG_FILES; do
1120 # don't tag files stored on distfiles
1121 [ -n "`src_md5 $i`" ] && continue
1122 local fp=`nourl "$i"`
1123 if [ -f "$fp" ]; then
1124 tag_files="$tag_files $fp"
1125 else
1126 Exit_error err_no_source_in_repo $i
03db3356 1127 fi
73ef63d8 1128 done
03db3356 1129
73ef63d8 1130 if [ "$tag_files" ]; then
cd445739 1131 if [ "$TAG_VERSION" = "yes" ]; then
73ef63d8 1132 update_shell_title "tag sources: $TAGVER"
c7e6ee9b 1133 cvs $OPTIONS $TAGVER $tag_files || exit
cd445739
AM
1134 fi
1135 if [ -n "$TAG" ]; then
73ef63d8 1136 update_shell_title "tag sources: $TAG"
c7e6ee9b 1137 cvs $OPTIONS $TAG $tag_files || exit
cd445739 1138 fi
73ef63d8
ER
1139 fi
1140
1141 cd "$SPECS_DIR"
1142 if [ "$TAG_VERSION" = "yes" ]; then
1143 update_shell_title "tag spec: $TAGVER"
c7e6ee9b 1144 cvs $OPTIONS $TAGVER $SPECFILE || exit
73ef63d8
ER
1145 fi
1146 if [ -n "$TAG" ]; then
1147 update_shell_title "tag spec: $TAG"
c7e6ee9b 1148 cvs $OPTIONS $TAG $SPECFILE || exit
73ef63d8 1149 fi
cd445739
AM
1150}
1151
1152branch_files()
1153{
1154 TAG=$1
1155 echo "CVS branch tag: $TAG"
518ff1fb 1156 shift
cd445739
AM
1157
1158 TAG_FILES="$@"
1159
1160 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1161 set -x
1162 set -v
cd445739
AM
1163 fi
1164
78a5a506
ER
1165 local OPTIONS="tag $CVS_FORCE -b"
1166 if [ -n "$CVSROOT" ]; then
1167 OPTIONS="-d $CVSROOT $OPTIONS"
1168 fi
1169 cd "$SOURCE_DIR"
1170 local tag_files
1171 for i in $TAG_FILES; do
1172 local fp=`nourl "$i"`
1173 if [ -f "$fp" ]; then
1174 tag_files="$tag_files $fp"
1175 else
1176 Exit_error err_no_source_in_repo $i
c10fa4fa 1177 fi
78a5a506
ER
1178 done
1179 if [ "$tag_files" ]; then
c7e6ee9b 1180 cvs $OPTIONS $TAG $tag_files || exit
78a5a506 1181 fi
c10fa4fa 1182
78a5a506 1183 cd "$SPECS_DIR"
c7e6ee9b 1184 cvs $OPTIONS $TAG $SPECFILE || exit
cd445739
AM
1185}
1186
1187
3009b80d
ER
1188# this function should exit early if package can't be built for this arch
1189# this avoids unneccessary BR filling.
1190check_buildarch() {
1191 local out ret
ace3fd80 1192 out=$(minirpm --short-circuit -bp --define "'prep exit 0'" --nodeps $SPECFILE 2>&1)
3009b80d
ER
1193 ret=$?
1194 if [ $ret -ne 0 ]; then
1195 echo >&2 "$out"
1196 exit $ret
1197 fi
1198}
1199
cd445739 1200
59398507 1201build_package()
1202{
2e5be021 1203 update_shell_title "build_package"
cd445739 1204 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1205 set -x
1206 set -v
cd445739 1207 fi
5a491465 1208
cd445739
AM
1209 cd "$SPECS_DIR"
1210
1211 if [ -n "$TRY_UPGRADE" ]; then
ce40491a 1212 update_shell_title "build_package: try_upgrade"
cd445739 1213 if [ -n "$FLOAT_VERSION" ]; then
cc538c24 1214 TNOTIFY=`./pldnotify.awk $SPECFILE -n` || exit 1
cd445739 1215 else
cc538c24 1216 TNOTIFY=`./pldnotify.awk $SPECFILE` || exit 1
cd445739
AM
1217 fi
1218
1219 TNEWVER=`echo $TNOTIFY | awk '{ match($4,/\[NEW\]/); print $5 }'`
1220
1221 if [ -n "$TNEWVER" ]; then
1222 TOLDVER=`echo $TNOTIFY | awk '{ print $3; }'`
1223 echo "New version found, updating spec file to version " $TNEWVER
257af81b
ER
1224 if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
1225 cp -f $SPECFILE $SPECFILE.bak
1226 fi
cd445739
AM
1227 chmod +w $SPECFILE
1228 eval "perl -pi -e 's/Version:\t"$TOLDVER"/Version:\t"$TNEWVER"/gs' $SPECFILE"
f7b91886 1229 eval "perl -pi -e 's/Release:\t[1-9]{0,4}/Release:\t0.1/' $SPECFILE"
518ff1fb
ER
1230 parse_spec
1231 NODIST="yes" get_files $SOURCES $PATCHES
6392b5fd 1232 update_md5 $SOURCES
975d7b23 1233
cd445739
AM
1234 unset TOLDVER TNEWVER TNOTIFY
1235 fi
1236 fi
1237 cd "$SPECS_DIR"
2a5f078d 1238
cd445739
AM
1239 case "$COMMAND" in
1240 build )
1241 BUILD_SWITCH="-ba" ;;
1242 build-binary )
1243 BUILD_SWITCH="-bb" ;;
1244 build-source )
1245 BUILD_SWITCH="-bs --nodeps" ;;
1246 build-prep )
1247 BUILD_SWITCH="-bp --nodeps" ;;
6594293d
AG
1248 build-build )
1249 BUILD_SWITCH="-bc" ;;
1250 build-install )
1251 BUILD_SWITCH="-bi" ;;
1252 build-list )
1253 BUILD_SWITCH="-bl" ;;
1254
cd445739 1255 esac
c890b916 1256
2e5be021 1257 update_shell_title "build_package: $COMMAND"
cd445739
AM
1258 if [ -n "$LOGFILE" ]; then
1259 LOG=`eval echo $LOGFILE`
1260 if [ -d "$LOG" ]; then
1261 echo "Log file $LOG is a directory."
1262 echo "Parse error in the spec?"
518ff1fb 1263 Exit_error err_build_fail
cd445739
AM
1264 fi
1265 if [ -n "$LASTLOG_FILE" ]; then
1266 echo "LASTLOG=$LOG" > $LASTLOG_FILE
1267 fi
1268 RES_FILE=~/tmp/$RPMBUILD-exit-status.$RANDOM
86aafdbe 1269 (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
1270 RETVAL=`cat $RES_FILE`
1271 rm $RES_FILE
1272 if [ -n "$LOGDIROK" ] && [ -n "$LOGDIRFAIL" ]; then
1273 if [ "$RETVAL" -eq "0" ]; then
1274 mv $LOG $LOGDIROK
1275 else
1276 mv $LOG $LOGDIRFAIL
1277 fi
1278 fi
8ba5cdda 1279 else
86aafdbe 1280 eval ${NICE_COMMAND} $RPMBUILD $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $RPMBUILDOPTS $BCOND $TARGET_SWITCH $SPECFILE
cd445739 1281 RETVAL=$?
8ba5cdda 1282 fi
cd445739
AM
1283 if [ "$RETVAL" -ne "0" ]; then
1284 if [ -n "$TRY_UPGRADE" ]; then
796a8a95 1285 echo "\n!!! Package with new version cannot be built automagically\n"
257af81b
ER
1286 if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
1287 mv -f $SPECFILE.bak $SPECFILE
1288 fi
cd445739 1289 fi
518ff1fb 1290 Exit_error err_build_fail
cd445739
AM
1291 fi
1292 unset BUILD_SWITCH
1293}
1294
1295nourl()
1296{
1297 echo "$@" | sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g'
1298}
1299
cd445739
AM
1300install_required_packages()
1301{
1302 run_poldek -vi $1
1303 return $?
1304}
1305
fa4bf1df
ER
1306find_spec_bcond() {
1307 # taken from find-spec-bcond, but with just getting the list
1308 local SPEC="$1"
1309 # quick revert hint: '$RPMBUILD --bcond $SPEC'
1310 awk -F"\n" '
1311 /^%changelog/ { exit }
1312 /_with(out)?_[_a-zA-Z0-9]+/{
1313 match($0, /_with(out)?_[_a-zA-Z0-9]+/);
1314 print substr($0, RSTART, RLENGTH);
1315 }
1316 /^%bcond_with/{
1317 match($0, /bcond_with(out)?[ \t]+[_a-zA-Z0-9]+/);
1318 bcond = substr($0, RSTART +5 , RLENGTH -5);
1319 gsub(/[ \t]+/,"_",bcond);
1320 print bcond
1321 }' $SPEC | LC_ALL=C sort -u
1322}
1323
117d9861 1324process_bcondrc() {
301cbfd4
ER
1325 # expand bconds from ~/.bcondrc
1326 # The file structure is like gentoo's package.use:
1327 # ---
1328 # * -selinux
1329 # samba -mysql -pgsql
47a8df12 1330 # w32codec-installer license_agreement
301cbfd4
ER
1331 # php +mysqli
1332 # ---
fa4bf1df 1333 if ([ -f $HOME/.bcondrc ] || ([ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ])); then
117d9861
ER
1334 :
1335 else
1336 return
1337 fi
301cbfd4 1338
117d9861 1339 SN=${SPECFILE%%\.spec}
c8a3e2ac 1340
117d9861
ER
1341 local bcondrc=$HOME/.bcondrc
1342 [ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ] && bcondrc=$HOME_ETC/.bcondrc
301cbfd4 1343
117d9861 1344 local bcond_avail=$(find_spec_bcond $SPECFILE)
301cbfd4 1345
117d9861
ER
1346 while read pkg flags; do
1347 # ignore comments
1348 [[ "$pkg" == \#* ]] && continue
1349
1350 # any package or current package?
1351 if [ "$pkg" = "*" ] || [ "$pkg" = "$PACKAGE_NAME" ] || [ "$pkg" = "$SN" ]; then
1352 for flag in $flags; do
1353 local opt=${flag#[+-]}
1354
1355 # use only flags which are in this package.
1356 if [[ $bcond_avail = *${opt}* ]]; then
1357 if [[ $flag = -* ]]; then
1358 if [[ $BCOND != *--with?${opt}* ]]; then
1359 BCOND="$BCOND --without $opt"
1360 fi
1361 else
1362 if [[ $BCOND != *--without?${opt}* ]]; then
1363 BCOND="$BCOND --with $opt"
301cbfd4
ER
1364 fi
1365 fi
117d9861
ER
1366 fi
1367 done
1368 fi
1369 done < $bcondrc
1370 update_shell_title "parse ~/.bcondrc: DONE!"
1371}
1372
1373set_bconds_values()
1374{
1375 update_shell_title "set bcond values"
1376
1377 AVAIL_BCONDS_WITHOUT=""
1378 AVAIL_BCONDS_WITH=""
1379 if `grep -q ^%bcond ${SPECFILE}`; then
1380 BCOND_VERSION="NEW"
1381 elif `egrep -q ^#\ *_with ${SPECFILE}`; then
1382 BCOND_VERSION="OLD"
1383 else
1384 return
301cbfd4
ER
1385 fi
1386
117d9861
ER
1387 local bcond_avail=$(find_spec_bcond $SPECFILE)
1388 process_bcondrc "$SPECFILE"
1389
fa4bf1df 1390 update_shell_title "parse bconds"
cd445739 1391 case "${BCOND_VERSION}" in
fa4bf1df 1392 NONE)
7e365483 1393 :
cd445739 1394 ;;
7e365483 1395 OLD)
cd445739 1396 echo "Warning: This spec has old style bconds. Fix it || die."
fa4bf1df 1397 for opt in `echo "$bcond_avail" | grep ^_without_`
cd445739 1398 do
fa4bf1df
ER
1399 AVAIL_BCOND_WITHOUT=${opt#_without_}
1400 if [[ "$BCOND" = *--without?${AVAIL_BCOND_WITHOUT}* ]]; then
cd445739
AM
1401 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT <$AVAIL_BCOND_WITHOUT>"
1402 else
1403 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT $AVAIL_BCOND_WITHOUT"
1404 fi
1405 done
2a5f078d 1406
fa4bf1df 1407 for opt in `echo "$bcond_avail" | grep ^_with_`
cd445739 1408 do
fa4bf1df
ER
1409 AVAIL_BCOND_WITH=${opt#_with_}
1410 if [[ "$BCOND" = *--with?${AVAIL_BCOND_WITH}* ]]; then
cd445739
AM
1411 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH <$AVAIL_BCOND_WITH>"
1412 else
1413 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH $AVAIL_BCOND_WITH"
1414 fi
1415 done
1416 ;;
1417 NEW)
fa4bf1df
ER
1418 local cond_type="" # with || without
1419 for opt in $bcond_avail; do
cd445739
AM
1420 case "$opt" in
1421 _without)
1422 cond_type="without"
1423 ;;
1424 _with)
1425 cond_type="with"
1426 ;;
f8d24cee 1427 _without_*)
fa4bf1df
ER
1428 AVAIL_BCOND_WITHOUT=${opt#_without_}
1429 if [[ "$BCOND" = *--without?${AVAIL_BCOND_WITHOUT}* ]]; then
f8d24cee 1430 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT <$AVAIL_BCOND_WITHOUT>"
1431 else
1432 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT $AVAIL_BCOND_WITHOUT"
1433 fi
1434 ;;
1435 _with_*)
fa4bf1df
ER
1436 AVAIL_BCOND_WITH=${opt#_with_}
1437 if [[ "$BCOND" = *--with?${AVAIL_BCOND_WITH}* ]]; then
f8d24cee 1438 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH <$AVAIL_BCOND_WITH>"
1439 else
1440 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH $AVAIL_BCOND_WITH"
1441 fi
1442 ;;
cd445739
AM
1443 *)
1444 case "$cond_type" in
1445 with)
1446 cond_type=''
1447 AVAIL_BCOND_WITH="$opt"
fa4bf1df 1448 if [[ "$BCOND" = *--with?${AVAIL_BCOND_WITH}* ]]; then
cd445739
AM
1449 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH <$AVAIL_BCOND_WITH>"
1450 else
1451 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH $AVAIL_BCOND_WITH"
1452 fi
7e365483 1453 ;;
cd445739
AM
1454 without)
1455 cond_type=''
1456 AVAIL_BCOND_WITHOUT="$opt"
fa4bf1df 1457 if [[ "$BCOND" = *--without?${AVAIL_BCOND_WITHOUT}* ]]; then
cd445739
AM
1458 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT <$AVAIL_BCOND_WITHOUT>"
1459 else
1460 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT $AVAIL_BCOND_WITHOUT"
1461 fi
1462 ;;
1463 esac
1464 ;;
1465 esac
1466 done
1467 ;;
1468 esac
1469}
1470
1471run_sub_builder()
1472{
1473 package_name="${1}"
af6b168f 1474 update_shell_title "run_sub_builder $package_name"
cd445739
AM
1475 #
1476