]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - builder.sh
shrc: refuse to delete AC-branch if that branch point is unassociated (has no tag...
[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
647fead0 335-D '<macro> <value>', --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
e2286286 471 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
472 sed '/^%changelog/,$d' $SPECFILE | sed -e "\${
473 a%changelog
474 r $speclog
475 }
397fa865 476 " > $specdir/$SPECFILE
8cc8f5c0 477 rm -f $gitlog $speclog
397fa865 478 echo $specdir
8cc8f5c0
ER
479}
480
31d2bd0b
ER
481# change dependency to specname
482# common changes:
483# - perl(Package::Name) -> perl-Package-Name
484depspecname() {
485 local package="$1"
486
560c4b1a 487 package=$(echo "$package" | sed -e '/perl(.*)/{s,perl(\(.*\)),perl-\1,;s,::,-,g};' -e 's/-\(devel\|static\)$//' )
31d2bd0b
ER
488 echo "$package"
489}
490
c890b916 491update_shell_title() {
a0d6396b 492 [ -t 1 ] || return
0b65d15e 493 local len=${COLUMNS:-80}
5c795f16 494 local msg="$(echo "$*" | cut -c-$len)"
0b65d15e 495
e225de91
ER
496 if [ -n "$BE_VERBOSE" ]; then
497 echo >&2 "$(date +%s.%N) $*"
498 fi
499
5c795f16 500 if [ "x$TITLECHANGE" = "xyes" -o "x$TITLECHANGE" = "x" ]; then
138bbc98
ER
501 local pkg
502 if [ -n "$PACKAGE_NAME" ]; then
503 pkg=${PACKAGE_NAME}-${PACKAGE_VERSION}-${PACKAGE_RELEASE}
504 else
505 pkg=${SPECFILE}
506 fi
507
508 msg="$pkg: ${SHELL_TITLE_PREFIX:+$SHELL_TITLE_PREFIX }$msg"
a8c9a155 509 msg=$(echo $msg | tr -d '\n\r')
982e358c
MP
510 case "$TERM" in
511 cygwin|xterm*)
512 echo >&2 -ne "\033]1;$msg\007\033]2;$msg\007"
513 ;;
514 screen*)
515 echo >&2 -ne "\033]0;$msg\007"
516 ;;
517 esac
518 fi
c890b916
ER
519}
520
7e40520f
ER
521# set TARGET from BuildArch: from SPECFILE
522set_spec_target() {
ce40491a 523 if [ -n "$SPECFILE" ] && [ -z "$TARGET" ]; then
b45a3b2a 524 tmp=$(awk '/^BuildArch:/ { print $NF; exit }' $ASSUMED_NAME/$SPECFILE)
ce40491a 525 if [ "$tmp" ]; then
f9109a96 526 target_platform=$(rpm -E '%{_target_vendor}-%{_target_os}%{?_gnu}')
7e40520f
ER
527 TARGET="$tmp"
528 case "$RPMBUILD" in
529 "rpmbuild")
f9109a96 530 TARGET_SWITCH="--target ${TARGET}-${target_platform}" ;;
7e40520f 531 "rpm")
ce40491a 532 TARGET_SWITCH="--target=$TARGET" ;;
7e40520f 533 esac
ce40491a
ER
534 fi
535 fi
7e40520f
ER
536}
537
ace3fd80
ER
538# runs rpm with minimal macroset
539minirpm() {
fa4bf1df 540 # we reset macros not to contain macros.build as all the %() macros are
559d511f 541 # executed here, while none of them are actually needed.
559d511f 542 # at the time of this writing macros.build + macros contained 70 "%(...)" macros.
525bf240 543 safe_macrofiles=$(rpm $TARGET_SWITCH --showrc | awk -F: '/^macrofiles/ { gsub(/^macrofiles[ \t]+:/, "", $0); gsub(/:.*macros.build:/, ":", $0); print $0 } ')
ace3fd80
ER
544
545 # TODO: move these to /usr/lib/rpm/macros
20117088 546 cat > $BUILDER_MACROS <<'EOF'
5b5e5f7f 547%x8664 x86_64 amd64 ia32e
f78a0bb7 548%alt_kernel %{nil}
549%_alt_kernel %{nil}
5ff15c97 550%bootstrap_release() %{1}
407b204b
ER
551%requires_releq_kernel_up(s:n:) %{nil}
552%requires_releq_kernel_smp(s:n:) %{nil}
553%requires_releq_kernel(s:n:) %{nil}
6b8134e3 554%requires_releq() %{nil}
bb01dee9 555%pyrequires_eq() %{nil}
559d511f 556%requires_eq() %{nil}
c13be3d1 557%requires_eq_to() %{nil}
99c05e13 558%requires_ge() %{nil}
500b0eb8
ER
559%requires_ge_to() %{nil}
560%requires_ge() %{nil}
407b204b
ER
561%releq_kernel_up(n:) ERROR
562%releq_kernel_smp(n:) ERROR
563%releq_kernel(n:) ERROR
74d9fd14 564%kgcc_package ERROR
237bd3f1 565%_fontsdir ERROR
7141278d 566%ruby_version ERROR
567%ruby_ver_requires_eq() %{nil}
568%ruby_mod_ver_requires_eq() %{nil}
c13be3d1 569%__php_api_requires() %{nil}
7141278d 570%php_major_version ERROR
571%php_api_version ERROR
99f819cf
AM
572%requires_xorg_xserver_extension %{nil}
573%requires_xorg_xserver_xinput %{nil}
574%requires_xorg_xserver_font %{nil}
575%requires_xorg_xserver_videodrv %{nil}
7141278d 576%py_ver ERROR
41035426
ER
577%perl_vendorarch ERROR
578%perl_vendorlib ERROR
703ae20b
ER
579# damn. need it here! - copied from /usr/lib/rpm/macros.build
580%tmpdir %(echo "${TMPDIR:-/tmp}")
1f28fcb7
ER
581%patchset_source(f:b:) %(
582 base=%{-b*}%{!-b*:10000};
583 start=$(expr $base + %1);
584 end=$(expr $base + %{?2}%{!?2:%{1}});
585 # we need to call seq twice as it doesn't allow two formats
586 seq -f 'Patch%g:' $start $end > %{tmpdir}/__ps1;
587 seq -f '%{-f*}' %1 %{?2}%{!?2:%{1}} > %{tmpdir}/__ps2;
588 paste %{tmpdir}/__ps{1,2};
589 rm -f %{tmpdir}/__ps{1,2};
590) \
591%{nil}
991f09a5
ER
592%add_etc_shells(p) %{p:<lua>}
593%remove_etc_shells(p) %{p:<lua>}
709995c4
ER
594%lua_add_etc_shells() %{nil}
595%lua_remove_etc_shells() %{nil}
0ca65fa4
JK
596%required_jdk %{nil}
597%buildrequires_jdk %{nil}
f9063abe 598%pear_package_print_optionalpackages %{nil}
fb198857 599EOF
3d12d055 600 if [ "$NOINIT" = "yes" ] ; then
20117088 601 cat >> $BUILDER_MACROS <<'EOF'
3d12d055
JR
602%_specdir ./
603%_sourcedir ./
604EOF
c039643c 605 fi
670b1ed4 606 eval PATH=$CLEAN_PATH $RPMBUILD $TARGET_SWITCH --macros "$safe_macrofiles:$BUILDER_MACROS" $QUIET $RPMOPTS $RPMBUILDOPTS $BCOND $* 2>&1
ace3fd80
ER
607}
608
609cache_rpm_dump() {
610 if [ -n "$DEBUG" ]; then
611 set -x
612 set -v
613 fi
614
d1d24c14 615 if [ -x /usr/bin/rpm-specdump ]; then
525bf240 616 update_shell_title "cache_rpm_dump using rpm-specdump command"
fff1b991 617 rpm_dump_cache=$(rpm-specdump $TARGET_SWITCH $BCOND $SPECFILE)
d1d24c14 618 else
525bf240 619 update_shell_title "cache_rpm_dump using rpmbuild command"
d1d24c14
ER
620 local rpm_dump
621 rpm_dump=`
622 # what we need from dump is NAME, VERSION, RELEASE and PATCHES/SOURCES.
623 dump='%{echo:dummy: PACKAGE_NAME %{name} }%dump'
624 case "$RPMBUILD" in
625 rpm)
626 ARGS='-bp'
627 ;;
628 rpmbuild)
629 ARGS='--nodigest --nosignature --nobuild'
630 ;;
631 esac
632 minirpm $ARGS --define "'prep $dump'" --nodeps $SPECFILE
633 `
634 if [ $? -gt 0 ]; then
635 error=$(echo "$rpm_dump" | sed -ne '/^error:/,$p')
636 echo "$error" >&2
637 Exit_error err_build_fail
638 fi
d05e8080 639
d1d24c14
ER
640 # make small dump cache
641 rpm_dump_cache=`echo "$rpm_dump" | awk '
642 $2 ~ /^SOURCEURL/ {print}
643 $2 ~ /^PATCHURL/ {print}
644 $2 ~ /^nosource/ {print}
645 $2 ~ /^PACKAGE_/ {print}
646 '`
647 fi
d05e8080 648
13974367 649 update_shell_title "cache_rpm_dump: OK!"
cd445739
AM
650}
651
ace3fd80 652rpm_dump() {
cd445739 653 if [ -z "$rpm_dump_cache" ] ; then
45e2a818 654 echo >&2 "internal error: cache_rpm_dump not called! (missing %prep?)"
cd445739
AM
655 fi
656 echo "$rpm_dump_cache"
657}
658
f6711e2a 659get_icons() {
d05e8080 660 update_shell_title "get icons"
9d99a240 661 ICONS=$(awk '/^Icon:/ {print $2}' $PACKAGE_DIR/${SPECFILE})
d05e8080
ER
662 if [ -z "$ICONS" ]; then
663 return
664 fi
665
975d7b23 666 rpm_dump_cache="kalasaba" NODIST="yes" get_files $ICONS
d05e8080
ER
667}
668
f6711e2a 669parse_spec() {
af4d5315 670 update_shell_title "parsing specfile"
cd445739 671 if [ -n "$DEBUG" ]; then
518ff1fb
ER
672 set -x
673 set -v
cd445739 674 fi
b2975fc3 675
d05e8080 676 # icons are needed for successful spec parse
518ff1fb 677 get_icons
d05e8080 678
9c909460 679 cd $PACKAGE_DIR
cd445739 680 cache_rpm_dump
00fcec7e 681
15e34b63 682 if rpm_dump | grep -qEi ":.*nosource.*1"; then
cd445739
AM
683 FAIL_IF_NO_SOURCES="no"
684 fi
685
7cbc2d88
ER
686 if [ "$NOSRCS" != "yes" ]; then
687 SOURCES=$(rpm_dump | awk '$2 ~ /^SOURCEURL[0-9]+/ {print substr($2, length("SOURCEURL") + 1), $3}' | LC_ALL=C sort -n | awk '{print $2}')
688 PATCHES=$(rpm_dump | awk '$2 ~ /^PATCHURL[0-9]+/ {print substr($2, length("PATCHURL") + 1), $3}' | LC_ALL=C sort -n | awk '{print $2}')
689 ICONS=$(awk '/^Icon:/ {print $2}' ${SPECFILE})
690 fi
691
dfe2b2d9
ER
692 PACKAGE_NAME=$(rpm_dump | awk '$2 == "PACKAGE_NAME" { print $3; exit}')
693 PACKAGE_VERSION=$(rpm_dump | awk '$2 == "PACKAGE_VERSION" { print $3; exit}')
694 PACKAGE_RELEASE=$(rpm_dump | awk '$2 == "PACKAGE_RELEASE" { print $3; exit}')
78eab2a1 695
0b4119a2 696 if [ "$PACKAGE_NAME" != "$ASSUMED_NAME" ]; then
7854d40c 697 echo >&2 "WARNING! Spec name ($ASSUMED_NAME) does not agree with package name ($PACKAGE_NAME)"
0b4119a2
JR
698 fi
699
cd445739
AM
700 if [ -n "$BE_VERBOSE" ]; then
701 echo "- Sources : `nourl $SOURCES`"
702 if [ -n "$PATCHES" ]; then
703 echo "- Patches : `nourl $PATCHES`"
704 else
705 echo "- Patches : *no patches needed*"
706 fi
707 if [ -n "$ICONS" ]; then
708 echo "- Icon : `nourl $ICONS`"
709 else
710 echo "- Icon : *no package icon*"
711 fi
712 echo "- Name : $PACKAGE_NAME"
713 echo "- Version : $PACKAGE_VERSION"
714 echo "- Release : $PACKAGE_RELEASE"
715 fi
13974367
ER
716
717 update_shell_title "parse_spec: OK!"
cd445739
AM
718}
719
f6711e2a 720Exit_error() {
cd445739 721 if [ -n "$DEBUG" ]; then
518ff1fb
ER
722 set -x
723 set -v
cd445739
AM
724 fi
725
726 cd "$__PWD"
727
728 case "$1" in
729 "err_no_spec_in_cmdl" )
730 remove_build_requires
45e2a818 731 echo >&2 "ERROR: spec file name not specified."
cd445739 732 exit 2 ;;
a08d92fc 733 "err_invalid_cmdline" )
45e2a818 734 echo >&2 "ERROR: invalid command line arg ($2)."
a08d92fc 735 exit 2 ;;
cd445739
AM
736 "err_no_spec_in_repo" )
737 remove_build_requires
bba21388 738 echo >&2 "Error: spec file not stored in PLD repo."
cd445739
AM
739 exit 3 ;;
740 "err_no_source_in_repo" )
741 remove_build_requires
bba21388 742 echo >&2 "Error: some source, patch or icon files not stored in PLD repo. ($2)"
cd445739 743 exit 4 ;;
703b6deb 744 "err_cvs_add_failed" )
bba21388 745 echo >&2 "Error: failed to add package to PLD repo."
703b6deb 746 exit 4 ;;
cd445739
AM
747 "err_build_fail" )
748 remove_build_requires
45e2a818 749 echo >&2 "Error: package build failed. (${2:-no more info})"
cd445739 750 exit 5 ;;
78eab2a1
AM
751 "err_no_package_data" )
752 remove_build_requires
45e2a818 753 echo >&2 "Error: couldn't get out package name/version/release from spec file."
78eab2a1 754 exit 6 ;;
ce40491a 755 "err_tag_exists" )
50321881 756 remove_build_requires
d2842af2 757 echo >&2 "Tag ${2} already exists"
50321881 758 exit 9 ;;
ce40491a 759 "err_fract_rel" )
50321881 760 remove_build_requires
45e2a818 761 echo >&2 "Release ${2} not integer and not a snapshot."
50321881 762 exit 10 ;;
fb96e0b5
AM
763 "err_branch_exists" )
764 remove_build_requires
45e2a818 765 echo >&2 "Tree branch already exists (${2})."
fb96e0b5 766 exit 11 ;;
cfc497c0
ER
767 "err_acl_deny" )
768 remove_build_requires
45e2a818 769 echo >&2 "Error: conditions reject building this spec (${2})."
cfc497c0 770 exit 12 ;;
406b9ecf
KK
771 "err_remote_problem" )
772 remove_build_requires
773 echo >&2 "Error: problem with remote (${2})"
774 exit 13 ;;
67963237 775 "err_not_implemented" )
779fcca4 776 remove_build_requires
67963237
KK
777 echo >&2 "Error: functionality not yet imlemented"
778 exit 110 ;;
cd445739 779 esac
45e2a818 780 echo >&2 "Unknown error."
73848362 781 exit 100
cd445739
AM
782}
783
f6711e2a 784init_builder() {
cd445739 785 if [ -n "$DEBUG" ]; then
518ff1fb
ER
786 set -x
787 set -v
0dd6320d 788 fi
cd445739 789
4aeb9973 790 if [ "$NOINIT" != "yes" ] ; then
9c909460 791 TOP_DIR=$(eval $RPM $RPMOPTS --eval '%{_topdir}')
b7cc0c94 792
09bf17c9 793 local macros_ver=$(rpm -E %?rpm_build_macros)
b7cc0c94
ER
794 if [ -z "$macros_ver" ]; then
795 REPO_DIR=$TOP_DIR/packages
796 PACKAGE_DIR=$TOP_DIR/packages/$ASSUMED_NAME
797 else
798 if awk "BEGIN{exit($macros_ver>=$RPM_MACROS_VER)}"; then
799 echo >&2 "builder requires rpm-build-macros >= $RPM_MACROS_VER"
800 exit 1
801 fi
802 REPO_DIR=$TOP_DIR
803 PACKAGE_DIR=$REPO_DIR/$ASSUMED_NAME
804 fi
29e90b02 805 else
9c909460
AM
806 REPO_DIR="."
807 PACKAGE_DIR="."
29e90b02 808 fi
52f3ced3
KK
809 export GIT_WORK_TREE=$PACKAGE_DIR
810 export GIT_DIR=$PACKAGE_DIR/.git
cd445739 811
acd0d41d 812 if [ -d "$GIT_DIR" ] && [ -z "$CVSTAG" ] && git rev-parse --verify -q HEAD > /dev/null; then
a095de80
KK
813 if CVSTAG=$(GIT_DIR=$GIT_DIR git symbolic-ref HEAD) 2>/dev/null; then
814 CVSTAG=${CVSTAG#refs/heads/}
815 if [ "$CVSTAG" != "master" ]; then
816 echo >&2 "builder: Active branch $CVSTAG. Use -r BRANCHNAME to override"
817 fi
818 else
819 echo >&2 "On detached HEAD. Use -r BRANCHNAME to override"
820 HEAD_DETACHED="yes"
821 fi
822 elif [ "$CVSTAG" = "HEAD" ]; then
823 # assume -r HEAD is same as -A
824 CVSTAG="master"
825 fi
826
a8c9a155 827 __PWD=$(pwd)
00fcec7e 828}
829
406b9ecf
KK
830create_git_repo() {
831 update_shell_title "add_package"
832
833 if [ -n "$DEBUG" ]; then
834 set -x
835 set -v
836 fi
837
838 cd "$REPO_DIR"
839 SPECFILE=$(basename $SPECFILE)
840 if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
841 echo "ERROR: No package to add ($ASSUMED_NAME/$SPECFILE)" >&2
842 exit 101
843 fi
844 [ -d "$ASSUMED_NAME/.git" ] || NEW_REPO=yes
c6418b06 845 ssh $GIT_PUSH create ${ASSUMED_NAME} || Exit_error err_cvs_add_failed
406b9ecf 846 git init
eda17ab7
KK
847 git remote add $REMOTE_PLD ${GIT_SERVER}/${PACKAGES_DIR}/${ASSUMED_NAME}.git && \
848 git remote set-url --push $REMOTE_PLD ssh://${GIT_PUSH}/${PACKAGES_DIR}/${ASSUMED_NAME} \
849 || Exit_error err_remote_problem $REMOTE_PLD
406b9ecf
KK
850}
851
f6711e2a 852get_spec() {
c890b916 853
2e5be021 854 update_shell_title "get_spec"
c890b916 855
cd445739 856 if [ -n "$DEBUG" ]; then
518ff1fb
ER
857 set -x
858 set -v
cd445739
AM
859 fi
860
9c909460
AM
861 cd "$REPO_DIR"
862 if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
6277f15f
ER
863 # XXX: still needed?
864 SPECFILE=$(basename $SPECFILE)
cd445739 865 fi
cd445739 866
1ef6f5de 867 if [ "$NOCVSSPEC" != "yes" ]; then
3189511a
KK
868 if [ -z "$DEPTH" ]; then
869 if [ -d "$ASSUMED_NAME/.git" ]; then
608c01a7 870 git fetch $REMOTE_PLD || Exit_error err_no_spec_in_repo
3189511a
KK
871 elif [ "$ADD_PACKAGE_CVS" = "yes" ]; then
872 if [ ! -r "$ASSUMED_NAME/$SPECFILE" ]; then
873 echo "ERROR: No package to add ($ASSUMED_NAME/$SPECFILE)" >&2
874 exit 101
875 fi
876 Exit_error err_not_implemented
877 else
878 (
879 unset GIT_WORK_TREE
eda17ab7 880 git clone -o $REMOTE_PLD ${GIT_SERVER}/${PACKAGES_DIR}/${ASSUMED_NAME}.git || {
588cb3a9 881 # softfail if new package, i.e not yet added to PLD rep
3189511a
KK
882 [ ! -f "$ASSUMED_NAME/$SPECFILE" ] && Exit_error err_no_spec_in_repo
883 echo "Warning: package not in CVS - assuming new package"
884 NOCVSSPEC="yes"
885 }
dd30f9c8 886 git config --local --add "remote.$REMOTE_PLD.fetch" 'refs/notes/*:refs/notes/*'
eda17ab7 887 git remote set-url --push $REMOTE_PLD ssh://${GIT_PUSH}/${PACKAGES_DIR}/${ASSUMED_NAME}
3189511a 888 )
703b6deb 889 fi
9c909460 890 else
3189511a
KK
891 if [ ! -d "$ASSUMED_NAME/.git" ]; then
892 if [ ! -d "$ASSUMED_NAME" ]; then
893 mkdir $ASSUMED_NAME
894 fi
895 git init
a153a767 896 git remote add $REMOTE_PLD ${GIT_SERVER}/${PACKAGES_DIR}/${ASSUMED_NAME}.git
dd30f9c8 897 git config --local --add "remote.$REMOTE_PLD.fetch" 'refs/notes/*:refs/notes/*'
48184c96 898 git remote set-url --push $REMOTE_PLD ssh://${GIT_PUSH}/${PACKAGES_DIR}/${ASSUMED_NAME}
6a9f8358 899 CVSTAG=${CVSTAG:-"master"}
3189511a 900 fi
3f79cb18
KK
901 local refs=''
902 if [ -z "$ALL_BRANCHES" ]; then
903 refs="${CVSTAG}:remotes/${REMOTE_PLD}/${CVSTAG}"
904 fi
905 git fetch $DEPTH $REMOTE_PLD $refs || {
3189511a
KK
906 echo >&2 "Error: branch $CVSTAG does not exist"
907 exit 3
908 }
703b6deb 909 fi
f343238b 910 git fetch $REMOTE_PLD 'refs/notes/*:refs/notes/*'
0c3beb90 911
0d494abd 912 cvsignore_df .gitignore
703b6deb 913
588cb3a9 914 # add default log format to .gitignore if it is relative to package dir
703b6deb
ER
915 if [ -n "$LOGFILE" -a "$LOGFILE" = "${LOGFILE##*/}" ]; then
916 # substitute known "macros" to glob
917 local logfile=$(echo "$LOGFILE" | sed -e 's,\$\(PACKAGE_NAME\|DATE\),*,g')
918 if [ "$logfile" ]; then
919 cvsignore_df "$logfile"
daeab113 920 fi
9c909460 921 fi
703b6deb
ER
922
923 # create symlinks for tools
ac7a79f3 924 if [ "$SYMLINK_TOOLS" != "no" -a -d "$ASSUMED_NAME" ]; then
2a8bedf9 925 for a in dropin md5 adapter builder {relup,compile,repackage,rsync,pearize}.sh pldnotify.awk; do
046b715f 926 # skip tools that don't exist in top dir
703b6deb 927 [ -f $a ] || continue
046b715f
ER
928 # skip tools that already exist
929 [ -f $ASSUMED_NAME/$a ] && continue
f1081b0a 930 ln -s ../$a $ASSUMED_NAME
703b6deb
ER
931 cvsignore_df $a
932 done
933 fi
cd445739 934 fi
049ab214 935
b0121b45 936 if [ -n "$CVSTAG" ]; then
608c01a7 937 git checkout "$CVSTAG" -- 2>/dev/null || git checkout -t "${REMOTE_PLD}/$CVSTAG" > /dev/null || exit
52f3ced3
KK
938 git symbolic-ref -q HEAD > /dev/null &&
939 git merge '@{u}'
52020f4c 940 if [ -n "$CVSDATE" ]; then
c4c0f339
KK
941 git checkout $(git rev-list -n1 --before="'$CVSDATE'" $CVSTAG) || exit 1
942 fi
b0121b45
KK
943 fi
944
9c909460 945 if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
518ff1fb 946 Exit_error err_no_spec_in_repo
cd445739
AM
947 fi
948
949 if [ "$CHMOD" = "yes" -a -n "$SPECFILE" ]; then
9c909460 950 chmod $CHMOD_MODE $ASSUMED_NAME/$SPECFILE
cd445739
AM
951 fi
952 unset OPTIONS
9c909460 953 [ -n "$DONT_PRINT_REVISION" ] || grep -E -m 1 "^#.*Revision:.*Date" $ASSUMED_NAME/$SPECFILE
7e40520f 954
ce40491a 955 set_spec_target
cd445739
AM
956}
957
f6711e2a 958find_mirror() {
9c909460 959 cd "$REPO_DIR"
782518da 960 local url="$1"
3526abd9 961 if [ ! -f "mirrors" ] ; then
b06a1bd9 962 ln -s rpm-build-tools/mirrors .
cd445739
AM
963 fi
964
965 IFS="|"
782518da
ER
966 local origin mirror name rest ol prefix
967 while read origin mirror name rest; do
968 # skip comments and empty lines
2faa4c32 969 if [ -z "$origin" ] || [ "${origin#\#}" != "$origin" ]; then
782518da
ER
970 continue
971 fi
a8c9a155
ER
972 ol=$(echo -n "$origin" | wc -c)
973 prefix=$(echo -n "$url" | head -c $ol)
cd445739 974 if [ "$prefix" = "$origin" ] ; then
a8c9a155 975 suffix=$(echo "$url" | cut -b $((ol+1))-)
cd445739
AM
976 echo -n "$mirror$suffix"
977 return 0
978 fi
979 done < mirrors
980 echo "$url"
981}
982
e7e0d4ec 983# Warning: unpredictable results if same URL used twice
f6711e2a 984src_no() {
8510980a
AM
985 local file="$1"
986 # escape some regexp characters if part of file name
298e75e2 987 file=$(echo "$file" | sed -e 's#\([\+\*\.\&\#\?]\)#\\\1#g')
9c909460 988 cd $PACKAGE_DIR
cd445739 989 rpm_dump | \
8510980a 990 grep -E "(SOURCE|PATCH)URL[0-9]*[ ]*${file}""[ ]*$" | \
647e3d7f
KK
991 sed -e 's/.*\(SOURCE\|PATCH\)URL\([0-9][0-9]*\).*/\1\2/' | \
992 head -n 1 | tr OURCEATH ourceath | xargs
1471f6d6 993}
994
f6711e2a 995src_md5() {
e7e0d4ec 996 [ "$NO5" = "yes" ] && return
cd445739
AM
997 no=$(src_no "$1")
998 [ -z "$no" ] && return
9c909460 999 cd $PACKAGE_DIR
e7e0d4ec
ER
1000 local md5
1001
1002 if [ -f additional-md5sums ]; then
e7e0d4ec 1003 md5=$(grep -s -v '^#' additional-md5sums | \
9413a514 1004 grep -E "[ ]$(basename "$1")([ ,]|\$)" | \
e7e0d4ec
ER
1005 sed -e 's/^\([0-9a-f]\{32\}\).*/\1/' | \
1006 grep -E '^[0-9a-f]{32}$')
1007
1008 if [ "$md5" ]; then
1009 if [ $(echo "$md5" | wc -l) != 1 ] ; then
1010 echo "$SPECFILE: more then one entry in additional-md5sums for $1" 1>&2
1011 fi
1012 echo "$md5" | tail -n 1
1013 return
1014 fi
cd445739 1015 fi
e7e0d4ec 1016
32131a0e 1017 source_md5=$(grep -iE "^#[ ]*(No)?$no-md5[ ]*:" $SPECFILE | sed -e 's/.*://')
e7e0d4ec
ER
1018 if [ -n "$source_md5" ]; then
1019 echo $source_md5
cd445739 1020 else
7805dcb4
PZ
1021 source_md5=`grep -i "BuildRequires:[ ]*digest(%SOURCE$no)[ ]*=" $SPECFILE | sed -e 's/.*=//'`
1022 if [ -n "$source_md5" ]; then
1023 echo $source_md5
1024 else
1025 # we have empty SourceX-md5, but it is still possible
1026 # that we have NoSourceX-md5 AND NoSource: X
647e3d7f 1027 nosource_md5=`grep -i "^#[ ]*No$no-md5[ ]*:" $SPECFILE | sed -e 's/.*://'`
7805dcb4
PZ
1028 if [ -n "$nosource_md5" -a -n "`grep -i "^NoSource:[ ]*$no$" $SPECFILE`" ] ; then
1029 echo $nosource_md5
1030 fi
cd445739 1031 fi
cd445739
AM
1032 fi
1033}
1034
f6711e2a 1035distfiles_path() {
06541433
JR
1036 echo "by-md5/$(src_md5 "$1" | sed -e 's|^\(.\)\(.\)|\1/\2/&|')/$(basename "$1")"
1037}
1038
f6711e2a 1039distfiles_url() {
06541433 1040 echo "$PROTOCOL$DISTFILES_SERVER/distfiles/$(distfiles_path "$1")"
cd445739
AM
1041}
1042
f6711e2a 1043distfiles_attic_url() {
06541433 1044 echo "$PROTOCOL$ATTICDISTFILES_SERVER/distfiles/Attic/$(distfiles_path "$1")"
cd445739
AM
1045}
1046
f6711e2a 1047good_md5() {
cd445739
AM
1048 md5=$(src_md5 "$1")
1049 [ "$md5" = "" ] || \
1050 [ "$md5" = "$(md5sum $(nourl "$1") 2> /dev/null | sed -e 's/ .*//')" ]
8ba5cdda
PG
1051}
1052
f6711e2a 1053good_size() {
a8c9a155 1054 size=$(find $(nourl "$1") -printf "%s" 2>/dev/null)
ce40491a 1055 [ -n "$size" -a "$size" -gt 0 ]
a4b50627
AF
1056}
1057
f6711e2a 1058cvsignore_df() {
947025e5 1059 if [ "$CVSIGNORE_DF" != "yes" ]; then
1060 return
1061 fi
0d494abd 1062 cvsignore=${PACKAGE_DIR}/.gitignore
7dc8d095
ER
1063
1064 # add only if not yet there
aa189b05 1065 if ! awk -vf="$1" -vc=1 '$0 == f { c = 0 } END { exit c }' $cvsignore 2>/dev/null; then
947025e5 1066 echo "$1" >> $cvsignore
1067 fi
1068}
1069
71f8e908 1070# returns true if "$1" is ftp, http or https protocol url
f6711e2a 1071is_url() {
71f8e908
ER
1072 case "$1" in
1073 ftp://*|http://*|https://*)
1074 return 0
1075 ;;
1076 esac
1077 return 1
1078}
1079
f6711e2a 1080update_md5() {
ecba6ad5
ER
1081 if [ $# -eq 0 ]; then
1082 return
1083 fi
1084
1085 update_shell_title "update md5"
1086 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1087 set -x
1088 set -v
ecba6ad5
ER
1089 fi
1090
9c909460 1091 cd "$PACKAGE_DIR"
ecba6ad5
ER
1092
1093 # pass 1: check files to be fetched
1094 local todo
1095 local need_files
1096 for i in "$@"; do
1097 local fp=$(nourl "$i")
1098 local srcno=$(src_no "$i")
6392b5fd
ER
1099 if [ -n "$ADD5" ]; then
1100 [ "$fp" = "$i" ] && continue # FIXME what is this check doing?
647e3d7f 1101 grep -qiE '^#[ ]*'$srcno'-md5[ ]*:' $PACKAGE_DIR/$SPECFILE && continue
9c909460 1102 grep -qiE '^BuildRequires:[ ]*digest[(]%SOURCE'$srcno'[)][ ]*=' $PACKAGE_DIR/$SPECFILE && continue
6392b5fd 1103 else
647e3d7f 1104 grep -qiE '^#[ ]*'$srcno'-md5[ ]*:' $PACKAGE_DIR/$SPECFILE || grep -qiE '^BuildRequires:[ ]*digest[(]%SOURCE'$srcno'[)][ ]*=' $PACKAGE_DIR/$SPECFILE || continue
ecba6ad5
ER
1105 fi
1106 if [ ! -f "$fp" ] || [ $ALWAYS_CVSUP = "yes" ]; then
1107 need_files="$need_files $i"
1108 fi
1109 done
1110
1111 # pass 1a: get needed files
1112 if [ "$need_files" ]; then
1113 get_files $need_files
1114 fi
1115
1116 # pass 2: proceed with md5 adding or updating
1117 for i in "$@"; do
1118 local fp=$(nourl "$i")
1119 local srcno=$(src_no "$i")
647e3d7f 1120 local md5=$(grep -iE '^#[ ]*(No)?'$srcno'-md5[ ]*:' $PACKAGE_DIR/$SPECFILE )
e19ad799 1121 if [ -z "$md5" ]; then
9c909460 1122 md5=$(grep -iE '^[ ]*BuildRequires:[ ]*digest[(]%SOURCE'$srcno'[)][ ]*=' $PACKAGE_DIR/$SPECFILE )
6c1b2e7d 1123 fi
71f8e908 1124 if [ -n "$ADD5" ] && is_url $i || [ -n "$md5" ]; then
647e3d7f 1125 local tag="# $srcno-md5:\t"
71f8e908 1126 if [[ "$md5" == *NoSource* ]]; then
6663e1f3 1127 tag="# No$srcno-md5:\t"
6c1b2e7d
PZ
1128 elif [ -n "$USEDIGEST" ]; then
1129 tag="BuildRequires:\tdigest(%SOURCE$srcno) = "
71f8e908 1130 fi
ecba6ad5 1131 md5=$(md5sum "$fp" | cut -f1 -d' ')
647e3d7f 1132 echo "Updating $srcno ($md5: $fp)."
ecba6ad5 1133 perl -i -ne '
647e3d7f
KK
1134 print unless (/^\s*#\s*(No)?'$srcno'-md5\s*:/i or /^\s*BuildRequires:\s*digest\(%SOURCE'$srcno'\)/i);
1135 print "'"$tag$md5"'\n" if /^'$srcno'\s*:\s+/i;
ecba6ad5 1136 ' \
9c909460 1137 $PACKAGE_DIR/$SPECFILE
ecba6ad5
ER
1138 fi
1139 done
1140}
1141
f6711e2a 1142check_md5() {
60499e54 1143 local bad
3fbff8b8
ER
1144 [ "$NO5" = "yes" ] && return
1145
ecba6ad5
ER
1146 update_shell_title "check md5"
1147
1148 for i in "$@"; do
60499e54
AM
1149 bad=0
1150 if ! good_md5 "$i"; then
1151 echo -n "MD5 sum mismatch."
1152 bad=1
1153 fi
1154 if ! good_size "$i"; then
1155 echo -n "0 sized file."
1156 bad=1
ecba6ad5
ER
1157 fi
1158
60499e54
AM
1159 if [ $bad -eq 1 ]; then
1160 echo " Use -U to refetch sources,"
1161 echo "or -5 to update md5 sums, if you're sure files are correct."
1162 Exit_error err_no_source_in_repo $i
1163 fi
ecba6ad5
ER
1164 done
1165}
1166
f6711e2a 1167get_files() {
7cb24972 1168 update_shell_title "get_files"
cd445739
AM
1169
1170 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1171 set -x
1172 set -v
cd445739
AM
1173 fi
1174
f09c0772 1175 if [ $# -gt 0 ]; then
9c909460 1176 cd "$PACKAGE_DIR"
cd445739 1177
f2e42a41 1178 local nc=0
e7fa3b9f 1179 local get_files_cvs=""
3815b69a 1180 for i in "$@"; do
f2e42a41 1181 nc=$((nc + 1))
dcebdffb 1182 local cvsup=0
3815b69a 1183 SHELL_TITLE_PREFIX="get_files[$nc/$#]"
f2e42a41 1184 update_shell_title "$i"
f09c0772 1185 local fp=`nourl "$i"`
ecba6ad5 1186 if [ "$SKIP_EXISTING_FILES" = "yes" ] && [ -f "$fp" ]; then
ce40491a 1187 continue
18e5347d 1188 fi
ecba6ad5 1189
cd445739 1190 FROM_DISTFILES=0
e7e0d4ec 1191 local srcmd5=$(src_md5 "$i")
ecba6ad5
ER
1192
1193 # we know if source/patch is present in cvs/distfiles
1194 # - has md5 (in distfiles)
1195 # - in cvs... ideas?
1196
1197 # CHECK: local file didn't exist or always cvs up (first) requested.
f09c0772 1198 if [ ! -f "$fp" ] || [ $ALWAYS_CVSUP = "yes" ]; then
cd445739
AM
1199 if echo $i | grep -vE '(http|ftp|https|cvs|svn)://' | grep -qE '\.(gz|bz2)$']; then
1200 echo "Warning: no URL given for $i"
1201 fi
08908161 1202 target="$fp"
cd445739 1203
e7e0d4ec 1204 if [ -z "$NODIST" ] && [ -n "$srcmd5" ]; then
a4b50627 1205 if good_md5 "$i" && good_size "$i"; then
e7e0d4ec 1206 echo "$fp having proper md5sum already exists"
cd445739
AM
1207 continue
1208 fi
28b34560 1209
bc10f694 1210 # optionally prefer mirror over distfiles if there's mirror
28b34560 1211 # TODO: build url list and then try each url from the list
bc10f694 1212 if [ -n "$PREFMIRRORS" ] && [ -z "$NOMIRRORS" ] && im=$(find_mirror "$i") && [ "$im" != "$i" ]; then
28b34560
ER
1213 url="$im"
1214 else
1215 url=$(distfiles_url "$i")
1216 fi
1217
cd445739
AM
1218 url_attic=$(distfiles_attic_url "$i")
1219 FROM_DISTFILES=1
ecba6ad5
ER
1220 # is $url local file?
1221 if [[ "$url" = [./]* ]]; then
18a52930 1222 update_shell_title "${GETLOCAL%% *}: $url"
cd445739
AM
1223 ${GETLOCAL} $url $target
1224 else
1225 if [ -z "$NOMIRRORS" ]; then
9e9f8920 1226 url=$(find_mirror "$url")
cd445739 1227 fi
9e9f8920
ER
1228
1229 local uri=${url}
1230 # make shorter message for distfiles urls
1231 if [[ "$uri" = ${PROTOCOL}${DISTFILES_SERVER}* ]] || [[ "$uri" = ${PROTOCOL}${ATTICDISTFILES_SERVER}* ]]; then
1232 uri=${uri#${PROTOCOL}${DISTFILES_SERVER}/distfiles/by-md5/?/?/*/}
1233 uri=${uri#${PROTOCOL}${ATTICDISTFILES_SERVER}/distfiles/by-md5/?/?/*/}
1234 uri="df: $uri"
1235 fi
1236 update_shell_title "${GETURI%% *}: $uri"
ca2e6c31 1237 ${GETURI} ${OUTFILEOPT} "$target" "$url" || \
33da77c4 1238 if [ "`echo $url | grep -E 'ftp://'`" ]; then
18a52930 1239 update_shell_title "${GETURI2%% *}: $url"
ca2e6c31 1240 ${GETURI2} ${OUTFILEOPT} "$target" "$url"
cd445739
AM
1241 fi
1242 fi
ecba6ad5
ER
1243
1244 # is it empty file?
1245 if [ ! -s "$target" ]; then
cd445739
AM
1246 rm -f "$target"
1247 if [ `echo $url_attic | grep -E '^(\.|/)'` ]; then
18a52930 1248 update_shell_title "${GETLOCAL%% *}: $url_attic"
cd445739
AM
1249 ${GETLOCAL} $url_attic $target
1250 else
1251 if [ -z "$NOMIRRORS" ]; then
a8c9a155 1252 url_attic=$(find_mirror "$url_attic")
cd445739 1253 fi
18a52930 1254 update_shell_title "${GETURI%% *}: $url_attic"
ca2e6c31 1255 ${GETURI} ${OUTFILEOPT} "$target" "$url_attic" || \
33da77c4 1256 if [ "`echo $url_attic | grep -E 'ftp://'`" ]; then
ce40491a 1257 update_shell_title "${GETURI2%% *}: $url_attic"
ca2e6c31 1258 ${GETURI2} ${OUTFILEOPT} "$target" "$url_attic"
cd445739 1259 fi
1cd7fc57 1260 test -s "$target" || rm -f "$target"
cd445739
AM
1261 fi
1262 fi
ecba6ad5
ER
1263
1264 if [ -s "$target" ]; then
947025e5 1265 cvsignore_df $target
1266 else
cd445739
AM
1267 rm -f "$target"
1268 FROM_DISTFILES=0
1269 fi
cd445739
AM
1270 fi
1271
f09c0772 1272 if [ -z "$NOURLS" ] && [ ! -f "$fp" -o -n "$UPDATE" ] && [ "`echo $i | grep -E 'ftp://|http://|https://'`" ]; then
cd445739 1273 if [ -z "$NOMIRRORS" ]; then
a8c9a155 1274 im=$(find_mirror "$i")
cd445739
AM
1275 else
1276 im="$i"
1277 fi
ce40491a 1278 update_shell_title "${GETURI%% *}: $im"
99b8f51f 1279 ${GETURI} ${OUTFILEOPT} "$target" "$im" || \
33da77c4 1280 if [ "`echo $im | grep -E 'ftp://'`" ]; then
ce40491a 1281 update_shell_title "${GETURI2%% *}: $im"
99b8f51f 1282 ${GETURI2} ${OUTFILEOPT} "$target" "$im"
7e365483 1283 fi
1cd7fc57 1284 test -s "$target" || rm -f "$target"
cd445739
AM
1285 fi
1286
dcebdffb
ER
1287 if [ "$cvsup" = 1 ]; then
1288 continue
1289 fi
1290
cd445739 1291 fi
ecba6ad5
ER
1292
1293 # the md5 check must be moved elsewhere as if we've called from update_md5 the md5 is wrong.
f09c0772 1294 if [ ! -f "$fp" -a "$FAIL_IF_NO_SOURCES" != "no" ]; then
b3b584c5 1295 Exit_error err_no_source_in_repo $i
cd445739 1296 fi
2a5f078d 1297
ecba6ad5 1298 # we check md5 here just only to refetch immediately
a4b50627 1299 if good_md5 "$i" && good_size "$i"; then
cd445739
AM
1300 :
1301 elif [ "$FROM_DISTFILES" = 1 ]; then
deccc50e 1302 # wrong md5 from distfiles: remove the file and try again
cd445739 1303 # but only once ...
deccc50e 1304 echo "MD5 sum mismatch. Trying full fetch."
cd445739
AM
1305 FROM_DISTFILES=2
1306 rm -f $target
18a52930 1307 update_shell_title "${GETURI%% *}: $url"
ca2e6c31 1308 ${GETURI} ${OUTFILEOPT} "$target" "$url" || \
33da77c4 1309 if [ "`echo $url | grep -E 'ftp://'`" ]; then
ce40491a 1310 update_shell_title "${GETURI2%% *}: $url"
ca2e6c31 1311 ${GETURI2} ${OUTFILEOPT} "$target" "$url"
cd445739 1312 fi
ecba6ad5 1313 if [ ! -s "$target" ]; then
cd445739 1314 rm -f "$target"
18a52930 1315 update_shell_title "${GETURI%% *}: $url_attic"
ca2e6c31 1316 ${GETURI} ${OUTFILEOPT} "$target" "$url_attic" || \
33da77c4 1317 if [ "`echo $url_attic | grep -E 'ftp://'`" ]; then
ce40491a 1318 update_shell_title "${GETURI2%% *}: $url_attic"
ca2e6c31 1319 ${GETURI2} ${OUTFILEOPT} "$target" "$url_attic"
cd445739
AM
1320 fi
1321 fi
1322 test -s "$target" || rm -f "$target"
1323 fi
cd445739 1324 done
e7fa3b9f
ER
1325 SHELL_TITLE_PREFIX=""
1326
cd445739
AM
1327
1328 if [ "$CHMOD" = "yes" ]; then
a8c9a155 1329 CHMOD_FILES=$(nourl "$@")
cd445739
AM
1330 if [ -n "$CHMOD_FILES" ]; then
1331 chmod $CHMOD_MODE $CHMOD_FILES
1332 fi
1333 fi
cd445739
AM
1334 fi
1335}
1336
7605fe95 1337tag_exist() {
8b6d1795
KK
1338# If tag exists and points to other commit exit with error
1339# If it existsts and points to HEAD return 1
1340# If it doesn't exist return 0
f8bfce7d 1341 local _tag="$1"
8b6d1795 1342 local sha1=$(git rev-parse HEAD)
7605fe95
KK
1343 echo "Searching for tag $_tag..."
1344 if [ -n "$DEPTH" ]; then
8b6d1795 1345 local ref=$(git ls-remote $REMOTE_PLD "refs/tags/$_tag" | cut -c -40)
7605fe95 1346 else
7baf7b2f 1347 local ref=$(git show-ref -s "refs/tags/$_tag")
7605fe95 1348 fi
8b6d1795
KK
1349 [ -z "$ref" ] && return 0
1350 [ "$ref" = "$sha1" ] || Exit_error err_tag_exists "$_tag"
1351 return 1
7605fe95
KK
1352}
1353
cd445739 1354make_tagver() {
ce40491a 1355 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1356 set -x
1357 set -v
ce40491a 1358 fi
78eab2a1 1359
ce40491a
ER
1360 # Check whether first character of PACKAGE_NAME is legal for tag name
1361 if [ -z "${PACKAGE_NAME##[_0-9]*}" -a -z "$TAG_PREFIX" ]; then
1362 TAG_PREFIX=tag_
1363 fi
d712cc12
ER
1364
1365 # NOTE: CVS tags may must not contain the characters `$,.:;@'
8c043136 1366 TAGVER=$(echo $TAG_PREFIX$PACKAGE_NAME-$PACKAGE_VERSION-$PACKAGE_RELEASE)
d712cc12 1367
8c043136 1368 # Remove @kernel.version_release from TAGVER because tagging sources
ce40491a 1369 # could occur with different kernel-headers than kernel-headers used at build time.
d712cc12
ER
1370 # besides, %{_kernel_ver_str} is not expanded.
1371
8c043136 1372 # TAGVER=auto-ac-madwifi-ng-0-0_20070225_1@%{_kernel_ver_str}
d712cc12
ER
1373 # TAGVER=auto-ac-madwifi-ng-0-0_20070225_1
1374
8c043136 1375 TAGVER=${TAGVER%@*}
ce40491a 1376 echo -n "$TAGVER"
cd445739
AM
1377}
1378
f6711e2a 1379tag_files() {
cd445739 1380 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1381 set -x
1382 set -v
cd445739
AM
1383 fi
1384
73ef63d8
ER
1385 echo "Version: $PACKAGE_VERSION"
1386 echo "Release: $PACKAGE_RELEASE"
cd445739 1387
c9100f10 1388 local _tag
73ef63d8 1389 if [ "$TAG_VERSION" = "yes" ]; then
c9100f10 1390 _tag=`make_tagver`
73ef63d8
ER
1391 fi
1392 if [ -n "$TAG" ]; then
c9100f10 1393 _tag="$TAG"
73ef63d8 1394 fi
c9100f10 1395 echo "tag: $_tag"
cd445739 1396
39dcc7de 1397 local OPTIONS="tag $CVS_FORCE"
cd445739 1398
9c909460 1399 cd "$PACKAGE_DIR"
03db3356 1400
ace99bc6
KK
1401 if tag_exist $_tag || [ -n "$CVS_FORCE" ]; then
1402 update_shell_title "tag sources: $_tag"
1403 git $OPTIONS $_tag || exit
1404 git push $CVS_FORCE $REMOTE_PLD tag $_tag || Exit_error err_remote_problem $REMOTE_PLD
1405 else
1406 echo "Tag $_tag already exists and points to the same commit"
1407 fi
cd445739
AM
1408}
1409
f6711e2a 1410branch_files() {
cd445739 1411 TAG=$1
f663f264 1412 echo "Git branch: $TAG"
518ff1fb 1413 shift
cd445739 1414
cd445739 1415 if [ -n "$DEBUG" ]; then
518ff1fb
ER
1416 set -x
1417 set -v
cd445739
AM
1418 fi
1419
f663f264 1420 local OPTIONS="branch $CVS_FORCE"
c10fa4fa 1421
9c909460 1422 cd "$PACKAGE_DIR"
f663f264 1423 git $OPTIONS $TAG || exit
cd445739
AM
1424}
1425
1426
3009b80d
ER
1427# this function should exit early if package can't be built for this arch
1428# this avoids unneccessary BR filling.
1429check_buildarch() {
1430 local out ret
13c3c336 1431 out=$(minirpm --short-circuit -bp --define "'prep exit 0'" --nodeps $SPECFILE 2>&1)
3009b80d
ER
1432 ret=$?
1433 if [ $ret -ne 0 ]; then
1434 echo >&2 "$out"
1435 exit $ret
1436 fi
1437}
1438
9d99a240
ER
1439# from relup.sh
1440set_release() {
1441 local specfile="$1"
1442 local rel="$2"
1443 local newrel="$3"
1444 sed -i -e "
1445 s/^\(%define[ \t]\+_\?rel[ \t]\+\)$rel\$/\1$newrel/
1446 s/^\(Release:[ \t]\+\)$rel\$/\1$newrel/
1447 " $specfile
1448}
1449
1450set_version() {
1451 local specfile="$1"
bc8502e6
ER
1452 local ver="$2" subver=$ver
1453 local newver="$3" newsubver=$newver
1454
1455 # try handling subver, everything that's not numeric-dotted in version
1456 if grep -Eq '%define\s+subver' $specfile; then
1457 subver=$(echo "$ver" | sed -re 's,^[0-9.]+,,')
1458 ver=${ver%$subver}
1459 newsubver=$(echo "$newver" | sed -re 's,^[0-9.]+,,')
1460 newver=${newver%$newsubver}
1461 fi
9d99a240
ER
1462 sed -i -e "
1463 s/^\(%define[ \t]\+_\?ver[ \t]\+\)$ver\$/\1$newver/
bc8502e6 1464 s/^\(%define[ \t]\+subver[ \t]\+\)$subver\$/\1$newsubver/
9d99a240
ER
1465 s/^\(Version:[ \t]\+\)$ver\$/\1$newver/
1466 " $specfile
1467}
1468
cacef28c 1469try_upgrade() {
cd445739 1470 if [ -n "$TRY_UPGRADE" ]; then
9d99a240 1471 local TNOTIFY TNEWVER TOLDVER
ce40491a 1472 update_shell_title "build_package: try_upgrade"
9d99a240 1473
cacef28c 1474 cd "$PACKAGE_DIR"
1475
0907f1eb
ER
1476 if [ "$UPGRADE_VERSION" ]; then
1477 TNEWVER=$UPGRADE_VERSION
cd445739 1478 else
0907f1eb
ER
1479 if [ -n "$FLOAT_VERSION" ]; then
1480 TNOTIFY=$($APPDIR/pldnotify.awk ${BE_VERBOSE:+-vDEBUG=1} $SPECFILE -n) || exit 1
1481 else
1482 TNOTIFY=$($APPDIR/pldnotify.awk ${BE_VERBOSE:+-vDEBUG=1} $SPECFILE) || exit 1
1483 fi
cd445739 1484
b9bef5ce
ER
1485 # pldnotify.awk does not set exit codes, but it has match for ERROR
1486 # in output which means so.
1487 if [[ "$TNOTIFY" = *ERROR* ]]; then
1488 echo >&2 "$TNOTIFY"
1489 exit 1
1490 fi
1491
0907f1eb
ER
1492 TNEWVER=$(echo $TNOTIFY | awk '{ match($4,/\[NEW\]/); print $5 }')
1493 fi
cd445739
AM
1494
1495 if [ -n "$TNEWVER" ]; then
1496 TOLDVER=`echo $TNOTIFY | awk '{ print $3; }'`
9d99a240 1497 echo "New version found, updating spec file from $TOLDVER to version $TNEWVER"
257af81b
ER
1498 if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
1499 cp -f $SPECFILE $SPECFILE.bak
1500 fi
cd445739 1501 chmod +w $SPECFILE
cacef28c 1502 set_release $SPECFILE $PACKAGE_RELEASE 1
9d99a240 1503 set_version $SPECFILE $PACKAGE_VERSION $TNEWVER
518ff1fb 1504 parse_spec
6decb793
ER
1505 if [ "$PACKAGE_VERSION" != "$TNEWVER" ]; then
1506 echo >&2 "Upgrading version failed, you need to update spec yourself"
1507 exit 1
1508 fi
cacef28c 1509 return 1
cd445739
AM
1510 fi
1511 fi
cacef28c 1512 return 0
1513}
1514
1515build_package() {
1516 update_shell_title "build_package"
1517 if [ -n "$DEBUG" ]; then
1518 set -x
1519 set -v
1520 fi
1521
9c909460 1522 cd "$PACKAGE_DIR"
2a5f078d 1523
cd445739
AM
1524 case "$COMMAND" in
1525 build )
1526 BUILD_SWITCH="-ba" ;;
1527 build-binary )
1528 BUILD_SWITCH="-bb" ;;
1529 build-source )
1530 BUILD_SWITCH="-bs --nodeps" ;;
1531 build-prep )
1532 BUILD_SWITCH="-bp --nodeps" ;;
6594293d
AG
1533 build-build )
1534 BUILD_SWITCH="-bc" ;;
1535 build-install )
1536 BUILD_SWITCH="-bi" ;;
1537 build-list )
1538 BUILD_SWITCH="-bl" ;;
1539
cd445739 1540 esac
c890b916 1541
2e5be021 1542 update_shell_title "build_package: $COMMAND"
cd445739
AM
1543 if [ -n "$LOGFILE" ]; then
1544 LOG=`eval echo $LOGFILE`
1545 if [ -d "$LOG" ]; then
1546 echo "Log file $LOG is a directory."
1547 echo "Parse error in the spec?"
518ff1fb 1548 Exit_error err_build_fail
cd445739
AM
1549 fi
1550 if [ -n "$LASTLOG_FILE" ]; then
1551 echo "LASTLOG=$LOG" > $LASTLOG_FILE
1552 fi
390d081d 1553 RES_FILE=$(tempfile)
397fa865 1554 local specdir=$(insert_gitlog $SPECFILE)
525bf240 1555
8a037031 1556 (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 1557 RETVAL=`cat $RES_FILE`
397fa865 1558 rm -r $RES_FILE $specdir
cd445739
AM
1559 if [ -n "$LOGDIROK" ] && [ -n "$LOGDIRFAIL" ]; then
1560 if [ "$RETVAL" -eq "0" ]; then
1561 mv $LOG $LOGDIROK
1562 else
1563 mv $LOG $LOGDIRFAIL
1564 fi
1565 fi
8ba5cdda 1566 else
397fa865 1567 local specdir=$(insert_gitlog $SPECFILE)
8a037031 1568 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 1569 RETVAL=$?
397fa865 1570 rm -r $specdir
8ba5cdda 1571 fi
cd445739
AM
1572 if [ "$RETVAL" -ne "0" ]; then
1573 if [ -n "$TRY_UPGRADE" ]; then
cacef28c 1574 echo "\nUpgrade package to new version failed."
257af81b 1575 if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
cacef28c 1576 echo "Restoring old spec file."
257af81b
ER
1577 mv -f $SPECFILE.bak $SPECFILE
1578 fi
cacef28c 1579 echo ""
cd445739 1580 fi
518ff1fb 1581 Exit_error err_build_fail
cd445739
AM
1582 fi
1583 unset BUILD_SWITCH
1584}
1585
f6711e2a 1586nourl() {
cd445739
AM
1587 echo "$@" | sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g'
1588}
1589
f6711e2a 1590install_required_packages() {
cd445739
AM
1591 run_poldek -vi $1
1592 return $?
1593}
1594
f6711e2a 1595find_spec_bcond() { # originally from /usr/lib/rpm/find-spec-bcond
fa4bf1df 1596 local SPEC="$1"
fa4bf1df
ER
1597 awk -F"\n" '
1598 /^%changelog/ { exit }
fa4bf1df
ER
1599 /^%bcond_with/{
1600 match($0, /bcond_with(out)?[ \t]+[_a-zA-Z0-9]+/);
8ff97f39
ER
1601 bcond = substr($0, RSTART + 6, RLENGTH - 6);
1602 gsub(/[ \t]+/, "_", bcond);
fa4bf1df
ER
1603 print bcond
1604 }' $SPEC | LC_ALL=C sort -u
1605}
1606
117d9861 1607process_bcondrc() {
301cbfd4
ER
1608 # expand bconds from ~/.bcondrc
1609 # The file structure is like gentoo's package.use:
1610 # ---
1611 # * -selinux
1612 # samba -mysql -pgsql
47a8df12 1613 # w32codec-installer license_agreement
301cbfd4
ER
1614 # php +mysqli
1615 # ---
15e34b63 1616 if [ -f $HOME/.bcondrc ] || ([ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ]); then
117d9861
ER
1617 :
1618 else
1619 return
1620 fi
301cbfd4 1621
117d9861 1622 SN=${SPECFILE%%\.spec}
c8a3e2ac 1623
117d9861
ER
1624 local bcondrc=$HOME/.bcondrc
1625 [ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ] && bcondrc=$HOME_ETC/.bcondrc
301cbfd4 1626
117d9861 1627 local bcond_avail=$(find_spec_bcond $SPECFILE)
301cbfd4 1628
117d9861
ER
1629 while read pkg flags; do
1630 # ignore comments
1631 [[ "$pkg" == \#* ]] && continue
1632
1633 # any package or current package?
1634 if [ "$pkg" = "*" ] || [ "$pkg" = "$PACKAGE_NAME" ] || [ "$pkg" = "$SN" ]; then
1635 for flag in $flags; do
1636 local opt=${flag#[+-]}
1637
1638 # use only flags which are in this package.
1639 if [[ $bcond_avail = *${opt}* ]]; then
1640 if [[ $flag = -* ]]; then
1641 if [[ $BCOND != *--with?${opt}* ]]; then
1642 BCOND="$BCOND --without $opt"
1643 fi
1644 else
1645 if [[ $BCOND != *--without?${opt}* ]]; then
1646 BCOND="$BCOND --with $opt"
301cbfd4
ER
1647 fi
1648 fi
117d9861
ER
1649 fi
1650 done
1651 fi
1652 done < $bcondrc
1653 update_shell_title "parse ~/.bcondrc: DONE!"
1654}
1655
8ff97f39 1656set_bconds_values() {
117d9861
ER
1657 update_shell_title "set bcond values"
1658
1659 AVAIL_BCONDS_WITHOUT=""
1660 AVAIL_BCONDS_WITH=""
8ff97f39 1661
5a28189c 1662 if grep -Eq '^# *_with' ${SPECFILE}; then
8ff97f39
ER
1663 echo >&2 "ERROR: This spec has old style bconds."
1664 exit 1
1665 fi
1666
1667 if ! grep -q '^%bcond' ${SPECFILE}; then
117d9861 1668 return
301cbfd4
ER
1669 fi
1670
117d9861
ER
1671 local bcond_avail=$(find_spec_bcond $SPECFILE)
1672 process_bcondrc "$SPECFILE"
1673
fa4bf1df 1674 update_shell_title "parse bconds"
2a5f078d 1675
8ff97f39
ER
1676 local opt bcond
1677 for opt in $bcond_avail; do
1678 case "$opt" in
1679 without_*)
1680 bcond=${opt#without_}
10d92f71
ER
1681 case "$BCOND" in
1682 *--without?${bcond}*)
8ff97f39 1683 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT <$bcond>"
10d92f71
ER
1684 ;;
1685 *)
8ff97f39 1686 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT $bcond"
10d92f71
ER
1687 ;;
1688 esac
cd445739 1689 ;;
8ff97f39
ER
1690 with_*)
1691 bcond=${opt#with_}
10d92f71
ER
1692 case "$BCOND" in
1693 *--with?${bcond}*)
8ff97f39 1694 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH <$bcond>"
10d92f71
ER
1695 ;;
1696 *)
8ff97f39 1697 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH $bcond"
10d92f71
ER
1698 ;;
1699 esac
cd445739 1700 ;;
8ff97f39
ER
1701 *)
1702 echo >&2 "ERROR: unexpected '$opt' in set_bconds_values"
1703 exit 1
1704 ;;
1705 esac
1706 done
cd445739
AM
1707}
1708
f6711e2a 1709run_sub_builder() {
cd445739 1710 package_name="${1}"
af6b168f 1711 update_shell_title "run_sub_builder $package_name"
cd445739
AM
1712 #
1713