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