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