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