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