]> git.pld-linux.org Git - packages/rpm.git/blob - builder
- fixed (s/-bi/-bb/) and enhanced comment
[packages/rpm.git] / builder
1 #!/bin/sh
2 # -----------
3 # $Id$
4 # Exit codes:
5 #       0 - succesful
6 #       1 - help displayed
7 #       2 - no spec file name in cmdl parameters
8 #       3 - spec file not stored in repo
9 #       4 - some source, patch or icon files not stored in repo
10 #       5 - package build failed
11 #       6 - spec file with errors
12 #       7 - wrong source in /etc/poldek.conf
13 #  8 - Failed installing buildrequirements and subrequirements
14
15 # Notes (todo):
16 #       - builder -u fetches current version first
17 #       - tries to get new version from distfiles without new md5
18 #       - after fetching new version doesn't update md5
19 #       - doesn't get sources for specs with %include /usr/lib/rpm/macros.python
20 #         when there's no rpm-pythonprov (rpm's fault, but it's ugly anyway)
21 #       - as above with %include /usr/lib/rpm/macros.perl and no rpm-perlprov
22 #       - when Icon: field is present, -5 and -a5 doesn't work
23
24 VERSION="\
25 Build package utility from PLD CVS repository
26 V 0.11 (C) 1999-2003 Free Penguins".
27 PATH="/bin:/usr/bin:/usr/sbin:/sbin:/usr/X11R6/bin"
28
29 COMMAND="build"
30
31 SPECFILE=""
32 BE_VERBOSE=""
33 QUIET=""
34 CLEAN=""
35 DEBUG=""
36 NOURLS=""
37 NOCVS=""
38 NOCVSSPEC=""
39 NODIST=""
40 UPDATE=""
41 UPDATE5=""
42 ADD5=""
43 ALWAYS_CVSUP=${ALWAYS_CVSUP:-"yes"}
44 CVSROOT=""
45
46 # It can be used i.e. in log file naming.
47 # See LOGFILE example.
48 DATE=`date +%Y-%m-%d_%H-%M-%S`
49
50 # Example: LOGFILE='../log.$PACKAGE_NAME'
51 # Example: LOGFILE='../LOGS/log.$PACKAGE_NAME.$DATE'
52 # Yes, you can use variable name! Note _single_ quotes!
53 LOGFILE=''
54
55 LOGDIR=""
56 LOGDIROK=""
57 LOGDIRFAIL=""
58 LASTLOG_FILE=""
59
60 CHMOD="no"
61 CHMOD_MODE="0444"
62 RPMOPTS=""
63 BCOND=""
64 GROUP_BCONDS="no"
65
66 PATCHES=""
67 SOURCES=""
68 ICONS=""
69 PACKAGE_RELEASE=""
70 PACKAGE_VERSION=""
71 PACKAGE_NAME=""
72 PROTOCOL="ftp"
73 WGET_RETRIES=${MAX_WGET_RETRIES:-0}
74 CVS_RETRIES=${MAX_CVS_RETRIES:-1000}
75
76 CVSTAG=""
77 RES_FILE=""
78
79 CVS_SERVER="cvs.pld-linux.org"
80 DISTFILES_SERVER="://distfiles.pld-linux.org"
81
82 DEF_NICE_LEVEL=0
83
84 FAIL_IF_NO_SOURCES="yes"
85
86 wget --help 2>&1 | grep -q ' \-\-inet ' && WGET_OPTS="$WGET_OPTS --inet"
87 wget --help 2>&1 | grep -q ' \-\-retry\-connrefused ' && WGET_OPTS="$WGET_OPTS --retry-connrefused"
88
89 GETURI="wget --passive-ftp -c -nd -t$WGET_RETRIES $WGET_OPTS"
90 GETURI2="wget -c -nd -t$WGET_RETRIES $WGET_OPTS"
91 GETLOCAL="cp -a"
92
93 if (rpm --version 2>&1 | grep -q '4.0.[0-2]'); then
94         RPM="rpm"
95         RPMBUILD="rpm"
96 else
97         RPM="rpm"
98         RPMBUILD="rpmbuild"
99 fi
100
101 POLDEK_INDEX_DIR="`$RPM --eval %_rpmdir`/"
102 POLDEK_SOURCE="cvs"
103 POLDEK_CMD="/usr/bin/poldek"
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 #
122 if [ -n "$HOME_ETC" ]; then
123         USER_CFG=$HOME_ETC/.builderrc
124 else
125         USER_CFG=~/.builderrc
126 fi
127
128 [ -f $USER_CFG ] && . $USER_CFG
129
130 run_poldek()
131 {
132         RES_FILE=~/tmp/poldek-exit-status.$RANDOM
133         if [ -n "$LOGFILE" ]; then
134                 LOG=`eval echo $LOGFILE`
135                 if [ -n "$LASTLOG_FILE" ]; then
136                         echo "LASTLOG=$LOG" > $LASTLOG_FILE
137                 fi
138                 (nice -n ${DEF_NICE_LEVEL} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE})|tee $LOG
139                 return $exit_pldk
140         else
141                 (nice -n ${DEF_NICE_LEVEL} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE}) 1>&2 >/dev/null
142                 return `cat ${RES_FILE}`
143                 rm -rf ${RES_FILE}
144         fi
145 }
146
147 # Example grep cvs /etc/poldek.conf:
148 # source = cvs /home/users/yoshi/rpm/RPMS/
149 if [ "$UPDATE_POLDEK_INDEXES" = "yes" ]; then
150         run_poldek -l -n ${POLDEK_SOURCE} 1>&2 > /dev/null
151         if [ ! "$?" == "0" ]; then
152                 echo "Using improper source '${POLDEK_SOURCE}' in /etc/poldek.conf"
153                 echo "Fix it and try to continue"
154                 exit 7
155         fi
156 fi
157
158 #---------------------------------------------
159 # functions
160
161 usage()
162 {
163         if [ -n "$DEBUG" ]; then set -xv; fi
164         echo "\
165 Usage: builder [-D|--debug] [-V|--version] [-a|--as_anon] [-b|-ba|--build]
166
167 [-bb|--build-binary] [-bs|--build-source] [-u|--try-upgrade]
168 [{-B|--branch} <branch>] [{-d|--cvsroot} <cvsroot>] [-g|--get]
169 [-h|--help] [--http] [{-l,--logtofile} <logfile>] [-m|--mr-proper]
170 [-q|--quiet] [--date <yyyy-mm-dd> [-r <cvstag>] [{-T--tag <cvstag>]
171 [-Tvs|--tag-version-stable] [-Tvn|--tag-version-nest]
172 [-Ts|--tag-stable] [-Tn|--tag-nest] [-Tv|--tag-version]
173 [{-Tp|--tag-prefix} <prefix>]
174 [-nu|--no-urls] [-v|--verbose] [--opts <rpm opts>]
175 [--with/--without <feature>] [--define <macro> <value>] <package>[.spec]
176         
177 -5, --update-md5    - update md5 comments in spec, implies -nd -ncs
178 -a5, --add-md5      - add md5 comments to URL sources, implies -nc -nd -ncs
179 -D, --debug         - enable script debugging mode,
180 -V, --version       - output builder version
181 -a, --as_anon       - get files via pserver as cvs@$CVS_SERVER,
182 -b, -ba, --build    - get all files from CVS repo or HTTP/FTP and build package
183                       from <package>.spec,
184 -bb, --build-binary - get all files from CVS repo or HTTP/FTP and build binary
185                       only package from <package>.spec,
186 -bs, --build-source - get all files from CVS repo or HTTP/FTP and only pack
187                       them into src.rpm,
188 -bp, --build-prep   - execute the %prep phase of <package>.spec,
189 -B, --branch        - add branch
190 -c, --clean         - clean all temporarily created files (in BUILD, SOURCES,
191                       SPECS and \$RPM_BUILD_ROOT),
192 -d <cvsroot>, --cvsroot <cvsroot>       
193                     - setup \$CVSROOT,
194 --define <macro> <value>
195                     - define a macro <macro> with value <value>,
196 --nodeps            - rpm won't check any dependences
197 -g, --get           - get <package>.spec and all related files from CVS repo
198                       or HTTP/FTP,
199 -h, --help          - this message,
200 --http              - use http instead of ftp,
201 -l <logfile>, --logtofile <logfile>
202                     - log all to file,
203 -m, --mr-proper     - only remove all files related to spec file and all work
204                       resources,
205 -nc, --no-cvs       - don't download sources from CVS, if source URL is given,
206 -ncs, --no-cvs-specs
207                     - don't check specs in CVS
208 -nd, --no-distfiles - don't download from distfiles
209 -nm, --no-mirrors   - don't download from mirror, if source URL is given,
210 -nu, --no-urls      - don't try to download from FTP/HTTP location,
211 -ns, --no-srcs      - don't download Sources
212 -ns0, --no-source0  - don't download Source0
213 --opts <rpm opts>   - additional options for rpm
214 -q, --quiet         - be quiet,
215 --date yyyy-mm-dd   - build package using resources from specified CVS date,
216 -r <cvstag>, --cvstag <cvstag>
217                     - build package using resources from specified CVS tag,
218 -R, --fetch-build-requires
219                     - fetch what is BuildRequired,
220 -RB, --remove-build-requires
221                     - remove all you fetched with -R or --fetch-build-requires
222                       remember, this option requires confirmation,
223 -FRB, --force-remove-build-requires
224                     - remove all you fetched with -R or --fetch-build-requires
225                       remember, this option works without confirmation,
226 -T <cvstag> , --tag <cvstag>
227                     - add cvs tag <cvstag> for files,
228 -Tvs, --tag-version-stable
229                     - add cvs tags STABLE and NAME-VERSION-RELESE for files,
230 -Tvn, --tag-version-nest
231                     - add cvs tags NEST and NAME-VERSION-RELESE for files,
232 -Ts, --tag-stable
233                     - add cvs tag STABLE for files,
234 -Tn, --tag-nest
235                     - add cvs tag NEST for files,
236 -Tv, --tag-version
237                     - add cvs tag NAME-VERSION-RELESE for files,
238 -Tp, --tag-prefix <prefix>
239                     - add <prefix> to NAME-VERSION-RELEASE tags,
240 -v, --verbose       - be verbose,
241 -u, --try-upgrade   - check version, and try to upgrade package
242 -un, --try-upgrade-with-float-version
243                     - as above, but allow float version
244 -U, --update        - refetch sources, don't use distfiles, and update md5 comments
245 -Upi, --update-poldek-indexes
246                     - refresh or make poldek package index files.
247 --with/--without <feature>
248                     - conditional build package depending on %_with_<feature>/
249                       %_without_<feature> macro switch.  You may now use
250                       --with feat1 feat2 feat3 --without feat4 feat5 --with feat6
251                       constructions. Set GROUP_BCONDS to yes to make use of it.
252 "
253 }
254
255 cache_rpm_dump () {
256 rpm_dump_cache=`
257         case "$RPMBUILD" in
258                 rpm )
259                         rpm -bp --nodeps --define 'prep %dump' $BCOND $SPECFILE 2>&1
260                         ;;
261                 rpmbuild )
262                         rpmbuild --nodigest --nosignature --define 'prep %dump' $BCOND $SPECFILE 2>&1
263                         ;;
264         esac`
265 }
266
267 rpm_dump () {
268         if [ -z "$rpm_dump_cache" ] ; then
269                 echo "internal error: cache_rpm_dump not called!" 1>&2
270         fi
271         echo "$rpm_dump_cache"
272 }
273
274 parse_spec()
275 {
276         if [ -n "$DEBUG" ]; then
277                 set -x;
278                 set -v;
279         fi
280
281         cd $SPECS_DIR
282
283         cache_rpm_dump
284
285         if [ "$NOSRCS" != "yes" ]; then
286                 SOURCES="`rpm_dump | awk '/SOURCEURL[0-9]+/ {print $3}'`"
287         fi
288         if (rpm_dump | grep -qEi ":.*nosource.*1"); then
289                 FAIL_IF_NO_SOURCES="no"
290         fi
291
292         PATCHES="`rpm_dump | awk '/PATCHURL[0-9]+/ {print $3}'`"
293         ICONS="`awk '/^Icon:/ {print $2}' ${SPECFILE}`"
294         PACKAGE_NAME="`$RPM -q --qf '%{NAME}\n' --specfile ${SPECFILE} 2> /dev/null | head -n 1`"
295         PACKAGE_VERSION="`$RPM -q --qf '%{VERSION}\n' --specfile ${SPECFILE} 2> /dev/null| head -n 1`"
296         PACKAGE_RELEASE="`$RPM -q --qf '%{RELEASE}\n' --specfile ${SPECFILE} 2> /dev/null | head -n 1`"
297
298         if [ -n "$BE_VERBOSE" ]; then
299                 echo "- Sources :  `nourl $SOURCES`"
300                 if [ -n "$PATCHES" ]; then
301                         echo "- Patches :  `nourl $PATCHES`"
302                 else
303                         echo "- Patches :  *no patches needed*"
304                 fi
305                 if [ -n "$ICONS" ]; then
306                         echo "- Icon    :  `nourl $ICONS`"
307                 else
308                         echo "- Icon    :  *no package icon*"
309                 fi
310                 echo "- Name    : $PACKAGE_NAME"
311                 echo "- Version : $PACKAGE_VERSION"
312                 echo "- Release : $PACKAGE_RELEASE"
313         fi
314 }
315
316 Exit_error()
317 {
318         if [ -n "$DEBUG" ]; then
319                 set -x;
320                 set -v;
321         fi
322
323         cd "$__PWD"
324
325         case "$1" in
326                 "err_no_spec_in_cmdl" )
327                         remove_build_requires
328                         echo "ERROR: spec file name not specified.";
329                         exit 2 ;;
330                 "err_no_spec_in_repo" )
331                         remove_build_requires
332                         echo "Error: spec file not stored in CVS repo.";
333                         exit 3 ;;
334                 "err_no_source_in_repo" )
335                         remove_build_requires
336                         echo "Error: some source, patch or icon files not stored in CVS repo. ($2)";
337                         exit 4 ;;
338                 "err_build_fail" )
339                         remove_build_requires
340                         echo "Error: package build failed. (${2:-no more info})";
341                         exit 5 ;;
342         esac
343 }
344
345 init_builder()
346 {
347         if [ -n "$DEBUG" ]; then
348                 set -x;
349                 set -v;
350         fi
351
352         SOURCE_DIR="`$RPM --eval '%{_sourcedir}'`"
353         SPECS_DIR="`$RPM --eval '%{_specdir}'`"
354
355         __PWD="`pwd`"
356 }
357
358 get_spec()
359 {
360         if [ -n "$DEBUG" ]; then
361                 set -x;
362                 set -v;
363         fi
364
365         if [ "$NOCVSSPEC" != "yes" ]; then
366                 cd $SPECS_DIR
367
368                 OPTIONS="up "
369
370                 if [ -n "$CVSROOT" ]; then
371                         OPTIONS="-d $CVSROOT $OPTIONS"
372                 else
373                         if [ ! -s CVS/Root -a "$NOCVSSPEC" != "yes" ]; then
374                                 echo "warning: No cvs access defined - using local .spec file"
375                                 NOCVSSPEC="yes"
376                         fi
377                 fi
378
379                 if [ -z "$CVSDATE" -a -z "$CVSTAG" ]; then
380                         OPTIONS="$OPTIONS -A"
381                 else
382                         if [ -n "$CVSDATE" ]; then
383                                 OPTIONS="$OPTIONS -D $CVSDATE"
384                         fi
385                         if [ -n "$CVSTAG" ]; then
386                                 OPTIONS="$OPTIONS -r $CVSTAG"
387                         fi
388                 fi
389
390                 result=1
391                 retries_counter=0
392                 while [ "$result" != "0" -a "$retries_counter" -le "$CVS_RETRIES" ]
393                 do
394                         retries_counter=$(( $retries_counter + 1 ))
395                         output=$(LC_ALL=C cvs $OPTIONS $SPECFILE 2>&1)
396                         result=$?
397                         [ -n "$output" ] && echo "$output"
398                         if [ "$result" -ne "0" ]; then
399                                 if (echo "$output" | grep -qE "(Cannot connect to|connect to .* failed|Connection reset by peer|Connection timed out|Unknown host)") && [ "$retries_counter" -le "$CVS_RETRIES" ]; then
400                                         echo "Trying again [$SPECFILE]... ($retries_counter)"
401                                         sleep 2
402                                         continue
403                                 fi
404                                 Exit_error err_no_spec_in_repo;
405                         fi
406                 done
407         fi
408         if [ ! -f "$SPECFILE" ]; then
409                 Exit_error err_no_spec_in_repo;
410         fi
411
412         if [ "$CHMOD" = "yes" -a -n "$SPECFILE" ]; then
413                 chmod $CHMOD_MODE $SPECFILE
414         fi
415         unset OPTIONS
416         grep -E -m 1 "^#.*Revision:.*Date" $SPECFILE
417 }
418
419 find_mirror()
420 {
421         cd "$SPECS_DIR"
422         url="$1"
423         if [ ! -f "mirrors" -a "$NOCVSSPEC" != "yes" ] ; then
424                 cvs update mirrors >&2
425         fi
426
427         IFS="|"
428         while read origin mirror name rest
429         do
430                 ol=`echo -n "$origin"|wc -c`
431                 prefix="`echo -n "$url" | head -c $ol`"
432                 if [ "$prefix" = "$origin" ] ; then
433                         suffix="`echo "$url"|cut -b $ol-`"
434                         echo -n "$mirror$suffix"
435                         return 0
436                 fi
437         done < mirrors
438         echo "$url"
439 }
440
441 src_no ()
442 {
443         cd $SPECS_DIR
444         rpm_dump | \
445         grep "SOURCEURL[0-9]*[  ]*$1""[         ]*$" | \
446         sed -e 's/.*SOURCEURL\([0-9][0-9]*\).*/\1/' | \
447         head -n 1 | xargs
448 }
449
450 src_md5 ()
451 {
452         no=$(src_no "$1")
453         [ -z "$no" ] && return
454         cd $SPECS_DIR
455         spec_rev=$(grep $SPECFILE CVS/Entries | sed -e s:/$SPECFILE/:: -e s:/.*::)
456         if [ -z "$spec_rev" ]; then
457                 spec_rev="$(head -n 1 $SPECFILE | sed -e 's/.*\$Revision: \([0-9.]*\).*/\1/')"
458         fi
459         spec="$SPECFILE[0-9.,]*,$(echo $spec_rev | sed 's/\./\\./g')"
460         md5=$(grep -s -v '^#' additional-md5sums | \
461         grep -E "[      ]$(basename "$1")[      ]+${spec}([     ,]|\$)" | \
462         sed -e 's/^\([0-9a-f]\{32\}\).*/\1/' | \
463         grep -E '^[0-9a-f]{32}$')
464         if [ X"$md5" = X"" ] ; then
465                 grep -i "#[     ]*Source$no-md5[        ]*:" $SPECFILE | sed -e 's/.*://' | xargs
466         else
467                 if [ $(echo "$md5" | wc -l) != 1 ] ; then
468                         echo "$SPECFILE: more then one entry in additional-md5sums for $1" 1>&2
469                 fi
470                 echo "$md5" | tail -n 1
471         fi
472 }
473
474 distfiles_url ()
475 {
476         echo "$PROTOCOL$DISTFILES_SERVER/by-md5/$(src_md5 "$1" | sed -e 's|^\(.\)\(.\)|\1/\2/&|')/$(basename "$1")"
477 }
478
479 distfiles_attic_url ()
480 {
481         echo "$PROTOCOL$DISTFILES_SERVER/Attic/by-md5/$(src_md5 "$1" | sed -e 's|^\(.\)\(.\)|\1/\2/&|')/$(basename "$1")"
482 }
483
484 good_md5 ()
485 {
486         md5=$(src_md5 "$1")
487         [ "$md5" = "" ] || \
488         [ "$md5" = "$(md5sum $(nourl "$1") 2> /dev/null | sed -e 's/ .*//')" ]
489 }
490
491 get_files()
492 {
493         GET_FILES="$@"
494
495         if [ -n "$DEBUG" ]; then
496                 set -x;
497                 set -v;
498         fi
499
500         if [ -n "$1$2$3$4$5$6$7$8$9${10}" ]; then
501                 cd $SOURCE_DIR
502
503                 OPTIONS="up "
504                 if [ -n "$CVSROOT" ]; then
505                         OPTIONS="-d $CVSROOT $OPTIONS"
506                 else
507                         if [ ! -s CVS/Root -a "$NOCVS" != "yes" ]; then
508                                 echo "warning: No cvs access defined for SOURCES"
509                                 NOCVS="yes"
510                         fi
511                 fi
512                 if [ -z "$CVSDATE" -a -z "$CVSTAG" ]; then
513                         OPTIONS="$OPTIONS -A"
514                 else
515                         if [ -n "$CVSDATE" ]; then
516                                 OPTIONS="$OPTIONS -D $CVSDATE"
517                         fi
518                         if [ -n "$CVSTAG" ]; then
519                                 OPTIONS="$OPTIONS -r $CVSTAG"
520                         fi
521                 fi
522                 for i in $GET_FILES
523                 do
524                         if [ -n "$UPDATE5" ]; then
525                                 if [ -n "$ADD5" ]; then
526                                         [ `nourl $i` = "$i" ] && continue
527                                         grep -qiE '^#[  ]*Source'$(src_no $i)'-md5[     ]*:' $SPECS_DIR/$SPECFILE && continue
528                                 else
529                                         grep -qiE '^#[  ]*Source'$(src_no $i)'-md5[     ]*:' $SPECS_DIR/$SPECFILE || continue
530                                 fi
531                         fi
532                         FROM_DISTFILES=0
533                         if [ ! -f `nourl $i` ] || [ $ALWAYS_CVSUP = "yes" ]; then
534                                 if echo $i | grep -vE '(http|ftp|https|cvs|svn)://' | grep -qE '\.(gz|bz2)$']; then
535                                         echo "Warning: no URL given for $i"
536                                 fi
537
538                                 if [ -n "$(src_md5 "$i")" ] && [ -z "$NODIST" ]; then
539                                         if good_md5 "$i"; then
540                                                 echo "$(nourl "$i") having proper md5sum already exists"
541                                                 continue
542                                         fi
543                                         target=$(nourl "$i")
544                                         url=$(distfiles_url "$i")
545                                         url_attic=$(distfiles_attic_url "$i")
546                                         FROM_DISTFILES=1
547                                         if [ `echo $url | grep -E '^(\.|/)'` ]; then
548                                                 ${GETLOCAL} $url $target
549                                         else
550                                                 if [ -z "$NOMIRRORS" ]; then
551                                                         url="`find_mirror "$url"`"
552                                                 fi
553                                                 ${GETURI} -O "$target" "$url" || \
554                                                 if [ `echo $url | grep -E 'ftp://'` ]; then
555                                                         ${GETURI2} -O "$target" "$url"
556                                                 fi
557                                         fi
558                                         if ! test -s "$target"; then
559                                                 rm -f "$target"
560                                                 if [ `echo $url_attic | grep -E '^(\.|/)'` ]; then
561                                                         ${GETLOCAL} $url_attic $target
562                                                 else
563                                                         if [ -z "$NOMIRRORS" ]; then
564                                                                 url_attic="`find_mirror "$url_attic"`"
565                                                         fi
566                                                         ${GETURI} -O "$target" "$url_attic" || \
567                                                         if [ `echo $url_attic | grep -E 'ftp://'` ]; then
568                                                                 ${GETURI2} -O "$target" "$url_attic"
569                                                         fi
570                                                 fi
571                                         fi
572                                         if ! test -s "$target"; then
573                                                 rm -f "$target"
574                                                 FROM_DISTFILES=0
575                                         fi
576                                 elif [ -z "$(src_md5 "$i")" -a "$NOCVS" != "yes" ]; then
577                                         # ( echo $i | grep -qvE '(ftp|http|https)://' ); -- if CVS should be used, but URLs preferred
578                                         result=1
579                                         retries_counter=0
580                                         while [ "$result" != "0" -a "$retries_counter" -le "$CVS_RETRIES" ]
581                                         do
582                                                 retries_counter=$(( $retries_counter + 1 ))
583                                                 output=$(LC_ALL=C cvs $OPTIONS `nourl $i` 2>&1)
584                                                 result=$?
585                                                 [ -n "$output" ] && echo "$output"
586                                                 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
587                                                         echo "Trying again [`nourl $i`]... ($retries_counter)"
588                                                         sleep 2
589                                                         continue
590                                                 else
591                                                         break
592                                                 fi
593                                         done
594                                 fi
595
596                                 if [ -z "$NOURLS" ] && [ ! -f "`nourl $i`" -o -n "$UPDATE" ] && [ `echo $i | grep -E 'ftp://|http://|https://'` ]; then
597                                         if [ -z "$NOMIRRORS" ]; then
598                                                 im="`find_mirror "$i"`"
599                                         else
600                                                 im="$i"
601                                         fi
602                                         ${GETURI} "$im" || \
603                                         if [ `echo $im | grep -E 'ftp://'` ]; then
604                                                 ${GETURI2} "$im"
605                                         fi
606                                 fi
607
608                         fi
609                         srcno=$(src_no $i)
610                         if [ ! -f "`nourl $i`" -a "$FAIL_IF_NO_SOURCES" != "no" ]; then
611                                 Exit_error err_no_source_in_repo $i;
612                         elif [ -n "$UPDATE5" ] && \
613                                 ( ( [ -n "$ADD5" ] && echo $i | grep -q -E 'ftp://|http://|https://' && \
614                                 [ -z "$(grep -E -i '^NoSource[  ]*:[    ]*'$i'([        ]|$)' $SPECS_DIR/$SPECFILE)" ] ) || \
615                                 grep -q -i -E '^#[      ]*source'$(src_no $i)'-md5[     ]*:' $SPECS_DIR/$SPECFILE )
616                         then
617                                 echo "Updating source-$srcno md5."
618                                 md5=$(md5sum `nourl $i` | cut -f1 -d' ')
619                                 perl -i -ne '
620                                 print unless /^\s*#\s*Source'$srcno'-md5\s*:/i;
621                                 print "# Source'$srcno'-md5:\t'$md5'\n"
622                                 if /^Source'$srcno'\s*:\s+/;
623                                 ' \
624                                 $SPECS_DIR/$SPECFILE
625                         fi
626         
627                         if good_md5 "$i"; then
628                                 :
629                         elif [ "$FROM_DISTFILES" = 1 ]; then
630                                 # wrong md5 from distfiles: remove the file and try again
631                                 # but only once ...
632                                 echo "MD5 sum mismatch. Trying full fetch."
633                                 FROM_DISTFILES=2
634                                 rm -f $target
635                                 ${GETURI} -O "$target" "$url" || \
636                                 if [ `echo $url | grep -E 'ftp://'` ]; then
637                                         ${GETURI2} -O "$target" "$url"
638                                 fi
639                                 if ! test -s "$target"; then
640                                         rm -f "$target"
641                                         ${GETURI} -O "$target" "$url_attic" || \
642                                         if [ `echo $url_attic | grep -E 'ftp://'` ]; then
643                                                 ${GETURI2} -O "$target" "$url_attic"
644                                         fi
645                                 fi
646                                 test -s "$target" || rm -f "$target"
647                         fi
648
649                         if good_md5 "$i"; then
650                                 :
651                         else
652                                 echo "MD5 sum mismatch.  Use -U to refetch sources,"
653                                 echo "or -5 to update md5 sums, if you're sure files are correct."
654                                 Exit_error err_no_source_in_repo $i
655                         fi
656                 done
657
658                 if [ "$CHMOD" = "yes" ]; then
659                         CHMOD_FILES="`nourl $GET_FILES`"
660                         if [ -n "$CHMOD_FILES" ]; then
661                                 chmod $CHMOD_MODE $CHMOD_FILES
662                         fi
663                 fi
664                 unset OPTIONS
665         fi
666 }
667
668 tag_files()
669 {
670         TAG_FILES="$@"
671
672         if [ -n "$DEBUG" ]; then
673                 set -x;
674                 set -v;
675         fi
676
677         if [ -n "$1$2$3$4$5$6$7$8$9${10}" ]; then
678                 echo "Version: $PACKAGE_VERSION"
679                 echo "Release: $PACKAGE_RELEASE"
680                 # Check whether first character of PACKAGE_NAME is legal for tag name
681                 if [ -z "${PACKAGE_NAME##[_0-9]*}" -a -z "$TAG_PREFIX" ]; then
682                         TAG_PREFIX=tag_
683                 fi
684                 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"`
685                 # Remove #kernel.version_release from TAGVER because tagging sources
686                 # could occur with different kernel-headers than kernel-headers used at build time.
687                 TAGVER=$(echo "$TAGVER" | sed -e 's/#.*//g')
688                 if [ "$TAG_VERSION" = "yes" ]; then
689                         echo "CVS tag: $TAGVER"
690                 fi
691                 if [ -n "$TAG" ]; then
692                         echo "CVS tag: $TAG"
693                 fi
694
695                 OPTIONS="tag -F"
696                 if [ -n "$CVSROOT" ]; then
697                         OPTIONS="-d $CVSROOT $OPTIONS"
698                 fi
699
700                 cd $SOURCE_DIR
701                 for i in $TAG_FILES
702                 do
703                         # don't tag files stored on distfiles
704                         [ -n "`src_md5 $i`" ] && continue
705                         if [ -f "`nourl $i`" ]; then
706                                 if [ "$TAG_VERSION" = "yes" ]; then
707                                         cvs $OPTIONS $TAGVER `nourl $i`
708                                 fi
709                                 if [ -n "$TAG" ]; then
710                                         cvs $OPTIONS $TAG `nourl $i`
711                                 fi
712                         else
713                                 Exit_error err_no_source_in_repo $i
714                         fi
715                 done
716
717                 cd $SPECS_DIR
718                 if [ "$TAG_VERSION" = "yes" ]; then
719                         cvs $OPTIONS $TAGVER $SPECFILE
720                 fi
721                 if [ -n "$TAG" ]; then
722                         cvs $OPTIONS $TAG $SPECFILE
723                 fi
724
725                 unset OPTIONS
726         fi
727 }
728
729 branch_files()
730 {
731         TAG=$1
732         echo "CVS branch tag: $TAG"
733         shift;
734
735         TAG_FILES="$@"
736
737         if [ -n "$DEBUG" ]; then
738                 set -x;
739                 set -v;
740         fi
741
742         if [ -n "$1$2$3$4$5$6$7$8$9${10}" ]; then
743
744                 OPTIONS="tag -b"
745                 if [ -n "$CVSROOT" ]; then
746                         OPTIONS="-d $CVSROOT $OPTIONS"
747                 fi
748                 cd $SOURCE_DIR
749                 for i in $TAG_FILES
750                 do
751                         if [ -f `nourl $i` ]; then
752                                 cvs $OPTIONS $TAG `nourl $i`
753                         else
754                                 Exit_error err_no_source_in_repo $i
755                         fi
756                 done
757                 cd $SPECS_DIR
758                 cvs $OPTIONS $TAG $SPECFILE
759
760                 unset OPTIONS
761         fi
762 }
763
764
765
766 build_package()
767 {
768         if [ -n "$DEBUG" ]; then
769                 set -x;
770                 set -v;
771         fi
772
773         cd $SPECS_DIR
774
775         if [ -n "$TRY_UPGRADE" ]; then
776                 if [ -n "$FLOAT_VERSION" ]; then
777                         TNOTIFY=`./pldnotify.awk $SPECFILE -n`
778                 else
779                         TNOTIFY=`./pldnotify.awk $SPECFILE`
780                 fi
781
782                 TNEWVER=`echo $TNOTIFY | awk '{ match($4,/\[NEW\]/); print $5 }'`
783
784                 if [ -n "$TNEWVER" ]; then
785                         TOLDVER=`echo $TNOTIFY | awk '{ print $3; }'`
786                         echo "New version found, updating spec file to version " $TNEWVER
787                         cp -f $SPECFILE $SPECFILE.bak
788                         chmod +w $SPECFILE
789                         eval "perl -pi -e 's/Version:\t"$TOLDVER"/Version:\t"$TNEWVER"/gs' $SPECFILE"
790                         eval "perl -pi -e 's/Release:\t[1-9]{0,4}/Release:\t1/' $SPECFILE"
791                         parse_spec;
792                         get_files "$SOURCES $PATCHES";
793                         unset TOLDVER TNEWVER TNOTIFY
794                 fi
795         fi
796         cd $SPECS_DIR
797
798         case "$COMMAND" in
799                 build )
800                         BUILD_SWITCH="-ba" ;;
801                 build-binary )
802                         BUILD_SWITCH="-bb" ;;
803                 build-source )
804                         BUILD_SWITCH="-bs --nodeps" ;;
805                 build-prep )
806                         BUILD_SWITCH="-bp --nodeps" ;;
807         esac
808         if [ -n "$LOGFILE" ]; then
809                 LOG=`eval echo $LOGFILE`
810                 if [ -n "$LASTLOG_FILE" ]; then
811                         echo "LASTLOG=$LOG" > $LASTLOG_FILE
812                 fi
813                 RES_FILE=~/tmp/$RPMBUILD-exit-status.$RANDOM
814                 (time nice -n ${DEF_NICE_LEVEL} $RPMBUILD $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $BCOND $SPECFILE; echo $? > $RES_FILE) 2>&1 |tee $LOG
815                 RETVAL=`cat $RES_FILE`
816                 rm $RES_FILE
817                 if [ -n "$LOGDIROK" ] && [ -n "$LOGDIRFAIL" ]; then
818                         if [ "$RETVAL" -eq "0" ]; then
819                                 mv $LOG $LOGDIROK
820                         else
821                                 mv $LOG $LOGDIRFAIL
822                         fi
823                 fi
824         else
825                 eval nice -n ${DEF_NICE_LEVEL} $RPMBUILD $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $BCOND $SPECFILE
826                 RETVAL=$?
827         fi
828         if [ "$RETVAL" -ne "0" ]; then
829                 if [ -n "$TRY_UPGRADE" ]; then
830                         echo "\n!!! Package with new version cannot be build automagically\n"
831                         mv -f $SPECFILE.bak $SPECFILE
832                 fi
833                 Exit_error err_build_fail;
834         fi
835         unset BUILD_SWITCH
836 }
837
838 nourl()
839 {
840         echo "$@" | sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g'
841 }
842
843
844 install_required_packages()
845 {
846         run_poldek -vi $1
847         return $?
848 }
849
850 set_bconds_values()
851 {
852         AVAIL_BCONDS_WITHOUT=""
853         AVAIL_BCONDS_WITH=""
854         if `grep -q ^%bcond ${SPECFILE}`; then
855                 BCOND_VERSION="NEW"
856         elif `grep -q bcond ${SPECFILE}`; then
857                 BCOND_VERSION="OLD"
858         else
859                 BCOND_VERSION="NONE"
860         fi
861         case "${BCOND_VERSION}" in
862                  NONE)
863                         :
864                         ;;
865                  OLD)
866                         echo "Warning: This spec has old style bconds. Fix it || die."
867                         for opt in `$RPMBUILD --bcond $SPECFILE |grep ^_without_`
868                         do
869                                 AVAIL_BCOND_WITHOUT=`echo $opt|sed -e "s/^_without_//g"`
870                                 if `echo $BCOND|grep -q -- "--without $AVAIL_BCOND_WITHOUT"`;then
871                                         AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT <$AVAIL_BCOND_WITHOUT>"
872                                 else
873                                         AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT $AVAIL_BCOND_WITHOUT"
874                                 fi
875                         done
876                 
877                         for opt in `$RPMBUILD --bcond $SPECFILE |grep ^_with_`
878                         do
879                                 AVAIL_BCOND_WITH=`echo $opt|sed -e "s/^_with_//g"`
880                                 if `echo $BCOND|grep -q -- "--with $AVAIL_BCOND_WITH"`;then
881                                         AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH <$AVAIL_BCOND_WITH>"
882                                 else
883                                         AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH $AVAIL_BCOND_WITH"
884                                 fi
885                         done
886                         ;;
887                 NEW)
888                         cond_type="" # with || without
889                         for opt in `$RPMBUILD --bcond $SPECFILE`
890                         do
891                                 case "$opt" in
892                                         _without)
893                                                 cond_type="without"
894                                                 ;;
895                                         _with)
896                                                 cond_type="with"
897                                                 ;;
898                                         *)
899                                                 case "$cond_type" in
900                                                         with)
901                                                                 cond_type=''
902                                                                 AVAIL_BCOND_WITH="$opt"
903                                                                 if `echo $BCOND|grep -q -- "--with $AVAIL_BCOND_WITH"`;then
904                                                                         AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH <$AVAIL_BCOND_WITH>"
905                                                                 else
906                                                                         AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH $AVAIL_BCOND_WITH"
907                                                                 fi
908                                                                 ;;
909                                                         without)
910                                                                 cond_type=''
911                                                                 AVAIL_BCOND_WITHOUT="$opt"
912                                                                 if `echo $BCOND|grep -q -- "--without $AVAIL_BCOND_WITHOUT"`;then
913                                                                         AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT <$AVAIL_BCOND_WITHOUT>"
914                                                                 else
915                                                                         AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT $AVAIL_BCOND_WITHOUT"
916                                                                 fi
917                                                                 ;;
918                                                 esac
919                                                 ;;
920                                 esac
921                         done
922                         ;;
923         esac
924 }
925
926 run_sub_builder()
927 {
928         package_name="${1}"
929         echo -ne "Package installation failed:\t$package_name\n"
930         #
931         # No i tutaj bym chcia³ zrobiæ sztuczn± inteligencjê, która spróbuje tego
932         # pakieta zbudowaæ. Aktualnie niewiele dziala, bo generalnie nie widze do
933         # konca algorytmu... Ale damy rade. :) Na razie po prostu sie wyjebie tak samo
934         # jakby nie bylo tego kawalka kodu.
935         #
936         # Update: Poprawi³em parê rzeczy i zaczê³o generowaæ pakiety spoza zadanej listy.
937         #         Jednym s³owem budowanie niespoldkowanych zale¿no¶ci dzia³a w paru przypadkach.
938         #
939         #
940         # y0shi.
941
942         parent_spec_name=''
943
944
945         # Istnieje taki spec? ${package}.spec
946         if [ -f "${SPECS_DIR}${package}.spec" ]; then
947                 parent_spec_name=${package}.spec
948         elif [ -f "${SPECS_DIR}`echo ${package_name}|sed -e s,-devel.*,,g -e s,-static,,g`.spec" ]; then
949                 parent_spec_name="`echo ${package_name}|sed -e s,-devel.*,,g -e s,-static,,g`.spec"
950         else
951                 for provides_line in `grep ^Provides:.*$package  ${SPECS_DIR} -R`
952                 do
953                         echo $provides_line
954                 done
955         fi
956
957         if [ "${parent_spec_name}" != "" ]; then
958                 sub_builder_opts=''
959                 if [ "${FETCH_BUILD_REQUIRES}" == "yes" ]; then
960                         sub_builder_opts="${sub_builder_opts} -R"
961                 fi
962                 if [ "${REMOVE_BUILD_REQUIRES}" == "nice" ]; then
963                         sub_builder_opts="${sub_builder_opts} -RB"
964                 elif [ "${REMOVE_BUILD_REQUIRES}" == "force" ]; then
965                         sub_builder_opts="${sub_builder_opts} -FRB"
966                 fi
967                 if [ "${UPDATE_POLDEK_INDEXES}" == "yes" ]; then
968                         sub_builder_opts="${sub_builder_opts} -Upi"
969                 fi
970                 cd "${SPECS_DIR}"
971                 ./builder ${sub_builder_opts} ${parent_spec_name}
972         fi
973         NOT_INSTALLED_PACKAGES="$NOT_INSTALLED_PACKAGES $package_name"
974 }
975
976 remove_build_requires()
977 {
978         if [ "$INSTALLED_PACKAGES" != "" ]; then
979                 case "$REMOVE_BUILD_REQUIRES" in
980                         "force")
981                                 run_poldek --noask -ve $INSTALLED_PACKAGES
982                                 ;;
983                         "nice")
984                                 run_poldek --ask -ve $INSTALLED_PACKAGES
985                                 ;;
986                         *)
987                                 echo You may want to manually remove following BuildRequires fetched:
988                                 echo $INSTALLED_PACKAGES
989                                 echo Try poldek -e \`cat `pwd`/.${SPECFILE}_INSTALLED_PACKAGES\`
990                                 ;;
991                 esac
992         fi
993 }
994
995 display_bconds()
996 {
997         if [ "$AVAIL_BCONDS_WITH" != "" ] || [ "$AVAIL_BCONDS_WITHOUT" != "" ]; then
998                 echo -ne "We are going to build $SPECFILE with the following conditional flags:\n"
999                 if [ "$BCOND" != "" ]; then
1000                         echo -ne "$BCOND"
1001                 else
1002                         echo -ne "No --with || --without conditions passed to $0!"
1003                 fi
1004                 echo -ne "\n\nfrom available:\n\n"
1005                 echo -ne "--with   :\t$AVAIL_BCONDS_WITH\n--without:\t$AVAIL_BCONDS_WITHOUT\n\n"
1006         fi
1007 }
1008
1009 fetch_build_requires()
1010 {
1011         if [ "${FETCH_BUILD_REQUIRES}" == "yes" ]; then
1012                 echo -ne "\nAll packages installed by fetch_build_requires() are written to:\n"
1013                 echo -ne "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES\n"
1014                 echo -ne "\nIf anything fails, you may get rid of them by executing:\n"
1015                 echo "poldek -e \`cat `pwd`/.${SPECFILE}_INSTALLED_PACKAGES\`\n\n"
1016                 echo > `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
1017                 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,kgcc_package,gcc,g -e s,\),,g`
1018                 do
1019                         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`"
1020                         GO="yes"
1021                         package=`basename "$package_item"|sed -e "s/}$//g"`
1022                         COND_ARCH_TST="`cat $SPECFILE|grep -B1 BuildRequires|grep -B1 $package|grep ifarch|sed -e "s/^.*ifarch//g"`"
1023                         mach=`uname -m`
1024                 
1025                         COND_TST=`cat $SPECFILE|grep BuildRequires|grep "$package"`
1026                         if `echo $COND_TST|grep -q '^BuildRequires:'`; then
1027                                 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
1028                                         GO="yes"
1029                                 fi
1030                         # bcond:
1031                         else
1032                                 COND_NAME=`echo $COND_TST|sed -e s,:BuildRequires:.*$,,g`
1033                                 GO=""
1034                                 # %{without}
1035                                 if `echo $COND_TST|grep -q 'without_'`; then
1036                                         COND_NAME=`echo $COND_NAME|sed -e s,^.*_without_,,g`
1037                                         if `echo $COND_TST|grep -q !`; then
1038                                                 COND_STATE="with"
1039                                         else
1040                                                 COND_STATE="wout"
1041                                         fi
1042                                         if `echo $AVAIL_BCONDS_WITHOUT|grep -q "<$COND_NAME>"`; then
1043                                                 COND_ARGV="wout"
1044                                         else
1045                                                 COND_ARGV="with"
1046                                         fi
1047                                 # %{with}
1048                                 elif `echo $COND_TST|grep -q 'with_'`; then
1049                                         COND_NAME=`echo $COND_NAME|sed -e s,^.*_with_,,g`
1050                                         if `echo $COND_TST|grep -q !`; then
1051                                                 COND_STATE="wout"
1052                                         else
1053                                                 COND_STATE="with"
1054                                         fi                                      
1055                                         if `echo $AVAIL_BCONDS_WITH|grep -q "<$COND_NAME>"`; then
1056                                                 COND_ARGV="with"
1057                                         else
1058                                                 COND_ARGV="wout"
1059                                         fi      
1060                                 fi
1061                                 RESULT="${COND_STATE}-${COND_ARGV}"
1062                                 case "$RESULT" in
1063                                         "with-wout" | "wout-with" )
1064                                                 GO=""
1065                                                 ;;
1066                                         "wout-wout" | "with-with" )
1067                                                 GO="yes"
1068                                                 ;;
1069                                         * )
1070                                                 echo "Action '$RESULT' was not defined for package '$package_item'"
1071                                                 GO="yes"
1072                                                 ;;
1073                                 esac
1074                         fi
1075
1076                         if [ "$GO" = "yes" ]; then
1077                                 if [ "`rpm -q $package|sed -e "s/$package.*/$package/g"`" != "$package" ]; then
1078                                         echo "Testing if $package has subrequirements..."
1079                                         run_poldek -t -i $package --dumpn=".$package-req.txt"
1080                                         if [ -f ".$package-req.txt" ]; then
1081                                                 for package_name in `cat ".$package-req.txt"|grep -v ^#`
1082                                                 do
1083                                                         if [ "$package_name" = "$package" ]; then
1084                                                                 echo -ne "Installing BuildRequired package:\t$package_name\n"
1085                                                                 export PROMPT_COMMAND=`echo -ne "\033]0;${SPECFILE}: Installing BuildRequired package: ${package_name}\007"`
1086                                                                 install_required_packages $package;
1087                                                         else
1088                                                                 echo -ne "Installing (sub)Required package:\t$package_name\n"
1089                                                                 export PROMPT_COMMAND=`echo -ne "\033]0;${SPECFILE}: Installing (sub)Required package: ${package_name}\007"`
1090                                                                 install_required_packages $package_name;
1091                                                         fi
1092                                                         case $? in
1093                                                                 0)
1094                                                                         INSTALLED_PACKAGES="$package_name $INSTALLED_PACKAGES"
1095                                                                         echo $package_name >> `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
1096                                                                         ;;
1097                                                                 *)
1098                                                                         echo "Attempting to run spawn sub - builder..."
1099                                                                         run_sub_builder $package_name
1100                                                                         if [ $? -eq 0 ]; then
1101                                                                                 install_required_packages $package_name;
1102                                                                                 case $? in
1103                                                                                         0)
1104                                                                                                 INSTALLED_PACKAGES="$package_name $INSTALLED_PACKAGES"
1105                                                                                                 echo $package_name >> `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
1106                                                                                                 ;;
1107                                                                                         *)
1108                                                                                                 NOT_INSTALLED_PACKAGES="$package_name $NOT_INSTALLED_PACKAGES"
1109                                                                                                 ;;
1110                                                                                 esac
1111                                                                         fi
1112                                                                         ;;
1113                                                         esac
1114                                                 done
1115                                                 rm -f ".$package-req.txt"
1116                                         else
1117                                                 echo "Attempting to run spawn sub - builder..."
1118                                                 run_sub_builder $package
1119                                                 if [ $? -eq 0 ]; then
1120                                                         install_required_packages $package;
1121                                                         case $? in
1122                                                                 0)
1123                                                                         INSTALLED_PACKAGES="$package_name $INSTALLED_PACKAGES"
1124                                                                         echo $package_name >> `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
1125                                                                         ;;
1126                                                                 *)
1127                                                                         NOT_INSTALLED_PACKAGES="$package_name $NOT_INSTALLED_PACKAGES"
1128                                                                         ;;
1129                                                         esac
1130                                                 fi
1131                                         fi
1132                                 else
1133                                         echo "Package $package is already installed. BuildRequirement satisfied."
1134                                 fi
1135                         fi
1136                 done
1137                 export PROMPT_COMMAND=`echo -ne "\033]0;${SPECFILE}\007"`
1138                 if [ "$NOT_INSTALLED_PACKAGES" != "" ]; then
1139                         echo "Nie uda³o siê zainstalowaæ nastêpuj±cych pakietów i ich zale¿no¶ci:"
1140                         for pkg in "$NOT_INSTALLED_PACKAGES"
1141                         do
1142                                 echo $pkg
1143                         done
1144                         remove_build_requires
1145                         exit 8
1146                 fi
1147         fi
1148 }
1149
1150 #---------------------------------------------
1151 # main()
1152
1153 if [ "$#" = 0 ]; then
1154         usage;
1155         exit 1
1156 fi
1157
1158 while test $# -gt 0
1159 do
1160         case "${1}" in
1161                 -5 | --update-md5 )
1162                         COMMAND="get";
1163                         NODIST="yes"
1164                         NOCVSSPEC="yes"
1165                         UPDATE5="yes"
1166                         shift ;;
1167                 -a5 | --add-md5 )
1168                         COMMAND="get";
1169                         NODIST="yes"
1170                         NOCVS="yes"
1171                         NOCVSSPEC="yes"
1172                         UPDATE5="yes"
1173                         ADD5="yes"
1174                         shift ;;
1175                 -D | --debug )
1176                         DEBUG="yes"; shift ;;
1177                 -V | --version )
1178                         COMMAND="version"; shift ;;
1179                 -a | --as_anon )
1180                         CVSROOT=":pserver:cvs@$CVS_SERVER:/cvsroot"; shift ;;
1181                 -b | -ba | --build )
1182                         COMMAND="build"; shift ;;
1183                 -bb | --build-binary )
1184                         COMMAND="build-binary"; shift ;;
1185                 -bs | --build-source )
1186                         COMMAND="build-source"; shift ;;
1187                 -bp | --build-prep )
1188                         COMMAND="build-prep"; shift ;;
1189                 -B | --branch )
1190                         COMMAND="branch"; shift; TAG="${1}"; shift;;
1191                 -c | --clean )
1192                         CLEAN="--clean --rmspec --rmsource"; shift ;;
1193                 -d | --cvsroot )
1194                         shift; CVSROOT="${1}"; shift ;;
1195                 -g | --get )
1196                         COMMAND="get"; shift ;;
1197                 -h | --help )
1198                         COMMAND="usage"; shift ;;
1199                 --http )
1200                         PROTOCOL="http"; shift ;;
1201                 -l | --logtofile )
1202                         shift; LOGFILE="${1}"; shift ;;
1203                 -ni| --nice )
1204                         shift; DEF_NICE_LEVEL=${1}; shift ;;
1205                 -m | --mr-proper )
1206                         COMMAND="mr-proper"; shift ;;
1207                 -nc | --no-cvs )
1208                         NOCVS="yes"; shift ;;
1209                 -ncs | --no-cvs-specs )
1210                         NOCVSSPEC="yes"; shift ;;
1211                 -nd | --no-distfiles )
1212                         NODIST="yes"; shift ;;
1213                 -nm | --no-mirrors )
1214                         NOMIRRORS="yes"; shift ;;
1215                 -nu | --no-urls )
1216                         NOURLS="yes"; shift ;;
1217                 -ns | --no-srcs )
1218                         NOSRCS="yes"; shift ;;
1219                 -ns0 | --no-source0 )
1220                         NOSOURCE0="yes"; shift ;;
1221                 --opts )
1222                         shift; RPMOPTS="${1}"; shift ;;
1223                 --with | --without )
1224                         case $GROUP_BCONDS in
1225                                 "yes")
1226                                         COND=${1}
1227                                         shift
1228                                         while ! `echo ${1}|grep -qE '(^-|spec)'`
1229                                         do
1230                                                 BCOND="$BCOND $COND $1"
1231                                                 shift
1232                                         done;;
1233                                 "no")
1234                                         BCOND="$BCOND $1 $2" ; shift 2 ;;
1235                         esac
1236                         ;;
1237                 -q | --quiet )
1238                         QUIET="--quiet"; shift ;;
1239                 --date )
1240                         CVSDATE="${2}"; shift 2 ;;
1241                 -r | --cvstag )
1242                         shift; CVSTAG="${1}"; shift ;;
1243                 -R | --fetch-build-requires)
1244                         FETCH_BUILD_REQUIRES="yes"
1245                         NOT_INSTALLED_PACKAGES=
1246                         shift ;;
1247                 -RB | --remove-build-requires)
1248                         REMOVE_BUILD_REQUIRES="nice"
1249                         shift ;;
1250                 -FRB | --force-remove-build-requires)
1251                         REMOVE_BUILD_REQUIRES="force"
1252                         shift ;;
1253                 -Tvs | --tag-version-stable )
1254                         COMMAND="tag";
1255                         TAG="STABLE"
1256                         TAG_VERSION="yes"
1257                         shift;;
1258                 -Tvn | --tag-version-nest )
1259                         COMMAND="tag";
1260                         TAG="NEST"
1261                         TAG_VERSION="yes"
1262                         shift;;
1263                 -Ts | --tag-stable )
1264                         COMMAND="tag";
1265                         TAG="STABLE"
1266                         TAG_VERSION="no"
1267                         shift;;
1268                 -Tn | --tag-nest )
1269                         COMMAND="tag";
1270                         TAG="NEST"
1271                         TAG_VERSION="no"
1272                         shift;;
1273                 -Tv | --tag-version )
1274                         COMMAND="tag";
1275                         TAG=""
1276                         TAG_VERSION="yes"
1277                         shift;;
1278                 -Tp | --tag-prefix )
1279                         TAG_PREFIX="$2"
1280                         shift 2;;
1281                 -T | --tag )
1282                         COMMAND="tag";
1283                         shift
1284                         TAG="$1"
1285                         TAG_VERSION="no"
1286                         shift;;
1287                 -U | --update )
1288                         COMMAND="get"
1289                         UPDATE="yes"
1290                         NOCVSSPEC="yes"
1291                         NODIST="yes"
1292                         UPDATE5="yes"
1293                         shift ;;
1294                 -Upi | --update-poldek-indexes )
1295                         UPDATE_POLDEK_INDEXES="yes"
1296                         shift ;;
1297                 -u | --try-upgrade )
1298                         TRY_UPGRADE="1"; shift ;;
1299                 -un | --try-upgrade-with-float-version )
1300                         TRY_UPGRADE="1"; FLOAT_VERSION="1"; shift ;;
1301                 -v | --verbose )
1302                         BE_VERBOSE="1"; shift ;;
1303                 --define)
1304                         shift
1305                         MACRO="${1}"
1306                         VALUE="${2}"
1307                         shift 2
1308                         RPMOPTS="${RPMOPTS} --define \"${MACRO} ${VALUE}\""
1309                         ;;
1310                 --nodeps)
1311                         shift
1312                         RPMOPTS="${RPMOPTS} --nodeps"
1313                         ;;
1314                 * )
1315                         SPECFILE="`basename ${1} .spec`.spec";
1316                         export PROMPT_COMMAND=`echo -ne "\033]0;${SPECFILE}\007"`
1317                         shift ;;
1318         esac
1319 done
1320
1321 if [ -n "$DEBUG" ]; then
1322         set -x;
1323         set -v;
1324 fi
1325
1326 case "$COMMAND" in
1327         "build" | "build-binary" | "build-source" | "build-prep" )
1328                 init_builder;
1329                 if [ -n "$SPECFILE" ]; then
1330                 get_spec;
1331                 set_bconds_values;
1332                 display_bconds;
1333                 fetch_build_requires;
1334                 parse_spec;
1335
1336                 if [ -n "$FAIL_IF_CHANGED_BUT_NOT_BUMPED" ]; then
1337                         TAGVER=$PACKAGE_NAME-`echo $PACKAGE_VERSION | sed -e "s/\./\_/g" -e "s/@/#/g"`-`echo $PACKAGE_RELEASE | sed -e "s/\./\_/g" -e "s/@/#/g"`
1338                         CURTAGREL=$(cvs status $SPECFILE | grep "Working revision:" | awk '{ print $3 }')
1339                         TAGREL=$(cvs status -v $SPECFILE | grep -E "^[[:space:]]*${TAGVER}[[[:space:]]" | sed -e 's#.*(revision: ##g' -e 's#).*##g')
1340
1341                         if [ -n "$TAGREL" -a "$TAGREL" != "$CURTAGREL" ]; then
1342                                 Exit_error err_build_fail "not bumped ver-rel - was already used in rev $TAGREL"
1343                         fi
1344                 fi
1345
1346                 if [ -n "$ICONS" ]; then
1347                         get_files $ICONS;
1348                         parse_spec;
1349                 fi
1350                 if [ -n "$NOSOURCE0" ] ; then
1351                         SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
1352                 fi
1353                 get_files "$SOURCES $PATCHES";
1354                 build_package;
1355                 if [ "$UPDATE_POLDEK_INDEXES" = "yes" ]; then
1356                         run_poldek --sn ${POLDEK_SOURCE} --mkidx="${POLDEK_INDEX_DIR}/packages.dir.gz"
1357                         run_poldek --sn ${POLDEK_SOURCE} --up
1358                 fi
1359                 remove_build_requires;
1360         else
1361                 Exit_error err_no_spec_in_cmdl;
1362         fi
1363         ;;
1364         "branch" )
1365                 init_builder;
1366                 if [ -n "$SPECFILE" ]; then
1367                         get_spec;
1368                         parse_spec;
1369                         if [ -n "$ICONS" ]; then
1370                                 get_files $ICONS
1371                                 parse_spec;
1372                         fi
1373                         get_files $SOURCES $PATCHES;
1374                         branch_files $TAG "$SOURCES $PATCHES $ICONS";
1375                 else
1376                         Exit_error err_no_spec_in_cmdl;
1377                 fi
1378                 ;;
1379         "get" )
1380                 init_builder;
1381                 if [ -n "$SPECFILE" ]; then
1382                         get_spec;
1383                         parse_spec;
1384                         if [ -n "$ICONS" ]; then
1385                                 get_files $ICONS
1386                                 parse_spec;
1387                         fi
1388                         if [ -n "$NOSOURCE0" ] ; then
1389                                 SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
1390                         fi
1391                         get_files $SOURCES $PATCHES
1392                 else
1393                         Exit_error err_no_spec_in_cmdl;
1394                 fi
1395                 ;;
1396         "tag" )
1397                 NOURLS=1
1398                 NODIST=1
1399                 init_builder;
1400                 if [ -n "$SPECFILE" ]; then
1401                         get_spec;
1402                         parse_spec;
1403                         if [ -n "$ICONS" ]; then
1404                                 get_files $ICONS
1405                                 parse_spec;
1406                         fi
1407                         # don't fetch sources from remote locations
1408                         new_SOURCES=""
1409                         for file in $SOURCES
1410                         do
1411                                 [ -n "`src_md5 $file`" ] && continue
1412                                 new_SOURCES="$new_SOURCES $file"
1413                         done
1414                         SOURCES="$new_SOURCES"
1415                         get_files $SOURCES $PATCHES;
1416                         tag_files "$SOURCES $PATCHES $ICONS";
1417                 else
1418                         Exit_error err_no_spec_in_cmdl;
1419                 fi
1420                 ;;
1421         "mr-proper" )
1422                 $RPM --clean --rmsource --rmspec --force --nodeps $SPECFILE
1423                 ;;
1424         "usage" )
1425                 usage;;
1426         "version" )
1427                 echo "$VERSION";;
1428 esac
1429 test -f `pwd`/.${SPECFILE}_INSTALLED_PACKAGES && rm `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
1430 cd "$__PWD"
1431
1432 # vi:syntax=sh:ts=3:sw=4
This page took 0.285898 seconds and 3 git commands to generate.