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