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