]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - builder.sh
prepend to autogenerated changelog link to full changelog in gitweb
[packages/rpm-build-tools.git] / builder.sh
CommitLineData
10d92f71 1#!/bin/ksh
44058243 2#
dece74ed
AM
3# This program is free software, distributed under the terms of
4# the GNU General Public License Version 2.
5#
cd445739 6# -----------
cd445739 7# Exit codes:
2a5f078d 8# 0 - succesful
9# 1 - help displayed
10# 2 - no spec file name in cmdl parameters
11# 3 - spec file not stored in repo
12# 4 - some source, patch or icon files not stored in repo
13# 5 - package build failed
14# 6 - spec file with errors
15# 7 - wrong source in /etc/poldek.conf
16# 8 - Failed installing buildrequirements and subrequirements
17# 9 - Requested tag already exist
18# 10 - Refused to build fractional release
19# 100 - Unknown error (should not happen)
67963237 20# 110 - Functions not yet implemented
cd445739 21
f8e50be5 22# Notes (todo/bugs):
f8e50be5
ER
23# - when Icon: field is present, -5 and -a5 doesn't work
24# - builder -R skips installing BR if spec is not present before builder invocation (need to run builder twice)
19aa2571 25# - does not respect NoSource: X, and tries to cvs up such files [ example: VirtualBox-bin.spec and its Source0 ]
f8e50be5
ER
26# TODO:
27# - ability to do ./builder -bb foo.spec foo2.spec foo3.spec
1ffcdaff
ER
28# - funny bug, if source-md5 is set then builder will download from distfiles even if there is no url present:
29# Source10: forwardfix.pl
30# # Source10-md5: 8bf85f7368933a4e0cb4f875bac28733
6ca6f876
ZU
31# - builder --help:
32# basename: missing operand
33# Try `basename --help' for more information.
34# -- and the normal usage info --
35
9d99a240
ER
36PROGRAM=${0##*/}
37APPDIR=$(d=$0; [ -L "$d" ] && d=$(readlink -f "$d"); dirname "$d")
cd112f74 38RCSID='$Id: builder,v 1.645 2011/02/13 17:54:10 glen Exp $' r=${RCSID#* * } rev=${r%% *}
b0f031e7 39VERSION="v0.35/$rev"
d43959a2 40VERSIONSTRING="\
b71f5024 41Build package utility from PLD Linux Packages repository
32131a0e 42$VERSION (C) 1999-2012 Free Penguins".
d43959a2 43
670b1ed4 44CLEAN_PATH="/bin:/usr/bin:/usr/sbin:/sbin:/usr/X11R6/bin"
b03f053b 45
b7cc0c94
ER
46# required rpm-build-macros
47RPM_MACROS_VER=1.534
48
cd445739 49COMMAND="build"
64ea5308 50TARGET=""
cd445739 51
bde1c404 52SPECFILE=""
d287305c 53BE_VERBOSE=""
4003ad8c 54QUIET=""
cd445739
AM
55CLEAN=""
56DEBUG=""
57NOURLS=""
cd445739
AM
58NOCVSSPEC=""
59NODIST=""
47761337 60NOINIT=""
bc10f694 61PREFMIRRORS=""
cd445739 62UPDATE=""
cd445739
AM
63ADD5=""
64NO5=""
65ALWAYS_CVSUP=${ALWAYS_CVSUP:-"yes"}
cd445739 66
6c1b2e7d
PZ
67# use rpm 4.4.6+ digest format instead of comments if non-zero
68USEDIGEST=
69
e3aa6f5e
ER
70# user agent when fetching files
71USER_AGENT="PLD/Builder($VERSION)"
72
cd445739
AM
73# It can be used i.e. in log file naming.
74# See LOGFILE example.
75DATE=`date +%Y-%m-%d_%H-%M-%S`
76
7534a77d
ER
77# target arch, can also be used for log file naming
78TARGET=$(rpm -E %{_target})
79
cd445739
AM
80# Example: LOGFILE='../log.$PACKAGE_NAME'
81# Example: LOGFILE='../LOGS/log.$PACKAGE_NAME.$DATE'
d280fd97 82# Example: LOGFILE='$PACKAGE_NAME/$PACKAGE_NAME.$DATE.log'
f5687002 83# Example: LOGFILE='$PACKAGE_NAME.$DATE.log'
cd445739
AM
84# Yes, you can use variable name! Note _single_ quotes!
85LOGFILE=''
86
87LOGDIR=""
88LOGDIROK=""
89LOGDIRFAIL=""
90LASTLOG_FILE=""
91
92CHMOD="no"
1da227e8 93CHMOD_MODE="0644"
cd445739 94RPMOPTS=""
d1c5a9a7 95RPMBUILDOPTS=""
cd445739
AM
96BCOND=""
97GROUP_BCONDS="no"
ccffa567
ER
98
99# create symlinks for tools in PACKAGE_DIR, see get_spec()
2dd0af86 100SYMLINK_TOOLS="no"
d287305c 101
102PATCHES=""
103SOURCES=""
cd445739 104ICONS=""
d287305c 105PACKAGE_RELEASE=""
106PACKAGE_VERSION=""
107PACKAGE_NAME=""
14bead22 108ASSUMED_NAME=""
fd71d65c 109PROTOCOL="http"
2060f498
AM
110
111# use lftp by default when available
f4bac425 112USE_LFTP=
2060f498 113lftp --version > /dev/null 2>&1 && USE_LFTP=yes
d4c8d3a9 114PARALLEL_DOWNLOADS=10
2060f498 115
cd445739 116WGET_RETRIES=${MAX_WGET_RETRIES:-0}
cd445739 117
939f2c12 118CVS_FORCE=""
f123bcb5 119CVSIGNORE_DF="yes"
cd445739 120CVSTAG=""
7446994b
KK
121GIT_SERVER="git://git.pld-linux.org"
122GIT_PUSH="git@git.pld-linux.org"
76636346 123PACKAGES_DIR="packages"
a8f917c2 124HEAD_DETACHED=""
3189511a 125DEPTH=""
3f79cb18 126ALL_BRANCHES=""
608c01a7 127REMOTE_PLD="origin"
406b9ecf 128NEW_REPO=""
939f2c12 129
cd445739
AM
130RES_FILE=""
131
cd445739 132DISTFILES_SERVER="://distfiles.pld-linux.org"
d4730dae 133ATTICDISTFILES_SERVER="://attic-distfiles.pld-linux.org"
cd445739 134
36d03934 135DEF_NICE_LEVEL=19
86aafdbe 136SCHEDTOOL="auto"
cd445739
AM
137
138FAIL_IF_NO_SOURCES="yes"
139
18e5347d
ER
140# let get_files skip over files which are present to get those damn files fetched
141SKIP_EXISTING_FILES="no"
142
975d7b23 143TRY_UPGRADE=""
257af81b
ER
144# should the specfile be restored if upgrade failed?
145REVERT_BROKEN_UPGRADE="yes"
146
90baf90b
ER
147if rpm --specsrpm 2>/dev/null; then
148 FETCH_BUILD_REQUIRES_RPMSPECSRPM="yes"
ce40491a 149 FETCH_BUILD_REQUIRES_RPMGETDEPS="no"
90baf90b
ER
150else
151 FETCH_BUILD_REQUIRES_RPMSPECSRPM="no"
152 if [ -x /usr/bin/rpm-getdeps ]; then
153 FETCH_BUILD_REQUIRES_RPMGETDEPS="yes"
154 else
155 FETCH_BUILD_REQUIRES_RPMGETDEPS="no"
156 fi
ab4a2b6e
ER
157fi
158
8a390970 159UPDATE_POLDEK_INDEXES_OPTS=""
90baf90b 160
cd445739
AM
161# Here we load saved user environment used to
162# predefine options set above, or passed to builder
163# in command line.
164# This one reads global system environment settings:
165if [ -f ~/etc/builderrc ]; then
166 . ~/etc/builderrc
167fi
168# And this one cascades settings using user personal
169# builder settings.
170# Example of ~/.builderrc:
171#
172#UPDATE_POLDEK_INDEXES="yes"
8a390970 173#UPDATE_POLDEK_INDEXES_OPTS="--mo=nodiff"
cd445739
AM
174#FETCH_BUILD_REQUIRES="yes"
175#REMOVE_BUILD_REQUIRES="force"
176#GROUP_BCONDS="yes"
177#LOGFILE='../LOGS/log.$PACKAGE_NAME.$DATE'
982e358c 178#TITLECHANGE=no
cd445739 179#
a83e5405 180SU_SUDO=""
cd445739
AM
181if [ -n "$HOME_ETC" ]; then
182 USER_CFG="$HOME_ETC/.builderrc"
20117088 183 BUILDER_MACROS="$HOME_ETC/.builder-rpmmacros"
cd445739
AM
184else
185 USER_CFG=~/.builderrc
20117088 186 BUILDER_MACROS=~/.builder-rpmmacros
cd445739
AM
187fi
188
189[ -f "$USER_CFG" ] && . "$USER_CFG"
190
86aafdbe
ER
191if [ "$SCHEDTOOL" = "auto" ]; then
192 if [ -x /usr/bin/schedtool ] && schedtool -B -e echo >/dev/null; then
193 SCHEDTOOL="schedtool -B -e"
194 else
195 SCHEDTOOL="no"
196 fi
197fi
198
ca2e6c31 199if [ -n "$USE_PROZILLA" ]; then
7e365483
KK
200 GETURI="proz --no-getch -r -P ./ -t$WGET_RETRIES $PROZILLA_OPTS"
201 GETURI2="$GETURI"
202 OUTFILEOPT="-O"
ca2e6c31 203elif [ -n "$USE_AXEL" ]; then
cede92b3 204 GETURI="axel -a $AXEL_OPTS"
7e365483
KK
205 GETURI2="$GETURI"
206 OUTFILEOPT="-o"
9639be96 207elif [ -n "$USE_LFTP" ]; then
9639be96
AM
208 GETURI=download_lftp
209 GETURI2=$GETURI
210 OUTFILEOPT=""
ca2e6c31 211else
5700ee32
ER
212 wget --help 2>&1 | grep -q -- ' --no-check-certificate ' && WGET_OPTS="$WGET_OPTS --no-check-certificate"
213 wget --help 2>&1 | grep -q -- ' --inet ' && WGET_OPTS="$WGET_OPTS --inet"
214 wget --help 2>&1 | grep -q -- ' --retry-connrefused ' && WGET_OPTS="$WGET_OPTS --retry-connrefused"
e3aa6f5e 215 WGET_OPTS="$WGET_OPTS --user-agent=$USER_AGENT"
6f9a5d76 216
7e365483
KK
217 GETURI="wget --passive-ftp -c -nd -t$WGET_RETRIES $WGET_OPTS"
218 GETURI2="wget -c -nd -t$WGET_RETRIES $WGET_OPTS"
219 OUTFILEOPT="-O"
2bc5451f 220fi
11468b23 221
11468b23
AM
222GETLOCAL="cp -a"
223
15e34b63 224if rpm --version 2>&1 | grep -q '4.0.[0-2]'; then
11468b23
AM
225 RPM="rpm"
226 RPMBUILD="rpm"
227else
228 RPM="rpm"
229 RPMBUILD="rpmbuild"
230fi
231
c86939e2 232#
233# sanity checks
234#
235if [ -d $HOME/rpm/SOURCES ]; then
236 echo "ERROR: ~/rpm/{SPECS,SOURCES} structure is obsolete" >&2
237 echo "ERROR: get rid of your ~/rpm/SOURCES" >&2
238 exit 1
239fi
240
a8c9a155 241POLDEK_INDEX_DIR="$($RPM --eval %_rpmdir)/"
a83e5405 242POLDEK_CMD="$SU_SUDO /usr/bin/poldek --noask"
11468b23 243
f6711e2a 244run_poldek() {
390d081d 245 RES_FILE=$(tempfile)
cd445739
AM
246 if [ -n "$LOGFILE" ]; then
247 LOG=`eval echo $LOGFILE`
248 if [ -n "$LASTLOG_FILE" ]; then
249 echo "LASTLOG=$LOG" > $LASTLOG_FILE
250 fi
86aafdbe 251 (${NICE_COMMAND} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE})|tee -a $LOG
cd445739
AM
252 return $exit_pldk
253 else
86aafdbe 254 (${NICE_COMMAND} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE}) 1>&2 >/dev/null
cd445739
AM
255 return `cat ${RES_FILE}`
256 rm -rf ${RES_FILE}
257 fi
258}
259
cd445739
AM
260#---------------------------------------------
261# functions
da946cd6 262
f4bac425 263download_lftp() {
6928bb29 264 local outfile=$1 url=$2 retval tmpfile
f4bac425
ER
265 # TODO: use mktemp
266 tmpfile=$outfile.tmp
4d1fc6ce
AM
267 lftp -c "
268 $([ "$DEBUG" = "yes" ] && echo "debug 5;")
78ff632e 269 set ssl:verify-certificate no;
4d1fc6ce
AM
270 set net:max-retries $WGET_RETRIES;
271 set http:user-agent \"$USER_AGENT\";
d4c8d3a9 272 pget -n $PARALLEL_DOWNLOADS -c \"$url\" -o \"$tmpfile\"
4d1fc6ce 273 "
f4bac425
ER
274
275 retval=$?
276 if [ $retval -eq 0 ]; then
277 mv -f "$tmpfile" "$outfile"
278 else
279 rm -f "$tmpfile"
280 fi
281 return $retval
282}
283
f6711e2a 284usage() {
cd445739 285 if [ -n "$DEBUG" ]; then set -xv; fi
647fead0
ER
286# NOTE:
287# to make this output parseable by bash-completion _parse_help()
288# if the line contains short and long option, it will take only the long option
289# but if you want both being completed, put the short option to separate line
cd445739 290 echo "\
3f79cb18 291Usage: builder [--all-branches] [-D|--debug] [-V|--version] [--short-version] [-a|--add_cvs] [-b|-ba|--build]
6594293d 292[-bb|--build-binary] [-bs|--build-source] [-bc] [-bi] [-bl] [-u|--try-upgrade]
0c8e5e9d 293[{-cf|--cvs-force}] [{-B|--branch} <branch>] [--depth <number>]
fd71d65c 294[-g|--get] [-h|--help] [--ftp] [--http] [{-l|--logtofile} <logfile>] [-m|--mr-proper]
ccb03bc0 295[-q|--quiet] [--date <yyyy-mm-dd> [-r <tag>] [{-T|--tag <tag>]
a7b2951c 296[-Tvs|--tag-version-stable] [-Ts|--tag-stable] [-Tv|--tag-version]
b3b584c5 297[{-Tp|--tag-prefix} <prefix>] [{-tt|--test-tag}]
6594293d 298[-nu|--no-urls] [-v|--verbose] [--opts <rpm opts>] [--short-circuit]
3009b80d 299[--show-bconds] [--with/--without <feature>] [--define <macro> <value>]
ccb03bc0 300<package>[.spec][:tag]
2a5f078d 301
647fead0
ER
302-4 - force IPv4 when transferring files
303-6 - force IPv6 when transferring files
304-5,
305--update-md5 - update md5 comments in spec, implies -nd -ncs
306-a5,
307--add-md5 - add md5 comments to URL sources, implies -nc -nd -ncs
4ca1edbd 308--all-branches - make shallow fetch of all branches; --depth required
cd445739 309-n5, --no-md5 - ignore md5 comments in spec
9243e80b
ER
310-D, --debug - enable builder script debugging mode,
311-debug - produce rpm debug package (same as --opts -debug)
d43959a2
ER
312-V, --version - output builder version string
313--short-version - output builder short version
647fead0
ER
314-a - try add new package to PLD repo.
315-b,
316-ba
317 - get all files from PLD repo or HTTP/FTP and build package
cd445739 318 from <package>.spec,
647fead0 319-bb - get all files from PLD repo or HTTP/FTP and build binary
cd445739 320 only package from <package>.spec,
647fead0 321-bp - execute the %prep phase of <package>.spec,
6594293d
AG
322-bc - execute the %build phase of <package>.spec,
323-bi - execute the %install phase of <package>.spec
4ca1edbd 324-bl - execute the %files phase of <package>.spec
647fead0 325-bs - get all files from PLD repo or HTTP/FTP and only pack
cd445739 326 them into src.rpm,
6594293d 327--short-circuit - short-circuit build
cd445739 328-B, --branch - add branch
647fead0
ER
329-c,
330--clean - clean all temporarily created files (in BUILD\$RPM_BUILD_ROOT) after rpmbuild commands.
387eaf99 331 may be used with building process.
6f10b394 332-m, --mr-proper - clean all temporarily created files (in BUILD, SOURCES,
4ca1edbd
KK
333 SPECS and \$RPM_BUILD_ROOT). Doesn't run any rpm building.
334-cf, --cvs-force - use -f when tagging
eccfb714 335--define '<macro> <value>'
cd445739 336 - define a macro <macro> with value <value>,
4ca1edbd 337--depth <number> - make shallow fetch
44058243
ER
338--alt_kernel <kernel>
339 - same as --define 'alt_kernel <kernel>'
cd445739 340--nodeps - rpm won't check any dependences
647fead0
ER
341-g
342--get - get <package>.spec and all related files from PLD repo
cd445739 343-h, --help - this message,
647fead0
ER
344-j N - set %_smp_mflags to propagate concurrent jobs
345--ftp - use FTP protocol to access distfiles server
346--http - use HTTP protocol to access distfiles server
347-l <logfile>, --logtofile=<logfile>
cd445739 348 - log all to file,
cd445739 349-ncs, --no-cvs-specs
ccb03bc0 350 - don't pull from PLD repo
cd445739
AM
351-nd, --no-distfiles - don't download from distfiles
352-nm, --no-mirrors - don't download from mirror, if source URL is given,
353-nu, --no-urls - don't try to download from FTP/HTTP location,
7cbc2d88 354-ns, --no-srcs - don't download Sources/Patches
cd445739
AM
355-ns0, --no-source0 - don't download Source0
356-nn, --no-net - don't download anything from the net
647fead0 357-p N - set PARALLEL_DOWNLOADS to N (default $PARALLEL_DOWNLOADS)
4ca1edbd
KK
358-pm, --prefer-mirrors
359 - prefer mirrors (if any) over distfiles for SOURCES
b572253e 360--no-init - don't initialize builder paths (SPECS and SOURCES)
18e5347d 361-ske,
4ca1edbd
KK
362--skip-existing-files
363 - skip existing files in get_files
cd445739
AM
364--opts <rpm opts> - additional options for rpm
365-q, --quiet - be quiet,
ccb03bc0
KK
366--date yyyy-mm-dd - build package using resources from specified date,
367-r <tag>, --cvstag <ref>
368 - build package using resources from specified branch/tag,
5053a974 369-A - build package using master branch as any sticky tags/branch/date being reset.
cd445739
AM
370-R, --fetch-build-requires
371 - fetch what is BuildRequired,
372-RB, --remove-build-requires
373 - remove all you fetched with -R or --fetch-build-requires
374 remember, this option requires confirmation,
375-FRB, --force-remove-build-requires
376 - remove all you fetched with -R or --fetch-build-requires
377 remember, this option works without confirmation,
4ca1edbd
KK
378-sd, --source-distfiles
379 - list sources available from distfiles (intended for offline
06541433
JR
380 operations; does not work when Icon field is present
381 but icon file is absent),
4ca1edbd
KK
382-sc, --source-cvs - list sources available from PLD repo
383-sdp, --source-distfiles-paths
384 - list sources available from distfiles -
06541433
JR
385 paths relative to distfiles directory (intended for offline
386 operations; does not work when Icon field is present
387 but icon file is absent),
a7eefc54 388-sf, --source-files - list sources - bare filenames (intended for offline
389 operations; does not work when Icon field is present
3621e588 390 but icon file is absent),
4ca1edbd
KK
391-lsp, --source-paths
392 - list sources - filenames with full local paths (intended for
a7eefc54 393 offline operations; does not work when Icon field is present
3621e588 394 but icon file is absent),
2dddf439
ER
395-su, --source-urls - list urls - urls to sources and patches
396 intended for copying urls with spec with lots of macros in urls
ccb03bc0
KK
397-T <tag> , --tag <tag>
398 - add git tag <tag> for files,
cd445739 399-Tvs, --tag-version-stable
ccb03bc0 400 - add git tags STABLE and NAME-VERSION-RELEASE for files,
cd445739 401-Ts, --tag-stable
ccb03bc0 402 - add git tag STABLE for files,
647fead0
ER
403-Tv,
404--tag-version - add git tag NAME-VERSION-RELEASE for files,
cd445739
AM
405-Tp, --tag-prefix <prefix>
406 - add <prefix> to NAME-VERSION-RELEASE tags,
407-tt, --test-tag <prefix>
408 - fail if tag is already present,
50321881
JK
409-ir, --integer-release-only
410 - allow only integer and snapshot releases
cd445739
AM
411-v, --verbose - be verbose,
412-u, --try-upgrade - check version, and try to upgrade package
413-un, --try-upgrade-with-float-version
414 - as above, but allow float version
4ca1edbd 415 php-pear-Services_Digg/
0907f1eb 416--upgrade-version - upgrade to specified version in try-upgrade
deccc50e 417-U, --update - refetch sources, don't use distfiles, and update md5 comments
cd445739
AM
418-Upi, --update-poldek-indexes
419 - refresh or make poldek package index files.
647fead0
ER
420-sp <patchnumber>,
421--skip-patch <patchnumber>
8bd5e66d 422 - don't apply <patchnumber>. may be repeated.
647fead0
ER
423-np <patchnumber>,
424--nopatch <patchnumber>
8bd5e66d 425 - abort instead of applying patch <patchnumber>
dfe2cb9a
MK
426--show-bconds - show available conditional builds, which can be used
427 - with --with and/or --without switches.
b05205af
BZ
428--show-bcond-args - show active bconds, from ~/.bcondrc. this is used by ./repackage.sh script.
429 In other words, the output is parseable by scripts.
24a97174 430--show-avail-bconds - show available bconds
647fead0
ER
431--with <feature>,
432--without <feature>
cd445739
AM
433 - conditional build package depending on %_with_<feature>/
434 %_without_<feature> macro switch. You may now use
435 --with feat1 feat2 feat3 --without feat4 feat5 --with feat6
436 constructions. Set GROUP_BCONDS to yes to make use of it.
6dd19291 437--target <platform>, --target=<platform>
a6494cd4
ER
438 - build for platform <platform>.
439--init-rpm-dir - initialize ~/rpm directory structure
5a491465 440"
441}
442
390d081d
ER
443# create tempfile. as secure as possible
444tempfile() {
ff5e57ba 445 mktemp --tmpdir -t builder.$PACKAGE_NAME.XXXXXX || ${TMPDIR:-/tmp}/builder.$RANDOM.$$
390d081d
ER
446}
447
397fa865 448tempdir() {
ff5e57ba 449 mktemp --tmpdir -d builder.$PACKAGE_NAME.XXXXXX
397fa865
KK
450}
451
8cc8f5c0
ER
452# inserts git log instead of %changelog
453# outputs name of modified file created by tempfile
454insert_gitlog() {
397fa865 455 local SPECFILE=$1 specdir=$(tempdir) gitlog=$(tempfile) speclog=$(tempfile)
8cc8f5c0
ER
456
457 # allow this being customized
458 local log_entries=$(rpm -E '%{?_buildchangelogtruncate}')
459
460 # rpm5.org/rpm.org do not parse any other date format than 'Wed Jan 1 1997'
461 # otherwise i'd use --date=iso here
462 # http://rpm5.org/cvs/fileview?f=rpm/build/parseChangelog.c&v=2.44.2.1
463 # http://rpm.org/gitweb?p=rpm.git;a=blob;f=build/parseChangelog.c#l31
464 # NOTE: changelog date is always in UTC for rpmbuild
465 # * 1265749244 +0000 Random Hacker <nikt@pld-linux.org> 9370900
7821adec 466 git rev-list --date-order -${log_entries:-20} HEAD | while read sha1; do
f8704064 467 local logfmt='%B%n'
fafbe559 468 git notes list $sha1 > /dev/null 2>&1 && logfmt=%N
f8704064 469 git log -n 1 $sha1 --format=format:"* %ad %an <%ae> %h%n${logfmt}%n" --date=raw | sed '/^$/q'
9c0fe78c 470 done > $gitlog
9e269b3c
ER
471
472 # add link to full git logs
473 local giturl="http://git.pld-linux.org/?p=packages/$PACKAGE_NAME.git;a=log"
474 if [ -n "$CVSTAG" ]; then
475 giturl="$giturl;h=$CVSTAG"
476 fi
477 local gitauthor="PLD Linux Team <feedback@pld-linux.org>"
478 LC_ALL=C gawk -vgiturl="$giturl" -vgitauthor="$gitauthor" -vpackage=$PACKAGE_NAME 'BEGIN{
479 printf("* %s %s\n- For complete changelog see: %s\n", strftime("%a %b %d %Y"), gitauthor, giturl);
480 print;
481 exit
482 }' > $speclog
483
484 LC_ALL=C gawk '/^\* /{printf("* %s %s\n", strftime("%a %b %d %Y", $2), substr($0, length($1)+length($2)+length($3)+4)); next}{print}' $gitlog >> $speclog
8cc8f5c0
ER
485 sed '/^%changelog/,$d' $SPECFILE | sed -e "\${
486 a%changelog
487 r $speclog
488 }
397fa865 489 " > $specdir/$SPECFILE
8cc8f5c0 490 rm -f $gitlog $speclog
397fa865 491 echo $specdir
8cc8f5c0
ER
492}
493
31d2bd0b
ER
494# change dependency to specname
495# common changes:
496# - perl(Package::Name) -> perl-Package-Name
497depspecname() {
498 local package="$1"
499
560c4b1a 500 package=$(echo "$package" | sed -e '/perl(.*)/{s,perl(\(.*\)),perl-\1,;s,::,-,g};' -e 's/-\(devel\|static\)$//' )
31d2bd0b
ER
501 echo "$package"
502}
503
c890b916 504update_shell_title() {
a0d6396b 505 [ -t 1 ] || return
0b65d15e 506 local len=${COLUMNS:-80}
5c795f16 507 local msg="$(echo "$*" | cut -c-$len)"
0b65d15e 508
e225de91
ER
509 if [ -n "$BE_VERBOSE" ]; then
510 echo >&2 "$(date +%s.%N) $*"
511 fi
512
5c795f16 513 if [ "x$TITLECHANGE" = "xyes" -o "x$TITLECHANGE" = "x" ]; then
138bbc98
ER
514 local pkg
515 if [ -n "$PACKAGE_NAME" ]; then
516 pkg=${PACKAGE_NAME}-${PACKAGE_VERSION}-${PACKAGE_RELEASE}
517 else
518 pkg=${SPECFILE}
519 fi
520
521 msg="$pkg: ${SHELL_TITLE_PREFIX:+$SHELL_TITLE_PREFIX }$msg"
a8c9a155 522 msg=$(echo $msg | tr -d '\n\r')
982e358c
MP
523 case "$TERM" in
524 cygwin|xterm*)
525 echo >&2 -ne "\033]1;$msg\007\033]2;$msg\007"
526 ;;
527 screen*)
528 echo >&2 -ne "\033]0;$msg\007"
529 ;;
530 esac
531 fi
c890b916
ER
532}
533
7e40520f
ER
534# set TARGET from BuildArch: from SPECFILE
535set_spec_target() {
ce40491a 536 if [ -n "$SPECFILE" ] && [ -z "$TARGET" ]; then
b45a3b2a 537 tmp=$(awk '/^BuildArch:/ { print $NF; exit }' $ASSUMED_NAME/$SPECFILE)
ce40491a 538 if [ "$tmp" ]; then
f9109a96 539 target_platform=$(rpm -E '%{_target_vendor}-%{_target_os}%{?_gnu}')
7e40520f
ER
540 TARGET="$tmp"
541 case "$RPMBUILD" in
542 "rpmbuild")
f9109a96 543 TARGET_SWITCH="--target ${TARGET}-${target_platform}" ;;
7e40520f 544 "rpm")
ce40491a 545 TARGET_SWITCH="--target=$TARGET" ;;
7e40520f 546 esac
ce40491a
ER
547 fi
548 fi
7e40520f
ER
549}
550
ace3fd80
ER
551# runs rpm with minimal macroset
552minirpm() {
fa4bf1df 553 # we reset macros not to contain macros.build as all the %() macros are
559d511f 554 # executed here, while none of them are actually needed.
559d511f 555 # at the time of this writing macros.build + macros contained 70 "%(...)" macros.
525bf240 556 safe_macrofiles=$(rpm $TARGET_SWITCH --showrc | awk -F: '/^macrofiles/ { gsub(/^macrofiles[ \t]+:/, "", $0); gsub(/:.*macros.build:/, ":", $0); print $0 } ')
ace3fd80
ER
557
558 # TODO: move these to /usr/lib/rpm/macros
20117088 559 cat > $BUILDER_MACROS <<'EOF'
5b5e5f7f 560%x8664 x86_64 amd64 ia32e
f78a0bb7 561%alt_kernel %{nil}
562%_alt_kernel %{nil}
5ff15c97 563%bootstrap_release() %{1}
407b204b
ER
564%requires_releq_kernel_up(s:n:) %{nil}
565%requires_releq_kernel_smp(s:n:) %{nil}
566%requires_releq_kernel(s:n:) %{nil}
6b8134e3 567%requires_releq() %{nil}
bb01dee9 568%pyrequires_eq() %{nil}
559d511f 569%requires_eq() %{nil}
c13be3d1 570%requires_eq_to() %{nil}
99c05e13 571%requires_ge() %{nil}
500b0eb8
ER
572%requires_ge_to() %{nil}
573%requires_ge() %{nil}
407b204b
ER
574%releq_kernel_up(n:) ERROR
575%releq_kernel_smp(n:) ERROR
576%releq_kernel(n:) ERROR
74d9fd14 577%kgcc_package ERROR
237bd3f1 578%_fontsdir ERROR
7141278d 579%ruby_version ERROR
580%ruby_ver_requires_eq() %{nil}
581%ruby_mod_ver_requires_eq() %{nil}
c13be3d1 582%__php_api_requires() %{nil}
7141278d 583%php_major_version ERROR
584%php_api_version ERROR
99f819cf
AM
585%requires_xorg_xserver_extension %{nil}
586%requires_xorg_xserver_xinput %{nil}
587%requires_xorg_xserver_font %{nil}
588%requires_xorg_xserver_videodrv %{nil}
7141278d 589%py_ver ERROR
41035426
ER
590%perl_vendorarch ERROR
591%perl_vendorlib ERROR
703ae20b
ER
592# damn. need it here! - copied from /usr/lib/rpm/macros.build
593%tmpdir %(echo "${TMPDIR:-/tmp}")
1f28fcb7
ER
594%patchset_source(f:b:) %(
595 base=%{-b*}%{!-b*:10000};
596 start=$(expr $base + %1);
597 end=$(expr $base + %{?2}%{!?2:%{1}});
598 # we need to call seq twice as it doesn't allow two formats
599 seq -f 'Patch%g:' $start $end > %{tmpdir}/__ps1;
600 seq -f '%{-f*}' %1 %{?2}%{!?2:%{1}} > %{tmpdir}/__ps2;
601 paste %{tmpdir}/__ps{1,2};
602 rm -f %{tmpdir}/__ps{1,2};
603) \
604%{nil}
991f09a5
ER
605%add_etc_shells(p) %{p:<lua>}
606%remove_etc_shells(p) %{p:<lua>}
709995c4
ER
607%lua_add_etc_shells() %{nil}
608%lua_remove_etc_shells() %{nil}
0ca65fa4
JK
609%required_jdk %{nil}
610%buildrequires_jdk %{nil}
f9063abe 611%pear_package_print_optionalpackages %{nil}
fb198857 612EOF
3d12d055 613 if [ "$NOINIT" = "yes" ] ; then
20117088 614 cat >> $BUILDER_MACROS <<'EOF'
3d12d055
JR
615%_specdir ./
616%_sourcedir ./
617EOF
c039643c 618 fi
670b1ed4 619 eval PATH=$CLEAN_PATH $RPMBUILD $TARGET_SWITCH --macros "$safe_macrofiles:$BUILDER_MACROS" $QUIET $RPMOPTS $RPMBUILDOPTS $BCOND $* 2>&1
ace3fd80
ER
620}
621
622cache_rpm_dump() {
623 if [ -n "$DEBUG" ]; then
624 set -x
625 set -v
626 fi
627
d1d24c14 628 if [ -x /usr/bin/rpm-specdump ]; then
525bf240 629 update_shell_title "cache_rpm_dump using rpm-specdump command"
fff1b991 630 rpm_dump_cache=$(rpm-specdump $TARGET_SWITCH $BCOND $SPECFILE)
d1d24c14 631 else
525bf240 632 update_shell_title "cache_rpm_dump using rpmbuild command"
d1d24c14
ER
633 local rpm_dump
634 rpm_dump=`
635 # what we need from dump is NAME, VERSION, RELEASE and PATCHES/SOURCES.
636 dump='%{echo:dummy: PACKAGE_NAME %{name} }%dump'
637 case "$RPMBUILD" in
638 rpm)
639 ARGS='-bp'
640 ;;
641 rpmbuild)
642 ARGS='--nodigest --nosignature --nobuild'
643 ;;
644 esac
645 minirpm $ARGS --define "'prep $dump'" --nodeps $SPECFILE
646 `
647 if [ $? -gt 0 ]; then
648 error=$(echo "$rpm_dump" | sed -ne '/^error:/,$p')
649 echo "$error" >&2
650 Exit_error err_build_fail
651 fi
d05e8080 652
d1d24c14
ER
653 # make small dump cache
654 rpm_dump_cache=`echo "$rpm_dump" | awk '
655 $2 ~ /^SOURCEURL/ {print}
656 $2 ~ /^PATCHURL/ {print}
657 $2 ~ /^nosource/ {print}
658 $2 ~ /^PACKAGE_/ {print}
659 '`
660 fi
d05e8080 661
13974367 662 update_shell_title "cache_rpm_dump: OK!"
cd445739
AM
663}
664
ace3fd80 665rpm_dump() {
cd445739 666 if [ -z "$rpm_dump_cache" ] ; then
45e2a818 667 echo >&2 "internal error: cache_rpm_dump not called! (missing %prep?)"
cd445739
AM
668 fi
669 echo "$rpm_dump_cache"
670}
671
f6711e2a 672get_icons() {
d05e8080 673 update_shell_title "get icons"
9d99a240 674 ICONS=$(awk '/^Icon:/ {print $2}' $PACKAGE_DIR/${SPECFILE})
d05e8080
ER
675 if [ -z "$ICONS" ]; then
676 return
677 fi
678
975d7b23 679 rpm_dump_cache="kalasaba" NODIST="yes" get_files $ICONS
d05e8080
ER
680}
681
f6711e2a 682parse_spec() {
af4d5315 683 update_shell_title "parsing specfile"
cd445739 684 if [ -n "$DEBUG" ]; then
518ff1fb
ER
685 set -x
686 set -v
cd445739 687 fi
b2975fc3 688
d05e8080 689 # icons are needed for successful spec parse
518ff1fb 690 get_icons
d05e8080 691
9c909460 692 cd $PACKAGE_DIR
cd445739 693 cache_rpm_dump
00fcec7e 694
15e34b63 695 if rpm_dump | grep -qEi ":.*nosource.*1"; then
cd445739
AM
696 FAIL_IF_NO_SOURCES="no"
697 fi
698
7cbc2d88
ER
699 if [ "$NOSRCS" != "yes" ]; then
700 SOURCES=$(rpm_dump | awk '$2 ~ /^SOURCEURL[0-9]+/ {print substr($2, length("SOURCEURL") + 1), $3}' | LC_ALL=C sort -n | awk '{print $2}')
701 PATCHES=$(rpm_dump | awk '$2 ~ /^PATCHURL[0-9]+/ {print substr($2, length("PATCHURL") + 1), $3}' | LC_ALL=C sort -n | awk '{print $2}')
702 ICONS=$(awk '/^Icon:/ {print $2}' ${SPECFILE})
703 fi
704
dfe2b2d9
ER
705 PACKAGE_NAME=$(rpm_dump | awk '$2 == "PACKAGE_NAME" { print $3; exit}')
706 PACKAGE_VERSION=$(rpm_dump | awk '$2 == "PACKAGE_VERSION" { print $3; exit}')
707 PACKAGE_RELEASE=$(rpm_dump | awk '$2 == "PACKAGE_RELEASE" { print $3; exit}')
78eab2a1 708
0b4119a2 709 if [ "$PACKAGE_NAME" != "$ASSUMED_NAME" ]; then
7854d40c 710 echo >&2 "WARNING! Spec name ($ASSUMED_NAME) does not agree with package name ($PACKAGE_NAME)"
0b4119a2
JR
711 fi
712
cd445739
AM
713 if [ -n "$BE_VERBOSE" ]; then
714 echo "- Sources : `nourl $SOURCES`"
715 if [ -n "$PATCHES" ]; then
716 echo "- Patches : `nourl $PATCHES`"
717 else
718 echo "- Patches : *no patches needed*"
719 fi
720 if [ -n "$ICONS" ]; then
721 echo "- Icon : `nourl $ICONS`"
722 else
723 echo "- Icon : *no package icon*"
724 fi
725 echo "- Name : $PACKAGE_NAME"
726 echo "- Version : $PACKAGE_VERSION"
727 echo "- Release : $PACKAGE_RELEASE"
728 fi
13974367
ER
729
730 update_shell_title "parse_spec: OK!"
cd445739
AM
731}
732
f6711e2a 733Exit_error() {
cd445739 734 if [ -n "$DEBUG" ]; then
518ff1fb
ER
735 set -x
736 set -v
cd445739
AM
737 fi
738
739 cd "$__PWD"
740
741 case "$1" in
742 "err_no_spec_in_cmdl" )
743 remove_build_requires
45e2a818 744 echo >&2 "ERROR: spec file name not specified."
cd445739 745 exit 2 ;;
a08d92fc 746 "err_invalid_cmdline" )
45e2a818 747 echo >&2 "ERROR: invalid command line arg ($2)."
a08d92fc 748 exit 2 ;;
cd445739
AM
749 "err_no_spec_in_repo" )
750 remove_build_requires
bba21388 751 echo >&2 "Error: spec file not stored in PLD repo."
cd445739
AM
752 exit 3 ;;
753 "err_no_source_in_repo" )
754 remove_build_requires
bba21388 755 echo >&2 "Error: some source, patch or icon files not stored in PLD repo. ($2)"
cd445739 756 exit 4 ;;
703b6deb 757 "err_cvs_add_failed" )
bba21388 758 echo >&2 "Error: failed to add package to PLD repo."
703b6deb 759 exit 4 ;;
cd445739
AM
760 "err_build_fail" )
761 remove_build_requires
45e2a818 762 echo >&2 "Error: package build failed. (${2:-no more info})"
cd445739 763 exit 5 ;;
78eab2a1
AM
764 "err_no_package_data" )
765 remove_build_requires
45e2a818 766 echo >&2 "Error: couldn't get out package name/version/release from spec file."
78eab2a1 767 exit 6 ;;
ce40491a 768 "err_tag_exists" )
50321881 769 remove_build_requires
d2842af2 770 echo >&2 "Tag ${2} already exists"
50321881 771 exit 9 ;;
ce40491a 772 "err_fract_rel" )
50321881 773 remove_build_requires
45e2a818 774 echo >&2 "Release ${2} not integer and not a snapshot."
50321881 775 exit 10 ;;
fb96e0b5
AM
776 "err_branch_exists" )
777 remove_build_requires
45e2a818 778 echo >&2 "Tree branch already exists (${2})."
fb96e0b5 779 exit 11 ;;
cfc497c0
ER
780 "err_acl_deny" )
781 remove_build_requires
45e2a818 782 echo >&2 "Error: conditions reject building this spec (${2})."
cfc497c0 783 exit 12 ;;
406b9ecf
KK
784 "err_remote_problem" )
785 remove_build_requires
786 echo >&2 "Error: problem with remote (${2})"
787 exit 13 ;;
67963237 788 "err_not_implemented" )
779fcca4 789 remove_build_requires
67963237
KK
790 echo >&2 "Error: functionality not yet imlemented"
791 exit 110 ;;
cd445739 792 esac
45e2a818 793 echo >&2 "Unknown error."
73848362 794 exit 100
cd445739
AM
795}
796
f6711e2a 797init_builder() {
cd445739 798 if [ -n "$DEBUG" ]; then
518ff1fb
ER
799 set -x
800 set -v
0dd6320d 801 fi
cd445739 802
4aeb9973 803 if [ "$NOINIT" != "yes" ] ; then
9c909460 804 TOP_DIR=$(eval $RPM $RPMOPTS --eval '%{_topdir}')
b7cc0c94 805
09bf17c9 806 local macros_ver=$(rpm -E %?rpm_build_macros)
b7cc0c94
ER
807 if [ -z "$macros_ver" ]; then
808 REPO_DIR=$TOP_DIR/packages
809 PACKAGE_DIR=$TOP_DIR/packages/$ASSUMED_NAME
810 else
811 if awk "BEGIN{exit($macros_ver>=$RPM_MACROS_VER)}"; then
812 echo >&2 "builder requires rpm-build-macros >= $RPM_MACROS_VER"
813 exit 1
814 fi
815 REPO_DIR=$TOP_DIR
816 PACKAGE_DIR=$REPO_DIR/$ASSUMED_NAME
817 fi
29e90b02 818 else
9c909460
AM
819 REPO_DIR="."
820 PACKAGE_DIR="."
29e90b02 821 fi
52f3ced3
KK
822 export GIT_WORK_TREE=$PACKAGE_DIR
823 export GIT_DIR=$PACKAGE_DIR/.git
cd445739 824
acd0d41d 825 if [ -d "$GIT_DIR" ] && [ -z "$CVSTAG" ] && git rev-parse --verify -q HEAD > /dev/null; then
a095de80
KK
826 if CVSTAG=$(GIT_DIR=$GIT_DIR git symbolic-ref HEAD) 2>/dev/null; then
827 CVSTAG=${CVSTAG#refs/heads/}
828 if [ "$CVSTAG" != "master" ]; then
829 echo >&2 "builder: Active branch $CVSTAG. Use -r BRANCHNAME to override"
830 fi
831 else
832 echo >&2 "On detached HEAD. Use -r BRANCHNAME to override"
833 HEAD_DETACHED="yes"
834 fi
835 elif [ "$CVSTAG" = "HEAD" ]; then
836 # assume -r HEAD is same as -A
837 CVSTAG="master"
838 fi
839
a8c9a155 840 __PWD=$(pwd)
00fcec7e 841}
842
406b9ecf
KK
843create_git_repo() {
844 update_shell_title "add_package"
845
846 if [ -n "$DEBUG" ]; then
847 set -x
848 set -v
849 fi
850
851 cd "$REPO_DIR"
852 SPECFILE=$(basename $SPECFILE)
853 if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
854 echo "ERROR: No package to add ($ASSUMED_NAME/$SPECFILE)" >&2
855 exit 101
856 fi
857 [ -d "$ASSUMED_NAME/.git" ] || NEW_REPO=yes
c6418b06 858 ssh $GIT_PUSH create ${ASSUMED_NAME} || Exit_error err_cvs_add_failed
406b9ecf 859 git init
eda17ab7
KK
860 git remote add $REMOTE_PLD ${GIT_SERVER}/${PACKAGES_DIR}/${ASSUMED_NAME}.git && \
861 git remote set-url --push $REMOTE_PLD ssh://${GIT_PUSH}/${PACKAGES_DIR}/${ASSUMED_NAME} \
862 || Exit_error err_remote_problem $REMOTE_PLD
406b9ecf
KK
863}
864
f6711e2a 865get_spec() {
c890b916 866
2e5be021 867 update_shell_title "get_spec"
c890b916 868
cd445739 869 if [ -n "$DEBUG" ]; then
518ff1fb
ER
870 set -x
871 set -v
cd445739
AM
872 fi
873
9c909460
AM
874 cd "$REPO_DIR"
875 if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
6277f15f
ER
876 # XXX: still needed?
877 SPECFILE=$(basename $SPECFILE)
cd445739 878 fi
cd445739 879
1ef6f5de 880 if [ "$NOCVSSPEC" != "yes" ]; then
3189511a
KK
881 if [ -z "$DEPTH" ]; then
882 if [ -d "$ASSUMED_NAME/.git" ]; then
608c01a7 883 git fetch $REMOTE_PLD || Exit_error err_no_spec_in_repo
3189511a
KK
884 elif [ "$ADD_PACKAGE_CVS" = "yes" ]; then
885 if [ ! -r "$ASSUMED_NAME/$SPECFILE" ]; then
886 echo "ERROR: No package to add ($ASSUMED_NAME/$SPECFILE)" >&2
887 exit 101
888 fi
889 Exit_error err_not_implemented
890 else
891 (
892 unset GIT_WORK_TREE
eda17ab7 893 git clone -o $REMOTE_PLD ${GIT_SERVER}/${PACKAGES_DIR}/${ASSUMED_NAME}.git || {
588cb3a9 894 # softfail if new package, i.e not yet added to PLD rep
3189511a
KK
895 [ ! -f "$ASSUMED_NAME/$SPECFILE" ] && Exit_error err_no_spec_in_repo
896 echo "Warning: package not in CVS - assuming new package"
897 NOCVSSPEC="yes"
898 }
dd30f9c8 899 git config --local --add "remote.$REMOTE_PLD.fetch" 'refs/notes/*:refs/notes/*'
eda17ab7 900 git remote set-url --push $REMOTE_PLD ssh://${GIT_PUSH}/${PACKAGES_DIR}/${ASSUMED_NAME}
3189511a 901 )
703b6deb 902 fi
9c909460 903 else
3189511a
KK
904 if [ ! -d "$ASSUMED_NAME/.git" ]; then
905 if [ ! -d "$ASSUMED_NAME" ]; then
906 mkdir $ASSUMED_NAME
907 fi
908 git init
a153a767 909 git remote add $REMOTE_PLD ${GIT_SERVER}/${PACKAGES_DIR}/${ASSUMED_NAME}.git
dd30f9c8 910 git config --local --add "remote.$REMOTE_PLD.fetch" 'refs/notes/*:refs/notes/*'
48184c96 911 git remote set-url --push $REMOTE_PLD ssh://${GIT_PUSH}/${PACKAGES_DIR}/${ASSUMED_NAME}
6a9f8358 912 CVSTAG=${CVSTAG:-"master"}
3189511a 913 fi
3f79cb18
KK
914 local refs=''
915 if [ -z "$ALL_BRANCHES" ]; then
916 refs="${CVSTAG}:remotes/${REMOTE_PLD}/${CVSTAG}"
917 fi
918 git fetch $DEPTH $REMOTE_PLD $refs || {
3189511a
KK
919 echo >&2 "Error: branch $CVSTAG does not exist"
920 exit 3
921 }
703b6deb 922 fi
f343238b 923 git fetch $REMOTE_PLD 'refs/notes/*:refs/notes/*'
0c3beb90 924
0d494abd 925 cvsignore_df .gitignore
703b6deb 926
588cb3a9 927 # add default log format to .gitignore if it is relative to package dir
703b6deb
ER
928 if [ -n "$LOGFILE" -a "$LOGFILE" = "${LOGFILE##*/}" ]; then
929 # substitute known "macros" to glob
930 local logfile=$(echo "$LOGFILE" | sed -e 's,\$\(PACKAGE_NAME\|DATE\),*,g')
931 if [ "$logfile" ]; then
932 cvsignore_df "$logfile"
daeab113 933 fi
9c909460 934 fi
703b6deb
ER
935
936 # create symlinks for tools
ac7a79f3 937 if [ "$SYMLINK_TOOLS" != "no" -a -d "$ASSUMED_NAME" ]; then
2a8bedf9 938 for a in dropin md5 adapter builder {relup,compile,repackage,rsync,pearize}.sh pldnotify.awk; do
046b715f 939 # skip tools that don't exist in top dir
703b6deb 940 [ -f $a ] || continue
046b715f
ER
941 # skip tools that already exist
942 [ -f $ASSUMED_NAME/$a ] && continue
f1081b0a 943 ln -s ../$a $ASSUMED_NAME
703b6deb
ER
944 cvsignore_df $a
945 done
946 fi
cd445739 947 fi
049ab214 948
b0121b45 949 if [ -n "$CVSTAG" ]; then
608c01a7 950 git checkout "$CVSTAG" -- 2>/dev/null || git checkout -t "${REMOTE_PLD}/$CVSTAG" > /dev/null || exit
52f3ced3
KK
951 git symbolic-ref -q HEAD > /dev/null &&
952 git merge '@{u}'
52020f4c 953 if [ -n "$CVSDATE" ]; then
c4c0f339
KK
954 git checkout $(git rev-list -n1 --before="'$CVSDATE'" $CVSTAG) || exit 1
955 fi
b0121b45
KK
956 fi
957
9c909460 958 if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
518ff1fb 959 Exit_error err_no_spec_in_repo
cd445739
AM
960 fi
961
962 if [ "$CHMOD" = "yes" -a -n "$SPECFILE" ]; then
9c909460 963 chmod $CHMOD_MODE $ASSUMED_NAME/$SPECFILE
cd445739
AM
964 fi
965 unset OPTIONS
9c909460 966 [ -n "$DONT_PRINT_REVISION" ] || grep -E -m 1 "^#.*Revision:.*Date" $ASSUMED_NAME/$SPECFILE
7e40520f 967
ce40491a 968 set_spec_target
cd445739
AM
969}
970
f6711e2a 971find_mirror() {
9c909460 972 cd "$REPO_DIR"
782518da 973 local url="$1"
3526abd9 974 if [ ! -f "mirrors" ] ; then
b06a1bd9 975 ln -s rpm-build-tools/mirrors .
cd445739
AM
976 fi
977
978 IFS="|"
782518da
ER
979 local origin mirror name rest ol prefix
980 while read origin mirror name rest; do
981 # skip comments and empty lines
2faa4c32 982 if [ -z "$origin" ] || [ "${origin#\#}" != "$origin" ]; then
782518da
ER
983 continue
984 fi
a8c9a155
ER
985 ol=$(echo -n "$origin" | wc -c)
986 prefix=$(echo -n "$url" | head -c $ol)
cd445739 987 if [ "$prefix" = "$origin" ] ; then
a8c9a155 988 suffix=$(echo "$url" | cut -b $((ol+1))-)
cd445739
AM
989 echo -n "$mirror$suffix"
990 return 0
991 fi
992 done < mirrors
993 echo "$url"
994}
995
e7e0d4ec 996# Warning: unpredictable results if same URL used twice
f6711e2a 997src_no() {
8510980a
AM
998 local file="$1"
999 # escape some regexp characters if part of file name
298e75e2 1000 file=$(echo "$file" | sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g')
9c909460 1001 cd $PACKAGE_DIR
cd445739 1002 rpm_dump | \
8510980a 1003 grep -E "(SOURCE|PATCH)URL[0-9]*[ ]*${file}""[ ]*$" | \
647e3d7f
KK
1004 sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' | \
1005 head -n 1 | tr OURCEATH ourceath | xargs
1471f6d6 1006}
1007
f6711e2a 1008src_md5() {
e7e0d4ec 1009 [ "$NO5" = "yes" ] && return
cd445739
AM
1010 no=$(src_no "$1")
1011 [ -z "$no" ] && return
9c909460 1012 cd $PACKAGE_DIR
e7e0d4ec
ER
1013 local md5
1014
1015 if [ -f additional-md5sums ]; then
e7e0d4ec 1016 md5=$(grep -s -v '^#' additional-md5sums | \
9413a514 1017 grep -E "[ ]$(basename "$1")([ ,]|\$)" | \
e7e0d4ec
ER
1018 sed -e 's/^\([0-9a-f]\{32\}\).*/\1/' | \
1019 grep -E '^[0-9a-f]{32}$')
1020
1021 if [ "$md5" ]; then
1022 if [ $(echo "$md5" | wc -l) != 1 ] ; then
1023 echo "$SPECFILE: more then one entry in additional-md5sums for $1" 1>&2
1024 fi
1025 echo "$md5" | tail -n 1
1026 return
1027 fi
cd445739 1028 fi
e7e0d4ec 1029
32131a0e 1030 source_md5=$(grep -iE "^#[ ]*(No)?$no-md5[ ]*:" $SPECFILE | sed -e 's/.*://')
e7e0d4ec
ER
1031 if [ -n "$source_md5" ]; then
1032 echo $source_md5
cd445739 1033 else
7805dcb4
PZ
1034 source_md5=`grep -i "BuildRequires:[ ]*digest(%SOURCE$no)[ ]*=" $SPECFILE | sed -e 's/.*=//'`
1035 if [ -n "$source_md5" ]; then
1036 echo $source_md5
1037 else
1038 # we have empty SourceX-md5, but it is still possible
1039 # that we have NoSourceX-md5 AND NoSource: X
647e3d7f 1040 nosource_md5=`grep -i "^#[ ]*No$no-md5[ ]*:" $SPECFILE | sed -e 's/.*://'`
7805dcb4
PZ
1041 if [ -n "$nosource_md5" -a -n "`grep -i "^NoSource:[ ]*$no$" $SPECFILE`" ] ; then
1042 echo $nosource_md5
1043 fi
cd445739 1044 fi
cd445739
AM
1045 fi
1046}
1047
f6711e2a 1048distfiles_path() {
06541433
JR
1049 echo "by-md5/$(src_md5 "$1" | sed -e 's|^\(.\)\(.\)|\1/\2/&|')/$(basename "$1")"
1050}
1051
f6711e2a 1052distfiles_url() {
06541433 1053 echo "$PROTOCOL$DISTFILES_SERVER/distfiles/$(distfiles_path "$1")"
cd445739
AM
1054}
1055
f6711e2a 1056distfiles_attic_url() {
06541433 1057 echo "$PROTOCOL$ATTICDISTFILES_SERVER/distfiles/Attic/$(distfiles_path "$1")"
cd445739
AM
1058}
1059
f6711e2a 1060good_md5() {
cd445739
AM
1061 md5=$(src_md5 "$1")
1062 [ "$md5" = "" ] || \
1063 [ "$md5" = "$(md5sum $(nourl "$1") 2> /dev/null | sed -e 's/ .*//')" ]
8ba5cdda
PG
1064}
1065
f6711e2a 1066good_size() {
a8c9a155 1067 size=$(find $(nourl "$1") -printf "%s" 2>/dev/null)
ce40491a 1068 [ -n "$size" -a "$size" -gt 0 ]
a4b50627
AF
1069}
1070
f6711e2a 1071cvsignore_df() {
947025e5 1072 if [ "$CVSIGNORE_DF" != "yes" ]; then
1073 return
1074 fi
0d494abd 1075 cvsignore=${PACKAGE_DIR}/.gitignore
7dc8d095
ER
1076
1077 # add only if not yet there
aa189b05 1078 if ! awk -vf="$1" -vc=1 '$0 == f { c = 0 } END { exit c }' $cvsignore 2>/dev/null; then
947025e5 1079 echo "$1" >> $cvsignore
1080 fi
1081}
1082
71f8e908 1083# returns true if "$1" is ftp, http or https protocol url
f6711e2a 1084is_url() {
71f8e908
ER
1085 case "$1" in
1086 ftp://*|http://*|https://*)
1087 return 0
1088 ;;
1089 esac
1090 return 1
1091}
1092
f6711e2a 1093update_md5() {
ecba6ad5
ER
1094 if [ $# -eq 0 ]; then
1095 return
1096 fi
1097
1098 update_shell_title "update md5"
1099 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1100 set -x
1101 set -v
ecba6ad5
ER
1102 fi
1103
9c909460 1104 cd "$PACKAGE_DIR"
ecba6ad5
ER
1105
1106 # pass 1: check files to be fetched
1107 local todo
1108 local need_files
1109 for i in "$@"; do
1110 local fp=$(nourl "$i")
1111 local srcno=$(src_no "$i")
6392b5fd
ER
1112 if [ -n "$ADD5" ]; then
1113 [ "$fp" = "$i" ] && continue # FIXME what is this check doing?
647e3d7f 1114 grep -qiE '^#[ ]*'$srcno'-md5[ ]*:' $PACKAGE_DIR/$SPECFILE && continue
9c909460 1115 grep -qiE '^BuildRequires:[ ]*digest[(]%SOURCE'$srcno'[)][ ]*=' $PACKAGE_DIR/$SPECFILE && continue
6392b5fd 1116 else
647e3d7f 1117 grep -qiE '^#[ ]*'$srcno'-md5[ ]*:' $PACKAGE_DIR/$SPECFILE || grep -qiE '^BuildRequires:[ ]*digest[(]%SOURCE'$srcno'[)][ ]*=' $PACKAGE_DIR/$SPECFILE || continue
ecba6ad5
ER
1118 fi
1119 if [ ! -f "$fp" ] || [ $ALWAYS_CVSUP = "yes" ]; then
1120 need_files="$need_files $i"
1121 fi
1122 done
1123
1124 # pass 1a: get needed files
1125 if [ "$need_files" ]; then
1126 get_files $need_files
1127 fi
1128
1129 # pass 2: proceed with md5 adding or updating
1130 for i in "$@"; do
1131 local fp=$(nourl "$i")
1132 local srcno=$(src_no "$i")
647e3d7f 1133 local md5=$(grep -iE '^#[ ]*(No)?'$srcno'-md5[ ]*:' $PACKAGE_DIR/$SPECFILE )
e19ad799 1134 if [ -z "$md5" ]; then
9c909460 1135 md5=$(grep -iE '^[ ]*BuildRequires:[ ]*digest[(]%SOURCE'$srcno'[)][ ]*=' $PACKAGE_DIR/$SPECFILE )
6c1b2e7d 1136 fi
71f8e908 1137 if [ -n "$ADD5" ] && is_url $i || [ -n "$md5" ]; then
647e3d7f 1138 local tag="# $srcno-md5:\t"
71f8e908 1139 if [[ "$md5" == *NoSource* ]]; then
6663e1f3 1140 tag="# No$srcno-md5:\t"
6c1b2e7d
PZ
1141 elif [ -n "$USEDIGEST" ]; then
1142 tag="BuildRequires:\tdigest(%SOURCE$srcno) = "
71f8e908 1143 fi
ecba6ad5 1144 md5=$(md5sum "$fp" | cut -f1 -d' ')
647e3d7f 1145 echo "Updating $srcno ($md5: $fp)."
ecba6ad5 1146 perl -i -ne '
647e3d7f
KK
1147 print unless (/^\s*#\s*(No)?'$srcno'-md5\s*:/i or /^\s*BuildRequires:\s*digest\(%SOURCE'$srcno'\)/i);
1148 print "'"$tag$md5"'\n" if /^'$srcno'\s*:\s+/i;
ecba6ad5 1149 ' \
9c909460 1150 $PACKAGE_DIR/$SPECFILE
ecba6ad5
ER
1151 fi
1152 done
1153}
1154
f6711e2a 1155check_md5() {
60499e54 1156 local bad
3fbff8b8
ER
1157 [ "$NO5" = "yes" ] && return
1158
ecba6ad5
ER
1159 update_shell_title "check md5"
1160
1161 for i in "$@"; do
60499e54
AM
1162 bad=0
1163 if ! good_md5 "$i"; then
1164 echo -n "MD5 sum mismatch."
1165 bad=1
1166 fi
1167 if ! good_size "$i"; then
1168 echo -n "0 sized file."
1169 bad=1
ecba6ad5
ER
1170 fi
1171
60499e54
AM
1172 if [ $bad -eq 1 ]; then
1173 echo " Use -U to refetch sources,"
1174 echo "or -5 to update md5 sums, if you're sure files are correct."
1175 Exit_error err_no_source_in_repo $i
1176 fi
ecba6ad5
ER
1177 done
1178}
1179
f6711e2a 1180get_files() {
7cb24972 1181 update_shell_title "get_files"
cd445739
AM
1182
1183 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1184 set -x
1185 set -v
cd445739
AM
1186 fi
1187
f09c0772 1188 if [ $# -gt 0 ]; then
9c909460 1189 cd "$PACKAGE_DIR"
cd445739 1190
f2e42a41 1191 local nc=0
e7fa3b9f 1192 local get_files_cvs=""
3815b69a 1193 for i in "$@"; do
f2e42a41 1194 nc=$((nc + 1))
dcebdffb 1195 local cvsup=0
3815b69a 1196 SHELL_TITLE_PREFIX="get_files[$nc/$#]"
f2e42a41 1197 update_shell_title "$i"
f09c0772 1198 local fp=`nourl "$i"`
ecba6ad5 1199 if [ "$SKIP_EXISTING_FILES" = "yes" ] && [ -f "$fp" ]; then
ce40491a 1200 continue
18e5347d 1201 fi
ecba6ad5 1202
cd445739 1203 FROM_DISTFILES=0
e7e0d4ec 1204 local srcmd5=$(src_md5 "$i")
ecba6ad5
ER
1205
1206 # we know if source/patch is present in cvs/distfiles
1207 # - has md5 (in distfiles)
1208 # - in cvs... ideas?
1209
1210 # CHECK: local file didn't exist or always cvs up (first) requested.
f09c0772 1211 if [ ! -f "$fp" ] || [ $ALWAYS_CVSUP = "yes" ]; then
cd445739
AM
1212 if echo $i | grep -vE '(http|ftp|https|cvs|svn)://' | grep -qE '\.(gz|bz2)$']; then
1213 echo "Warning: no URL given for $i"
1214 fi
08908161 1215 target="$fp"
cd445739 1216
e7e0d4ec 1217 if [ -z "$NODIST" ] && [ -n "$srcmd5" ]; then
a4b50627 1218 if good_md5 "$i" && good_size "$i"; then
e7e0d4ec 1219 echo "$fp having proper md5sum already exists"
cd445739
AM
1220 continue
1221 fi
28b34560 1222
bc10f694 1223 # optionally prefer mirror over distfiles if there's mirror
28b34560 1224 # TODO: build url list and then try each url from the list
bc10f694 1225 if [ -n "$PREFMIRRORS" ] && [ -z "$NOMIRRORS" ] && im=$(find_mirror "$i") && [ "$im" != "$i" ]; then
28b34560
ER
1226 url="$im"
1227 else
1228 url=$(distfiles_url "$i")
1229 fi
1230
cd445739
AM
1231 url_attic=$(distfiles_attic_url "$i")
1232 FROM_DISTFILES=1
ecba6ad5
ER
1233 # is $url local file?
1234 if [[ "$url" = [./]* ]]; then
18a52930 1235 update_shell_title "${GETLOCAL%% *}: $url"
cd445739
AM
1236 ${GETLOCAL} $url $target
1237 else
1238 if [ -z "$NOMIRRORS" ]; then
9e9f8920 1239 url=$(find_mirror "$url")
cd445739 1240 fi
9e9f8920
ER
1241
1242 local uri=${url}
1243 # make shorter message for distfiles urls
1244 if [[ "$uri" = ${PROTOCOL}${DISTFILES_SERVER}* ]] || [[ "$uri" = ${PROTOCOL}${ATTICDISTFILES_SERVER}* ]]; then
1245 uri=${uri#${PROTOCOL}${DISTFILES_SERVER}/distfiles/by-md5/?/?/*/}
1246 uri=${uri#${PROTOCOL}${ATTICDISTFILES_SERVER}/distfiles/by-md5/?/?/*/}
1247 uri="df: $uri"
1248 fi
1249 update_shell_title "${GETURI%% *}: $uri"
ca2e6c31 1250 ${GETURI} ${OUTFILEOPT} "$target" "$url" || \
33da77c4 1251 if [ "`echo $url | grep -E 'ftp://'`" ]; then
18a52930 1252 update_shell_title "${GETURI2%% *}: $url"
ca2e6c31 1253 ${GETURI2} ${OUTFILEOPT} "$target" "$url"
cd445739
AM
1254 fi
1255 fi
ecba6ad5
ER
1256
1257 # is it empty file?
1258 if [ ! -s "$target" ]; then
cd445739
AM
1259 rm -f "$target"
1260 if [ `echo $url_attic | grep -E '^(\.|/)'` ]; then
18a52930 1261 update_shell_title "${GETLOCAL%% *}: $url_attic"
cd445739
AM
1262 ${GETLOCAL} $url_attic $target
1263 else
1264 if [ -z "$NOMIRRORS" ]; then
a8c9a155 1265 url_attic=$(find_mirror "$url_attic")
cd445739 1266 fi
18a52930 1267 update_shell_title "${GETURI%% *}: $url_attic"
ca2e6c31 1268 ${GETURI} ${OUTFILEOPT} "$target" "$url_attic" || \
33da77c4 1269 if [ "`echo $url_attic | grep -E 'ftp://'`" ]; then
ce40491a 1270 update_shell_title "${GETURI2%% *}: $url_attic"
ca2e6c31 1271 ${GETURI2} ${OUTFILEOPT} "$target" "$url_attic"
cd445739 1272 fi
1cd7fc57 1273 test -s "$target" || rm -f "$target"
cd445739
AM
1274 fi
1275 fi
ecba6ad5
ER
1276
1277 if [ -s "$target" ]; then
947025e5 1278 cvsignore_df $target
1279 else
cd445739
AM
1280 rm -f "$target"
1281 FROM_DISTFILES=0
1282 fi
cd445739
AM
1283 fi
1284
f09c0772 1285 if [ -z "$NOURLS" ] && [ ! -f "$fp" -o -n "$UPDATE" ] && [ "`echo $i | grep -E 'ftp://|http://|https://'`" ]; then
cd445739 1286 if [ -z "$NOMIRRORS" ]; then
a8c9a155 1287 im=$(find_mirror "$i")
cd445739
AM
1288 else
1289 im="$i"
1290 fi
ce40491a 1291 update_shell_title "${GETURI%% *}: $im"
99b8f51f 1292 ${GETURI} ${OUTFILEOPT} "$target" "$im" || \
33da77c4 1293 if [ "`echo $im | grep -E 'ftp://'`" ]; then
ce40491a 1294 update_shell_title "${GETURI2%% *}: $im"
99b8f51f 1295 ${GETURI2} ${OUTFILEOPT} "$target" "$im"
7e365483 1296 fi
1cd7fc57 1297 test -s "$target" || rm -f "$target"
cd445739
AM
1298 fi
1299
dcebdffb
ER
1300 if [ "$cvsup" = 1 ]; then
1301 continue
1302 fi
1303
cd445739 1304 fi
ecba6ad5
ER
1305
1306 # the md5 check must be moved elsewhere as if we've called from update_md5 the md5 is wrong.
f09c0772 1307 if [ ! -f "$fp" -a "$FAIL_IF_NO_SOURCES" != "no" ]; then
b3b584c5 1308 Exit_error err_no_source_in_repo $i
cd445739 1309 fi
2a5f078d 1310
ecba6ad5 1311 # we check md5 here just only to refetch immediately
a4b50627 1312 if good_md5 "$i" && good_size "$i"; then
cd445739
AM
1313 :
1314 elif [ "$FROM_DISTFILES" = 1 ]; then
deccc50e 1315 # wrong md5 from distfiles: remove the file and try again
cd445739 1316 # but only once ...
deccc50e 1317 echo "MD5 sum mismatch. Trying full fetch."
cd445739
AM
1318 FROM_DISTFILES=2
1319 rm -f $target
18a52930 1320 update_shell_title "${GETURI%% *}: $url"
ca2e6c31 1321 ${GETURI} ${OUTFILEOPT} "$target" "$url" || \
33da77c4 1322 if [ "`echo $url | grep -E 'ftp://'`" ]; then
ce40491a 1323 update_shell_title "${GETURI2%% *}: $url"
ca2e6c31 1324 ${GETURI2} ${OUTFILEOPT} "$target" "$url"
cd445739 1325 fi
ecba6ad5 1326 if [ ! -s "$target" ]; then
cd445739 1327 rm -f "$target"
18a52930 1328 update_shell_title "${GETURI%% *}: $url_attic"
ca2e6c31 1329 ${GETURI} ${OUTFILEOPT} "$target" "$url_attic" || \
33da77c4 1330 if [ "`echo $url_attic | grep -E 'ftp://'`" ]; then
ce40491a 1331 update_shell_title "${GETURI2%% *}: $url_attic"
ca2e6c31 1332 ${GETURI2} ${OUTFILEOPT} "$target" "$url_attic"
cd445739
AM
1333 fi
1334 fi
1335 test -s "$target" || rm -f "$target"
1336 fi
cd445739 1337 done
e7fa3b9f
ER
1338 SHELL_TITLE_PREFIX=""
1339
cd445739
AM
1340
1341 if [ "$CHMOD" = "yes" ]; then
a8c9a155 1342 CHMOD_FILES=$(nourl "$@")
cd445739
AM
1343 if [ -n "$CHMOD_FILES" ]; then
1344 chmod $CHMOD_MODE $CHMOD_FILES
1345 fi
1346 fi
cd445739
AM
1347 fi
1348}
1349
7605fe95 1350tag_exist() {
8b6d1795
KK
1351# If tag exists and points to other commit exit with error
1352# If it existsts and points to HEAD return 1
1353# If it doesn't exist return 0
f8bfce7d 1354 local _tag="$1"
8b6d1795 1355 local sha1=$(git rev-parse HEAD)
7605fe95
KK
1356 echo "Searching for tag $_tag..."
1357 if [ -n "$DEPTH" ]; then
8b6d1795 1358 local ref=$(git ls-remote $REMOTE_PLD "refs/tags/$_tag" | cut -c -40)
7605fe95 1359 else
7baf7b2f 1360 local ref=$(git show-ref -s "refs/tags/$_tag")
7605fe95 1361 fi
8b6d1795
KK
1362 [ -z "$ref" ] && return 0
1363 [ "$ref" = "$sha1" ] || Exit_error err_tag_exists "$_tag"
1364 return 1
7605fe95
KK
1365}
1366
cd445739 1367make_tagver() {
ce40491a 1368 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1369 set -x
1370 set -v
ce40491a 1371 fi
78eab2a1 1372
ce40491a
ER
1373 # Check whether first character of PACKAGE_NAME is legal for tag name
1374 if [ -z "${PACKAGE_NAME##[_0-9]*}" -a -z "$TAG_PREFIX" ]; then
1375 TAG_PREFIX=tag_
1376 fi
d712cc12
ER
1377
1378 # NOTE: CVS tags may must not contain the characters `$,.:;@'
8c043136 1379 TAGVER=$(echo $TAG_PREFIX$PACKAGE_NAME-$PACKAGE_VERSION-$PACKAGE_RELEASE)
d712cc12 1380
8c043136 1381 # Remove @kernel.version_release from TAGVER because tagging sources
ce40491a 1382 # could occur with different kernel-headers than kernel-headers used at build time.
d712cc12
ER
1383 # besides, %{_kernel_ver_str} is not expanded.
1384
8c043136 1385 # TAGVER=auto-ac-madwifi-ng-0-0_20070225_1@%{_kernel_ver_str}
d712cc12
ER
1386 # TAGVER=auto-ac-madwifi-ng-0-0_20070225_1
1387
8c043136 1388 TAGVER=${TAGVER%@*}
ce40491a 1389 echo -n "$TAGVER"
cd445739
AM
1390}
1391
f6711e2a 1392tag_files() {
cd445739 1393 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1394 set -x
1395 set -v
cd445739
AM
1396 fi
1397
73ef63d8
ER
1398 echo "Version: $PACKAGE_VERSION"
1399 echo "Release: $PACKAGE_RELEASE"
cd445739 1400
c9100f10 1401 local _tag
73ef63d8 1402 if [ "$TAG_VERSION" = "yes" ]; then
c9100f10 1403 _tag=`make_tagver`
73ef63d8
ER
1404 fi
1405 if [ -n "$TAG" ]; then
c9100f10 1406 _tag="$TAG"
73ef63d8 1407 fi
c9100f10 1408 echo "tag: $_tag"
cd445739 1409
39dcc7de 1410 local OPTIONS="tag $CVS_FORCE"
cd445739 1411
9c909460 1412 cd "$PACKAGE_DIR"
03db3356 1413
ace99bc6
KK
1414 if tag_exist $_tag || [ -n "$CVS_FORCE" ]; then
1415 update_shell_title "tag sources: $_tag"
1416 git $OPTIONS $_tag || exit
1417 git push $CVS_FORCE $REMOTE_PLD tag $_tag || Exit_error err_remote_problem $REMOTE_PLD
1418 else
1419 echo "Tag $_tag already exists and points to the same commit"
1420 fi
cd445739
AM
1421}
1422
f6711e2a 1423branch_files() {
cd445739 1424 TAG=$1
f663f264 1425 echo "Git branch: $TAG"
518ff1fb 1426 shift
cd445739 1427
cd445739 1428 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1429 set -x
1430 set -v
cd445739
AM
1431 fi
1432
f663f264 1433 local OPTIONS="branch $CVS_FORCE"
c10fa4fa 1434
9c909460 1435 cd "$PACKAGE_DIR"
f663f264 1436 git $OPTIONS $TAG || exit
cd445739
AM
1437}
1438
1439
3009b80d
ER
1440# this function should exit early if package can't be built for this arch
1441# this avoids unneccessary BR filling.
1442check_buildarch() {
1443 local out ret
13c3c336 1444 out=$(minirpm --short-circuit -bp --define "'prep exit 0'" --nodeps $SPECFILE 2>&1)
3009b80d
ER
1445 ret=$?
1446 if [ $ret -ne 0 ]; then
1447 echo >&2 "$out"
1448 exit $ret
1449 fi
1450}
1451
9d99a240
ER
1452# from relup.sh
1453set_release() {
1454 local specfile="$1"
1455 local rel="$2"
1456 local newrel="$3"
1457 sed -i -e "
1458 s/^\(%define[ \t]\+_\?rel[ \t]\+\)$rel\$/\1$newrel/
1459 s/^\(Release:[ \t]\+\)$rel\$/\1$newrel/
1460 " $specfile
1461}
1462
1463set_version() {
1464 local specfile="$1"
bc8502e6
ER
1465 local ver="$2" subver=$ver
1466 local newver="$3" newsubver=$newver
1467
1468 # try handling subver, everything that's not numeric-dotted in version
1469 if grep -Eq '%define\s+subver' $specfile; then
1470 subver=$(echo "$ver" | sed -re 's,^[0-9.]+,,')
1471 ver=${ver%$subver}
1472 newsubver=$(echo "$newver" | sed -re 's,^[0-9.]+,,')
1473 newver=${newver%$newsubver}
1474 fi
9d99a240
ER
1475 sed -i -e "
1476 s/^\(%define[ \t]\+_\?ver[ \t]\+\)$ver\$/\1$newver/
bc8502e6 1477 s/^\(%define[ \t]\+subver[ \t]\+\)$subver\$/\1$newsubver/
9d99a240
ER
1478 s/^\(Version:[ \t]\+\)$ver\$/\1$newver/
1479 " $specfile
1480}
1481
cacef28c 1482try_upgrade() {
cd445739 1483 if [ -n "$TRY_UPGRADE" ]; then
9d99a240 1484 local TNOTIFY TNEWVER TOLDVER
ce40491a 1485 update_shell_title "build_package: try_upgrade"
9d99a240 1486
cacef28c 1487 cd "$PACKAGE_DIR"
1488
0907f1eb
ER
1489 if [ "$UPGRADE_VERSION" ]; then
1490 TNEWVER=$UPGRADE_VERSION
cd445739 1491 else
0907f1eb
ER
1492 if [ -n "$FLOAT_VERSION" ]; then
1493 TNOTIFY=$($APPDIR/pldnotify.awk ${BE_VERBOSE:+-vDEBUG=1} $SPECFILE -n) || exit 1
1494 else
1495 TNOTIFY=$($APPDIR/pldnotify.awk ${BE_VERBOSE:+-vDEBUG=1} $SPECFILE) || exit 1
1496 fi
cd445739 1497
b9bef5ce
ER
1498 # pldnotify.awk does not set exit codes, but it has match for ERROR
1499 # in output which means so.
1500 if [[ "$TNOTIFY" = *ERROR* ]]; then
1501 echo >&2 "$TNOTIFY"
1502 exit 1
1503 fi
1504
0907f1eb
ER
1505 TNEWVER=$(echo $TNOTIFY | awk '{ match($4,/\[NEW\]/); print $5 }')
1506 fi
cd445739
AM
1507
1508 if [ -n "$TNEWVER" ]; then
1509 TOLDVER=`echo $TNOTIFY | awk '{ print $3; }'`
9d99a240 1510 echo "New version found, updating spec file from $TOLDVER to version $TNEWVER"
257af81b
ER
1511 if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
1512 cp -f $SPECFILE $SPECFILE.bak
1513 fi
cd445739 1514 chmod +w $SPECFILE
cacef28c 1515 set_release $SPECFILE $PACKAGE_RELEASE 1
9d99a240 1516 set_version $SPECFILE $PACKAGE_VERSION $TNEWVER
518ff1fb 1517 parse_spec
6decb793
ER
1518 if [ "$PACKAGE_VERSION" != "$TNEWVER" ]; then
1519 echo >&2 "Upgrading version failed, you need to update spec yourself"
1520 exit 1
1521 fi
cacef28c 1522 return 1
cd445739
AM
1523 fi
1524 fi
cacef28c 1525 return 0
1526}
1527
1528build_package() {
1529 update_shell_title "build_package"
1530 if [ -n "$DEBUG" ]; then
1531 set -x
1532 set -v
1533 fi
1534
9c909460 1535 cd "$PACKAGE_DIR"
2a5f078d 1536
cd445739
AM
1537 case "$COMMAND" in
1538 build )
1539 BUILD_SWITCH="-ba" ;;
1540 build-binary )
1541 BUILD_SWITCH="-bb" ;;
1542 build-source )
1543 BUILD_SWITCH="-bs --nodeps" ;;
1544 build-prep )
1545 BUILD_SWITCH="-bp --nodeps" ;;
6594293d
AG
1546 build-build )
1547 BUILD_SWITCH="-bc" ;;
1548 build-install )
1549 BUILD_SWITCH="-bi" ;;
1550 build-list )
1551 BUILD_SWITCH="-bl" ;;
1552
cd445739 1553 esac
c890b916 1554
2e5be021 1555 update_shell_title "build_package: $COMMAND"
cd445739
AM
1556 if [ -n "$LOGFILE" ]; then
1557 LOG=`eval echo $LOGFILE`
1558 if [ -d "$LOG" ]; then
1559 echo "Log file $LOG is a directory."
1560 echo "Parse error in the spec?"
518ff1fb 1561 Exit_error err_build_fail
cd445739
AM
1562 fi
1563 if [ -n "$LASTLOG_FILE" ]; then
1564 echo "LASTLOG=$LOG" > $LASTLOG_FILE
1565 fi
390d081d 1566 RES_FILE=$(tempfile)
397fa865 1567 local specdir=$(insert_gitlog $SPECFILE)
525bf240 1568
8a037031 1569 (time eval PATH=$CLEAN_PATH ${NICE_COMMAND} $RPMBUILD $TARGET_SWITCH $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $RPMBUILDOPTS $BCOND --define \'_specdir $PACKAGE_DIR\' --define \'_sourcedir $PACKAGE_DIR\' $specdir/$SPECFILE; echo $? > $RES_FILE) 2>&1 |tee $LOG
cd445739 1570 RETVAL=`cat $RES_FILE`
397fa865 1571 rm -r $RES_FILE $specdir
cd445739
AM
1572 if [ -n "$LOGDIROK" ] && [ -n "$LOGDIRFAIL" ]; then
1573 if [ "$RETVAL" -eq "0" ]; then
1574 mv $LOG $LOGDIROK
1575 else
1576 mv $LOG $LOGDIRFAIL
1577 fi
1578 fi
8ba5cdda 1579 else
397fa865 1580 local specdir=$(insert_gitlog $SPECFILE)
8a037031 1581 eval PATH=$CLEAN_PATH ${NICE_COMMAND} $RPMBUILD $TARGET_SWITCH $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $RPMBUILDOPTS $BCOND --define \'_specdir $PACKAGE_DIR\' --define \'_sourcedir $PACKAGE_DIR\' $specdir/$SPECFILE
cd445739 1582 RETVAL=$?
397fa865 1583 rm -r $specdir
8ba5cdda 1584 fi
cd445739
AM
1585 if [ "$RETVAL" -ne "0" ]; then
1586 if [ -n "$TRY_UPGRADE" ]; then
cacef28c 1587 echo "\nUpgrade package to new version failed."
257af81b 1588 if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
cacef28c 1589 echo "Restoring old spec file."
257af81b
ER
1590 mv -f $SPECFILE.bak $SPECFILE
1591 fi
cacef28c 1592 echo ""
cd445739 1593 fi
518ff1fb 1594 Exit_error err_build_fail
cd445739
AM
1595 fi
1596 unset BUILD_SWITCH
1597}
1598
f6711e2a 1599nourl() {
cd445739
AM
1600 echo "$@" | sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g'
1601}
1602
f6711e2a 1603install_required_packages() {
cd445739
AM
1604 run_poldek -vi $1
1605 return $?
1606}
1607
f6711e2a 1608find_spec_bcond() { # originally from /usr/lib/rpm/find-spec-bcond
fa4bf1df 1609 local SPEC="$1"
fa4bf1df
ER
1610 awk -F"\n" '
1611 /^%changelog/ { exit }
fa4bf1df
ER
1612 /^%bcond_with/{
1613 match($0, /bcond_with(out)?[ \t]+[_a-zA-Z0-9]+/);
8ff97f39
ER
1614 bcond = substr($0, RSTART + 6, RLENGTH - 6);
1615 gsub(/[ \t]+/, "_", bcond);
fa4bf1df
ER
1616 print bcond
1617 }' $SPEC | LC_ALL=C sort -u
1618}
1619
117d9861 1620process_bcondrc() {
301cbfd4
ER
1621 # expand bconds from ~/.bcondrc
1622 # The file structure is like gentoo's package.use:
1623 # ---
1624 # * -selinux
1625 # samba -mysql -pgsql
47a8df12 1626 # w32codec-installer license_agreement
301cbfd4
ER
1627 # php +mysqli
1628 # ---
15e34b63 1629 if [ -f $HOME/.bcondrc ] || ([ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ]); then
117d9861
ER
1630 :
1631 else
1632 return
1633 fi
301cbfd4 1634
117d9861 1635 SN=${SPECFILE%%\.spec}
c8a3e2ac 1636
117d9861
ER
1637 local bcondrc=$HOME/.bcondrc
1638 [ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ] && bcondrc=$HOME_ETC/.bcondrc
301cbfd4 1639
117d9861 1640 local bcond_avail=$(find_spec_bcond $SPECFILE)
301cbfd4 1641
117d9861
ER
1642 while read pkg flags; do
1643 # ignore comments
1644 [[ "$pkg" == \#* ]] && continue
1645
1646 # any package or current package?
1647 if [ "$pkg" = "*" ] || [ "$pkg" = "$PACKAGE_NAME" ] || [ "$pkg" = "$SN" ]; then
1648 for flag in $flags; do
1649 local opt=${flag#[+-]}
1650
1651 # use only flags which are in this package.
1652 if [[ $bcond_avail = *${opt}* ]]; then
1653 if [[ $flag = -* ]]; then
1654 if [[ $BCOND != *--with?${opt}* ]]; then
1655 BCOND="$BCOND --without $opt"
1656 fi
1657 else
1658 if [[ $BCOND != *--without?${opt}* ]]; then
1659 BCOND="$BCOND --with $opt"
301cbfd4
ER
1660 fi
1661 fi
117d9861
ER
1662 fi
1663 done
1664 fi
1665 done < $bcondrc
1666 update_shell_title "parse ~/.bcondrc: DONE!"
1667}
1668
8ff97f39 1669set_bconds_values() {
117d9861
ER
1670 update_shell_title "set bcond values"
1671
1672 AVAIL_BCONDS_WITHOUT=""
1673 AVAIL_BCONDS_WITH=""
8ff97f39 1674
5a28189c 1675 if grep -Eq '^# *_with' ${SPECFILE}; then
8ff97f39
ER
1676 echo >&2 "ERROR: This spec has old style bconds."
1677 exit 1
1678 fi
1679
1680 if ! grep -q '^%bcond' ${SPECFILE}; then
117d9861 1681 return
301cbfd4
ER
1682 fi
1683
117d9861
ER
1684 local bcond_avail=$(find_spec_bcond $SPECFILE)
1685 process_bcondrc "$SPECFILE"
1686
fa4bf1df 1687 update_shell_title "parse bconds"
2a5f078d 1688
8ff97f39
ER
1689 local opt bcond
1690 for opt in $bcond_avail; do
1691 case "$opt" in
1692 without_*)
1693 bcond=${opt#without_}
10d92f71
ER
1694 case "$BCOND" in
1695 *--without?${bcond}*)
8ff97f39 1696 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT <$bcond>"
10d92f71
ER
1697 ;;
1698 *)
8ff97f39 1699 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT $bcond"
10d92f71
ER
1700 ;;
1701 esac
cd445739 1702 ;;
8ff97f39
ER
1703 with_*)
1704 bcond=${opt#with_}
10d92f71
ER
1705 case "$BCOND" in
1706 *--with?${bcond}*)
8ff97f39 1707 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH <$bcond>"
10d92f71
ER
1708 ;;
1709 *)
8ff97f39 1710 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH $bcond"
10d92f71
ER
1711 ;;
1712 esac
cd445739 1713 ;;
8ff97f39
ER
1714 *)
1715 echo >&2 "ERROR: unexpected '$opt' in set_bconds_values"
1716 exit 1
1717 ;;
1718 esac
1719 done
cd445739
AM
1720}
1721
f6711e2a 1722run_sub_builder() {
cd445739 1723 package_name="${1}"
af6b168f 1724 update_shell_title "run_sub_builder $package_name"
cd445739
AM
1725 #
1726