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