]> git.pld-linux.org Git - packages/rpm-build-tools.git/blob - builder.sh
- properly set FROM_DISTFILES
[packages/rpm-build-tools.git] / builder.sh
1 #!/bin/sh
2 # -----------
3 # $Id$
4 # Exit codes:
5 #       0 - succesful
6 #       1 - help displayed
7 #       2 - no spec file name in cmdl parameters
8 #       3 - spec file not stored in repo
9 #       4 - some source, patch or icon files not stored in repo
10 #       5 - package build failed
11 #       6 - spec file with errors
12
13 # Notes (todo):
14 #       - builder -u fetches current version first
15 #       - tries to get new version from distfiles without new md5
16 #       - after fetching new version doesn't update md5
17 #       - doesn't get sources for specs with %include /usr/lib/rpm/macros.python
18 #         when there's no rpm-pythonprov (rpm's fault, but it's ugly anyway)
19 #       - as above with %include /usr/lib/rpm/macros.perl and no rpm-perlprov
20
21 VERSION="\
22 Build package utility from PLD CVS repository
23 V 0.11 (C) 1999-2003 Free Penguins".
24 PATH="/bin:/usr/bin:/usr/sbin:/sbin:/usr/X11R6/bin"
25
26 COMMAND="build"
27
28 SPECFILE=""
29 BE_VERBOSE=""
30 QUIET=""
31 CLEAN=""
32 DEBUG=""
33 NOURLS=""
34 NOCVS=""
35 NOCVSSPEC=""
36 NODIST=""
37 UPDATE=""
38 UPDATE5=""
39 ADD5=""
40 ALWAYS_CVSUP=${ALWAYS_CVSUP:-"yes"}
41 if [ -s CVS/Root ]; then
42     CVSROOT=$(cat CVS/Root)
43 else
44     CVSROOT=${CVSROOT:-""}
45 fi
46 # Example: LOGFILE='../log.$PACKAGE_NAME'
47 # Yes, you can use variable name! Note _single_ quotes!
48 LOGFILE=''
49
50 LOGDIR=""
51 LOGDIROK=""
52 LOGDIRFAIL=""
53 LASTLOG_FILE=""
54 LTAG=""
55 CHMOD="no"
56 CHMOD_MODE="0444"
57 RPMOPTS=""
58 BCOND=""
59
60 PATCHES=""
61 SOURCES=""
62 ICONS=""
63 PACKAGE_RELEASE=""
64 PACKAGE_VERSION=""
65 PACKAGE_NAME=""
66 PROTOCOL="ftp"
67 WGET_RETRIES=${MAX_WGET_RETRIES:-0}
68 CVS_RETRIES=${MAX_CVS_RETRIES:-1000}
69
70 CVSTAG=""
71 RES_FILE=""
72
73 CVS_SERVER="cvs.pld-linux.org"
74 DISTFILES_SERVER="://distfiles.pld-linux.org"
75
76 DEF_NICE_LEVEL=0
77
78 FAIL_IF_NO_SOURCES="yes"
79
80 GETURI="wget --passive-ftp -c -nd -t$WGET_RETRIES --inet"
81 GETURI2="wget -c -nd -t$WGET_RETRIES --inet"
82 GETLOCAL="cp -a"
83
84 if (rpm --version 2>&1 | grep -q '4.0.[0-2]'); then
85     RPM="rpm"
86     RPMBUILD="rpm"
87 else
88     RPM="rpm"
89     RPMBUILD="rpmbuild"
90 fi
91
92 if [ -f ~/etc/builderrc ]; then
93     . ~/etc/builderrc
94 elif [ -f ~/.builderrc ]; then
95     . ~/.builderrc
96 fi
97
98 #---------------------------------------------
99 # functions
100
101 usage()
102 {
103     if [ -n "$DEBUG" ]; then set -xv; fi
104     echo "\
105 Usage: builder [-D|--debug] [-V|--version] [-a|--as_anon] [-b|-ba|--build]
106
107         [-bb|--build-binary] [-bs|--build-source] [-u|--try-upgrade]
108         [{-B|--branch} <branch>] [{-d|--cvsroot} <cvsroot>] [-g|--get]
109         [-h|--help] [--http] [{-l,--logtofile} <logfile>] [-m|--mr-proper]
110         [-q|--quiet] [--date <yyyy-mm-dd> [-r <cvstag>] [{-T--tag <cvstag>]
111         [-Tvs|--tag-version-stable] [-Tvn|--tag-version-nest]
112         [-Ts|--tag-stable] [-Tn|--tag-nest] [-Tv|--tag-version]
113         [-nu|--no-urls] [-v|--verbose] [--opts <rpm opts>]
114         [--with/--without <feature>] [--define <macro> <value>] <package>[.spec]
115
116         -5, --update-md5
117                         - update md5 comments in spec, implies -nd -ncs
118         -a5, --add-md5  - add md5 comments to URL sources, implies -nc -nd -ncs
119         -D, --debug     - enable script debugging mode,
120         -V, --version   - output builder version
121         -a, --as_anon   - get files via pserver as cvs@$CVS_SERVER,
122         -b, -ba,
123         --build         - get all files from CVS repo or HTTP/FTP and build
124                           package from <package>.spec,
125         -bb, --build-binary
126                         - get all files from CVS repo or HTTP/FTP and build
127                           binary only package from <package>.spec,
128         -bs,
129         --build-source  - get all files from CVS repo or HTTP/FTP and only
130                           pack them into src.rpm,
131         -B, --branch    - add branch
132         -c, --clean     - clean all temporarily created files (in BUILD,
133                           SOURCES, SPECS and \$RPM_BUILD_ROOT),
134         -d <cvsroot>, --cvsroot <cvsroot>
135                         - setup \$CVSROOT,
136         --define <macro> <value>
137                         - define a macro <macro> with value <value>,
138         -g, --get       - get <package>.spec and all related files from
139                           CVS repo or HTTP/FTP,
140         -h, --help      - this message,
141         --http          - use http instead of ftp,
142         -l <logfile>, --logtofile <logfile>
143                         - log all to file,
144         -m, --mr-proper - only remove all files related to spec file and
145                           all work resources,
146         -nc, --no-cvs   - don't download sources from CVS, if source URL is
147                           given,
148         -ncs, --no-cvs-specs
149                         - don't check specs in CVS
150         -nd, --no-distfiles
151                         - don't download from distfiles
152         -nm, --no-mirrors - don't download from mirror, if source URL is given,
153         -nu, --no-urls  - don't try to download from FTP/HTTP location,
154         -ns, --no-srcs  - don't download Sources
155         -ns0, --no-source0
156                         - don't download Source0
157         --opts <rpm opts>
158                         - additional options for rpm
159         -q, --quiet     - be quiet,
160         --date yyyy-mm-dd
161                         - build package using resources from specified CVS
162                           date,
163         -r <cvstag>, --cvstag <cvstag>
164                         - build package using resources from specified CVS
165                           tag,
166         -T <cvstag> , --tag <cvstag>
167                         - add cvs tag <cvstag> for files,
168         -Tvs, --tag-version-stable
169                         - add cvs tags STABLE and NAME-VERSION-RELESE for files,
170         -Tvn, --tag-version-nest
171                         - add cvs tags NEST and NAME-VERSION-RELESE for files,
172         -Ts, --tag-stable
173                         - add cvs tag STABLE for files,
174         -Tn, --tag-nest
175                         - add cvs tag NEST for files,
176         -Tv, --tag-version
177                         - add cvs tag NAME-VERSION-RELESE for files,
178         -v, --verbose   - be verbose,
179         -u, --try-upgrade
180                         - check version, and try to upgrade package
181         -un, --try-upgrade-with-float-version
182                         - as above, but allow float version
183         -U, --update
184                         - refetch sources, don't use distfiles, and update md5 
185                           comments
186         --with/--without <feature>
187                         - conditional build package depending on
188                           %_with_<feature>/%_without_<feature> macro
189                           switch
190 "
191 }
192
193 cache_rpm_dump () {
194    rpm_dump_cache=`
195         case "$RPMBUILD" in
196         rpm )
197                 rpm -bp --nodeps --define 'prep %dump' $BCOND $SPECFILE 2>&1 
198                 ;;
199         rpmbuild )
200                 rpmbuild --nodigest --nosignature --define 'prep %dump' $BCOND $SPECFILE 2>&1 
201                 ;;
202         esac`
203 }
204
205 rpm_dump () {
206     if [ -z "$rpm_dump_cache" ] ; then
207         echo "internal error: cache_rpm_dump not called!" 1>&2
208     fi
209     echo "$rpm_dump_cache"
210 }
211
212 parse_spec()
213 {
214     if [ -n "$DEBUG" ]; then
215         set -x;
216         set -v;
217     fi
218
219     cd $SPECS_DIR
220
221     cache_rpm_dump
222
223     if [ "$NOSRCS" != "yes" ]; then
224         SOURCES="`rpm_dump | awk '/SOURCEURL[0-9]+/ {print $3}'`"
225     fi
226     if (rpm_dump | grep -qEi ":.*nosource.*1"); then
227         FAIL_IF_NO_SOURCES="no"
228     fi
229
230     PATCHES="`rpm_dump | awk '/PATCHURL[0-9]+/ {print $3}'`"
231     ICONS="`awk '/^Icon:/ {print $2}' ${SPECFILE}`"
232     PACKAGE_NAME="`$RPM -q --qf '%{NAME}\n' --specfile ${SPECFILE} 2> /dev/null | head -1`"
233     PACKAGE_VERSION="`$RPM -q --qf '%{VERSION}\n' --specfile ${SPECFILE} 2> /dev/null| head -1`"
234     PACKAGE_RELEASE="`$RPM -q --qf '%{RELEASE}\n' --specfile ${SPECFILE} 2> /dev/null | head -1`"
235
236     if [ -n "$BE_VERBOSE" ]; then
237         echo "- Sources :  `nourl $SOURCES`"
238         if [ -n "$PATCHES" ]; then
239             echo "- Patches :  `nourl $PATCHES`"
240         else
241             echo "- Patches :  *no patches needed*"
242         fi
243         if [ -n "$ICONS" ]; then
244             echo "- Icon    :  `nourl $ICONS`"
245         else
246             echo "- Icon    :  *no package icon*"
247         fi
248         echo "- Name    : $PACKAGE_NAME"
249         echo "- Version : $PACKAGE_VERSION"
250         echo "- Release : $PACKAGE_RELEASE"
251     fi
252 }
253
254 Exit_error()
255 {
256     if [ -n "$DEBUG" ]; then
257         set -x;
258         set -v;
259     fi
260
261     cd $__PWD
262
263     case "$1" in
264     "err_no_spec_in_cmdl" )
265         echo "ERROR: spec file name not specified.";
266         exit 2 ;;
267     "err_no_spec_in_repo" )
268         echo "Error: spec file not stored in CVS repo.";
269         exit 3 ;;
270     "err_no_source_in_repo" )
271         echo "Error: some source, patch or icon files not stored in CVS repo. ($2)";
272         exit 4 ;;
273     "err_build_fail" )
274         echo "Error: package build failed. (${2:-no more info})";
275         exit 5 ;;
276     esac
277 }
278
279 init_builder()
280 {
281     if [ -n "$DEBUG" ]; then
282         set -x;
283         set -v;
284     fi
285
286     SOURCE_DIR="`$RPM --eval '%{_sourcedir}'`"
287     SPECS_DIR="`$RPM --eval '%{_specdir}'`"
288
289     __PWD=`pwd`
290 }
291
292 get_spec()
293 {
294     if [ -n "$DEBUG" ]; then
295         set -x;
296         set -v;
297     fi
298
299     if [ "$NOCVSSPEC" != "yes" ]; then
300         cd $SPECS_DIR
301
302         OPTIONS="up "
303
304         if [ -n "$CVSROOT" ]; then
305             OPTIONS="-d $CVSROOT $OPTIONS"
306         else
307             if [ ! -s CVS/Root -a "$NOCVSSPEC" != "yes" ]; then
308                 echo "warning: No cvs access defined - using local .spec file"
309                 NOCVSSPEC="yes"
310             fi
311         fi
312
313         if [ -z "$CVSDATE" -a -z "$CVSTAG" ]; then
314             OPTIONS="$OPTIONS -A"
315         else
316             if [ -n "$CVSDATE" ]; then
317                 OPTIONS="$OPTIONS -D $CVSDATE"
318             fi
319             if [ -n "$CVSTAG" ]; then
320                 OPTIONS="$OPTIONS -r $CVSTAG"
321             fi
322         fi
323
324         result=1
325         retries_counter=0
326         while [ "$result" != "0" -a "$retries_counter" -le "$CVS_RETRIES" ]; do
327             retries_counter=$(( $retries_counter + 1 ))
328             output=$(LC_ALL=C cvs $OPTIONS $SPECFILE 2>&1)
329             result=$?
330             [ -n "$output" ] && echo "$output"
331             if [ "$result" -ne "0" ]; then
332                 if (echo "$output" | grep -qE "(Cannot connect to|connect to .* failed|Connection reset by peer|Connection timed out)") && [ "$retries_counter" -le "$CVS_RETRIES" ]; then
333                     echo "Trying again [$SPECFILE]... ($retries_counter)"
334                     sleep 2
335                     continue
336                 fi
337                 Exit_error err_no_spec_in_repo;
338             fi
339         done
340     fi
341     if [ ! -f "$SPECFILE" ]; then
342         Exit_error err_no_spec_in_repo;
343     fi
344
345     if [ "$CHMOD" = "yes" -a -n "$SPECFILE" ]; then
346         chmod $CHMOD_MODE $SPECFILE
347     fi
348     unset OPTIONS
349     grep -E -m 1 "^#.*Revision:.*Date" $SPECFILE
350 }
351
352 find_mirror(){
353
354     cd "$SPECS_DIR"
355     url="$1"
356     if [ ! -f "mirrors" -a "$NOCVSSPEC" != "yes" ] ; then
357         cvs update mirrors >&2
358     fi
359
360     IFS="|"
361     while read origin mirror name rest; do
362         ol=`echo -n "$origin"|wc -c`
363         prefix="`echo -n "$url" | head -c $ol`"
364         if [ "$prefix" = "$origin" ] ; then
365             suffix="`echo "$url"|cut -b $ol-`"
366             echo -n "$mirror$suffix"
367             return 0
368         fi
369     done < mirrors
370     echo "$url"
371 }
372
373 src_no ()
374 {
375     cd $SPECS_DIR
376     rpm_dump | \
377         grep "SOURCEURL[0-9]*[  ]*$1""[         ]*$" | \
378         sed -e 's/.*SOURCEURL\([0-9][0-9]*\).*/\1/' | \
379         head -1 | xargs
380 }
381
382 src_md5 ()
383 {
384     no=$(src_no "$1")
385     [ -z "$no" ] && return
386     cd $SPECS_DIR
387     spec_rev=$(grep $SPECFILE CVS/Entries | sed -e s:/$SPECFILE/:: -e s:/.*::)
388     if [ -z "$spec_rev" ]; then
389         spec_rev="$(head -1 $SPECFILE | sed -e 's/.*\$Revision: \([0-9.]*\).*/\1/')"
390     fi
391     spec="$SPECFILE[0-9.,]*,$(echo $spec_rev | sed 's/\./\\./g')"
392     md5=$(grep -s -v '^#' additional-md5sums | \
393         grep -E "[      ]$(basename "$1")[      ]+${spec}([     ,]|\$)" | \
394         sed -e 's/^\([0-9a-f]\{32\}\).*/\1/' | \
395         grep -E '^[0-9a-f]{32}$')
396     if [ X"$md5" = X"" ] ; then
397         grep -i "#[     ]*Source$no-md5[        ]*:" $SPECFILE | sed -e 's/.*://' | xargs
398     else
399         if [ $(echo "$md5" | wc -l) != 1 ] ; then
400             echo "$SPECFILE: more then one entry in additional-md5sums for $1" 1>&2
401         fi
402         echo "$md5" | tail -1
403     fi
404 }
405
406 distfiles_url ()
407 {
408     echo "$PROTOCOL$DISTFILES_SERVER/by-md5/$(src_md5 "$1" | sed -e 's|^\(.\)\(.\)|\1/\2/&|')/$(basename "$1")"
409 }
410
411 good_md5 ()
412 {
413     md5=$(src_md5 "$1")
414     [ "$md5" = "" ] || \
415     [ "$md5" = "$(md5sum $(nourl "$1") 2> /dev/null | sed -e 's/ .*//')" ]
416 }
417
418 get_files()
419 {
420     GET_FILES="$@"
421
422     if [ -n "$DEBUG" ]; then
423         set -x;
424         set -v;
425     fi
426
427     if [ -n "$1$2$3$4$5$6$7$8$9${10}" ]; then
428         cd $SOURCE_DIR
429
430         OPTIONS="up "
431         if [ -n "$CVSROOT" ]; then
432             OPTIONS="-d $CVSROOT $OPTIONS"
433         else
434             if [ ! -s CVS/Root -a "$NOCVS" != "yes" ]; then
435                 echo "warning: No cvs access defined for SOURCES"
436                 NOCVS="yes"
437             fi
438         fi
439         if [ -z "$CVSDATE" -a -z "$CVSTAG" ]; then
440             OPTIONS="$OPTIONS -A"
441         else
442             if [ -n "$CVSDATE" ]; then
443                 OPTIONS="$OPTIONS -D $CVSDATE"
444             fi
445             if [ -n "$CVSTAG" ]; then
446                 OPTIONS="$OPTIONS -r $CVSTAG"
447             fi
448         fi
449         for i in $GET_FILES; do
450             if [ -n "$UPDATE5" ]; then
451                 if [ -n "$ADD5" ]; then
452                     [ `nourl $i` = "$i" ] && continue
453                     grep -qiE '^#[      ]*Source'$(src_no $i)'-md5[     ]*:' $SPECS_DIR/$SPECFILE && continue
454                 else
455                     grep -qiE '^#[      ]*Source'$(src_no $i)'-md5[     ]*:' $SPECS_DIR/$SPECFILE || continue
456                 fi
457             fi
458             FROM_DISTFILES=0
459             if [ ! -f `nourl $i` ] || [ $ALWAYS_CVSUP = "yes" ]; then
460                 if echo $i | grep -vE '(http|ftp|https|cvs|svn)://' | grep -qE '\.(gz|bz2)$']; then
461                     echo "Warning: no URL given for $i"
462                 fi
463
464                 if [ -n "$(src_md5 "$i")" ] && [ -z "$NODIST" ]; then
465                     if good_md5 "$i"; then
466                         echo "$(nourl "$i") having proper md5sum already exists"
467                         continue
468                     fi
469                     target=$(nourl "$i")
470                     url=$(distfiles_url "$i")
471                     if [ `echo $url | grep -E '^(\.|/)'` ]; then
472                         ${GETLOCAL} $url $target
473                     else
474                         FROM_DISTFILES=1
475                         if [ -z "$NOMIRRORS" ]; then
476                             url="`find_mirror "$url"`"
477                         fi
478                         ${GETURI} -O "$target" "$url" || \
479                             if [ `echo $url | grep -E 'ftp://'` ]; then
480                                 ${GETURI2} -O "$target" "$url"
481                             fi
482                         if ! test -s "$target"; then
483                             rm -f "$target"
484                             FROM_DISTFILES=0
485                         fi
486                     fi
487                 elif [ -z "$(src_md5 "$i")" -a "$NOCVS" != "yes" ]; then
488                     # ( echo $i | grep -qvE '(ftp|http|https)://' ); -- if CVS should be used, but URLs preferred
489                     result=1
490                     retries_counter=0
491                     while [ "$result" != "0" -a "$retries_counter" -le "$CVS_RETRIES" ]; do
492                         retries_counter=$(( $retries_counter + 1 ))
493                         output=$(LC_ALL=C cvs $OPTIONS `nourl $i` 2>&1)
494                         result=$?
495                         [ -n "$output" ] && echo "$output"
496                         if (echo "$output" | grep -qE "(Cannot connect to|connect to .* failed|Connection reset by peer|Connection timed out)") && [ "$result" -ne "0" -a "$retries_counter" -le "$CVS_RETRIES" ]; then
497                                 echo "Trying again [`nourl $i`]... ($retries_counter)"
498                                 sleep 2
499                                 continue
500                         else
501                                 break
502                         fi
503                     done
504                 fi
505
506                 if [ -z "$NOURLS" ] && [ ! -f "`nourl $i`" -o -n "$UPDATE" ] && [ `echo $i | grep -E 'ftp://|http://|https://'` ]; then
507                     if [ -z "$NOMIRRORS" ]; then
508                         im="`find_mirror "$i"`"
509                     else
510                         im="$i"
511                     fi
512                     ${GETURI} "$im" || \
513                         if [ `echo $im | grep -E 'ftp://'` ]; then ${GETURI2} "$im" ; fi
514                 fi
515
516
517             fi
518             srcno=$(src_no $i)
519             if [ ! -f "`nourl $i`" -a "$FAIL_IF_NO_SOURCES" != "no" ]; then
520                 Exit_error err_no_source_in_repo $i;
521             elif [ -n "$UPDATE5" ] && \
522                 ( ( [ -n "$ADD5" ] && echo $i | grep -q -E 'ftp://|http://|https://' && \
523                     [ -z "$(grep -E -i '^NoSource[      ]*:[    ]*'$i'([        ]|$)' $SPECS_DIR/$SPECFILE)" ] ) || \
524                 grep -q -i -E '^#[      ]*source'$(src_no $i)'-md5[     ]*:' $SPECS_DIR/$SPECFILE )
525             then
526                 echo "Updating source-$srcno md5."
527                 md5=$(md5sum `nourl $i` | cut -f1 -d' ')
528                 perl -i -ne '
529                                 print unless /^\s*#\s*Source'$srcno'-md5\s*:/i;
530                                 print "# Source'$srcno'-md5:\t'$md5'\n" 
531                                         if /^Source'$srcno'\s*:\s+/;
532                                 ' \
533                                 $SPECS_DIR/$SPECFILE
534             fi
535
536             if good_md5 "$i"; then
537                 :
538             elif [ "$FROM_DISTFILES" = 1 ]; then
539                 # wrong md5 from distfiles: remove the file and try again
540                 # but only once ...
541                 echo "MD5 sum mismatch. Trying full fetch."
542                 FROM_DISTFILES=2
543                 rm -f $target
544                 ${GETURI} -O "$target" "$url" || \
545                     if [ `echo $url | grep -E 'ftp://'` ]; then
546                         ${GETURI2} -O "$target" "$url"
547                     fi
548                 test -s "$target" || rm -f "$target"
549             fi
550
551             if good_md5 "$i"; then
552                 :
553             else
554                 echo "MD5 sum mismatch.  Use -U to refetch sources,"
555                 echo "or -5 to update md5 sums, if you're sure files are correct."
556                 Exit_error err_no_source_in_repo $i
557             fi
558         done
559
560         if [ "$CHMOD" = "yes" ]; then
561             CHMOD_FILES="`nourl $GET_FILES`"
562             if [ -n "$CHMOD_FILES" ]; then
563                 chmod $CHMOD_MODE $CHMOD_FILES
564             fi
565         fi
566         unset OPTIONS
567     fi
568 }
569
570 tag_files()
571 {
572     TAG_FILES="$@"
573
574     if [ -n "$DEBUG" ]; then
575         set -x;
576         set -v;
577     fi
578
579     if [ -n "$1$2$3$4$5$6$7$8$9${10}" ]; then
580         echo "Version: $PACKAGE_VERSION"
581         echo "Release: $PACKAGE_RELEASE"
582         TAGVER=$PACKAGE_NAME-`echo $PACKAGE_VERSION | sed -e "s/\./\_/g" -e "s/@/#/g"`-`echo $PACKAGE_RELEASE | sed -e "s/\./\_/g" -e "s/@/#/g"`
583         if [ "$TAG_VERSION" = "yes" ]; then
584             echo "CVS tag: $TAGVER"
585         fi
586         if [ -n "$TAG" ]; then
587             echo "CVS tag: $TAG"
588         fi
589
590         OPTIONS="tag -F"
591         if [ -n "$CVSROOT" ]; then
592             OPTIONS="-d $CVSROOT $OPTIONS"
593         fi
594
595         cd $SOURCE_DIR
596         for i in $TAG_FILES; do
597             if [ -f `nourl $i` ]; then
598                 if [ "$TAG_VERSION" = "yes" ]; then
599                     cvs $OPTIONS $TAGVER `nourl $i`
600                 fi
601                 if [ -n "$TAG" ]; then
602                     cvs $OPTIONS $TAG `nourl $i`
603                 fi
604             else
605                 Exit_error err_no_source_in_repo $i
606             fi
607         done
608
609         cd $SPECS_DIR
610         if [ "$TAG_VERSION" = "yes" ]; then
611             cvs $OPTIONS $TAGVER $SPECFILE
612         fi
613         if [ -n "$TAG" ]; then
614             cvs $OPTIONS $TAG $SPECFILE
615         fi
616
617         unset OPTIONS
618     fi
619 }
620
621 branch_files()
622 {
623     TAG=$1
624     echo "CVS branch tag: $TAG"
625     shift;
626
627     TAG_FILES="$@"
628
629     if [ -n "$DEBUG" ]; then
630         set -x;
631         set -v;
632     fi
633
634     if [ -n "$1$2$3$4$5$6$7$8$9${10}" ]; then
635
636         OPTIONS="tag -b"
637         if [ -n "$CVSROOT" ]; then
638             OPTIONS="-d $CVSROOT $OPTIONS"
639         fi
640         cd $SOURCE_DIR
641         for i in $TAG_FILES; do
642             if [ -f `nourl $i` ]; then
643                 cvs $OPTIONS $TAG `nourl $i`
644             else
645                 Exit_error err_no_source_in_repo $i
646             fi
647         done
648         cd $SPECS_DIR
649         cvs $OPTIONS $TAG $SPECFILE
650
651         unset OPTIONS
652     fi
653 }
654
655
656
657 build_package()
658 {
659     if [ -n "$DEBUG" ]; then
660         set -x;
661         set -v;
662     fi
663
664     cd $SPECS_DIR
665
666     if [ -n "$TRY_UPGRADE" ]; then
667
668         if [ -n "FLOAT_VERSION" ]; then
669             TNOTIFY=`./pldnotify.awk $SPECFILE -n`
670         else
671             TNOTIFY=`./pldnotify.awk $SPECFILE`
672         fi
673
674         TNEWVER=`echo $TNOTIFY | awk '{ match($4,/\[NEW\]/); print $5 }'`
675
676         if [ -n "$TNEWVER" ]; then
677
678             TOLDVER=`echo $TNOTIFY | awk '{ print $3; }'`
679
680             echo "New version found, updating spec file to version " $TNEWVER
681
682             cp -f $SPECFILE $SPECFILE.bak
683
684             chmod +w $SPECFILE
685
686             eval "perl -pi -e 's/Version:\t"$TOLDVER"/Version:\t"$TNEWVER"/gs' $SPECFILE"
687             eval "perl -pi -e 's/Release:\t[1-9]{0,4}/Release:\t1/' $SPECFILE"
688
689             parse_spec;
690
691             get_files "$SOURCES $PATCHES";
692
693             unset TOLDVER TNEWVER TNOTIFY
694         fi
695
696     fi
697
698
699     cd $SPECS_DIR
700
701     case "$COMMAND" in
702         build )
703             BUILD_SWITCH="-ba" ;;
704         build-binary )
705             BUILD_SWITCH="-bb" ;;
706         build-source )
707             BUILD_SWITCH="-bs --nodeps" ;;
708     esac
709     if [ -n "$LOGFILE" ]; then
710         if [ -n "$CVSTAG" ]; then
711             LTAG="r_`echo $CVSTAG|sed -e 's/\./_/g'`_"
712         else
713             LTAG=""
714         fi
715         LOG=`eval echo $LOGFILE`
716         if [ -n "$LASTLOG_FILE" ]; then
717             echo "LASTLOG=$LOG" > $LASTLOG_FILE
718         fi
719         RES_FILE=~/tmp/$RPMBUILD-exit-status.$RANDOM
720         (nice -n ${DEF_NICE_LEVEL} time $RPMBUILD $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $BCOND $SPECFILE; echo $? > $RES_FILE) 2>&1 |tee $LOG
721         RETVAL=`cat $RES_FILE`
722         rm $RES_FILE
723         if [ -n "$LOGDIROK" ] && [ -n "$LOGDIRFAIL" ]; then
724             if [ "$RETVAL" -eq "0" ]; then
725                 mv $LOG $LOGDIROK
726             else
727                 mv $LOG $LOGDIRFAIL
728             fi
729         fi
730     else
731         eval nice -n ${DEF_NICE_LEVEL} $RPMBUILD $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $BCOND $SPECFILE
732         RETVAL=$?
733     fi
734
735     if [ "$RETVAL" -ne "0" ]; then
736
737         if [ -n "$TRY_UPGRADE" ]; then
738             echo "\n!!! Package with new version cannot be build automagically\n"
739             mv -f $SPECFILE.bak $SPECFILE
740         fi
741
742         Exit_error err_build_fail;
743     fi
744
745     unset BUILD_SWITCH
746 }
747
748 nourl()
749 {
750     echo "$@" | sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g'
751 }
752
753 #---------------------------------------------
754 # main()
755
756 if [ "$#" = 0 ]; then
757     usage;
758     exit 1
759 fi
760
761 while test $# -gt 0 ; do
762     case "${1}" in
763         -5 | --update-md5 )
764             COMMAND="get";
765             NODIST="yes"
766             NOCVSSPEC="yes"
767             UPDATE5="yes"
768             shift ;;
769         -a5 | --add-md5 )
770             COMMAND="get";
771             NODIST="yes"
772             NOCVS="yes"
773             NOCVSSPEC="yes"
774             UPDATE5="yes"
775             ADD5="yes"
776             shift ;;
777         -D | --debug )
778             DEBUG="yes"; shift ;;
779         -V | --version )
780             COMMAND="version"; shift ;;
781         -a | --as_anon )
782             CVSROOT=":pserver:cvs@$CVS_SERVER:/cvsroot"; shift ;;
783         -b | -ba | --build )
784             COMMAND="build"; shift ;;
785         -bb | --build-binary )
786             COMMAND="build-binary"; shift ;;
787         -bs | --build-source )
788             COMMAND="build-source"; shift ;;
789         -B | --branch )
790             COMMAND="branch"; shift; TAG="${1}"; shift;;
791         -c | --clean )
792             CLEAN="--clean --rmspec --rmsource"; shift ;;
793         -d | --cvsroot )
794             shift; CVSROOT="${1}"; shift ;;
795         -g | --get )
796             COMMAND="get"; shift ;;
797         -h | --help )
798             COMMAND="usage"; shift ;;
799         --http )
800             PROTOCOL="http"; shift ;;
801         -l | --logtofile )
802             shift; LOGFILE="${1}"; shift ;;
803         -ni| --nice )
804             shift; DEF_NICE_LEVEL=${1}; shift ;;
805         -m | --mr-proper )
806             COMMAND="mr-proper"; shift ;;
807         -nc | --no-cvs )
808             NOCVS="yes"; shift ;;
809         -ncs | --no-cvs-specs )
810             NOCVSSPEC="yes"; shift ;;
811         -nd | --no-distfiles )
812             NODIST="yes"; shift ;;
813         -nm | --no-mirrors )
814             NOMIRRORS="yes"; shift ;;
815         -nu | --no-urls )
816             NOURLS="yes"; shift ;;
817         -ns | --no-srcs )
818             NOSRCS="yes"; shift ;;
819         -ns0 | --no-source0 )
820             NOSOURCE0="yes"; shift ;;
821         --opts )
822             shift; RPMOPTS="${1}"; shift ;;
823         --with | --without )
824             BCOND="$BCOND $1 $2" ; shift 2 ;;
825         -q | --quiet )
826             QUIET="--quiet"; shift ;;
827         --date )
828             CVSDATE="${2}"; shift 2 ;;
829         -r | --cvstag )
830             shift; CVSTAG="${1}"; shift ;;
831         -Tvs | --tag-version-stable )
832             COMMAND="tag";
833             TAG="STABLE"
834             TAG_VERSION="yes"
835             shift;;
836         -Tvn | --tag-version-nest )
837             COMMAND="tag";
838             TAG="NEST"
839             TAG_VERSION="yes"
840             shift;;
841         -Ts | --tag-stable )
842             COMMAND="tag";
843             TAG="STABLE"
844             TAG_VERSION="no"
845             shift;;
846         -Tn | --tag-nest )
847             COMMAND="tag";
848             TAG="NEST"
849             TAG_VERSION="no"
850             shift;;
851         -Tv | --tag-version )
852             COMMAND="tag";
853             TAG=""
854             TAG_VERSION="yes"
855             shift;;
856         -T | --tag )
857             COMMAND="tag";
858             shift
859             TAG="$1"
860             TAG_VERSION="no"
861             shift;;
862         -U | --update )
863             COMMAND="get"
864             UPDATE="yes"
865             NODIST="yes"
866             UPDATE5="yes"
867             shift ;;
868         -u | --try-upgrade )
869             TRY_UPGRADE="1"; shift ;;
870         -un | --try-upgrade-with-float-version )
871             TRY_UPGRADE="1"; FLOAT_VERSION="1"; shift ;;
872         -v | --verbose )
873             BE_VERBOSE="1"; shift ;;
874         --define)
875             shift
876             MACRO="${1}"
877             VALUE="${2}"
878             shift 2
879             RPMOPTS="${RPMOPTS} --define \"${MACRO} ${VALUE}\""
880             ;;
881         * )
882             SPECFILE="`basename ${1} .spec`.spec"; shift ;;
883     esac
884 done
885
886 if [ -n "$DEBUG" ]; then
887     set -x;
888     set -v;
889 fi
890
891 case "$COMMAND" in
892     "build" | "build-binary" | "build-source" )
893         init_builder;
894         if [ -n "$SPECFILE" ]; then
895             get_spec;
896             parse_spec;
897
898             if [ -n "$FAIL_IF_CHANGED_BUT_NOT_BUMPED" ]; then
899                 TAGVER=$PACKAGE_NAME-`echo $PACKAGE_VERSION | sed -e "s/\./\_/g" -e "s/@/#/g"`-`echo $PACKAGE_RELEASE | sed -e "s/\./\_/g" -e "s/@/#/g"`
900                 CURTAGREL=$(cvs status $SPECFILE | grep "Working revision:" | awk '{ print $3 }')
901                 TAGREL=$(cvs status -v $SPECFILE | grep -E "^[[:space:]]*${TAGVER}[[[:space:]]" | sed -e 's#.*(revision: ##g' -e 's#).*##g')
902
903                 if [ -n "$TAGREL" -a "$TAGREL" != "$CURTAGREL" ]; then
904                     Exit_error err_build_fail "not bumped ver-rel - was already used in rev $TAGREL"
905                 fi
906             fi
907
908             if [ -n "$ICONS" ]; then
909                 get_files $ICONS;
910                 parse_spec;
911             fi
912             if [ -n "$NOSOURCE0" ] ; then
913                 SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
914             fi
915             get_files "$SOURCES $PATCHES";
916             build_package;
917         else
918             Exit_error err_no_spec_in_cmdl;
919         fi
920         ;;
921     "branch" )
922         init_builder;
923         if [ -n "$SPECFILE" ]; then
924                 get_spec;
925                 parse_spec;
926                 if [ -n "$ICONS" ]; then
927                         get_files $ICONS
928                         parse_spec;
929                 fi
930                 get_files $SOURCES $PATCHES;
931                 branch_files $TAG "$SOURCES $PATCHES $ICONS";
932         else
933                 Exit_error err_no_spec_in_cmdl;
934         fi
935         ;;
936     "get" )
937         init_builder;
938         if [ -n "$SPECFILE" ]; then
939             get_spec;
940             parse_spec;
941             if [ -n "$ICONS" ]; then
942                 get_files $ICONS
943                 parse_spec;
944             fi
945             if [ -n "$NOSOURCE0" ] ; then
946                 SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
947             fi
948             get_files $SOURCES $PATCHES
949         else
950             Exit_error err_no_spec_in_cmdl;
951         fi
952         ;;
953     "tag" )
954         init_builder;
955         if [ -n "$SPECFILE" ]; then
956             get_spec;
957             parse_spec;
958             if [ -n "$ICONS" ]; then
959                 get_files $ICONS
960                 parse_spec;
961             fi
962             get_files $SOURCES $PATCHES;
963             tag_files "$SOURCES $PATCHES $ICONS";
964         else
965             Exit_error err_no_spec_in_cmdl;
966         fi
967         ;;
968     "mr-proper" )
969         $RPM --clean --rmsource --rmspec --force --nodeps $SPECFILE
970         ;;
971     "usage" )
972         usage;;
973     "version" )
974         echo "$VERSION";;
975 esac
976
977 cd $__PWD
This page took 0.093445 seconds and 4 git commands to generate.