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