]> git.pld-linux.org Git - packages/rpm.git/blame - builder
- added %%requires_eq_to and %%apache_modules_api macros
[packages/rpm.git] / builder
CommitLineData
d46655ef 1#!/bin/sh
2# -----------
3# $Id$
4# Exit codes:
5# 0 - succesful
e8b7e313 6# 1 - help displayed
d46655ef 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
e8b7e313
JB
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
d46655ef 20
21VERSION="\
22Build package utility from PLD CVS repository
568630a3 23V 0.11 (C) 1999-2003 Free Penguins".
d46655ef 24PATH="/bin:/usr/bin:/usr/sbin:/sbin:/usr/X11R6/bin"
568630a3 25
d46655ef 26COMMAND="build"
27
28SPECFILE=""
29BE_VERBOSE=""
30QUIET=""
31CLEAN=""
32DEBUG=""
33NOURLS=""
34NOCVS=""
35NOCVSSPEC=""
568630a3
JB
36NODIST=""
37UPDATE=""
38UPDATE5=""
39ADD5=""
40ALWAYS_CVSUP=${ALWAYS_CVSUP:-"yes"}
d46655ef 41if [ -s CVS/Root ]; then
42 CVSROOT=$(cat CVS/Root)
43else
44 CVSROOT=${CVSROOT:-""}
45fi
46# Example: LOGFILE='../log.$PACKAGE_NAME'
47# Yes, you can use variable name! Note _single_ quotes!
48LOGFILE=''
568630a3
JB
49
50LOGDIR=""
51LOGDIROK=""
52LOGDIRFAIL=""
53LASTLOG_FILE=""
54LTAG=""
004cdf3b 55CHMOD="no"
d46655ef 56CHMOD_MODE="0444"
57RPMOPTS=""
58BCOND=""
59
60PATCHES=""
61SOURCES=""
62ICONS=""
63PACKAGE_RELEASE=""
64PACKAGE_VERSION=""
65PACKAGE_NAME=""
e8b7e313 66PROTOCOL="ftp"
d46655ef 67WGET_RETRIES=${MAX_WGET_RETRIES:-0}
568630a3
JB
68CVS_RETRIES=${MAX_CVS_RETRIES:-1000}
69
70CVSTAG=""
71RES_FILE=""
72
73CVS_SERVER="cvs.pld-linux.org"
e8b7e313 74DISTFILES_SERVER="://distfiles.pld-linux.org"
d46655ef 75
76DEF_NICE_LEVEL=0
77
78FAIL_IF_NO_SOURCES="yes"
79
568630a3
JB
80GETURI="wget --passive-ftp -c -nd -t$WGET_RETRIES --inet"
81GETURI2="wget -c -nd -t$WGET_RETRIES --inet"
82GETLOCAL="cp -a"
d46655ef 83
84if (rpm --version 2>&1 | grep -q '4.0.[0-2]'); then
85 RPM="rpm"
86 RPMBUILD="rpm"
87else
88 RPM="rpm"
89 RPMBUILD="rpmbuild"
90fi
91
92if [ -f ~/etc/builderrc ]; then
93 . ~/etc/builderrc
94elif [ -f ~/.builderrc ]; then
95 . ~/.builderrc
96fi
97
98#---------------------------------------------
99# functions
100
101usage()
102{
103 if [ -n "$DEBUG" ]; then set -xv; fi
104 echo "\
105Usage: 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]
e8b7e313 109 [-h|--help] [--http] [{-l,--logtofile} <logfile>] [-m|--mr-proper]
568630a3 110 [-q|--quiet] [--date <yyyy-mm-dd> [-r <cvstag>] [{-T--tag <cvstag>]
648b2a16 111 [-Tvs|--tag-version-stable] [-Tvn|--tag-version-nest]
112 [-Ts|--tag-stable] [-Tn|--tag-nest] [-Tv|--tag-version]
d46655ef 113 [-nu|--no-urls] [-v|--verbose] [--opts <rpm opts>]
568630a3 114 [--with/--without <feature>] [--define <macro> <value>] <package>[.spec]
d46655ef 115
568630a3 116 -5, --update-md5
e8b7e313
JB
117 - update md5 comments in spec, implies -nd -ncs
118 -a5, --add-md5 - add md5 comments to URL sources, implies -nc -nd -ncs
d46655ef 119 -D, --debug - enable script debugging mode,
120 -V, --version - output builder version
568630a3 121 -a, --as_anon - get files via pserver as cvs@$CVS_SERVER,
d46655ef 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,
e8b7e313 141 --http - use http instead of ftp,
d46655ef 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
568630a3
JB
150 -nd, --no-distfiles
151 - don't download from distfiles
d46655ef 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,
568630a3 154 -ns, --no-srcs - don't download Sources
d46655ef 155 -ns0, --no-source0
568630a3 156 - don't download Source0
d46655ef 157 --opts <rpm opts>
158 - additional options for rpm
159 -q, --quiet - be quiet,
568630a3
JB
160 --date yyyy-mm-dd
161 - build package using resources from specified CVS
162 date,
d46655ef 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,
648b2a16 170 -Tvn, --tag-version-nest
171 - add cvs tags NEST and NAME-VERSION-RELESE for files,
d46655ef 172 -Ts, --tag-stable
173 - add cvs tag STABLE for files,
648b2a16 174 -Tn, --tag-nest
175 - add cvs tag NEST for files,
d46655ef 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
568630a3
JB
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
d46655ef 186 --with/--without <feature>
187 - conditional build package depending on
188 %_with_<feature>/%_without_<feature> macro
189 switch
190"
191}
192
e8b7e313
JB
193cache_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
205rpm_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
d46655ef 212parse_spec()
213{
214 if [ -n "$DEBUG" ]; then
568630a3
JB
215 set -x;
216 set -v;
d46655ef 217 fi
218
219 cd $SPECS_DIR
e8b7e313
JB
220
221 cache_rpm_dump
222
d46655ef 223 if [ "$NOSRCS" != "yes" ]; then
e8b7e313 224 SOURCES="`rpm_dump | awk '/SOURCEURL[0-9]+/ {print $3}'`"
d46655ef 225 fi
e8b7e313 226 if (rpm_dump | grep -qEi ":.*nosource.*1"); then
568630a3 227 FAIL_IF_NO_SOURCES="no"
d46655ef 228 fi
229
e8b7e313 230 PATCHES="`rpm_dump | awk '/PATCHURL[0-9]+/ {print $3}'`"
d46655ef 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
568630a3 237 echo "- Sources : `nourl $SOURCES`"
d46655ef 238 if [ -n "$PATCHES" ]; then
568630a3 239 echo "- Patches : `nourl $PATCHES`"
d46655ef 240 else
568630a3 241 echo "- Patches : *no patches needed*"
d46655ef 242 fi
243 if [ -n "$ICONS" ]; then
568630a3 244 echo "- Icon : `nourl $ICONS`"
d46655ef 245 else
568630a3 246 echo "- Icon : *no package icon*"
d46655ef 247 fi
248 echo "- Name : $PACKAGE_NAME"
249 echo "- Version : $PACKAGE_VERSION"
250 echo "- Release : $PACKAGE_RELEASE"
251 fi
252}
253
254Exit_error()
255{
568630a3
JB
256 if [ -n "$DEBUG" ]; then
257 set -x;
258 set -v;
d46655ef 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" )
648b2a16 274 echo "Error: package build failed. (${2:-no more info})";
d46655ef 275 exit 5 ;;
276 esac
277}
278
279init_builder()
280{
568630a3
JB
281 if [ -n "$DEBUG" ]; then
282 set -x;
283 set -v;
d46655ef 284 fi
285
286 SOURCE_DIR="`$RPM --eval '%{_sourcedir}'`"
287 SPECS_DIR="`$RPM --eval '%{_specdir}'`"
288
289 __PWD=`pwd`
290}
291
292get_spec()
293{
568630a3
JB
294 if [ -n "$DEBUG" ]; then
295 set -x;
296 set -v;
d46655ef 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
568630a3
JB
312
313 if [ -z "$CVSDATE" -a -z "$CVSTAG" ]; then
d46655ef 314 OPTIONS="$OPTIONS -A"
568630a3
JB
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
d46655ef 322 fi
323
568630a3
JB
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
d46655ef 340 fi
341 if [ ! -f "$SPECFILE" ]; then
342 Exit_error err_no_spec_in_repo;
343 fi
568630a3 344
d46655ef 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
352find_mirror(){
353
354 cd "$SPECS_DIR"
568630a3
JB
355 url="$1"
356 if [ ! -f "mirrors" -a "$NOCVSSPEC" != "yes" ] ; then
357 cvs update mirrors >&2
d46655ef 358 fi
359
360 IFS="|"
361 while read origin mirror name rest; do
568630a3 362 ol=`echo -n "$origin"|wc -c`
d46655ef 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
568630a3
JB
373src_no ()
374{
375 cd $SPECS_DIR
e8b7e313 376 rpm_dump | \
568630a3
JB
377 grep "SOURCEURL[0-9]*[ ]*$1""[ ]*$" | \
378 sed -e 's/.*SOURCEURL\([0-9][0-9]*\).*/\1/' | \
379 head -1 | xargs
380}
381
382src_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
406distfiles_url ()
407{
e8b7e313 408 echo "$PROTOCOL$DISTFILES_SERVER/by-md5/$(src_md5 "$1" | sed -e 's|^\(.\)\(.\)|\1/\2/&|')/$(basename "$1")"
568630a3
JB
409}
410
411good_md5 ()
412{
413 md5=$(src_md5 "$1")
414 [ "$md5" = "" ] || \
415 [ "$md5" = "$(md5sum $(nourl "$1") 2> /dev/null | sed -e 's/ .*//')" ]
416}
417
d46655ef 418get_files()
419{
420 GET_FILES="$@"
421
568630a3
JB
422 if [ -n "$DEBUG" ]; then
423 set -x;
424 set -v;
d46655ef 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
568630a3 439 if [ -z "$CVSDATE" -a -z "$CVSTAG" ]; then
d46655ef 440 OPTIONS="$OPTIONS -A"
568630a3
JB
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
d46655ef 448 fi
449 for i in $GET_FILES; do
e8b7e313
JB
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
568630a3 459 if [ ! -f `nourl $i` ] || [ $ALWAYS_CVSUP = "yes" ]; then
d46655ef 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
568630a3
JB
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")
e8b7e313 471 if [ `echo $url | grep -E '^(\.|/)'` ]; then
568630a3
JB
472 ${GETLOCAL} $url $target
473 else
e8b7e313
JB
474 FROM_DISTFILES=1
475 if [ -z "$NOMIRRORS" ]; then
568630a3
JB
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 test -s "$target" || rm -f "$target"
483 fi
e8b7e313
JB
484 elif [ -z "$(src_md5 "$i")" -a "$NOCVS" != "yes" ]; then
485 # ( echo $i | grep -qvE '(ftp|http|https)://' ); -- if CVS should be used, but URLs preferred
568630a3
JB
486 result=1
487 retries_counter=0
488 while [ "$result" != "0" -a "$retries_counter" -le "$CVS_RETRIES" ]; do
489 retries_counter=$(( $retries_counter + 1 ))
490 output=$(LC_ALL=C cvs $OPTIONS `nourl $i` 2>&1)
491 result=$?
492 [ -n "$output" ] && echo "$output"
493 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
494 echo "Trying again [`nourl $i`]... ($retries_counter)"
495 sleep 2
496 continue
497 else
498 break
499 fi
500 done
d46655ef 501 fi
568630a3
JB
502
503 if [ -z "$NOURLS" ] && [ ! -f "`nourl $i`" -o -n "$UPDATE" ] && [ `echo $i | grep -E 'ftp://|http://|https://'` ]; then
e8b7e313 504 if [ -z "$NOMIRRORS" ]; then
5dddfe45
JB
505 im="`find_mirror "$i"`"
506 else
507 im="$i"
d46655ef 508 fi
5dddfe45
JB
509 ${GETURI} "$im" || \
510 if [ `echo $im | grep -E 'ftp://'` ]; then ${GETURI2} "$im" ; fi
d46655ef 511 fi
512
568630a3
JB
513
514 fi
515 srcno=$(src_no $i)
516 if [ ! -f "`nourl $i`" -a "$FAIL_IF_NO_SOURCES" != "no" ]; then
517 Exit_error err_no_source_in_repo $i;
518 elif [ -n "$UPDATE5" ] && \
519 ( ( [ -n "$ADD5" ] && echo $i | grep -q -E 'ftp://|http://|https://' && \
520 [ -z "$(grep -E -i '^NoSource[ ]*:[ ]*'$i'([ ]|$)' $SPECS_DIR/$SPECFILE)" ] ) || \
521 grep -q -i -E '^#[ ]*source'$(src_no $i)'-md5[ ]*:' $SPECS_DIR/$SPECFILE )
522 then
523 echo "Updating source-$srcno md5."
524 md5=$(md5sum `nourl $i` | cut -f1 -d' ')
525 perl -i -ne '
526 print unless /^\s*#\s*Source'$srcno'-md5\s*:/i;
527 print "# Source'$srcno'-md5:\t'$md5'\n"
528 if /^Source'$srcno'\s*:\s+/;
529 ' \
530 $SPECS_DIR/$SPECFILE
531 fi
532
e8b7e313
JB
533 if good_md5 "$i"; then
534 :
535 elif [ "$FROM_DISTFILES" = 1 ]; then
536 # wrong md5 from distfiles: remove the file and try again
537 # but only once ...
538 echo "MD5 sum mismatch. Trying full fetch."
539 FROM_DISTFILES=2
540 rm -f $target
541 ${GETURI} -O "$target" "$url" || \
542 if [ `echo $url | grep -E 'ftp://'` ]; then
543 ${GETURI2} -O "$target" "$url"
544 fi
545 test -s "$target" || rm -f "$target"
546 fi
547
568630a3
JB
548 if good_md5 "$i"; then
549 :
550 else
551 echo "MD5 sum mismatch. Use -U to refetch sources,"
552 echo "or -5 to update md5 sums, if you're sure files are correct."
553 Exit_error err_no_source_in_repo $i
d46655ef 554 fi
555 done
568630a3 556
d46655ef 557 if [ "$CHMOD" = "yes" ]; then
558 CHMOD_FILES="`nourl $GET_FILES`"
559 if [ -n "$CHMOD_FILES" ]; then
560 chmod $CHMOD_MODE $CHMOD_FILES
561 fi
562 fi
563 unset OPTIONS
564 fi
565}
566
567tag_files()
568{
569 TAG_FILES="$@"
570
568630a3
JB
571 if [ -n "$DEBUG" ]; then
572 set -x;
573 set -v;
d46655ef 574 fi
575
576 if [ -n "$1$2$3$4$5$6$7$8$9${10}" ]; then
e8b7e313
JB
577 echo "Version: $PACKAGE_VERSION"
578 echo "Release: $PACKAGE_RELEASE"
568630a3 579 TAGVER=$PACKAGE_NAME-`echo $PACKAGE_VERSION | sed -e "s/\./\_/g" -e "s/@/#/g"`-`echo $PACKAGE_RELEASE | sed -e "s/\./\_/g" -e "s/@/#/g"`
648b2a16 580 if [ "$TAG_VERSION" = "yes" ]; then
581 echo "CVS tag: $TAGVER"
582 fi
583 if [ -n "$TAG" ]; then
584 echo "CVS tag: $TAG"
585 fi
d46655ef 586
587 OPTIONS="tag -F"
588 if [ -n "$CVSROOT" ]; then
589 OPTIONS="-d $CVSROOT $OPTIONS"
590 fi
591
592 cd $SOURCE_DIR
593 for i in $TAG_FILES; do
594 if [ -f `nourl $i` ]; then
648b2a16 595 if [ "$TAG_VERSION" = "yes" ]; then
596 cvs $OPTIONS $TAGVER `nourl $i`
597 fi
598 if [ -n "$TAG" ]; then
599 cvs $OPTIONS $TAG `nourl $i`
600 fi
d46655ef 601 else
602 Exit_error err_no_source_in_repo $i
603 fi
604 done
605
606 cd $SPECS_DIR
648b2a16 607 if [ "$TAG_VERSION" = "yes" ]; then
608 cvs $OPTIONS $TAGVER $SPECFILE
609 fi
610 if [ -n "$TAG" ]; then
611 cvs $OPTIONS $TAG $SPECFILE
612 fi
d46655ef 613
614 unset OPTIONS
615 fi
616}
617
618branch_files()
619{
568630a3
JB
620 TAG=$1
621 echo "CVS branch tag: $TAG"
622 shift;
d46655ef 623
568630a3 624 TAG_FILES="$@"
d46655ef 625
568630a3
JB
626 if [ -n "$DEBUG" ]; then
627 set -x;
628 set -v;
629 fi
d46655ef 630
568630a3 631 if [ -n "$1$2$3$4$5$6$7$8$9${10}" ]; then
d46655ef 632
568630a3
JB
633 OPTIONS="tag -b"
634 if [ -n "$CVSROOT" ]; then
635 OPTIONS="-d $CVSROOT $OPTIONS"
d46655ef 636 fi
568630a3
JB
637 cd $SOURCE_DIR
638 for i in $TAG_FILES; do
639 if [ -f `nourl $i` ]; then
640 cvs $OPTIONS $TAG `nourl $i`
641 else
642 Exit_error err_no_source_in_repo $i
643 fi
644 done
645 cd $SPECS_DIR
646 cvs $OPTIONS $TAG $SPECFILE
647
648 unset OPTIONS
649 fi
d46655ef 650}
651
568630a3
JB
652
653
d46655ef 654build_package()
655{
568630a3 656 if [ -n "$DEBUG" ]; then
d46655ef 657 set -x;
568630a3 658 set -v;
d46655ef 659 fi
660
661 cd $SPECS_DIR
662
568630a3
JB
663 if [ -n "$TRY_UPGRADE" ]; then
664
665 if [ -n "FLOAT_VERSION" ]; then
666 TNOTIFY=`./pldnotify.awk $SPECFILE -n`
667 else
668 TNOTIFY=`./pldnotify.awk $SPECFILE`
669 fi
670
d46655ef 671 TNEWVER=`echo $TNOTIFY | awk '{ match($4,/\[NEW\]/); print $5 }'`
568630a3 672
d46655ef 673 if [ -n "$TNEWVER" ]; then
568630a3 674
d46655ef 675 TOLDVER=`echo $TNOTIFY | awk '{ print $3; }'`
568630a3 676
d46655ef 677 echo "New version found, updating spec file to version " $TNEWVER
568630a3 678
d46655ef 679 cp -f $SPECFILE $SPECFILE.bak
568630a3 680
d46655ef 681 chmod +w $SPECFILE
568630a3 682
d46655ef 683 eval "perl -pi -e 's/Version:\t"$TOLDVER"/Version:\t"$TNEWVER"/gs' $SPECFILE"
684 eval "perl -pi -e 's/Release:\t[1-9]{0,4}/Release:\t1/' $SPECFILE"
568630a3 685
d46655ef 686 parse_spec;
568630a3 687
d46655ef 688 get_files "$SOURCES $PATCHES";
568630a3 689
d46655ef 690 unset TOLDVER TNEWVER TNOTIFY
691 fi
568630a3 692
d46655ef 693 fi
694
695
696 cd $SPECS_DIR
697
698 case "$COMMAND" in
699 build )
700 BUILD_SWITCH="-ba" ;;
701 build-binary )
702 BUILD_SWITCH="-bb" ;;
703 build-source )
704 BUILD_SWITCH="-bs --nodeps" ;;
705 esac
706 if [ -n "$LOGFILE" ]; then
568630a3
JB
707 if [ -n "$CVSTAG" ]; then
708 LTAG="r_`echo $CVSTAG|sed -e 's/\./_/g'`_"
709 else
710 LTAG=""
711 fi
d46655ef 712 LOG=`eval echo $LOGFILE`
568630a3
JB
713 if [ -n "$LASTLOG_FILE" ]; then
714 echo "LASTLOG=$LOG" > $LASTLOG_FILE
715 fi
716 RES_FILE=~/tmp/$RPMBUILD-exit-status.$RANDOM
717 (nice -n ${DEF_NICE_LEVEL} time $RPMBUILD $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $BCOND $SPECFILE; echo $? > $RES_FILE) 2>&1 |tee $LOG
718 RETVAL=`cat $RES_FILE`
719 rm $RES_FILE
720 if [ -n "$LOGDIROK" ] && [ -n "$LOGDIRFAIL" ]; then
721 if [ "$RETVAL" -eq "0" ]; then
722 mv $LOG $LOGDIROK
723 else
724 mv $LOG $LOGDIRFAIL
725 fi
726 fi
d46655ef 727 else
728 eval nice -n ${DEF_NICE_LEVEL} $RPMBUILD $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $BCOND $SPECFILE
568630a3 729 RETVAL=$?
d46655ef 730 fi
731
568630a3
JB
732 if [ "$RETVAL" -ne "0" ]; then
733
734 if [ -n "$TRY_UPGRADE" ]; then
d46655ef 735 echo "\n!!! Package with new version cannot be build automagically\n"
736 mv -f $SPECFILE.bak $SPECFILE
737 fi
568630a3 738
d46655ef 739 Exit_error err_build_fail;
740 fi
568630a3 741
d46655ef 742 unset BUILD_SWITCH
743}
744
745nourl()
746{
568630a3 747 echo "$@" | sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g'
d46655ef 748}
e8b7e313 749
d46655ef 750#---------------------------------------------
751# main()
752
753if [ "$#" = 0 ]; then
754 usage;
755 exit 1
756fi
757
758while test $# -gt 0 ; do
759 case "${1}" in
568630a3
JB
760 -5 | --update-md5 )
761 COMMAND="get";
762 NODIST="yes"
e8b7e313 763 NOCVSSPEC="yes"
568630a3
JB
764 UPDATE5="yes"
765 shift ;;
766 -a5 | --add-md5 )
767 COMMAND="get";
768 NODIST="yes"
769 NOCVS="yes"
e8b7e313 770 NOCVSSPEC="yes"
568630a3
JB
771 UPDATE5="yes"
772 ADD5="yes"
773 shift ;;
d46655ef 774 -D | --debug )
775 DEBUG="yes"; shift ;;
776 -V | --version )
777 COMMAND="version"; shift ;;
778 -a | --as_anon )
568630a3 779 CVSROOT=":pserver:cvs@$CVS_SERVER:/cvsroot"; shift ;;
d46655ef 780 -b | -ba | --build )
781 COMMAND="build"; shift ;;
782 -bb | --build-binary )
783 COMMAND="build-binary"; shift ;;
784 -bs | --build-source )
785 COMMAND="build-source"; shift ;;
786 -B | --branch )
787 COMMAND="branch"; shift; TAG="${1}"; shift;;
788 -c | --clean )
789 CLEAN="--clean --rmspec --rmsource"; shift ;;
790 -d | --cvsroot )
791 shift; CVSROOT="${1}"; shift ;;
792 -g | --get )
793 COMMAND="get"; shift ;;
794 -h | --help )
795 COMMAND="usage"; shift ;;
e8b7e313
JB
796 --http )
797 PROTOCOL="http"; shift ;;
d46655ef 798 -l | --logtofile )
799 shift; LOGFILE="${1}"; shift ;;
800 -ni| --nice )
801 shift; DEF_NICE_LEVEL=${1}; shift ;;
802 -m | --mr-proper )
803 COMMAND="mr-proper"; shift ;;
804 -nc | --no-cvs )
805 NOCVS="yes"; shift ;;
568630a3 806 -ncs | --no-cvs-specs )
d46655ef 807 NOCVSSPEC="yes"; shift ;;
568630a3
JB
808 -nd | --no-distfiles )
809 NODIST="yes"; shift ;;
d46655ef 810 -nm | --no-mirrors )
811 NOMIRRORS="yes"; shift ;;
812 -nu | --no-urls )
813 NOURLS="yes"; shift ;;
814 -ns | --no-srcs )
815 NOSRCS="yes"; shift ;;
816 -ns0 | --no-source0 )
817 NOSOURCE0="yes"; shift ;;
818 --opts )
819 shift; RPMOPTS="${1}"; shift ;;
820 --with | --without )
821 BCOND="$BCOND $1 $2" ; shift 2 ;;
822 -q | --quiet )
823 QUIET="--quiet"; shift ;;
568630a3
JB
824 --date )
825 CVSDATE="${2}"; shift 2 ;;
d46655ef 826 -r | --cvstag )
827 shift; CVSTAG="${1}"; shift ;;
828 -Tvs | --tag-version-stable )
829 COMMAND="tag";
830 TAG="STABLE"
831 TAG_VERSION="yes"
832 shift;;
648b2a16 833 -Tvn | --tag-version-nest )
d46655ef 834 COMMAND="tag";
648b2a16 835 TAG="NEST"
d46655ef 836 TAG_VERSION="yes"
837 shift;;
838 -Ts | --tag-stable )
839 COMMAND="tag";
840 TAG="STABLE"
841 TAG_VERSION="no"
842 shift;;
648b2a16 843 -Tn | --tag-nest )
d46655ef 844 COMMAND="tag";
648b2a16 845 TAG="NEST"
d46655ef 846 TAG_VERSION="no"
847 shift;;
848 -Tv | --tag-version )
849 COMMAND="tag";
648b2a16 850 TAG=""
d46655ef 851 TAG_VERSION="yes"
852 shift;;
853 -T | --tag )
854 COMMAND="tag";
855 shift
856 TAG="$1"
857 TAG_VERSION="no"
858 shift;;
568630a3 859 -U | --update )
e8b7e313 860 COMMAND="get"
568630a3
JB
861 UPDATE="yes"
862 NODIST="yes"
863 UPDATE5="yes"
568630a3 864 shift ;;
d46655ef 865 -u | --try-upgrade )
866 TRY_UPGRADE="1"; shift ;;
568630a3
JB
867 -un | --try-upgrade-with-float-version )
868 TRY_UPGRADE="1"; FLOAT_VERSION="1"; shift ;;
869 -v | --verbose )
870 BE_VERBOSE="1"; shift ;;
d46655ef 871 --define)
872 shift
873 MACRO="${1}"
874 VALUE="${2}"
875 shift 2
876 RPMOPTS="${RPMOPTS} --define \"${MACRO} ${VALUE}\""
877 ;;
878 * )
568630a3 879 SPECFILE="`basename ${1} .spec`.spec"; shift ;;
d46655ef 880 esac
881done
882
568630a3
JB
883if [ -n "$DEBUG" ]; then
884 set -x;
885 set -v;
d46655ef 886fi
887
888case "$COMMAND" in
889 "build" | "build-binary" | "build-source" )
890 init_builder;
891 if [ -n "$SPECFILE" ]; then
892 get_spec;
893 parse_spec;
648b2a16 894
895 if [ -n "$FAIL_IF_CHANGED_BUT_NOT_BUMPED" ]; then
568630a3 896 TAGVER=$PACKAGE_NAME-`echo $PACKAGE_VERSION | sed -e "s/\./\_/g" -e "s/@/#/g"`-`echo $PACKAGE_RELEASE | sed -e "s/\./\_/g" -e "s/@/#/g"`
648b2a16 897 CURTAGREL=$(cvs status $SPECFILE | grep "Working revision:" | awk '{ print $3 }')
898 TAGREL=$(cvs status -v $SPECFILE | grep -E "^[[:space:]]*${TAGVER}[[[:space:]]" | sed -e 's#.*(revision: ##g' -e 's#).*##g')
899
900 if [ -n "$TAGREL" -a "$TAGREL" != "$CURTAGREL" ]; then
901 Exit_error err_build_fail "not bumped ver-rel - was already used in rev $TAGREL"
902 fi
903 fi
904
d46655ef 905 if [ -n "$ICONS" ]; then
568630a3
JB
906 get_files $ICONS;
907 parse_spec;
908 fi
909 if [ -n "$NOSOURCE0" ] ; then
910 SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
d46655ef 911 fi
912 get_files "$SOURCES $PATCHES";
913 build_package;
914 else
915 Exit_error err_no_spec_in_cmdl;
916 fi
917 ;;
918 "branch" )
568630a3 919 init_builder;
d46655ef 920 if [ -n "$SPECFILE" ]; then
921 get_spec;
922 parse_spec;
923 if [ -n "$ICONS" ]; then
924 get_files $ICONS
925 parse_spec;
926 fi
927 get_files $SOURCES $PATCHES;
928 branch_files $TAG "$SOURCES $PATCHES $ICONS";
929 else
930 Exit_error err_no_spec_in_cmdl;
931 fi
568630a3 932 ;;
d46655ef 933 "get" )
934 init_builder;
935 if [ -n "$SPECFILE" ]; then
936 get_spec;
937 parse_spec;
938 if [ -n "$ICONS" ]; then
939 get_files $ICONS
940 parse_spec;
941 fi
942 if [ -n "$NOSOURCE0" ] ; then
943 SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
944 fi
945 get_files $SOURCES $PATCHES
946 else
947 Exit_error err_no_spec_in_cmdl;
948 fi
949 ;;
950 "tag" )
951 init_builder;
952 if [ -n "$SPECFILE" ]; then
953 get_spec;
954 parse_spec;
955 if [ -n "$ICONS" ]; then
956 get_files $ICONS
957 parse_spec;
958 fi
959 get_files $SOURCES $PATCHES;
960 tag_files "$SOURCES $PATCHES $ICONS";
961 else
962 Exit_error err_no_spec_in_cmdl;
963 fi
964 ;;
965 "mr-proper" )
966 $RPM --clean --rmsource --rmspec --force --nodeps $SPECFILE
967 ;;
968 "usage" )
969 usage;;
970 "version" )
971 echo "$VERSION";;
972esac
973
974cd $__PWD
This page took 0.158498 seconds and 4 git commands to generate.