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