]> git.pld-linux.org Git - packages/rpm-build-tools.git/blob - builder_.sh
- escape some regexp characters in file name, so grep has a chance to find line with...
[packages/rpm-build-tools.git] / builder_.sh
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 # - when Icon: field is present, -5 and -a5 doesn't work
23 # - builder -R skips installing BR if spec is not present before builder invocation (need to run builder twice)
24 # - does not respect NoSource: X, and tries to cvs up such files [ example: VirtualBox-bin.spec and its Source0 ]
25 # TODO:
26 # - ability to do ./builder -bb foo.spec foo2.spec foo3.spec
27 # - funny bug, if source-md5 is set then builder will download from distfiles even if there is no url present:
28 #   Source10:   forwardfix.pl
29 #   # Source10-md5:     8bf85f7368933a4e0cb4f875bac28733
30 # - builder --help:
31 #       basename: missing operand
32 #       Try `basename --help' for more information.
33 #       -- and the normal usage info --
34
35 PROGRAM=${0##*/}
36 APPDIR=$(d=$0; [ -L "$d" ] && d=$(readlink -f "$d"); dirname "$d")
37 RCSID='$Id$' r=${RCSID#* * } rev=${r%% *}
38 VERSION="v0.35/$rev"
39 VERSIONSTRING="\
40 Build package utility from PLD Linux CVS repository
41 $VERSION (C) 1999-2010 Free Penguins".
42
43 PATH="/bin:/usr/bin:/usr/sbin:/sbin:/usr/X11R6/bin"
44
45 # required rpm-build-macros
46 RPM_MACROS_VER=1.534
47
48 COMMAND="build"
49 TARGET=""
50
51 SPECFILE=""
52 BE_VERBOSE=""
53 QUIET=""
54 CLEAN=""
55 DEBUG=""
56 NOURLS=""
57 NOCVS=""
58 NOCVSSPEC=""
59 NODIST=""
60 NOINIT=""
61 PREFMIRRORS=""
62 UPDATE=""
63 ADD5=""
64 NO5=""
65 ALWAYS_CVSUP=${ALWAYS_CVSUP:-"yes"}
66 CVSROOT=""
67 GREEDSRC=""
68
69 # use rpm 4.4.6+ digest format instead of comments if non-zero
70 USEDIGEST=
71
72 # user agent when fetching files
73 USER_AGENT="PLD/Builder($VERSION)"
74
75 # It can be used i.e. in log file naming.
76 # See LOGFILE example.
77 DATE=`date +%Y-%m-%d_%H-%M-%S`
78
79 # Example: LOGFILE='../log.$PACKAGE_NAME'
80 # Example: LOGFILE='../LOGS/log.$PACKAGE_NAME.$DATE'
81 # Example: LOGFILE='$PACKAGE_NAME/$PACKAGE_NAME.$DATE.log'
82 # Example: LOGFILE='$PACKAGE_NAME.$DATE.log'
83 # Yes, you can use variable name! Note _single_ quotes!
84 LOGFILE=''
85
86 LOGDIR=""
87 LOGDIROK=""
88 LOGDIRFAIL=""
89 LASTLOG_FILE=""
90
91 CHMOD="no"
92 CHMOD_MODE="0644"
93 RPMOPTS=""
94 RPMBUILDOPTS=""
95 BCOND=""
96 GROUP_BCONDS="no"
97
98 # create symlinks for tools in PACKAGE_DIR, see get_spec()
99 SYMLINK_TOOLS="no"
100
101 PATCHES=""
102 SOURCES=""
103 ICONS=""
104 PACKAGE_RELEASE=""
105 PACKAGE_VERSION=""
106 PACKAGE_NAME=""
107 ASSUMED_NAME=""
108 PROTOCOL="ftp"
109 WGET_RETRIES=${MAX_WGET_RETRIES:-0}
110
111 CVS_COMMAND=${CVS_COMMAND:-cvs}
112 CVS_FORCE=""
113 CVSIGNORE_DF="yes"
114 CVS_RETRIES=${MAX_CVS_RETRIES:-1000}
115 CVS_SERVER="cvs.pld-linux.org"
116 CVSTAG=""
117
118 RES_FILE=""
119
120 DISTFILES_SERVER="://distfiles.pld-linux.org"
121 ATTICDISTFILES_SERVER="://attic-distfiles.pld-linux.org"
122
123 DEF_NICE_LEVEL=19
124 SCHEDTOOL="auto"
125
126 FAIL_IF_NO_SOURCES="yes"
127
128 # let get_files skip over files which are present to get those damn files fetched
129 SKIP_EXISTING_FILES="no"
130
131 TRY_UPGRADE=""
132 # should the specfile be restored if upgrade failed?
133 REVERT_BROKEN_UPGRADE="yes"
134
135 if rpm --specsrpm 2>/dev/null; then
136         FETCH_BUILD_REQUIRES_RPMSPECSRPM="yes"
137         FETCH_BUILD_REQUIRES_RPMGETDEPS="no"
138 else
139         FETCH_BUILD_REQUIRES_RPMSPECSRPM="no"
140         if [ -x /usr/bin/rpm-getdeps ]; then
141                 FETCH_BUILD_REQUIRES_RPMGETDEPS="yes"
142         else
143                 FETCH_BUILD_REQUIRES_RPMGETDEPS="no"
144         fi
145 fi
146
147
148 # Here we load saved user environment used to
149 # predefine options set above, or passed to builder
150 # in command line.
151 # This one reads global system environment settings:
152 if [ -f ~/etc/builderrc ]; then
153         . ~/etc/builderrc
154 fi
155 # And this one cascades settings using user personal
156 # builder settings.
157 # Example of ~/.builderrc:
158 #
159 #UPDATE_POLDEK_INDEXES="yes"
160 #FETCH_BUILD_REQUIRES="yes"
161 #REMOVE_BUILD_REQUIRES="force"
162 #GROUP_BCONDS="yes"
163 #LOGFILE='../LOGS/log.$PACKAGE_NAME.$DATE'
164 #TITLECHANGE=no
165 #
166 SU_SUDO=""
167 if [ -n "$HOME_ETC" ]; then
168         USER_CFG="$HOME_ETC/.builderrc"
169         BUILDER_MACROS="$HOME_ETC/.builder-rpmmacros"
170 else
171         USER_CFG=~/.builderrc
172         BUILDER_MACROS=~/.builder-rpmmacros
173 fi
174
175 [ -f "$USER_CFG" ] && . "$USER_CFG"
176
177 if [ "$SCHEDTOOL" = "auto" ]; then
178         if [ -x /usr/bin/schedtool ] && schedtool -B -e echo >/dev/null; then
179                 SCHEDTOOL="schedtool -B -e"
180         else
181                 SCHEDTOOL="no"
182         fi
183 fi
184
185 if [ -n "$USE_PROZILLA" ]; then
186         GETURI="proz --no-getch -r -P ./ -t$WGET_RETRIES $PROZILLA_OPTS"
187         GETURI2="$GETURI"
188         OUTFILEOPT="-O"
189 elif [ -n "$USE_AXEL" ]; then
190         GETURI="axel -a $AXEL_OPTS"
191         GETURI2="$GETURI"
192         OUTFILEOPT="-o"
193 else
194         wget --help 2>&1 | grep -q -- ' --no-check-certificate ' && WGET_OPTS="$WGET_OPTS --no-check-certificate"
195         wget --help 2>&1 | grep -q -- ' --inet ' && WGET_OPTS="$WGET_OPTS --inet"
196         wget --help 2>&1 | grep -q -- ' --retry-connrefused ' && WGET_OPTS="$WGET_OPTS --retry-connrefused"
197         WGET_OPTS="$WGET_OPTS --user-agent=$USER_AGENT"
198
199         GETURI="wget --passive-ftp -c -nd -t$WGET_RETRIES $WGET_OPTS"
200         GETURI2="wget -c -nd -t$WGET_RETRIES $WGET_OPTS"
201         OUTFILEOPT="-O"
202 fi
203
204 GETLOCAL="cp -a"
205
206 if (rpm --version 2>&1 | grep -q '4.0.[0-2]'); then
207         RPM="rpm"
208         RPMBUILD="rpm"
209 else
210         RPM="rpm"
211         RPMBUILD="rpmbuild"
212 fi
213
214 #
215 # sanity checks
216 #
217 if [ -d $HOME/rpm/SOURCES ]; then
218         echo "ERROR: ~/rpm/{SPECS,SOURCES} structure is obsolete" >&2
219         echo "ERROR: get rid of your ~/rpm/SOURCES" >&2
220         exit 1
221 fi
222
223 #
224 # are we using cvs-nserver ?
225 #
226 CVS_NSERVER=0
227 $CVS_COMMAND --version 2>&1 | grep -q 'CVS-nserver'
228 [ $? -eq 0 ] && CVS_NSERVER=1
229
230 POLDEK_INDEX_DIR="$($RPM --eval %_rpmdir)/"
231 POLDEK_CMD="$SU_SUDO /usr/bin/poldek --noask"
232
233 run_poldek() {
234         RES_FILE=$(mktemp -t builder.XXXXXX || ${TMPDIR:-/tmp}/builder.$RANDOM)
235         if [ -n "$LOGFILE" ]; then
236                 LOG=`eval echo $LOGFILE`
237                 if [ -n "$LASTLOG_FILE" ]; then
238                         echo "LASTLOG=$LOG" > $LASTLOG_FILE
239                 fi
240                 (${NICE_COMMAND} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE})|tee -a $LOG
241                 return $exit_pldk
242         else
243                 (${NICE_COMMAND} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE}) 1>&2 >/dev/null
244                 return `cat ${RES_FILE}`
245                 rm -rf ${RES_FILE}
246         fi
247 }
248
249 #---------------------------------------------
250 # functions
251
252 usage() {
253         if [ -n "$DEBUG" ]; then set -xv; fi
254         echo "\
255 Usage: builder [-D|--debug] [-V|--version] [--short-version] [-a|--as_anon] [-b|-ba|--build]
256 [-bb|--build-binary] [-bs|--build-source] [-bc] [-bi] [-bl] [-u|--try-upgrade]
257 [{-cf|--cvs-force}] [{-B|--branch} <branch>] [{-d|--cvsroot} <cvsroot>]
258 [-g|--get] [-h|--help] [--http] [{-l|--logtofile} <logfile>] [-m|--mr-proper]
259 [-q|--quiet] [--date <yyyy-mm-dd> [-r <cvstag>] [{-T|--tag <cvstag>]
260 [-Tvs|--tag-version-stable] [-Ts|--tag-stable] [-Tv|--tag-version]
261 [{-Tp|--tag-prefix} <prefix>] [{-tt|--test-tag}] [--use-greed-sources]
262 [-nu|--no-urls] [-v|--verbose] [--opts <rpm opts>] [--short-circuit]
263 [--show-bconds] [--with/--without <feature>] [--define <macro> <value>]
264 <package>[.spec][:cvstag]
265
266 -5, --update-md5    - update md5 comments in spec, implies -nd -ncs
267 -a5, --add-md5      - add md5 comments to URL sources, implies -nc -nd -ncs
268 -n5, --no-md5       - ignore md5 comments in spec
269 -D, --debug         - enable builder script debugging mode,
270 -debug              - produce rpm debug package (same as --opts -debug)
271 -V, --version       - output builder version string
272 --short-version     - output builder short version
273 -a, --as_anon       - get files via pserver as cvs@$CVS_SERVER,
274 -b, -ba, --build    - get all files from CVS repo or HTTP/FTP and build package
275                       from <package>.spec,
276 -bb, --build-binary - get all files from CVS repo or HTTP/FTP and build binary
277                       only package from <package>.spec,
278 -bp, --build-prep   - execute the %prep phase of <package>.spec,
279 -bc                 - execute the %build phase of <package>.spec,
280 -bi                 - execute the %install phase of <package>.spec
281 -bl                                     - execute the %files phase of <package>.spec
282 -bs, --build-source - get all files from CVS repo or HTTP/FTP and only pack
283                       them into src.rpm,
284 --short-circuit     - short-circuit build
285 -B, --branch        - add branch
286 -c, --clean         - clean all temporarily created files (in BUILD\$RPM_BUILD_ROOT) after rpmbuild commands.
287                       may be used with building process.
288 -m, --mr-proper     - clean all temporarily created files (in BUILD, SOURCES,
289                                           SPECS and \$RPM_BUILD_ROOT and CVS/Entries). Doesn't run
290                                           any rpm building.
291 -cf, --cvs-force        - use -F when tagging (useful when moving branches)
292 -d <cvsroot>, --cvsroot <cvsroot>
293                     - setup \$CVSROOT,
294 --define <macro> <value>
295                     - define a macro <macro> with value <value>,
296 --alt_kernel <kernel>
297                     - same as --define 'alt_kernel <kernel>'
298 --nodeps            - rpm won't check any dependences
299 -g, --get           - get <package>.spec and all related files from CVS repo
300                       or HTTP/FTP,
301 -h, --help          - this message,
302 --http              - use http instead of ftp,
303 -l <logfile>, --logtofile <logfile>
304                     - log all to file,
305 -nc, --no-cvs       - don't download sources from CVS, if source URL is given,
306 -ncs, --no-cvs-specs
307                     - don't check specs in CVS
308 -nd, --no-distfiles - don't download from distfiles
309 -nm, --no-mirrors   - don't download from mirror, if source URL is given,
310 -nu, --no-urls      - don't try to download from FTP/HTTP location,
311 -ns, --no-srcs      - don't download Sources/Patches
312 -ns0, --no-source0  - don't download Source0
313 -nn, --no-net       - don't download anything from the net
314 -pm, --prefer-mirrors - prefer mirrors (if any) over distfiles for SOURCES
315 --no-init           - don't initialize builder paths (SPECS and SOURCES)
316 -ske,
317 --skip-existing-files - skip existing files in get_files
318 --opts <rpm opts>   - additional options for rpm
319 -q, --quiet         - be quiet,
320 --date yyyy-mm-dd   - build package using resources from specified CVS date,
321 -r <cvstag>, --cvstag <cvstag>
322                     - build package using resources from specified CVS tag,
323 -A                  - build package using CVS resources as any sticky tags/date/kopts being reset.
324 -R, --fetch-build-requires
325                     - fetch what is BuildRequired,
326 -RB, --remove-build-requires
327                     - remove all you fetched with -R or --fetch-build-requires
328                       remember, this option requires confirmation,
329 -FRB, --force-remove-build-requires
330                     - remove all you fetched with -R or --fetch-build-requires
331                       remember, this option works without confirmation,
332 -sd, --source-distfiles - list sources available from distfiles (intended for offline
333                       operations; does not work when Icon field is present
334                       but icon file is absent),
335 -sc, --source-cvs - list sources available from CVS
336 -sdp, --source-distfiles-paths - list sources available from distfiles -
337                       paths relative to distfiles directory (intended for offline
338                       operations; does not work when Icon field is present
339                       but icon file is absent),
340 -sf, --source-files - list sources - bare filenames (intended for offline
341                       operations; does not work when Icon field is present
342                       but icon file is absent),
343 -sp, --source-paths - list sources - filenames with full local paths (intended for
344                       offline operations; does not work when Icon field is present
345                       but icon file is absent),
346 -su, --source-urls  - list urls - urls to sources and patches
347                       intended for copying urls with spec with lots of macros in urls
348 -T <cvstag> , --tag <cvstag>
349                     - add cvs tag <cvstag> for files,
350 -Tvs, --tag-version-stable
351                     - add cvs tags STABLE and NAME-VERSION-RELEASE for files,
352 -Ts, --tag-stable
353                     - add cvs tag STABLE for files,
354 -Tv, --tag-version
355                     - add cvs tag NAME-VERSION-RELEASE for files,
356 -Tp, --tag-prefix <prefix>
357                     - add <prefix> to NAME-VERSION-RELEASE tags,
358 -tt, --test-tag <prefix>
359                     - fail if tag is already present,
360 -ir, --integer-release-only
361                     - allow only integer and snapshot releases
362 -v, --verbose       - be verbose,
363 -u, --try-upgrade   - check version, and try to upgrade package
364 -un, --try-upgrade-with-float-version
365                     - as above, but allow float version
366 --use-greed-sources
367                     - try download source from tag head if don't find it in
368                       current tag
369 -U, --update        - refetch sources, don't use distfiles, and update md5 comments
370 -Upi, --update-poldek-indexes
371                     - refresh or make poldek package index files.
372 -np, --nopatch <patchnumber>
373                     - don't apply <patchnumber>
374 --show-bconds       - show available conditional builds, which can be used
375                     - with --with and/or --without switches.
376 --show-bcond-args   - show active bconds, from ~/.bcondrc. this is used by
377                       ./repackage.sh script. in other words, the output is
378                       parseable by scripts.
379 --show-avail-bconds - show available bconds
380 --with/--without <feature>
381                     - conditional build package depending on %_with_<feature>/
382                       %_without_<feature> macro switch.  You may now use
383                       --with feat1 feat2 feat3 --without feat4 feat5 --with feat6
384                       constructions. Set GROUP_BCONDS to yes to make use of it.
385 --target <platform>, --target=<platform>
386                      - build for platform <platform>.
387 --init-rpm-dir       - initialize ~/rpm directory structure
388 "
389 }
390
391 # change dependency to specname
392 # common changes:
393 # - perl(Package::Name) -> perl-Package-Name
394 depspecname() {
395         local package="$1"
396
397         package=$(echo "$package" | sed -e '/perl(.*)/{s,perl(\(.*\)),perl-\1,;s,::,-,g};' -e 's/-\(devel\|static\)$//' )
398         echo "$package"
399 }
400
401 update_shell_title() {
402         [ -t 1 ] || return
403         local len=${COLUMNS:-80}
404         local msg="$(echo "$*" | cut -c-$len)"
405
406         if [ -n "$BE_VERBOSE" ]; then
407                 echo >&2 "$(date +%s.%N) $*"
408         fi
409
410         if [ "x$TITLECHANGE" = "xyes" -o "x$TITLECHANGE" = "x" ]; then
411                 local pkg
412                 if [ -n "$PACKAGE_NAME" ]; then
413                         pkg=${PACKAGE_NAME}-${PACKAGE_VERSION}-${PACKAGE_RELEASE}
414                 else
415                         pkg=${SPECFILE}
416                 fi
417
418                 msg="$pkg: ${SHELL_TITLE_PREFIX:+$SHELL_TITLE_PREFIX }$msg"
419                 msg=$(echo $msg | tr -d '\n\r')
420                 case "$TERM" in
421                         cygwin|xterm*)
422                         echo >&2 -ne "\033]1;$msg\007\033]2;$msg\007"
423                 ;;
424                         screen*)
425                         echo >&2 -ne "\033]0;$msg\007"
426                 ;;
427                 esac
428         fi
429 }
430
431 # set TARGET from BuildArch: from SPECFILE
432 set_spec_target() {
433         if [ -n "$SPECFILE" ] && [ -z "$TARGET" ]; then
434                 tmp=$(awk '/^BuildArch:/ { print $NF; exit }' $ASSUMED_NAME/$SPECFILE)
435                 if [ "$tmp" ]; then
436                                 target_platform=$(rpm -E '%{_target_vendor}-%{_target_os}%{?_gnu}')
437                                 TARGET="$tmp"
438                                 case "$RPMBUILD" in
439                                 "rpmbuild")
440                                         TARGET_SWITCH="--target ${TARGET}-${target_platform}" ;;
441                                 "rpm")
442                                         TARGET_SWITCH="--target=$TARGET" ;;
443                                 esac
444                 fi
445         fi
446 }
447
448 # runs rpm with minimal macroset
449 minirpm() {
450         # we reset macros not to contain macros.build as all the %() macros are
451         # executed here, while none of them are actually needed.
452         # at the time of this writing macros.build + macros contained 70 "%(...)" macros.
453         safe_macrofiles=$(rpm $TARGET_SWITCH --showrc | awk -F: '/^macrofiles/ { gsub(/^macrofiles[ \t]+:/, "", $0); gsub(/:.*macros.build:/, ":", $0); print $0 } ')
454
455         # TODO: move these to /usr/lib/rpm/macros
456         cat > $BUILDER_MACROS <<'EOF'
457 %x8664 x86_64 amd64 ia32e
458 %alt_kernel %{nil}
459 %_alt_kernel %{nil}
460 %bootstrap_release() %{1}
461 %requires_releq_kernel_up(s:n:) %{nil}
462 %requires_releq_kernel_smp(s:n:) %{nil}
463 %requires_releq_kernel(s:n:) %{nil}
464 %requires_releq() %{nil}
465 %pyrequires_eq() %{nil}
466 %requires_eq() %{nil}
467 %requires_eq_to() %{nil}
468 %requires_ge() %{nil}
469 %releq_kernel_up(n:) ERROR
470 %releq_kernel_smp(n:) ERROR
471 %releq_kernel(n:) ERROR
472 %kgcc_package ERROR
473 %_fontsdir ERROR
474 %ruby_version ERROR
475 %ruby_ver_requires_eq() %{nil}
476 %ruby_mod_ver_requires_eq() %{nil}
477 %__php_api_requires() %{nil}
478 %php_major_version ERROR
479 %php_api_version ERROR
480 %requires_xorg_xserver_extension %{nil}
481 %requires_xorg_xserver_xinput %{nil}
482 %requires_xorg_xserver_font %{nil}
483 %requires_xorg_xserver_videodrv %{nil}
484 %py_ver ERROR
485 %perl_vendorarch ERROR
486 %perl_vendorlib ERROR
487 # damn. need it here! - copied from /usr/lib/rpm/macros.build
488 %tmpdir         %(echo "${TMPDIR:-/tmp}")
489 %patchset_source(f:b:) %(
490         base=%{-b*}%{!-b*:10000};
491         start=$(expr $base + %1);
492         end=$(expr $base + %{?2}%{!?2:%{1}});
493         # we need to call seq twice as it doesn't allow two formats
494         seq -f 'Patch%g:' $start $end > %{tmpdir}/__ps1;
495         seq -f '%{-f*}' %1 %{?2}%{!?2:%{1}} > %{tmpdir}/__ps2;
496         paste %{tmpdir}/__ps{1,2};
497         rm -f %{tmpdir}/__ps{1,2};
498 ) \
499 %{nil}
500 %add_etc_shells(p) %{p:<lua>}
501 %remove_etc_shells(p) %{p:<lua>}
502 %lua_add_etc_shells()  %{nil}
503 %lua_remove_etc_shells() %{nil}
504 %required_jdk %{nil}
505 %buildrequires_jdk %{nil}
506 EOF
507         if [ "$NOINIT" = "yes" ] ; then
508                 cat >> $BUILDER_MACROS <<'EOF'
509 %_specdir ./
510 %_sourcedir ./
511 EOF
512         fi
513         eval $RPMBUILD $TARGET_SWITCH --macros "$safe_macrofiles:$BUILDER_MACROS" $QUIET $RPMOPTS $RPMBUILDOPTS $BCOND $* 2>&1
514 }
515
516 cache_rpm_dump() {
517         if [ -n "$DEBUG" ]; then
518                 set -x
519                 set -v
520         fi
521
522         if [ -x /usr/bin/rpm-specdump ]; then
523                 update_shell_title "cache_rpm_dump using rpm-specdump command"
524                 rpm_dump_cache=$(rpm-specdump $TARGET_SWITCH $BCOND $SPECFILE)
525         else
526                 update_shell_title "cache_rpm_dump using rpmbuild command"
527                 local rpm_dump
528                 rpm_dump=`
529                         # what we need from dump is NAME, VERSION, RELEASE and PATCHES/SOURCES.
530                         dump='%{echo:dummy: PACKAGE_NAME %{name} }%dump'
531                         case "$RPMBUILD" in
532                         rpm)
533                                 ARGS='-bp'
534                                 ;;
535                         rpmbuild)
536                                 ARGS='--nodigest --nosignature --nobuild'
537                                 ;;
538                         esac
539                         minirpm $ARGS --define "'prep $dump'" --nodeps $SPECFILE
540                 `
541                 if [ $? -gt 0 ]; then
542                         error=$(echo "$rpm_dump" | sed -ne '/^error:/,$p')
543                         echo "$error" >&2
544                         Exit_error err_build_fail
545                 fi
546
547                 # make small dump cache
548                 rpm_dump_cache=`echo "$rpm_dump" | awk '
549                         $2 ~ /^SOURCEURL/ {print}
550                         $2 ~ /^PATCHURL/  {print}
551                         $2 ~ /^nosource/ {print}
552                         $2 ~ /^PACKAGE_/ {print}
553                 '`
554         fi
555
556         update_shell_title "cache_rpm_dump: OK!"
557 }
558
559 rpm_dump() {
560         if [ -z "$rpm_dump_cache" ] ; then
561                 echo >&2 "internal error: cache_rpm_dump not called! (missing %prep?)"
562         fi
563         echo "$rpm_dump_cache"
564 }
565
566 get_icons() {
567         update_shell_title "get icons"
568         ICONS=$(awk '/^Icon:/ {print $2}' $PACKAGE_DIR/${SPECFILE})
569         if [ -z "$ICONS" ]; then
570                 return
571         fi
572
573         rpm_dump_cache="kalasaba" NODIST="yes" get_files $ICONS
574 }
575
576 parse_spec() {
577         update_shell_title "parsing specfile"
578         if [ -n "$DEBUG" ]; then
579                 set -x
580                 set -v
581         fi
582
583         # icons are needed for successful spec parse
584         get_icons
585
586         cd $PACKAGE_DIR
587         cache_rpm_dump
588
589         if (rpm_dump | grep -qEi ":.*nosource.*1"); then
590                 FAIL_IF_NO_SOURCES="no"
591         fi
592
593         if [ "$NOSRCS" != "yes" ]; then
594                 SOURCES=$(rpm_dump | awk '$2 ~ /^SOURCEURL[0-9]+/ {print substr($2, length("SOURCEURL") + 1), $3}' | LC_ALL=C sort -n | awk '{print $2}')
595                 PATCHES=$(rpm_dump | awk '$2 ~ /^PATCHURL[0-9]+/ {print substr($2, length("PATCHURL") + 1), $3}' | LC_ALL=C sort -n | awk '{print $2}')
596                 ICONS=$(awk '/^Icon:/ {print $2}' ${SPECFILE})
597         fi
598
599         PACKAGE_NAME=$(rpm_dump | awk '$2 == "PACKAGE_NAME" { print $3; exit}')
600         PACKAGE_VERSION=$(rpm_dump | awk '$2 == "PACKAGE_VERSION" { print $3; exit}')
601         PACKAGE_RELEASE=$(rpm_dump | awk '$2 == "PACKAGE_RELEASE" { print $3; exit}')
602
603         if [ "$PACKAGE_NAME" != "$ASSUMED_NAME" ]; then
604                 echo >&2 "WARNING! Spec name ($ASSUMED_NAME) does not agree with package name ($PACKAGE_NAME)"
605         fi
606
607         if [ -n "$BE_VERBOSE" ]; then
608                 echo "- Sources :  `nourl $SOURCES`"
609                 if [ -n "$PATCHES" ]; then
610                         echo "- Patches :  `nourl $PATCHES`"
611                 else
612                         echo "- Patches :  *no patches needed*"
613                 fi
614                 if [ -n "$ICONS" ]; then
615                         echo "- Icon    :  `nourl $ICONS`"
616                 else
617                         echo "- Icon    :  *no package icon*"
618                 fi
619                 echo "- Name    : $PACKAGE_NAME"
620                 echo "- Version : $PACKAGE_VERSION"
621                 echo "- Release : $PACKAGE_RELEASE"
622         fi
623
624         update_shell_title "parse_spec: OK!"
625 }
626
627 Exit_error() {
628         if [ -n "$DEBUG" ]; then
629                 set -x
630                 set -v
631         fi
632
633         cd "$__PWD"
634
635         case "$1" in
636                 "err_no_spec_in_cmdl" )
637                         remove_build_requires
638                         echo >&2 "ERROR: spec file name not specified."
639                         exit 2 ;;
640                 "err_invalid_cmdline" )
641                         echo >&2 "ERROR: invalid command line arg ($2)."
642                         exit 2 ;;
643                 "err_no_spec_in_repo" )
644                         remove_build_requires
645                         echo >&2 "Error: spec file not stored in CVS repo."
646                         exit 3 ;;
647                 "err_no_source_in_repo" )
648                         remove_build_requires
649                         echo >&2 "Error: some source, patch or icon files not stored in CVS repo. ($2)"
650                         exit 4 ;;
651                 "err_build_fail" )
652                         remove_build_requires
653                         echo >&2 "Error: package build failed. (${2:-no more info})"
654                         exit 5 ;;
655                 "err_no_package_data" )
656                         remove_build_requires
657                         echo >&2 "Error: couldn't get out package name/version/release from spec file."
658                         exit 6 ;;
659                 "err_tag_exists" )
660                         remove_build_requires
661                         echo >&2 "Tag ${2} already exists (spec release: ${3})."
662                         exit 9 ;;
663                 "err_fract_rel" )
664                         remove_build_requires
665                         echo >&2 "Release ${2} not integer and not a snapshot."
666                         exit 10 ;;
667                 "err_branch_exists" )
668                         remove_build_requires
669                         echo >&2 "Tree branch already exists (${2})."
670                         exit 11 ;;
671                 "err_acl_deny" )
672                         remove_build_requires
673                         echo >&2 "Error: conditions reject building this spec (${2})."
674                         exit 12 ;;
675         esac
676         echo >&2 "Unknown error."
677         exit 100
678 }
679
680 init_builder() {
681         if [ -n "$DEBUG" ]; then
682                 set -x
683                 set -v
684         fi
685
686         if [ "$NOINIT" != "yes" ] ; then
687                 TOP_DIR=$(eval $RPM $RPMOPTS --eval '%{_topdir}')
688
689                 local macros_ver=$(rpm -E %?rpm_build_macros)
690                 if [ -z "$macros_ver" ]; then
691                         REPO_DIR=$TOP_DIR/packages
692                         PACKAGE_DIR=$TOP_DIR/packages/$ASSUMED_NAME
693                 else
694                         if awk "BEGIN{exit($macros_ver>=$RPM_MACROS_VER)}"; then
695                                 echo >&2 "builder requires rpm-build-macros >= $RPM_MACROS_VER"
696                                 exit 1
697                         fi
698                         REPO_DIR=$TOP_DIR
699                         PACKAGE_DIR=$REPO_DIR/$ASSUMED_NAME
700                 fi
701         else
702                 REPO_DIR="."
703                 PACKAGE_DIR="."
704         fi
705
706         __PWD=$(pwd)
707 }
708
709 get_spec() {
710
711         update_shell_title "get_spec"
712
713         if [ -n "$DEBUG" ]; then
714                 set -x
715                 set -v
716         fi
717
718         cd "$REPO_DIR"
719         if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
720                 # XXX: still needed?
721                 SPECFILE=$(basename $SPECFILE)
722         fi
723         if [ "$NOCVSSPEC" != "yes" ]; then
724
725                 if [ ! -s CVS/Root -a "$NOCVSSPEC" != "yes" ]; then
726                         echo "Warning: No CVS access defined - using local .spec file"
727                         NOCVSSPEC="yes"
728                 fi
729
730                 if [ -d "$ASSUMED_NAME" ]; then
731                         cvsup "$ASSUMED_NAME/$SPECFILE" || Exit_error err_no_spec_in_repo
732                 else
733                         cvsup -c -d $ASSUMED_NAME "packages/$ASSUMED_NAME/$SPECFILE" || Exit_error err_no_spec_in_repo
734
735                         # remove Entries.Static -- so 'cvs up' would update all files in a repo
736                         rm "$ASSUMED_NAME/CVS/Entries.Static"
737                         cvsignore_df .cvsignore
738
739                         # create symlinks for tools
740                         if [ "$SYMLINK_TOOLS" != "no" ]; then
741                                 for a in dropin md5 adapter builder {relup,compile,repackage,rsync,pearize}.sh pldnotify.awk; do
742                                         [ -f $a ] || continue
743                                         ln -s ../$a $ASSUMED_NAME
744                                         cvsignore_df $a
745                                 done
746                         fi
747                 fi
748         fi
749
750         if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
751                 Exit_error err_no_spec_in_repo
752         fi
753
754         if [ "$CHMOD" = "yes" -a -n "$SPECFILE" ]; then
755                 chmod $CHMOD_MODE $ASSUMED_NAME/$SPECFILE
756         fi
757         unset OPTIONS
758         [ -n "$DONT_PRINT_REVISION" ] || grep -E -m 1 "^#.*Revision:.*Date" $ASSUMED_NAME/$SPECFILE
759
760         set_spec_target
761 }
762
763 find_mirror() {
764         cd "$REPO_DIR"
765         local url="$1"
766         if [ ! -f "mirrors" -a "$NOCVSSPEC" != "yes" ] ; then
767                 $CVS_COMMAND update mirrors >&2
768         fi
769
770         IFS="|"
771         local origin mirror name rest ol prefix
772         while read origin mirror name rest; do
773                 # skip comments and empty lines
774                 if [ -z "$origin" ] || [ "${origin#\#}" != "$origin" ]; then
775                         continue
776                 fi
777                 ol=$(echo -n "$origin" | wc -c)
778                 prefix=$(echo -n "$url" | head -c $ol)
779                 if [ "$prefix" = "$origin" ] ; then
780                         suffix=$(echo "$url" | cut -b $((ol+1))-)
781                         echo -n "$mirror$suffix"
782                         return 0
783                 fi
784         done < mirrors
785         echo "$url"
786 }
787
788 # Warning: unpredictable results if same URL used twice
789 src_no() {
790         cd $PACKAGE_DIR
791         rpm_dump | \
792         grep "SOURCEURL[0-9]*[  ]*$1""[         ]*$" | \
793         sed -e 's/.*SOURCEURL\([0-9][0-9]*\).*/\1/' | \
794         head -n 1 | xargs
795 }
796
797 src_md5() {
798         [ "$NO5" = "yes" ] && return
799         no=$(src_no "$1")
800         [ -z "$no" ] && return
801         cd $PACKAGE_DIR
802         local md5
803
804         if [ -f additional-md5sums ]; then
805                 local spec_rev=$(grep $SPECFILE CVS/Entries 2>/dev/null | sed -e s:/$SPECFILE/:: -e s:/.*::)
806                 if [ -z "$spec_rev" ]; then
807                         spec_rev=$(head -n 1 $SPECFILE | sed -e 's/.*\$Revision: \([0-9.]*\).*/\1/')
808                 fi
809                 local spec="$SPECFILE[0-9.,]*,$(echo $spec_rev | sed 's/\./\\./g')"
810                 md5=$(grep -s -v '^#' additional-md5sums | \
811                 grep -E "[      ]$(basename "$1")[      ]+${spec}([     ,]|\$)" | \
812                 sed -e 's/^\([0-9a-f]\{32\}\).*/\1/' | \
813                 grep -E '^[0-9a-f]{32}$')
814
815                 if [ "$md5" ]; then
816                         if [ $(echo "$md5" | wc -l) != 1 ] ; then
817                                 echo "$SPECFILE: more then one entry in additional-md5sums for $1" 1>&2
818                         fi
819                         echo "$md5" | tail -n 1
820                         return
821                 fi
822         fi
823
824         source_md5=`grep -i "^#[        ]*Source$no-md5[        ]*:" $SPECFILE | sed -e 's/.*://'`
825         if [ -n "$source_md5" ]; then
826                 echo $source_md5
827         else
828                 source_md5=`grep -i "BuildRequires:[    ]*digest(%SOURCE$no)[   ]*=" $SPECFILE | sed -e 's/.*=//'`
829                 if [ -n "$source_md5" ]; then
830                         echo $source_md5
831                 else
832                         # we have empty SourceX-md5, but it is still possible
833                         # that we have NoSourceX-md5 AND NoSource: X
834                         nosource_md5=`grep -i "^#[       ]*NoSource$no-md5[      ]*:" $SPECFILE | sed -e 's/.*://'`
835                         if [ -n "$nosource_md5" -a -n "`grep -i "^NoSource:[     ]*$no$" $SPECFILE`" ] ; then
836                                 echo $nosource_md5
837                         fi
838                 fi
839         fi
840 }
841
842 distfiles_path() {
843         echo "by-md5/$(src_md5 "$1" | sed -e 's|^\(.\)\(.\)|\1/\2/&|')/$(basename "$1")"
844 }
845
846 distfiles_url() {
847         echo "$PROTOCOL$DISTFILES_SERVER/distfiles/$(distfiles_path "$1")"
848 }
849
850 distfiles_attic_url() {
851         echo "$PROTOCOL$ATTICDISTFILES_SERVER/distfiles/Attic/$(distfiles_path "$1")"
852 }
853
854 good_md5() {
855         md5=$(src_md5 "$1")
856         [ "$md5" = "" ] || \
857         [ "$md5" = "$(md5sum $(nourl "$1") 2> /dev/null | sed -e 's/ .*//')" ]
858 }
859
860 good_size() {
861         size=$(find $(nourl "$1") -printf "%s" 2>/dev/null)
862         [ -n "$size" -a "$size" -gt 0 ]
863 }
864
865 cvsignore_df() {
866         if [ "$CVSIGNORE_DF" != "yes" ]; then
867                 return
868         fi
869         cvsignore=${PACKAGE_DIR}/.cvsignore
870
871         # add only if not yet there
872         if ! awk -vf="$1" -vc=1 '$0 == f { c = 0 } END { exit c }' $cvsignore 2>/dev/null; then
873                 echo "$1" >> $cvsignore
874         fi
875 }
876
877 cvsup() {
878         update_shell_title "cvsup"
879         local OPTIONS="up "
880
881         if [ "$1" = "-c" ]; then
882                 OPTIONS="co "
883                 shift
884         fi
885         if [ -n "$CVSROOT" ]; then
886                 OPTIONS="-d $CVSROOT $OPTIONS"
887         fi
888
889         if [ -z "$CVSDATE" -a -z "$CVSTAG" ]; then
890                 OPTIONS="$OPTIONS -A"
891         else
892                 if [ -n "$CVSDATE" ]; then
893                         OPTIONS="$OPTIONS -D $CVSDATE"
894                 fi
895                 if [ -n "$CVSTAG" ]; then
896                         OPTIONS="$OPTIONS -r $CVSTAG"
897                 fi
898         fi
899
900         local result=1
901         local retries_counter=0
902         if [ $# = 1 ]; then
903                 update_shell_title "cvsup: $*"
904         else
905                 update_shell_title "cvsup: $# files"
906         fi
907         while [ "$result" != "0" -a "$retries_counter" -le "$CVS_RETRIES" ]; do
908                 retries_counter=$(( $retries_counter + 1 ))
909                 output=$(LC_ALL=C $CVS_COMMAND $OPTIONS "$@" 2>&1)
910                 result=$?
911                 [ -n "$output" ] && echo "$output"
912                 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
913                         echo "Trying again [$*]... ($retries_counter)"
914                         update_shell_title "cvsup: retry #$retries_counter"
915                         sleep 2
916                         continue
917                 else
918                         break
919                 fi
920         done
921         update_shell_title "cvsup: done!"
922         return $result
923 }
924
925 # returns true if "$1" is ftp, http or https protocol url
926 is_url() {
927         case "$1" in
928         ftp://*|http://*|https://*)
929                 return 0
930         ;;
931         esac
932         return 1
933 }
934
935 update_md5() {
936         if [ $# -eq 0 ]; then
937                 return
938         fi
939
940         update_shell_title "update md5"
941         if [ -n "$DEBUG" ]; then
942                 set -x
943                 set -v
944         fi
945
946         cd "$PACKAGE_DIR"
947
948         # pass 1: check files to be fetched
949         local todo
950         local need_files
951         for i in "$@"; do
952                 local fp=$(nourl "$i")
953                 local srcno=$(src_no "$i")
954                 if [ -n "$ADD5" ]; then
955                         [ "$fp" = "$i" ] && continue # FIXME what is this check doing?
956                         grep -qiE '^#[  ]*Source'$srcno'-md5[   ]*:' $PACKAGE_DIR/$SPECFILE && continue
957                         grep -qiE '^BuildRequires:[     ]*digest[(]%SOURCE'$srcno'[)][  ]*=' $PACKAGE_DIR/$SPECFILE && continue
958                 else
959                         grep -qiE '^#[  ]*Source'$srcno'-md5[   ]*:' $PACKAGE_DIR/$SPECFILE || grep -qiE '^BuildRequires:[      ]*digest[(]%SOURCE'$srcno'[)][  ]*=' $PACKAGE_DIR/$SPECFILE || continue
960                 fi
961                 if [ ! -f "$fp" ] || [ $ALWAYS_CVSUP = "yes" ]; then
962                         need_files="$need_files $i"
963                 fi
964         done
965
966         # pass 1a: get needed files
967         if [ "$need_files" ]; then
968                 get_files $need_files
969         fi
970
971         # pass 2: proceed with md5 adding or updating
972         for i in "$@"; do
973                 local fp=$(nourl "$i")
974                 local srcno=$(src_no "$i")
975                 local md5=$(grep -iE '^#[       ]*(No)?Source'$srcno'-md5[      ]*:' $PACKAGE_DIR/$SPECFILE )
976                 if [ -z "$md5" ]; then
977                         md5=$(grep -iE '^[      ]*BuildRequires:[       ]*digest[(]%SOURCE'$srcno'[)][  ]*=' $PACKAGE_DIR/$SPECFILE )
978                 fi
979                 if [ -n "$ADD5" ] && is_url $i || [ -n "$md5" ]; then
980                         local tag="# Source$srcno-md5:\t"
981                         if [[ "$md5" == *NoSource* ]]; then
982                                 tag="# NoSource$srcno-md5:\t"
983                         elif [ -n "$USEDIGEST" ]; then
984                                 tag="BuildRequires:\tdigest(%SOURCE$srcno) = "
985                         fi
986                         md5=$(md5sum "$fp" | cut -f1 -d' ')
987                         echo "Updating Source$srcno ($md5: $fp)."
988                         perl -i -ne '
989                                 print unless (/^\s*#\s*(No)?Source'$srcno'-md5\s*:/i or /^\s*BuildRequires:\s*digest\(%SOURCE'$srcno'\)/i);
990                                 print "'"$tag$md5"'\n" if /^Source'$srcno'\s*:\s+/;
991                         ' \
992                         $PACKAGE_DIR/$SPECFILE
993                 fi
994         done
995 }
996
997 check_md5() {
998         local bad
999         [ "$NO5" = "yes" ] && return
1000
1001         update_shell_title "check md5"
1002
1003         for i in "$@"; do
1004                 bad=0
1005                 if ! good_md5 "$i"; then
1006                         echo -n "MD5 sum mismatch."
1007                         bad=1
1008                 fi
1009                 if ! good_size "$i"; then
1010                         echo -n "0 sized file."
1011                         bad=1
1012                 fi
1013
1014                 if [ $bad -eq 1 ]; then
1015                         echo " Use -U to refetch sources,"
1016                         echo "or -5 to update md5 sums, if you're sure files are correct."
1017                         Exit_error err_no_source_in_repo $i
1018                 fi
1019         done
1020 }
1021
1022 get_files() {
1023         update_shell_title "get_files"
1024
1025         if [ -n "$DEBUG" ]; then
1026                 set -x
1027                 set -v
1028         fi
1029
1030         if [ $# -gt 0 ]; then
1031                 cd "$PACKAGE_DIR"
1032
1033                 if [ ! -s CVS/Root -a "$NOCVS" != "yes" ]; then
1034                         echo "Warning: No CVS access defined for SOURCES"
1035                         NOCVS="yes"
1036                 fi
1037
1038                 local nc=0
1039                 local get_files_cvs=""
1040                 for i in "$@"; do
1041                         nc=$((nc + 1))
1042                         local cvsup=0
1043                         SHELL_TITLE_PREFIX="get_files[$nc/$#]"
1044                         update_shell_title "$i"
1045                         local fp=`nourl "$i"`
1046                         if [ "$SKIP_EXISTING_FILES" = "yes" ] && [ -f "$fp" ]; then
1047                                 continue
1048                         fi
1049
1050                         FROM_DISTFILES=0
1051                         local srcmd5=$(src_md5 "$i")
1052
1053                         # we know if source/patch is present in cvs/distfiles
1054                         # - has md5 (in distfiles)
1055                         # - in cvs... ideas?
1056
1057                         # CHECK: local file didn't exist or always cvs up (first) requested.
1058                         if [ ! -f "$fp" ] || [ $ALWAYS_CVSUP = "yes" ]; then
1059                                 if echo $i | grep -vE '(http|ftp|https|cvs|svn)://' | grep -qE '\.(gz|bz2)$']; then
1060                                         echo "Warning: no URL given for $i"
1061                                 fi
1062                                 target="$fp"
1063
1064                                 if [ -z "$NODIST" ] && [ -n "$srcmd5" ]; then
1065                                         if good_md5 "$i" && good_size "$i"; then
1066                                                 echo "$fp having proper md5sum already exists"
1067                                                 continue
1068                                         fi
1069
1070                                         # optionally prefer mirror over distfiles if there's mirror
1071                                         # TODO: build url list and then try each url from the list
1072                                         if [ -n "$PREFMIRRORS" ] && [ -z "$NOMIRRORS" ] && im=$(find_mirror "$i") && [ "$im" != "$i" ]; then
1073                                                 url="$im"
1074                                         else
1075                                                 url=$(distfiles_url "$i")
1076                                         fi
1077
1078                                         url_attic=$(distfiles_attic_url "$i")
1079                                         FROM_DISTFILES=1
1080                                         # is $url local file?
1081                                         if [[ "$url" = [./]* ]]; then
1082                                                 update_shell_title "${GETLOCAL%% *}: $url"
1083                                                 ${GETLOCAL} $url $target
1084                                         else
1085                                                 if [ -z "$NOMIRRORS" ]; then
1086                                                         url=$(find_mirror "$url")
1087                                                 fi
1088
1089                                                 local uri=${url}
1090                                                 # make shorter message for distfiles urls
1091                                                 if [[ "$uri" = ${PROTOCOL}${DISTFILES_SERVER}* ]] || [[ "$uri" = ${PROTOCOL}${ATTICDISTFILES_SERVER}* ]]; then
1092                                                         uri=${uri#${PROTOCOL}${DISTFILES_SERVER}/distfiles/by-md5/?/?/*/}
1093                                                         uri=${uri#${PROTOCOL}${ATTICDISTFILES_SERVER}/distfiles/by-md5/?/?/*/}
1094                                                         uri="df: $uri"
1095                                                 fi
1096                                                 update_shell_title "${GETURI%% *}: $uri"
1097                                                 ${GETURI} ${OUTFILEOPT} "$target" "$url" || \
1098                                                 if [ "`echo $url | grep -E 'ftp://'`" ]; then
1099                                                         update_shell_title "${GETURI2%% *}: $url"
1100                                                         ${GETURI2} ${OUTFILEOPT} "$target" "$url"
1101                                                 fi
1102                                         fi
1103
1104                                         # is it empty file?
1105                                         if [ ! -s "$target" ]; then
1106                                                 rm -f "$target"
1107                                                 if [ `echo $url_attic | grep -E '^(\.|/)'` ]; then
1108                                                         update_shell_title "${GETLOCAL%% *}: $url_attic"
1109                                                         ${GETLOCAL} $url_attic $target
1110                                                 else
1111                                                         if [ -z "$NOMIRRORS" ]; then
1112                                                                 url_attic=$(find_mirror "$url_attic")
1113                                                         fi
1114                                                         update_shell_title "${GETURI%% *}: $url_attic"
1115                                                         ${GETURI} ${OUTFILEOPT} "$target" "$url_attic" || \
1116                                                         if [ "`echo $url_attic | grep -E 'ftp://'`" ]; then
1117                                                                 update_shell_title "${GETURI2%% *}: $url_attic"
1118                                                                 ${GETURI2} ${OUTFILEOPT} "$target" "$url_attic"
1119                                                         fi
1120                                                         test -s "$target" || rm -f "$target"
1121                                                 fi
1122                                         fi
1123
1124                                         if [ -s "$target" ]; then
1125                                                 cvsignore_df $target
1126                                         else
1127                                                 rm -f "$target"
1128                                                 FROM_DISTFILES=0
1129                                         fi
1130                                 elif [ "$NOCVS" != "yes" -a -z "$srcmd5" ]; then
1131                                         if [ $# -gt 1 ]; then
1132                                                 get_files_cvs="$get_files_cvs $fp"
1133                                                 update_shell_title "$fp (will cvs up later)"
1134                                                 cvsup=1
1135                                         else
1136                                                 cvsup $fp
1137                                         fi
1138                                 fi
1139
1140                                 if [ -z "$NOURLS" ] && [ ! -f "$fp" -o -n "$UPDATE" ] && [ "`echo $i | grep -E 'ftp://|http://|https://'`" ]; then
1141                                         if [ -z "$NOMIRRORS" ]; then
1142                                                 im=$(find_mirror "$i")
1143                                         else
1144                                                 im="$i"
1145                                         fi
1146                                         update_shell_title "${GETURI%% *}: $im"
1147                                         ${GETURI} "$im" ${OUTFILEOPT} "$target" || \
1148                                         if [ "`echo $im | grep -E 'ftp://'`" ]; then
1149                                                 update_shell_title "${GETURI2%% *}: $im"
1150                                                 ${GETURI2} "$im" ${OUTFILEOPT} "$target"
1151                                         fi
1152                                         test -s "$target" || rm -f "$target"
1153                                 fi
1154
1155                                 if [ "$cvsup" = 1 ]; then
1156                                         continue
1157                                 fi
1158
1159                         fi
1160
1161                         # the md5 check must be moved elsewhere as if we've called from update_md5 the md5 is wrong.
1162                         if [ ! -f "$fp" -a "$FAIL_IF_NO_SOURCES" != "no" ]; then
1163                                 if [ -n "GREEDSRC" ]; then
1164                                         get_greed_sources $i
1165                                 else
1166                                         Exit_error err_no_source_in_repo $i
1167                                 fi
1168                         fi
1169
1170                         # we check md5 here just only to refetch immediately
1171                         if good_md5 "$i" && good_size "$i"; then
1172                                 :
1173                         elif [ "$FROM_DISTFILES" = 1 ]; then
1174                                 # wrong md5 from distfiles: remove the file and try again
1175                                 # but only once ...
1176                                 echo "MD5 sum mismatch. Trying full fetch."
1177                                 FROM_DISTFILES=2
1178                                 rm -f $target
1179                                 update_shell_title "${GETURI%% *}: $url"
1180                                 ${GETURI} ${OUTFILEOPT} "$target" "$url" || \
1181                                 if [ "`echo $url | grep -E 'ftp://'`" ]; then
1182                                         update_shell_title "${GETURI2%% *}: $url"
1183                                         ${GETURI2} ${OUTFILEOPT} "$target" "$url"
1184                                 fi
1185                                 if [ ! -s "$target" ]; then
1186                                         rm -f "$target"
1187                                         update_shell_title "${GETURI%% *}: $url_attic"
1188                                         ${GETURI} ${OUTFILEOPT} "$target" "$url_attic" || \
1189                                         if [ "`echo $url_attic | grep -E 'ftp://'`" ]; then
1190                                                 update_shell_title "${GETURI2%% *}: $url_attic"
1191                                                 ${GETURI2} ${OUTFILEOPT} "$target" "$url_attic"
1192                                         fi
1193                                 fi
1194                                 test -s "$target" || rm -f "$target"
1195                         fi
1196                 done
1197                 SHELL_TITLE_PREFIX=""
1198
1199                 if [ "$get_files_cvs" ]; then
1200                         cvsup $get_files_cvs
1201                 fi
1202
1203                 if [ "$CHMOD" = "yes" ]; then
1204                         CHMOD_FILES=$(nourl "$@")
1205                         if [ -n "$CHMOD_FILES" ]; then
1206                                 chmod $CHMOD_MODE $CHMOD_FILES
1207                         fi
1208                 fi
1209         fi
1210 }
1211
1212 make_tagver() {
1213         if [ -n "$DEBUG" ]; then
1214                 set -x
1215                 set -v
1216         fi
1217
1218         # Check whether first character of PACKAGE_NAME is legal for tag name
1219         if [ -z "${PACKAGE_NAME##[_0-9]*}" -a -z "$TAG_PREFIX" ]; then
1220                 TAG_PREFIX=tag_
1221         fi
1222
1223         # NOTE: CVS tags may must not contain the characters `$,.:;@'
1224         TAGVER=$(echo $TAG_PREFIX$PACKAGE_NAME-$PACKAGE_VERSION-$PACKAGE_RELEASE | tr '[.@]' '[_#]')
1225
1226         # Remove #kernel.version_release from TAGVER because tagging sources
1227         # could occur with different kernel-headers than kernel-headers used at build time.
1228         # besides, %{_kernel_ver_str} is not expanded.
1229
1230         # TAGVER=auto-ac-madwifi-ng-0-0_20070225_1#%{_kernel_ver_str}
1231         # TAGVER=auto-ac-madwifi-ng-0-0_20070225_1
1232
1233         TAGVER=${TAGVER%#*}
1234         echo -n "$TAGVER"
1235 }
1236
1237 # bool is_tag_a_branch(tag)
1238 #
1239 # returns 1 if a tag is a branch set on SPECFILE
1240 is_tag_a_branch() {
1241         if [ -n "$DEBUG" ]; then
1242                 set -x
1243                 set -v
1244         fi
1245
1246         if [ $# -ne 1 ]; then
1247                 return 0;
1248         fi
1249
1250         TAG=$1
1251
1252         cd "$PACKAGE_DIR"
1253         $CVS_COMMAND status -v $SPECFILE | grep -Eiq "${TAG}.+(branch: [0-9.]+)"
1254         return $?
1255 }
1256
1257 tag_files() {
1258         TAG_FILES="$@"
1259
1260         if [ -n "$DEBUG" ]; then
1261                 set -x
1262                 set -v
1263         fi
1264
1265         echo "Version: $PACKAGE_VERSION"
1266         echo "Release: $PACKAGE_RELEASE"
1267
1268         local TAGVER
1269         if [ "$TAG_VERSION" = "yes" ]; then
1270                 TAGVER=`make_tagver`
1271                 echo "CVS tag: $TAGVER"
1272         fi
1273         if [ -n "$TAG" ]; then
1274                 echo "CVS tag: $TAG"
1275         fi
1276
1277         local OPTIONS="tag $CVS_FORCE"
1278         if [ -n "$CVSROOT" ]; then
1279                 OPTIONS="-d $CVSROOT $OPTIONS"
1280         fi
1281
1282         # if a tagname we are about to set already exists
1283         # and happens to be a branch (common case with AC-branch)
1284         # pass -B (allows -F to disturb branch tag)
1285         local _tag=$TAG
1286         if [ "$TAG_VERSION" = "yes" ]; then
1287                 _tag=$TAGVER
1288         fi;
1289         is_tag_a_branch $_tag
1290         if [ $? -eq 0 -a $CVS_NSERVER -eq 0 ]; then
1291                 OPTIONS="$OPTIONS -B"
1292         fi;
1293
1294         cd "$PACKAGE_DIR"
1295         local tag_files
1296         for i in $TAG_FILES; do
1297                 # don't tag files stored on distfiles
1298                 [ -n "`src_md5 $i`" ] && continue
1299                 local fp=`nourl "$i"`
1300                 if [ -f "$fp" ]; then
1301                         tag_files="$tag_files $fp"
1302                 elif [ -n "GREEDSRC" ]; then
1303                         get_greed_sources $i
1304                 else
1305                         Exit_error err_no_source_in_repo $i
1306                 fi
1307         done
1308
1309         if [ "$tag_files" ]; then
1310                 if [ "$TAG_VERSION" = "yes" ]; then
1311                         update_shell_title "tag sources: $TAGVER"
1312                         printf "Tagging %d files\n" $(echo $tag_files | wc -w)
1313                         $CVS_COMMAND $OPTIONS $TAGVER $tag_files || exit
1314                 fi
1315                 if [ -n "$TAG" ]; then
1316                         update_shell_title "tag sources: $TAG"
1317
1318                         while [ "$tag_files" ]; do
1319                                 local chunk=$(echo $tag_files | tr ' ' '\n' | head -n 100)
1320                                 printf "Tagging %d files\n" $(echo $chunk | wc -w)
1321                                 $CVS_COMMAND $OPTIONS $TAG $chunk || exit
1322                                 tag_files=$(echo $tag_files | tr ' ' '\n' | tail +101)
1323                         done
1324                 fi
1325         fi
1326
1327         cd "$PACKAGE_DIR"
1328         if [ "$TAG_VERSION" = "yes" ]; then
1329                 update_shell_title "tag spec: $TAGVER"
1330                 $CVS_COMMAND $OPTIONS $TAGVER $SPECFILE || exit
1331         fi
1332         if [ -n "$TAG" ]; then
1333                 update_shell_title "tag spec: $TAG"
1334                 $CVS_COMMAND $OPTIONS $TAG $SPECFILE || exit
1335         fi
1336 }
1337
1338 branch_files() {
1339         TAG=$1
1340         echo "CVS branch tag: $TAG"
1341         shift
1342
1343         TAG_FILES="$@"
1344
1345         if [ -n "$DEBUG" ]; then
1346                 set -x
1347                 set -v
1348         fi
1349
1350         local OPTIONS="tag $CVS_FORCE -b"
1351
1352         # branch exists?
1353         is_tag_a_branch $TAG
1354         if [ $? -eq 1 ]; then
1355                 OPTIONS="$OPTIONS -B"
1356         fi
1357
1358         if [ -n "$CVSROOT" ]; then
1359                 OPTIONS="-d $CVSROOT $OPTIONS"
1360         fi
1361         cd "$PACKAGE_DIR"
1362         local tag_files
1363         for i in $TAG_FILES; do
1364                 local fp=`nourl "$i"`
1365                 if [ -f "$fp" ]; then
1366                         tag_files="$tag_files $fp"
1367                 elif [ -n "GREEDSRC" ]; then
1368                         get_greed_sources $i
1369                 else
1370                         Exit_error err_no_source_in_repo $i
1371                 fi
1372         done
1373         if [ "$tag_files" ]; then
1374                 $CVS_COMMAND $OPTIONS $TAG $tag_files || exit
1375         fi
1376
1377         cd "$PACKAGE_DIR"
1378         $CVS_COMMAND $OPTIONS $TAG $SPECFILE || exit
1379 }
1380
1381
1382 # this function should exit early if package can't be built for this arch
1383 # this avoids unneccessary BR filling.
1384 check_buildarch() {
1385         local out ret
1386         out=$(minirpm --short-circuit -bp --define "'prep exit 0'" --nodeps $SPECFILE 2>&1)
1387         ret=$?
1388         if [ $ret -ne 0 ]; then
1389                 echo >&2 "$out"
1390                 exit $ret
1391         fi
1392 }
1393
1394 # from relup.sh
1395 set_release() {
1396         local specfile="$1"
1397         local rel="$2"
1398         local newrel="$3"
1399         sed -i -e "
1400                 s/^\(%define[ \t]\+_\?rel[ \t]\+\)$rel\$/\1$newrel/
1401                 s/^\(Release:[ \t]\+\)$rel\$/\1$newrel/
1402         " $specfile
1403 }
1404
1405 set_version() {
1406         local specfile="$1"
1407         local ver="$2"
1408         local newver="$3"
1409         sed -i -e "
1410                 s/^\(%define[ \t]\+_\?ver[ \t]\+\)$ver\$/\1$newver/
1411                 s/^\(Version:[ \t]\+\)$ver\$/\1$newver/
1412         " $specfile
1413 }
1414
1415 try_upgrade() {
1416         if [ -n "$TRY_UPGRADE" ]; then
1417                 local TNOTIFY TNEWVER TOLDVER
1418                 update_shell_title "build_package: try_upgrade"
1419
1420                 cd "$PACKAGE_DIR"
1421                 
1422                 if [ -n "$FLOAT_VERSION" ]; then
1423                         TNOTIFY=$($APPDIR/pldnotify.awk ${BE_VERBOSE:+-vDEBUG=1} $SPECFILE -n) || exit 1
1424                 else
1425                         TNOTIFY=$($APPDIR/pldnotify.awk ${BE_VERBOSE:+-vDEBUG=1} $SPECFILE) || exit 1
1426                 fi
1427
1428                 TNEWVER=$(echo $TNOTIFY | awk '{ match($4,/\[NEW\]/); print $5 }')
1429
1430                 if [ -n "$TNEWVER" ]; then
1431                         TOLDVER=`echo $TNOTIFY | awk '{ print $3; }'`
1432                         echo "New version found, updating spec file from $TOLDVER to version $TNEWVER"
1433                         if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
1434                                 cp -f $SPECFILE $SPECFILE.bak
1435                         fi
1436                         chmod +w $SPECFILE
1437                         set_release $SPECFILE $PACKAGE_RELEASE 1
1438                         set_version $SPECFILE $PACKAGE_VERSION $TNEWVER
1439                         parse_spec
1440                         return 1
1441                 fi
1442         fi
1443         return 0
1444 }
1445
1446 build_package() {
1447         update_shell_title "build_package"
1448         if [ -n "$DEBUG" ]; then
1449                 set -x
1450                 set -v
1451         fi
1452
1453         cd "$PACKAGE_DIR"
1454
1455         case "$COMMAND" in
1456                 build )
1457                         BUILD_SWITCH="-ba" ;;
1458                 build-binary )
1459                         BUILD_SWITCH="-bb" ;;
1460                 build-source )
1461                         BUILD_SWITCH="-bs --nodeps" ;;
1462                 build-prep )
1463                         BUILD_SWITCH="-bp --nodeps" ;;
1464                 build-build )
1465                         BUILD_SWITCH="-bc" ;;
1466                 build-install )
1467                         BUILD_SWITCH="-bi" ;;
1468                 build-list )
1469                         BUILD_SWITCH="-bl" ;;
1470
1471         esac
1472
1473         update_shell_title "build_package: $COMMAND"
1474         if [ -n "$LOGFILE" ]; then
1475                 LOG=`eval echo $LOGFILE`
1476                 if [ -d "$LOG" ]; then
1477                         echo "Log file $LOG is a directory."
1478                         echo "Parse error in the spec?"
1479                         Exit_error err_build_fail
1480                 fi
1481                 if [ -n "$LASTLOG_FILE" ]; then
1482                         echo "LASTLOG=$LOG" > $LASTLOG_FILE
1483                 fi
1484                 RES_FILE=$(mktemp -t builder.XXXXXX || ${TMPDIR:-/tmp}/builder.$RANDOM)
1485
1486                 (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
1487                 RETVAL=`cat $RES_FILE`
1488                 rm $RES_FILE
1489                 if [ -n "$LOGDIROK" ] && [ -n "$LOGDIRFAIL" ]; then
1490                         if [ "$RETVAL" -eq "0" ]; then
1491                                 mv $LOG $LOGDIROK
1492                         else
1493                                 mv $LOG $LOGDIRFAIL
1494                         fi
1495                 fi
1496         else
1497                 eval ${NICE_COMMAND} $RPMBUILD $TARGET_SWITCH $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $RPMBUILDOPTS $BCOND --define \'_specdir $PACKAGE_DIR\' --define \'_sourcedir $PACKAGE_DIR\' $SPECFILE
1498                 RETVAL=$?
1499         fi
1500         if [ "$RETVAL" -ne "0" ]; then
1501                 if [ -n "$TRY_UPGRADE" ]; then
1502                         echo "\nUpgrade package to new version failed."
1503                         if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
1504                                 echo "Restoring old spec file."
1505                                 mv -f $SPECFILE.bak $SPECFILE
1506                         fi
1507                         echo ""
1508                 fi
1509                 Exit_error err_build_fail
1510         fi
1511         unset BUILD_SWITCH
1512 }
1513
1514 nourl() {
1515         echo "$@" | sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g'
1516 }
1517
1518 install_required_packages() {
1519         run_poldek -vi $1
1520         return $?
1521 }
1522
1523 find_spec_bcond() { # originally from /usr/lib/rpm/find-spec-bcond
1524         local SPEC="$1"
1525         awk -F"\n" '
1526         /^%changelog/ { exit }
1527         /^%bcond_with/{
1528                 match($0, /bcond_with(out)?[ \t]+[_a-zA-Z0-9]+/);
1529                 bcond = substr($0, RSTART + 6, RLENGTH - 6);
1530                 gsub(/[ \t]+/, "_", bcond);
1531                 print bcond
1532         }' $SPEC | LC_ALL=C sort -u
1533 }
1534
1535 process_bcondrc() {
1536         # expand bconds from ~/.bcondrc
1537         # The file structure is like gentoo's package.use:
1538         # ---
1539         # * -selinux
1540         # samba -mysql -pgsql
1541         # w32codec-installer license_agreement
1542         # php +mysqli
1543         # ---
1544         if ([ -f $HOME/.bcondrc ] || ([ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ])); then
1545                 :
1546         else
1547                 return
1548         fi
1549
1550         SN=${SPECFILE%%\.spec}
1551
1552         local bcondrc=$HOME/.bcondrc
1553         [ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ] && bcondrc=$HOME_ETC/.bcondrc
1554
1555         local bcond_avail=$(find_spec_bcond $SPECFILE)
1556
1557         while read pkg flags; do
1558                 # ignore comments
1559                 [[ "$pkg" == \#* ]] && continue
1560
1561                 # any package or current package?
1562                 if [ "$pkg" = "*" ] || [ "$pkg" = "$PACKAGE_NAME" ] || [ "$pkg" = "$SN" ]; then
1563                         for flag in $flags; do
1564                                 local opt=${flag#[+-]}
1565
1566                                 # use only flags which are in this package.
1567                                 if [[ $bcond_avail = *${opt}* ]]; then
1568                                         if [[ $flag = -* ]]; then
1569                                                 if [[ $BCOND != *--with?${opt}* ]]; then
1570                                                         BCOND="$BCOND --without $opt"
1571                                                 fi
1572                                         else
1573                                                 if [[ $BCOND != *--without?${opt}* ]]; then
1574                                                         BCOND="$BCOND --with $opt"
1575                                                 fi
1576                                         fi
1577                                 fi
1578                         done
1579                 fi
1580         done < $bcondrc
1581         update_shell_title "parse ~/.bcondrc: DONE!"
1582 }
1583
1584 set_bconds_values() {
1585         update_shell_title "set bcond values"
1586
1587         AVAIL_BCONDS_WITHOUT=""
1588         AVAIL_BCONDS_WITH=""
1589
1590         if egrep -q '^# *_with' ${SPECFILE}; then
1591                 echo >&2 "ERROR: This spec has old style bconds."
1592                 exit 1
1593         fi
1594
1595         if ! grep -q '^%bcond' ${SPECFILE}; then
1596                 return
1597         fi
1598
1599         local bcond_avail=$(find_spec_bcond $SPECFILE)
1600         process_bcondrc "$SPECFILE"
1601
1602         update_shell_title "parse bconds"
1603
1604         local opt bcond
1605         for opt in $bcond_avail; do
1606                 case "$opt" in
1607                 without_*)
1608                         bcond=${opt#without_}
1609                         case "$BCOND" in
1610                         *--without?${bcond}*)
1611                                 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT <$bcond>"
1612                                 ;;
1613                         *)
1614                                 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT $bcond"
1615                                 ;;
1616                         esac
1617                         ;;
1618                 with_*)
1619                         bcond=${opt#with_}
1620                         case "$BCOND" in
1621                         *--with?${bcond}*)
1622                                 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH <$bcond>"
1623                                 ;;
1624                         *)
1625                                 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH $bcond"
1626                                 ;;
1627                         esac
1628                         ;;
1629                 *)
1630                         echo >&2 "ERROR: unexpected '$opt' in set_bconds_values"
1631                         exit 1
1632                         ;;
1633                 esac
1634         done
1635 }
1636
1637 run_sub_builder() {
1638         package_name="${1}"
1639         update_shell_title "run_sub_builder $package_name"
1640         #
1641         # No i tutaj bym chcia³ zrobiæ sztuczn± inteligencjê, która spróbuje tego
1642         # pakieta zbudowaæ. Aktualnie niewiele dziala, bo generalnie nie widze do
1643         # konca algorytmu... Ale damy rade. :) Na razie po prostu sie wyjebie tak samo
1644         # jakby nie bylo tego kawalka kodu.
1645         #
1646         # Update: Poprawi³em parê rzeczy i zaczê³o generowaæ pakiety spoza zadanej listy.
1647         #         Jednym s³owem budowanie niespoldkowanych zale¿no¶ci dzia³a w paru przypadkach.
1648         #
1649         #
1650         # y0shi.
1651         # kurwa. translate that ^^^^
1652
1653         parent_spec_name=''
1654
1655         # Istnieje taki spec? ${package}.spec
1656         if [ -f "${PACKAGE_DIR}/${package}.spec" ]; then
1657                 parent_spec_name=${package}.spec
1658         elif [ -f "${PACKAGE_DIR}/$(echo ${package_name} | sed -e s,-devel.*,,g -e s,-static,,g).spec" ]; then
1659                 parent_spec_name="$(echo ${package_name} | sed -e s,-devel.*,,g -e s,-static,,g).spec"
1660         else
1661                 for provides_line in $(grep -r ^Provides:.*$package ${PACKAGE_DIR}); do
1662                         echo $provides_line
1663                 done
1664         fi
1665
1666         if [ "${parent_spec_name}" != "" ]; then
1667                 spawn_sub_builder $parent_spec_name
1668         fi
1669         NOT_INSTALLED_PACKAGES="$NOT_INSTALLED_PACKAGES $package_name"
1670 }
1671
1672 spawn_sub_builder() {
1673         package_name="${1}"
1674         update_shell_title "spawn_sub_builder $package_name"
1675
1676         sub_builder_opts=''
1677         if [ "${FETCH_BUILD_REQUIRES}" == "yes" ]; then
1678                 sub_builder_opts="${sub_builder_opts} -R"
1679         fi
1680         if [ "${REMOVE_BUILD_REQUIRES}" == "nice" ]; then
1681                 sub_builder_opts="${sub_builder_opts} -RB"
1682         elif [ "${REMOVE_BUILD_REQUIRES}" == "force" ]; then
1683                 sub_builder_opts="${sub_builder_opts} -FRB"
1684         fi
1685         if [ "${UPDATE_POLDEK_INDEXES}" == "yes" ]; then
1686                 sub_builder_opts="${sub_builder_opts} -Upi"
1687         fi
1688
1689         cd "${PACKAGE_DIR}"
1690         ./builder ${sub_builder_opts} "$@"
1691 }
1692
1693 remove_build_requires() {
1694         if [ "$INSTALLED_PACKAGES" != "" ]; then
1695                 case "$REMOVE_BUILD_REQUIRES" in
1696                         "force")
1697                                 run_poldek --noask -ve $INSTALLED_PACKAGES
1698                                 ;;
1699                         "nice")
1700                                 run_poldek --ask -ve $INSTALLED_PACKAGES
1701                                 ;;
1702                         *)
1703                                 echo You may want to manually remove following BuildRequires fetched:
1704                                 echo $INSTALLED_PACKAGES
1705                                 echo "Try poldek -e \`cat $(pwd)/.${SPECFILE}_INSTALLED_PACKAGES\`"
1706                                 ;;
1707                 esac
1708         fi
1709 }
1710
1711 display_bconds() {
1712         if [ "$AVAIL_BCONDS_WITH" -o "$AVAIL_BCONDS_WITHOUT" ]; then
1713                 if [ "$BCOND" ]; then
1714                         echo ""
1715                         echo "Building $SPECFILE with the following conditional flags:"
1716                         echo -n "$BCOND"
1717                 else
1718                         echo ""
1719                         echo "No conditional flags passed"
1720                 fi
1721                 echo ""
1722                 echo "from available:"
1723                 echo "--with   :\t$AVAIL_BCONDS_WITH"
1724                 echo "--without:\t$AVAIL_BCONDS_WITHOUT"
1725                 echo ""
1726         fi
1727 }
1728
1729 display_branches() {
1730         if [ "$NOCVSSPEC" != "yes" ]; then
1731                 echo -n "Available branches: "
1732                 $CVS_COMMAND status -v "${SPECFILE}" | awk '!/Sticky Tag:/ && /\(branch:/ { print $1 } ' | xargs
1733         fi
1734 }
1735
1736 # checks a given list of packages/files/provides agains current rpmdb.
1737 # outputs all dependencies which current rpmdb doesn't satisfy.
1738 # input can be either STDIN or parameters
1739 _rpm_prov_check() {
1740         local DEPS
1741
1742         if [ $# -gt 0 ]; then
1743                 DEPS="$@"
1744         else
1745                 DEPS=$(cat)
1746         fi
1747
1748         DEPS=$(LANG=C rpm -q --whatprovides $DEPS 2>&1 | awk '/^(error:|no package provides)/ { print }')
1749
1750         # packages
1751         echo "$DEPS" | awk '/^no package provides/ { print $NF }'
1752
1753         # other deps (files)
1754         echo "$DEPS" | awk -F: '/^error:.*No such file/{o = $2; gsub("^ file ", "", o); print o}'
1755 }
1756
1757 # checks if given package/files/provides exists in rpmdb.
1758 # input can be either stdin or parameters
1759 # returns packages which are present in the rpmdb
1760 _rpm_cnfl_check() {
1761         local DEPS
1762
1763         if [ $# -gt 0 ]; then
1764                 DEPS="$@"
1765         else
1766                 DEPS=$(cat)
1767         fi
1768
1769         LANG=C rpm -q --whatprovides $DEPS 2>/dev/null | awk '!/no package provides/ { print }'
1770 }
1771
1772 # install deps via information from 'rpm-getdeps' or 'rpm --specsrpm'
1773 install_build_requires_rpmdeps() {
1774         if [ "$FETCH_BUILD_REQUIRES_RPMGETDEPS" = "yes" ]; then
1775                 # TODO: Conflicts list doesn't check versions
1776                 local CNFL=$(rpm-getdeps $BCOND $SPECFILE 2> /dev/null | awk '/^\-/ { print $3 } ' | _rpm_cnfl_check | xargs)
1777                 local DEPS=$(rpm-getdeps $BCOND $SPECFILE 2> /dev/null | awk '/^\+/ { print $3 } ' | _rpm_prov_check | xargs)
1778         fi
1779         if [ "$FETCH_BUILD_REQUIRES_RPMSPECSRPM" = "yes" ]; then
1780                 local CNFL=$(rpm -q --specsrpm --conflicts $BCOND $SPECFILE | awk '{print $1}' | _rpm_cnfl_check | xargs)
1781                 local DEPS=$(rpm -q --specsrpm --requires $BCOND $SPECFILE | awk '{print $1}' | _rpm_prov_check | xargs)
1782         fi
1783
1784         if [ -n "$CNFL" ] || [ -n "$DEPS" ]; then
1785                 echo "fetch BuildRequires: install [$DEPS]; remove [$CNFL]"
1786                 update_shell_title "poldek: install [$DEPS]; remove [$CNFL]"
1787                 $SU_SUDO /usr/bin/poldek -q --update || $SU_SUDO /usr/bin/poldek -q --upa
1788         fi
1789         if [ -n "$CNFL" ]; then
1790                 update_shell_title "uninstall conflicting packages: $CNFL"
1791                 echo "Trying to uninstall conflicting packages ($CNFL):"
1792                 $SU_SUDO /usr/bin/poldek --noask --nofollow -ev $CNFL
1793         fi
1794
1795         while [ "$DEPS" ]; do
1796                         update_shell_title "install deps: $DEPS"
1797                         echo "Trying to install dependencies ($DEPS):"
1798                         local log=.${SPECFILE}_poldek.log
1799                         LANG=C $SU_SUDO /usr/bin/poldek --noask --caplookup -uGqQ $DEPS | tee $log
1800                         failed=$(awk '/^error:/{a=$2; sub(/^error: /, "", a); sub(/:$/, "", a); print a}' $log)
1801                         rm -f $log
1802                         local ok
1803                         if [ -n "$failed" ]; then
1804                                 for package in $failed; do
1805                                         spawn_sub_builder -bb $(depspecname $package) && ok="$ok $package"
1806                                 done
1807                                 DEPS="$ok"
1808                         else
1809                                 DEPS=""
1810                         fi
1811         done
1812 }
1813
1814 fetch_build_requires()
1815 {
1816         if [ "${FETCH_BUILD_REQUIRES}" != "yes" ]; then
1817                 return
1818         fi
1819
1820         update_shell_title "fetch build requires"
1821         if [ "$FETCH_BUILD_REQUIRES_RPMGETDEPS" = "yes" ] || [ "$FETCH_BUILD_REQUIRES_RPMSPECSRPM" = "yes" ]; then
1822                 install_build_requires_rpmdeps
1823                 return
1824         fi
1825
1826                 # XXX is this ugliest code written in human history still needed?
1827                 echo "All packages installed by fetch_build_requires() are written to:"
1828                 echo "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES"
1829                 echo ""
1830                 echo "If anything fails, you may get rid of them by executing:"
1831                 echo "poldek -e \`cat `pwd`/.${SPECFILE}_INSTALLED_PACKAGES\`"
1832                 echo ""
1833                 echo > `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
1834                 for package_item in $(cat $SPECFILE | grep -B100000 ^%changelog|grep -v ^#|grep BuildRequires|grep -v ^-|sed -e "s/^.*BuildRequires://g"|awk '{print $1}'|sed -e s,perl\(,perl-,g -e s,::,-,g -e s,\(.*\),,g -e s,%{,,g -e s,},,g|grep -v OpenGL-devel|sed -e s,sh-utils,coreutils,g -e s,fileutils,coreutils,g -e s,textutils,coreutils,g -e s,kgcc_package,gcc,g -e s,\),,g)
1835                 do
1836                         package_item=$(echo $package_item|sed -e s,rpmbuild,rpm-build,g |sed -e s,__perl,perl,g |sed -e s,gasp,binutils-gasp,g -e s,binutils-binutils,binutils,g -e s,apxs,apache,g|sed -e s,apache\(EAPI\)-devel,apache-devel,g -e s,kernel-headers\(netfilter\),kernel-headers,g -e s,awk,mawk,g -e s,mmawk,mawk,g -e s,motif,openmotif,g -e s,openopenmotif,openmotif,g)
1837                         GO="yes"
1838                         package=$(basename "$package_item"|sed -e "s/}$//g")
1839                         COND_ARCH_TST=$(cat $SPECFILE|grep -B1 BuildRequires|grep -B1 $package|grep ifarch|sed -e "s/^.*ifarch//g")
1840                         mach=$(uname -m)
1841
1842                         COND_TST=`cat $SPECFILE|grep BuildRequires|grep "$package"`
1843                         if `echo $COND_TST|grep -q '^BuildRequires:'`; then
1844                                 if [ "$COND_ARCH_TST" != "" ] && [ "`echo $COND_ARCH_TST|sed -e "s/i.86/ix86/g"`" != "`echo $mach|sed -e "s/i.86/ix86/g"`" ]; then
1845                                         GO="yes"
1846                                 fi
1847                         # bcond:
1848                         else
1849                                 COND_NAME=`echo $COND_TST|sed -e s,:BuildRequires:.*$,,g`
1850                                 GO=""
1851                                 # %{without}
1852                                 if `echo $COND_TST|grep -q 'without_'`; then
1853                                         COND_NAME=`echo $COND_NAME|sed -e s,^.*without_,,g`
1854                                         if `echo $COND_TST|grep -q !`; then
1855                                                 COND_STATE="with"
1856                                         else
1857                                                 COND_STATE="wout"
1858                                         fi
1859                                         COND_WITH=`echo $AVAIL_BCONDS_WITH|grep "<$COND_NAME>"`
1860                                         COND_WITHOUT=`echo $AVAIL_BCONDS_WITHOUT|grep "<$COND_NAME>"`
1861                                         if [ -n "$COND_WITHOUT" ] || [ -z "$COND_WITH" ]; then
1862                                                 COND_ARGV="wout"
1863                                         else
1864                                                 COND_ARGV="with"
1865                                         fi
1866                                 # %{with}
1867                                 elif `echo $COND_TST|grep -q 'with_'`; then
1868                                         COND_NAME=`echo $COND_NAME|sed -e s,^.*with_,,g`
1869                                         if `echo $COND_TST|grep -q !`; then
1870                                                 COND_STATE="wout"
1871                                         else
1872                                                 COND_STATE="with"
1873                                         fi
1874                                         COND_WITH=`echo $AVAIL_BCONDS_WITH|grep "<$COND_NAME>"`
1875                                         COND_WITHOUT=`echo $AVAIL_BCONDS_WITHOUT|grep "<$COND_NAME>"`
1876                                         if [ -n "$COND_WITH" ] || [ -z "$COND_WITHOUT" ]; then
1877                                                 COND_ARGV="with"
1878                                         else
1879                                                 COND_ARGV="wout"
1880                                         fi
1881                                 fi
1882                                 RESULT="${COND_STATE}-${COND_ARGV}"
1883                                 case "$RESULT" in
1884                                         "with-wout" | "wout-with" )
1885                                                 GO=""
1886                                                 ;;
1887                                         "wout-wout" | "with-with" )
1888                                                 GO="yes"
1889                                                 ;;
1890                                         * )
1891                                                 echo "Action '$RESULT' was not defined for package '$package_item'"
1892                                                 GO="yes"
1893                                                 ;;
1894                                 esac
1895                         fi
1896
1897                         if [ "$GO" = "yes" ]; then
1898                                 if [ "`rpm -q $package|sed -e "s/$package.*/$package/g"`" != "$package" ]; then
1899                                         echo "Testing if $package has subrequirements..."
1900                                         run_poldek -t -i $package --dumpn=".$package-req.txt"
1901                                         if [ -f ".$package-req.txt" ]; then
1902                                                 for package_name in `cat ".$package-req.txt"|grep -v ^#`
1903                                                 do
1904                                                         if [ "$package_name" = "$package" ]; then
1905                                                                 echo "Installing BuildRequired package:\t$package_name"
1906                                                                 update_shell_title "Installing BuildRequired package: ${package_name}"
1907                                                                 install_required_packages $package
1908                                                         else
1909                                                                 echo "Installing (sub)Required package:\t$package_name"
1910                                                                 update_shell_title "Installing (sub)Required package: ${package_name}"
1911                                                                 install_required_packages $package_name
1912                                                         fi
1913                                                         case $? in
1914                                                                 0)
1915                                                                         INSTALLED_PACKAGES="$package_name $INSTALLED_PACKAGES"
1916                                                                         echo $package_name >> `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
1917                                                                         ;;
1918                                                                 *)
1919                                                                         echo "Attempting to run spawn sub - builder..."
1920                                                                         echo "Package installation failed:\t$package_name"
1921                                                                         run_sub_builder $package_name
1922                                                                         if [ $? -eq 0 ]; then
1923                                                                                 install_required_packages $package_name
1924                                                                                 case $? in
1925                                                                                         0)
1926                                                                                                 INSTALLED_PACKAGES="$package_name $INSTALLED_PACKAGES"
1927                                                                                                 echo $package_name >> `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
1928                                                                                                 ;;
1929                                                                                         *)
1930                                                                                                 NOT_INSTALLED_PACKAGES="$package_name $NOT_INSTALLED_PACKAGES"
1931                                                                                                 ;;
1932                                                                                 esac
1933                                                                         fi
1934                                                                         ;;
1935                                                         esac
1936                                                 done
1937                                                 rm -f ".$package-req.txt"
1938                                         else
1939                                                 echo "Attempting to run spawn sub - builder..."
1940                                                 echo "Package installation failed:\t$package"
1941                                                 run_sub_builder $package
1942                                                 if [ $? -eq 0 ]; then
1943                                                         install_required_packages $package
1944                                                         case $? in
1945                                                                 0)
1946                                                                         INSTALLED_PACKAGES="$package_name $INSTALLED_PACKAGES"
1947                                                                         echo $package_name >> `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
1948                                                                         ;;
1949                                                                 *)
1950                                                                         NOT_INSTALLED_PACKAGES="$package_name $NOT_INSTALLED_PACKAGES"
1951                                                                         ;;
1952                                                         esac
1953                                                 fi
1954                                         fi
1955                                 else
1956                                         echo "Package $package is already installed. BuildRequirement satisfied."
1957                                 fi
1958                         fi
1959                 done
1960                 if [ "$NOT_INSTALLED_PACKAGES" != "" ]; then
1961                         echo >&2 "Unable to install following packages and their dependencies:"
1962                         for pkg in "$NOT_INSTALLED_PACKAGES"
1963                         do
1964                                 echo $pkg
1965                         done
1966                         remove_build_requires
1967                         exit 8
1968                 fi
1969 }
1970
1971 init_rpm_dir() {
1972         TOP_DIR=$(eval $RPM $RPMOPTS --eval '%{_topdir}')
1973         CVSROOT=":pserver:cvs@$CVS_SERVER:/cvsroot"
1974
1975         echo "Initializing rpm directories to $TOP_DIR from $CVSROOT"
1976         mkdir -p $TOP_DIR/{RPMS,BUILD,SRPMS}
1977         cd $TOP_DIR
1978         $CVS_COMMAND -d $CVSROOT co packages/{.cvsignore,rpm.groups,dropin,mirrors,md5,adapter{,.awk},fetchsrc_request,builder,{relup,compile,repackage}.sh}
1979
1980         init_builder
1981
1982         echo "To checkout *all* .spec files (read-only):"
1983         echo "- run cvs co SPECS"
1984
1985         echo "To checkout *all* packages:"
1986         echo "- run cvs up -dP in $TOP_DIR/packages dir"
1987
1988         echo ""
1989         echo "To commit with your developer account:"
1990         echo "- edit $TOP_DIR/packages/CVS/Root"
1991 }
1992
1993 get_greed_sources() {
1994         CVSROOT=":pserver:cvs@$CVS_SERVER:/cvsroot"
1995         if [ -n "BE_VERBOSE" ]; then
1996                 echo "Try greed download: $1 from: $CVSROOT"
1997         fi
1998         $CVS_COMMAND -d $CVSROOT get SOURCES/$1
1999         if [ $? != 0 ]; then
2000                 Exit_error err_no_source_in_repo $1
2001         fi
2002
2003 }
2004
2005 # remove entries from CVS/Entries
2006 cvs_entry_remove() {
2007         local cvsdir="$1"; shift
2008         if [ ! -d "$cvsdir" ]; then
2009                 echo >&2 "cvs_entry_remove: $cvsdir is not a directory"
2010                 exit 1
2011         fi
2012
2013         for file in "$@"; do
2014                 rm -f $cvsdir/CVS/Entries.new || return 1
2015                 awk -ve="${file##*/}" -F/ '$2 != e {print}' $cvsdir/CVS/Entries > $cvsdir/CVS/Entries.new || return 1
2016                 mv -f $cvsdir/CVS/Entries.new $cvsdir/CVS/Entries || return 1
2017         done
2018         return 0
2019 }
2020
2021 mr_proper() {
2022         init_builder
2023         NOCVSSPEC="yes"
2024         DONT_PRINT_REVISION="yes"
2025         get_spec
2026         parse_spec
2027
2028         # remove from CVS/Entries
2029         cvs_entry_remove $PACKAGE_DIR $SPECFILE $SOURCES $PATCHES
2030
2031         # remove spec and sources
2032         $RPMBUILD --clean --rmsource --rmspec --nodeps --define \'_specdir $PACKAGE_DIR\' --define \'_sourcedir $PACKAGE_DIR\' $SPECFILE
2033 }
2034
2035 #---------------------------------------------
2036 # main()
2037
2038 if [ $# = 0 ]; then
2039         usage
2040         exit 1
2041 fi
2042
2043 while [ $# -gt 0 ]; do
2044         case "${1}" in
2045                 -5 | --update-md5)
2046                         COMMAND="update_md5"
2047                         NODIST="yes"
2048                         NOCVSSPEC="yes"
2049                         shift ;;
2050                 -a5 | --add-md5 )
2051                         COMMAND="update_md5"
2052                         NODIST="yes"
2053                         NOCVS="yes"
2054                         NOCVSSPEC="yes"
2055                         ADD5="yes"
2056                         shift ;;
2057                 -n5 | --no-md5 )
2058                         NO5="yes"
2059                         shift ;;
2060                 -D | --debug )
2061                         DEBUG="yes"; shift ;;
2062                 -V | --version )
2063                         COMMAND="version"; shift ;;
2064                 --short-version )
2065                         COMMAND="short-version"; shift ;;
2066                 -a | --as_anon )
2067                         CVSROOT=":pserver:cvs@$CVS_SERVER:/cvsroot"; shift ;;
2068                 -b | -ba | --build )
2069                         COMMAND="build"; shift ;;
2070                 -bb | --build-binary )
2071                         COMMAND="build-binary"; shift ;;
2072                 -bc )
2073                         COMMAND="build-build"; shift ;;
2074                 -bi )
2075                         COMMAND="build-install"; shift ;;
2076                 -bl )
2077                         COMMAND="build-list"; shift ;;
2078                 -bp | --build-prep )
2079                         COMMAND="build-prep"; shift ;;
2080                 -bs | --build-source )
2081                         COMMAND="build-source"; shift ;;
2082                 -B | --branch )
2083                         COMMAND="branch"; shift; TAG="${1}"; shift;;
2084                 -c | --clean )
2085                         CLEAN="--clean"; shift ;;
2086                 -cf | --cvs-force )
2087                         CVS_FORCE="-F"; shift;;
2088                 -d | --cvsroot )
2089                         shift; CVSROOT="${1}"; shift ;;
2090                 -g | --get )
2091                         COMMAND="get"; shift ;;
2092                 -h | --help )
2093                         COMMAND="usage"; shift ;;
2094                 --http )
2095                         PROTOCOL="http"; shift ;;
2096                 -l | --logtofile )
2097                         shift; LOGFILE="${1}"; shift ;;
2098                 -ni| --nice )
2099                         shift; DEF_NICE_LEVEL=${1}; shift ;;
2100                 -ske | --skip-existing-files)
2101                         SKIP_EXISTING_FILES="yes"; shift ;;
2102                 -m | --mr-proper )
2103                         COMMAND="mr-proper"; shift ;;
2104                 -nc | --no-cvs )
2105                         NOCVS="yes"; shift ;;
2106                 -ncs | --no-cvs-specs )
2107                         NOCVSSPEC="yes"; shift ;;
2108                 -nd | --no-distfiles )
2109                         NODIST="yes"; shift ;;
2110                 -nm | --no-mirrors )
2111                         NOMIRRORS="yes"; shift ;;
2112                 -nu | --no-urls )
2113                         NOURLS="yes"; shift ;;
2114                 -ns | --no-srcs )
2115                         NOSRCS="yes"; shift ;;
2116                 -ns0 | --no-source0 )
2117                         NOSOURCE0="yes"; shift ;;
2118                 -nn | --no-net )
2119                         NOCVS="yes"
2120                         NOCVSSPEC="yes"
2121                         NODIST="yes"
2122                         NOMIRRORS="yes"
2123                         NOURLS="yes"
2124                         NOSRCS="yes"
2125                         ALWAYS_CVSUP="no"
2126                         shift;;
2127                 -pm | --prefer-mirrors )
2128                         PREFMIRRORS="yes"
2129                         shift;;
2130                 --no-init )
2131                         NOINIT="yes"
2132                         shift;;
2133                 --opts )
2134                         shift; RPMOPTS="${RPMOPTS} ${1}"; shift ;;
2135                 --nopatch | -np )
2136                         shift; RPMOPTS="${RPMOPTS} --define \"patch${1} : ignoring patch${1}; exit 1; \""; shift ;;
2137                 --topdir)
2138                         RPMOPTS="${RPMOPTS} --define \"_topdir $2\""
2139                         shift 2
2140                         ;;
2141                 --with | --without )
2142                         case $GROUP_BCONDS in
2143                                 "yes")
2144                                         COND=${1}
2145                                         shift
2146                                         # XXX: broken: ./builder -bb ucspi-tcp.spec --without mysql
2147                                         while ! `echo ${1}|grep -qE '(^-|spec)'`
2148                                         do
2149                                                 BCOND="$BCOND $COND $1"
2150                                                 shift
2151                                         done;;
2152                                 "no")
2153                                         if [[ "$2" = *,* ]]; then
2154                                                 for a in $(echo "$2" | tr , ' '); do
2155                                                         BCOND="$BCOND $1 $a"
2156                                                 done
2157                                         else
2158                                                 BCOND="$BCOND $1 $2"
2159                                         fi
2160                                         shift 2 ;;
2161                         esac
2162                         ;;
2163                 --target )
2164                         shift; TARGET="${1}"; shift ;;
2165                 --target=* )
2166                         TARGET=$(echo "${1}" | sed 's/^--target=//'); shift ;;
2167                 -q | --quiet )
2168                         QUIET="--quiet"; shift ;;
2169                 --date )
2170                         CVSDATE="${2}"; shift 2 ;;
2171                 -r | --cvstag )
2172                         CVSTAG="$2"
2173                         shift 2
2174                         ;;
2175                 -A)
2176                         shift
2177                         CVSTAG="HEAD"
2178                         ;;
2179                 -R | --fetch-build-requires)
2180                         FETCH_BUILD_REQUIRES="yes"
2181                         NOT_INSTALLED_PACKAGES=
2182                         shift ;;
2183                 -RB | --remove-build-requires)
2184                         REMOVE_BUILD_REQUIRES="nice"
2185                         shift ;;
2186                 -FRB | --force-remove-build-requires)
2187                         REMOVE_BUILD_REQUIRES="force"
2188                         shift ;;
2189                 -sc | --sources-cvs)
2190                         COMMAND="list-sources-cvs"
2191                         shift ;;
2192                 -sd | --sources-distfiles)
2193                         COMMAND="list-sources-distfiles"
2194                         shift ;;
2195                 -sdp | --sources-distfiles-paths)
2196                         COMMAND="list-sources-distfiles-paths"
2197                         shift ;;
2198                 -sf | --sources-files)
2199                         COMMAND="list-sources-files"
2200                         shift ;;
2201                 -sp | --sources-paths)
2202                         COMMAND="list-sources-local-paths"
2203                         shift ;;
2204                 -su | --sources-urls)
2205                         COMMAND="list-sources-urls"
2206                         shift ;;
2207                 -Tvs | --tag-version-stable )
2208                         COMMAND="tag"
2209                         TAG="STABLE"
2210                         TAG_VERSION="yes"
2211                         shift;;
2212                 -Ts | --tag-stable )
2213                         COMMAND="tag"
2214                         TAG="STABLE"
2215                         TAG_VERSION="no"
2216                         shift;;
2217                 -Tv | --tag-version )
2218                         COMMAND="tag"
2219                         TAG=""
2220                         TAG_VERSION="yes"
2221                         shift;;
2222                 -Tp | --tag-prefix )
2223                         TAG_PREFIX="$2"
2224                         shift 2;;
2225                 -tt | --test-tag )
2226                         TEST_TAG="yes"
2227                         shift;;
2228                 -T | --tag )
2229                         COMMAND="tag"
2230                         shift
2231                         TAG="$1"
2232                         TAG_VERSION="no"
2233                         shift;;
2234                 -ir | --integer-release-only )
2235                         INTEGER_RELEASE="yes"
2236                         shift;;
2237                 -U | --update )
2238                         COMMAND="update_md5"
2239                         UPDATE="yes"
2240                         NOCVSSPEC="yes"
2241                         NODIST="yes"
2242                         shift ;;
2243                 -Upi | --update-poldek-indexes )
2244                         UPDATE_POLDEK_INDEXES="yes"
2245                         shift ;;
2246                 --init-rpm-dir)
2247                         COMMAND="init_rpm_dir"
2248                         shift ;;
2249                 --use-greed-sources )
2250                         GREEDSRC="1"
2251                         shift;;
2252                 -u | --try-upgrade )
2253                         TRY_UPGRADE="1"; shift ;;
2254                 -un | --try-upgrade-with-float-version )
2255                         TRY_UPGRADE="1"; FLOAT_VERSION="1"; shift ;;
2256                 -v | --verbose )
2257                         BE_VERBOSE="1"; shift ;;
2258                 --define)
2259                         shift
2260                         MACRO="${1}"
2261                         shift
2262                         if echo "${MACRO}" | grep -q '\W'; then
2263                                 RPMOPTS="${RPMOPTS} --define \"${MACRO}\""
2264                         else
2265                                 VALUE="${1}"
2266                                 shift
2267                                 RPMOPTS="${RPMOPTS} --define \"${MACRO} ${VALUE}\""
2268                         fi
2269                         ;;
2270                 --alt_kernel)
2271                         shift
2272                         RPMOPTS="${RPMOPTS} --define \"alt_kernel $1\""
2273                         shift
2274                         ;;
2275                 --short-circuit)
2276                         RPMBUILDOPTS="${RPMBUILDOPTS} --short-circuit"
2277                         shift
2278                         ;;
2279                 --show-bconds | -show-bconds | -print-bconds | --print-bconds | -display-bconds | --display-bconds )
2280                         COMMAND="show_bconds"
2281                         shift
2282                         ;;
2283                 --show-bcond-args)
2284                         COMMAND="show_bcond_args"
2285                         shift
2286                         ;;
2287                 --show-avail-bconds)
2288                         COMMAND="show_avail_bconds"
2289                         shift
2290                         ;;
2291                 --nodeps)
2292                         shift
2293                         RPMOPTS="${RPMOPTS} --nodeps"
2294                         ;;
2295                 -debug)
2296                         RPMBUILDOPTS="${RPMBUILDOPTS} -debug"; shift
2297                         ;;
2298                 -*)
2299                         Exit_error err_invalid_cmdline "$1"
2300                         ;;
2301                 *)
2302                         SPECFILE=$1; shift
2303                         # check if specname was passed as specname:cvstag
2304                         if [ "${SPECFILE##*:}" != "${SPECFILE}" ]; then
2305                                 CVSTAG="${SPECFILE##*:}"
2306                                 SPECFILE="${SPECFILE%%:*}"
2307                         fi
2308                         # always have SPECFILE ending with .spec extension
2309                         SPECFILE=${SPECFILE%%.spec}.spec
2310                         ASSUMED_NAME=$(basename ${SPECFILE%%.spec})
2311         esac
2312 done
2313
2314 [ -d "$ASSUMED_NAME" ] && CVS_ENTRIES="$ASSUMED_NAME/CVS/Entries" || CVS_ENTRIES="CVS/Entries"
2315 if [ -f "$CVS_ENTRIES" ] && [ -z "$CVSTAG" ]; then
2316         CVSTAG=$(awk -vSPECFILE=$(basename $SPECFILE) -F/ '$2 == SPECFILE && $6 ~ /^T/{print substr($6, 2)}' ${CVS_ENTRIES})
2317         if [ "$CVSTAG" ]; then
2318                 echo >&2 "builder: Sticky tag $CVSTAG active. Use -r TAGNAME to override."
2319         fi
2320 elif [ "$CVSTAG" = "HEAD" ]; then
2321         # assume -r HEAD is same as -A
2322         CVSTAG=""
2323 fi
2324
2325 if [ "$CVSTAG" ]; then
2326         # pass $CVSTAG used by builder to rpmbuild too, so specs could use it
2327         RPMOPTS="$RPMOPTS --define \"_cvstag $CVSTAG\""
2328 fi
2329
2330 if [ -n "$DEBUG" ]; then
2331         set -x
2332         set -v
2333 fi
2334
2335 if [ -n "$TARGET" ]; then
2336         case "$RPMBUILD" in
2337                 "rpmbuild")
2338                         TARGET_SWITCH="--target $TARGET" ;;
2339                 "rpm")
2340                         TARGET_SWITCH="--target=$TARGET" ;;
2341         esac
2342 fi
2343
2344 if [ "$SCHEDTOOL" != "no" ]; then
2345         NICE_COMMAND="$SCHEDTOOL"
2346 else
2347         NICE_COMMAND="nice -n ${DEF_NICE_LEVEL}"
2348 fi
2349
2350 update_shell_title "$COMMAND"
2351 case "$COMMAND" in
2352         "show_bconds")
2353                 init_builder
2354                 if [ -n "$SPECFILE" ]; then
2355                         get_spec > /dev/null
2356                         parse_spec
2357                         set_bconds_values
2358                         display_bconds
2359                 fi
2360                 ;;
2361         "show_bcond_args")
2362                 init_builder
2363                 if [ -n "$SPECFILE" ]; then
2364                         get_spec > /dev/null
2365                         parse_spec
2366                         set_bconds_values
2367                         echo "$BCOND"
2368                 fi
2369                 ;;
2370         "show_avail_bconds")
2371                 init_builder
2372                 if [ -n "$SPECFILE" ]; then
2373                         get_spec > /dev/null
2374                         parse_spec
2375                         local bcond_avail=$(find_spec_bcond $SPECFILE)
2376                         local opt bcond bconds
2377                         for opt in $bcond_avail; do
2378                                 case "$opt" in
2379                                 without_*)
2380                                         bcond=${opt#without_}
2381                                         bconds="$bconds $bcond"
2382                                         ;;
2383                                 with_*)
2384                                         bcond=${opt#with_}
2385                                         bconds="$bconds $bcond"
2386                                         ;;
2387                                 *)
2388                                         echo >&2 "ERROR: unexpected '$opt' in show_avail_bconds"
2389                                         exit 1
2390                                         ;;
2391                                 esac
2392                         done
2393                         echo $bconds
2394                 fi
2395
2396                 ;;
2397         "build" | "build-binary" | "build-source" | "build-prep" | "build-build" | "build-install" | "build-list")
2398                 init_builder
2399                 if [ -n "$SPECFILE" ]; then
2400                         # display SMP make flags if set
2401                         smp_mflags=$(rpm -E %{?_smp_mflags})
2402                         if [ "$smp_mflags" ]; then
2403                                 echo "builder: SMP make flags are set to $smp_mflags"
2404                         fi
2405
2406                         get_spec
2407                         parse_spec
2408                         set_bconds_values
2409                         display_bconds
2410                         display_branches
2411                         if [ "$COMMAND" != "build-source" ]; then
2412                                 check_buildarch
2413                         fi
2414                         fetch_build_requires
2415                         if [ "$INTEGER_RELEASE" = "yes" ]; then
2416                                 echo "Checking release $PACKAGE_RELEASE..."
2417                                 if echo $PACKAGE_RELEASE | grep -q '^[^.]*\.[^.]*$' 2>/dev/null ; then
2418                                         Exit_error err_fract_rel "$PACKAGE_RELEASE"
2419                                 fi
2420                         fi
2421
2422                         # ./builder -bs test.spec -r AC-branch -Tp auto-ac- -tt
2423                         if [ -n "$TEST_TAG" ]; then
2424                                 local TAGVER=`make_tagver`
2425                                 echo "Searching for tag $TAGVER..."
2426                                 TAGREL=$($CVS_COMMAND status -v $SPECFILE | grep -E "^[[:space:]]*${TAGVER}[[[:space:]]" | sed -e 's#.*(revision: ##g' -e 's#).*##g')
2427                                 if [ -n "$TAGREL" ]; then
2428                                         Exit_error err_tag_exists "$TAGVER" "$TAGREL"
2429                                 fi
2430
2431                                 # - do not allow to build from HEAD when XX-branch exists
2432                                 TREE_PREFIX=$(echo "$TAG_PREFIX" | sed -e 's#^auto-\([a-zA-Z]\+\)-.*#\1#g')
2433                                 if [ "$TREE_PREFIX" != "$TAG_PREFIX" ]; then
2434                                         TAG_BRANCH="${TREE_PREFIX}-branch"
2435                                         TAG_STATUS=$($CVS_COMMAND status -v $SPECFILE | grep -Ei "${TAG_BRANCH}.+(branch: [0-9.]+)")
2436                                         if [ -n "$TAG_STATUS" -a "$CVSTAG" = "HEAD" ]; then
2437                                                 Exit_error err_branch_exists "$TAG_STATUS"
2438                                         fi
2439                                 fi
2440
2441                         fi
2442
2443                         if [ -n "$NOSOURCE0" ] ; then
2444                                 SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
2445                         fi
2446                         try_upgrade
2447                         case $? in
2448                                 0)
2449                                         get_files $SOURCES $PATCHES
2450                                         check_md5 $SOURCES
2451                                         ;;
2452                                 *)
2453                                         NODIST="yes" get_files $SOURCES $PATCHES
2454                                         update_md5 $SOURCES
2455                                         ;;
2456                         esac
2457                         build_package
2458                         if [ "$UPDATE_POLDEK_INDEXES" = "yes" -a "$COMMAND" != "build-prep" ]; then
2459                                 run_poldek --sdir="${POLDEK_INDEX_DIR}" --mkidxz
2460                         fi
2461                         remove_build_requires
2462                 else
2463                         Exit_error err_no_spec_in_cmdl
2464                 fi
2465                 ;;
2466         "branch" )
2467                 init_builder
2468                 if [ -n "$SPECFILE" ]; then
2469                         get_spec
2470                         parse_spec
2471                         # don't fetch sources from remote locations
2472                         new_SOURCES=""
2473                         for file in $SOURCES; do
2474                                 [ -n "`src_md5 $file`" ] && continue
2475                                 new_SOURCES="$new_SOURCES $file"
2476                         done
2477                         SOURCES="$new_SOURCES"
2478                         get_files $SOURCES $PATCHES
2479                         check_md5 $SOURCES
2480                         branch_files $TAG $SOURCES $PATCHES $ICONS
2481                 else
2482                         Exit_error err_no_spec_in_cmdl
2483                 fi
2484                 ;;
2485         "get" )
2486                 init_builder
2487                 if [ -n "$SPECFILE" ]; then
2488                         get_spec
2489                         parse_spec
2490
2491                         if [ -n "$NOSOURCE0" ] ; then
2492                                 SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
2493                         fi
2494                         get_files $SOURCES $PATCHES
2495                         check_md5 $SOURCES
2496                 else
2497                         Exit_error err_no_spec_in_cmdl
2498                 fi
2499                 ;;
2500         "update_md5" )
2501                 init_builder
2502                 if [ -n "$SPECFILE" ]; then
2503                         get_spec
2504                         parse_spec
2505
2506                         if [ -n "$NOSOURCE0" ] ; then
2507                                 SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
2508                         fi
2509                         update_md5 $SOURCES
2510                 else
2511                         Exit_error err_no_spec_in_cmdl
2512                 fi
2513                 ;;
2514         "tag" )
2515                 NOURLS=1
2516                 NODIST="yes"
2517                 init_builder
2518                 if [ -n "$SPECFILE" ]; then
2519                         get_spec
2520                         parse_spec
2521
2522                         # don't fetch sources from remote locations
2523                         new_SOURCES=""
2524                         for file in $SOURCES; do
2525                                 [ -n "`src_md5 $file`" ] && continue
2526                                 new_SOURCES="$new_SOURCES $file"
2527                         done
2528                         SOURCES="$new_SOURCES"
2529                         get_files $SOURCES $PATCHES
2530                         check_md5 $SOURCES
2531                         tag_files $SOURCES $PATCHES $ICONS
2532                 else
2533                         Exit_error err_no_spec_in_cmdl
2534                 fi
2535                 ;;
2536         "mr-proper" )
2537                 mr_proper
2538                 ;;
2539         "list-sources-files" )
2540                 init_builder
2541                 NOCVSSPEC="yes"
2542                 DONT_PRINT_REVISION="yes"
2543                 get_spec
2544                 parse_spec
2545                 for SAP in $SOURCES $PATCHES; do
2546                         echo $SAP | awk '{gsub(/.*\//,"") ; print}'
2547                 done
2548                 ;;
2549         "list-sources-urls" )
2550                 init_builder
2551                 NOCVSSPEC="yes"
2552                 DONT_PRINT_REVISION="yes"
2553                 get_spec
2554                 parse_spec
2555                 SAPS="$SOURCES $PATCHES"
2556                 for SAP in $SAPS ; do
2557                         echo $SAP
2558                 done
2559                 ;;
2560         "list-sources-local-paths" )
2561                 init_builder
2562                 NOCVSSPEC="yes"
2563                 DONT_PRINT_REVISION="yes"
2564                 get_spec
2565                 parse_spec
2566                 for SAP in $SOURCES $PATCHES; do
2567                         echo $PACKAGE_DIR/$(echo $SAP | awk '{gsub(/.*\//,"") ; print }')
2568                 done
2569                 ;;
2570         "list-sources-distfiles-paths" )
2571                 init_builder
2572                 NOCVSSPEC="yes"
2573                 DONT_PRINT_REVISION="yes"
2574                 get_spec
2575                 parse_spec
2576                 for SAP in $SOURCES $PATCHES; do
2577                         if [ -n "$(src_md5 "$SAP")" ]; then
2578                                 distfiles_path "$SAP"
2579                         fi
2580                 done
2581                 ;;
2582         "list-sources-distfiles" )
2583                 init_builder
2584                 NOCVSSPEC="yes"
2585                 DONT_PRINT_REVISION="yes"
2586                 get_spec
2587                 parse_spec
2588                 for SAP in $SOURCES $PATCHES; do
2589                         if [ -n "$(src_md5 "$SAP")" ]; then
2590                                 distfiles_url "$SAP"
2591                         fi
2592                 done
2593                 ;;
2594         "list-sources-cvs" )
2595                 init_builder
2596 #               NOCVSSPEC="yes"
2597                 DONT_PRINT_REVISION="yes"
2598                 get_spec
2599                 parse_spec
2600                 for SAP in $SOURCES $PATCHES; do
2601                         if [ -z "$(src_md5 "$SAP")" ]; then
2602                                 echo $SAP | awk '{gsub(/.*\//,"") ; print}'
2603                         fi
2604                 done
2605                 ;;
2606         "init_rpm_dir")
2607                 init_rpm_dir
2608                 ;;
2609         "usage" )
2610                 usage
2611                 ;;
2612         "short-version" )
2613                 echo "$VERSION"
2614                 ;;
2615         "version" )
2616                 echo "$VERSIONSTRING"
2617                 ;;
2618 esac
2619 if [ -f "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES" -a "$REMOVE_BUILD_REQUIRES" != "" ]; then
2620         rm "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES"
2621 fi
2622 cd "$__PWD"
2623
2624 # vi:syntax=sh:ts=4:sw=4:noet
This page took 0.573355 seconds and 3 git commands to generate.