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