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