]> TLD Linux GIT Repositories - packages/rpm-build-tools.git/blob - builder
f1d81ba89178a973c8802d0e2c3574d86ee9ea0e
[packages/rpm-build-tools.git] / builder
1 #!/bin/ksh
2 #
3 # This program is free software, distributed under the terms of
4 # the GNU General Public License Version 2.
5 #
6 # -----------
7 # Exit codes:
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)
20 #   110 - Functions not yet implemented
21
22 # Notes (todo/bugs):
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)
25 # - does not respect NoSource: X, and tries to cvs up such files [ example: VirtualBox-bin.spec and its Source0 ]
26 # TODO:
27 # - ability to do ./builder -bb foo.spec foo2.spec foo3.spec
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
31 # - builder --help:
32 #       basename: missing operand
33 #       Try `basename --help' for more information.
34 #       -- and the normal usage info --
35
36 PROGRAM=${0##*/}
37 APPDIR=$(d=$0; [ -L "$d" ] && d=$(readlink -f "$d"); dirname "$d")
38 RCSID='$Id: builder,v 1.645 2011/02/13 17:54:10 glen Exp $' r=${RCSID#* * } rev=${r%% *}
39 VERSION="v0.35/$rev"
40 VERSIONSTRING="\
41 Build package utility from PLD Linux Packages repository
42 $VERSION (C) 1999-2011 Free Penguins".
43
44 PATH="/bin:/usr/bin:/usr/sbin:/sbin:/usr/X11R6/bin"
45
46 # required rpm-build-macros
47 RPM_MACROS_VER=1.534
48
49 COMMAND="build"
50 TARGET=""
51
52 SPECFILE=""
53 BE_VERBOSE=""
54 QUIET=""
55 CLEAN=""
56 DEBUG=""
57 NOURLS=""
58 NOCVSSPEC=""
59 NODIST=""
60 NOINIT=""
61 PREFMIRRORS=""
62 UPDATE=""
63 ADD5=""
64 NO5=""
65 ALWAYS_CVSUP=${ALWAYS_CVSUP:-"yes"}
66
67 # use rpm 4.4.6+ digest format instead of comments if non-zero
68 USEDIGEST=
69
70 # user agent when fetching files
71 USER_AGENT="PLD/Builder($VERSION)"
72
73 # It can be used i.e. in log file naming.
74 # See LOGFILE example.
75 DATE=`date +%Y-%m-%d_%H-%M-%S`
76
77 # Example: LOGFILE='../log.$PACKAGE_NAME'
78 # Example: LOGFILE='../LOGS/log.$PACKAGE_NAME.$DATE'
79 # Example: LOGFILE='$PACKAGE_NAME/$PACKAGE_NAME.$DATE.log'
80 # Example: LOGFILE='$PACKAGE_NAME.$DATE.log'
81 # Yes, you can use variable name! Note _single_ quotes!
82 LOGFILE=''
83
84 LOGDIR=""
85 LOGDIROK=""
86 LOGDIRFAIL=""
87 LASTLOG_FILE=""
88
89 CHMOD="no"
90 CHMOD_MODE="0644"
91 RPMOPTS=""
92 RPMBUILDOPTS=""
93 BCOND=""
94 GROUP_BCONDS="no"
95
96 # create symlinks for tools in PACKAGE_DIR, see get_spec()
97 SYMLINK_TOOLS="yes"
98
99 PATCHES=""
100 SOURCES=""
101 ICONS=""
102 PACKAGE_RELEASE=""
103 PACKAGE_VERSION=""
104 PACKAGE_NAME=""
105 ASSUMED_NAME=""
106 PROTOCOL="http"
107 WGET_RETRIES=${MAX_WGET_RETRIES:-0}
108
109 CVS_FORCE=""
110 CVSIGNORE_DF="yes"
111 CVSTAG=""
112 GIT_SERVER="git@git.tld-linux.org"
113 PACKAGES_DIR="packages"
114 HEAD_DETACHED=""
115 DEPTH=""
116 ALL_BRANCHES=""
117 REMOTE_PLD="origin"
118 NEW_REPO=""
119
120 RES_FILE=""
121
122 DISTFILES_SERVER="://df.tld-linux.org"
123 ATTICDISTFILES_SERVER="://attic-distfiles.pld-linux.org"
124
125 DEF_NICE_LEVEL=19
126 SCHEDTOOL="auto"
127
128 FAIL_IF_NO_SOURCES="yes"
129
130 # let get_files skip over files which are present to get those damn files fetched
131 SKIP_EXISTING_FILES="no"
132
133 TRY_UPGRADE=""
134 # should the specfile be restored if upgrade failed?
135 REVERT_BROKEN_UPGRADE="yes"
136
137 if rpm --specsrpm 2>/dev/null; then
138         FETCH_BUILD_REQUIRES_RPMSPECSRPM="yes"
139         FETCH_BUILD_REQUIRES_RPMGETDEPS="no"
140 else
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
147 fi
148
149
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:
154 if [ -f ~/etc/builderrc ]; then
155         . ~/etc/builderrc
156 fi
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'
166 #TITLECHANGE=no
167 #
168 SU_SUDO=""
169 if [ -n "$HOME_ETC" ]; then
170         USER_CFG="$HOME_ETC/.builderrc"
171         BUILDER_MACROS="$HOME_ETC/.builder-rpmmacros"
172 else
173         USER_CFG=~/.builderrc
174         BUILDER_MACROS=~/.builder-rpmmacros
175 fi
176
177 [ -f "$USER_CFG" ] && . "$USER_CFG"
178
179 if [ -n "$GIT_LOGINNAME" ]; then
180         GIT_SERVER="git@git.tld-linux.org"
181 fi
182
183 if [ "$SCHEDTOOL" = "auto" ]; then
184         if [ -x /usr/bin/schedtool ] && schedtool -B -e echo >/dev/null; then
185                 SCHEDTOOL="schedtool -B -e"
186         else
187                 SCHEDTOOL="no"
188         fi
189 fi
190
191 if [ -n "$USE_PROZILLA" ]; then
192         GETURI="proz --no-getch -r -P ./ -t$WGET_RETRIES $PROZILLA_OPTS"
193         GETURI2="$GETURI"
194         OUTFILEOPT="-O"
195 elif [ -n "$USE_AXEL" ]; then
196         GETURI="axel -a $AXEL_OPTS"
197         GETURI2="$GETURI"
198         OUTFILEOPT="-o"
199 else
200         wget --help 2>&1 | grep -q -- ' --no-check-certificate ' && WGET_OPTS="$WGET_OPTS --no-check-certificate"
201         wget --help 2>&1 | grep -q -- ' --inet ' && WGET_OPTS="$WGET_OPTS --inet"
202         wget --help 2>&1 | grep -q -- ' --retry-connrefused ' && WGET_OPTS="$WGET_OPTS --retry-connrefused"
203         WGET_OPTS="$WGET_OPTS --user-agent=$USER_AGENT"
204
205         GETURI="wget --passive-ftp -c -nd -t$WGET_RETRIES $WGET_OPTS"
206         GETURI2="wget -c -nd -t$WGET_RETRIES $WGET_OPTS"
207         OUTFILEOPT="-O"
208 fi
209
210 GETLOCAL="cp -a"
211
212 if (rpm --version 2>&1 | grep -q '4.0.[0-2]'); then
213         RPM="rpm"
214         RPMBUILD="rpm"
215 else
216         RPM="rpm"
217         RPMBUILD="rpmbuild"
218 fi
219
220 #
221 # sanity checks
222 #
223 if [ -d $HOME/rpm/SOURCES ]; then
224         echo "ERROR: ~/rpm/{SPECS,SOURCES} structure is obsolete" >&2
225         echo "ERROR: get rid of your ~/rpm/SOURCES" >&2
226         exit 1
227 fi
228
229 POLDEK_INDEX_DIR="$($RPM --eval %_rpmdir)/"
230 POLDEK_CMD="$SU_SUDO /usr/bin/poldek --noask"
231
232 run_poldek() {
233         RES_FILE=$(tempfile)
234         if [ -n "$LOGFILE" ]; then
235                 LOG=`eval echo $LOGFILE`
236                 if [ -n "$LASTLOG_FILE" ]; then
237                         echo "LASTLOG=$LOG" > $LASTLOG_FILE
238                 fi
239                 (${NICE_COMMAND} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE})|tee -a $LOG
240                 return $exit_pldk
241         else
242                 (${NICE_COMMAND} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE}) 1>&2 >/dev/null
243                 return `cat ${RES_FILE}`
244                 rm -rf ${RES_FILE}
245         fi
246 }
247
248 #---------------------------------------------
249 # functions
250
251 usage() {
252         if [ -n "$DEBUG" ]; then set -xv; fi
253         echo "\
254 Usage: builder [--all-branches] [-D|--debug] [-V|--version] [--short-version]  [-a|--add_cvs] [-b|-ba|--build]
255 [-bb|--build-binary] [-bs|--build-source] [-bc] [-bi] [-bl] [-u|--try-upgrade]
256 [{-cf|--cvs-force}] [{-B|--branch} <branch>] [--depth <number>]
257 [-g|--get] [-h|--help] [--ftp] [--http] [{-l|--logtofile} <logfile>] [-m|--mr-proper]
258 [-q|--quiet] [--date <yyyy-mm-dd> [-r <tag>] [{-T|--tag <tag>]
259 [-Tvs|--tag-version-stable] [-Ts|--tag-stable] [-Tv|--tag-version]
260 [{-Tp|--tag-prefix} <prefix>] [{-tt|--test-tag}]
261 [-nu|--no-urls] [-v|--verbose] [--opts <rpm opts>] [--short-circuit]
262 [--show-bconds] [--with/--without <feature>] [--define <macro> <value>]
263 <package>[.spec][:tag]
264
265 -5, --update-md5    - update md5 comments in spec, implies -nd -ncs
266 -a5, --add-md5      - add md5 comments to URL sources, implies -nc -nd -ncs
267 --all-branches          - make shallow fetch of all branches; --depth required
268 -n5, --no-md5       - ignore md5 comments in spec
269 -D, --debug         - enable builder script debugging mode,
270 -debug              - produce rpm debug package (same as --opts -debug)
271 -V, --version       - output builder version string
272 --short-version     - output builder short version
273 -a, --add_vcs       - try add new package to PLD repo.
274 -b, -ba, --build    - get all files from PLD repo or HTTP/FTP and build package
275                       from <package>.spec,
276 -bb, --build-binary - get all files from PLD repo or HTTP/FTP and build binary
277                       only package from <package>.spec,
278 -bp, --build-prep   - execute the %prep phase of <package>.spec,
279 -bc                 - execute the %build phase of <package>.spec,
280 -bi                 - execute the %install phase of <package>.spec
281 -bl                                     - execute the %files phase of <package>.spec
282 -bs, --build-source - get all files from PLD repo or HTTP/FTP and only pack
283                       them into src.rpm,
284 --short-circuit     - short-circuit build
285 -B, --branch        - add branch
286 -c, --clean         - clean all temporarily created files (in BUILD\$RPM_BUILD_ROOT) after rpmbuild commands.
287                       may be used with building process.
288 -m, --mr-proper     - clean all temporarily created files (in BUILD, SOURCES,
289                                           SPECS and \$RPM_BUILD_ROOT). Doesn't run
290                                           any rpm building.
291 -cf, --cvs-force        - use -f when tagging
292 --define <macro> <value>
293                     - define a macro <macro> with value <value>,
294 --depth <number>
295                                         - make shallow fetch
296 --alt_kernel <kernel>
297                     - same as --define 'alt_kernel <kernel>'
298 --nodeps            - rpm won't check any dependences
299 -g, --get           - get <package>.spec and all related files from PLD repo
300                       or HTTP/FTP,
301 -h, --help          - this message,
302 -jN, -j N           - set %_smp_mflags to propagate concurrent jobs
303 --ftp, --http       - use ftp or http protocol to access distfiles server
304 -l <logfile>, --logtofile <logfile>
305                     - log all to file,
306 -ncs, --no-cvs-specs
307                     - don't pull from PLD repo
308 -nd, --no-distfiles - don't download from distfiles
309 -nm, --no-mirrors   - don't download from mirror, if source URL is given,
310 -nu, --no-urls      - don't try to download from FTP/HTTP location,
311 -ns, --no-srcs      - don't download Sources/Patches
312 -ns0, --no-source0  - don't download Source0
313 -nn, --no-net       - don't download anything from the net
314 -pm, --prefer-mirrors - prefer mirrors (if any) over distfiles for SOURCES
315 --no-init           - don't initialize builder paths (SPECS and SOURCES)
316 -ske,
317 --skip-existing-files - skip existing files in get_files
318 --opts <rpm opts>   - additional options for rpm
319 -q, --quiet         - be quiet,
320 --date yyyy-mm-dd   - build package using resources from specified date,
321 -r <tag>, --cvstag <ref>
322                     - build package using resources from specified branch/tag,
323 -A                  - build package using master branch as any sticky tags/branch/date being reset.
324 -R, --fetch-build-requires
325                     - fetch what is BuildRequired,
326 -RB, --remove-build-requires
327                     - remove all you fetched with -R or --fetch-build-requires
328                       remember, this option requires confirmation,
329 -FRB, --force-remove-build-requires
330                     - remove all you fetched with -R or --fetch-build-requires
331                       remember, this option works without confirmation,
332 -sd, --source-distfiles - list sources available from distfiles (intended for offline
333                       operations; does not work when Icon field is present
334                       but icon file is absent),
335 -sc, --source-cvs - list sources available from PLD repo
336 -sdp, --source-distfiles-paths - list sources available from distfiles -
337                       paths relative to distfiles directory (intended for offline
338                       operations; does not work when Icon field is present
339                       but icon file is absent),
340 -sf, --source-files - list sources - bare filenames (intended for offline
341                       operations; does not work when Icon field is present
342                       but icon file is absent),
343 -lsp, --source-paths - list sources - filenames with full local paths (intended for
344                       offline operations; does not work when Icon field is present
345                       but icon file is absent),
346 -su, --source-urls  - list urls - urls to sources and patches
347                       intended for copying urls with spec with lots of macros in urls
348 -T <tag> , --tag <tag>
349                     - add git tag <tag> for files,
350 -Tvs, --tag-version-stable
351                     - add git tags STABLE and NAME-VERSION-RELEASE for files,
352 -Ts, --tag-stable
353                     - add git tag STABLE for files,
354 -Tv, --tag-version
355                     - add git tag NAME-VERSION-RELEASE for files,
356 -Tp, --tag-prefix <prefix>
357                     - add <prefix> to NAME-VERSION-RELEASE tags,
358 -tt, --test-tag <prefix>
359                     - fail if tag is already present,
360 -ir, --integer-release-only
361                     - allow only integer and snapshot releases
362 -v, --verbose       - be verbose,
363 -u, --try-upgrade   - check version, and try to upgrade package
364 -un, --try-upgrade-with-float-version
365                     - as above, but allow float version
366                                         php-pear-Services_Digg/
367 --upgrade-version   - upgrade to specified version in try-upgrade
368 -U, --update        - refetch sources, don't use distfiles, and update md5 comments
369 -Upi, --update-poldek-indexes
370                     - refresh or make poldek package index files.
371 -sp, --skip-patch <patchnumber>
372                     - don't apply <patchnumber>. may be repeated.
373 -np, --nopatch <patchnumber>
374                     - abort instead of applying patch <patchnumber>
375 --show-bconds       - show available conditional builds, which can be used
376                     - with --with and/or --without switches.
377 --show-bcond-args   - show active bconds, from ~/.bcondrc. this is used by
378                       ./repackage.sh script. in other words, the output is
379                       parseable by scripts.
380 --show-avail-bconds - show available bconds
381 --with/--without <feature>
382                     - conditional build package depending on %_with_<feature>/
383                       %_without_<feature> macro switch.  You may now use
384                       --with feat1 feat2 feat3 --without feat4 feat5 --with feat6
385                       constructions. Set GROUP_BCONDS to yes to make use of it.
386 --target <platform>, --target=<platform>
387                      - build for platform <platform>.
388 --init-rpm-dir       - initialize ~/rpm directory structure
389 "
390 }
391
392 # create tempfile. as secure as possible
393 tempfile() {
394         mktemp -t builder.XXXXXX || ${TMPDIR:-/tmp}/builder.$RANDOM.$$
395 }
396
397 # inserts git log instead of %changelog
398 # outputs name of modified file created by tempfile
399 insert_gitlog() {
400         local SPECFILE=$1 specfile=$(tempfile) gitlog=$(tempfile) speclog=$(tempfile) 
401
402         # allow this being customized
403         local log_entries=$(rpm -E '%{?_buildchangelogtruncate}')
404
405         # rpm5.org/rpm.org do not parse any other date format than 'Wed Jan 1 1997'
406         # otherwise i'd use --date=iso here
407         # http://rpm5.org/cvs/fileview?f=rpm/build/parseChangelog.c&v=2.44.2.1
408         # http://rpm.org/gitweb?p=rpm.git;a=blob;f=build/parseChangelog.c#l31
409         # NOTE: changelog date is always in UTC for rpmbuild
410         # * 1265749244 +0000 Random Hacker <nikt@pld-linux.org> 9370900
411         git log -${log_entries:-20} --format=format:"* %ad %an <%ae> %h%n%s%n" --date=raw > $gitlog
412         gawk '/^\* /{printf("* %s %s\n", strftime("%a %b %d %Y", $2), substr($0, length($1)+length($2)+length($3)+4)); next}{print}' $gitlog > $speclog
413         sed '/^%changelog/,$d' $SPECFILE | sed -e "\${
414                         a%changelog
415                         r $speclog
416                 }
417         " > $specfile
418         rm -f $gitlog $speclog
419         echo $specfile
420 }
421
422 # change dependency to specname
423 # common changes:
424 # - perl(Package::Name) -> perl-Package-Name
425 depspecname() {
426         local package="$1"
427
428         package=$(echo "$package" | sed -e '/perl(.*)/{s,perl(\(.*\)),perl-\1,;s,::,-,g};' -e 's/-\(devel\|static\)$//' )
429         echo "$package"
430 }
431
432 update_shell_title() {
433         [ -t 1 ] || return
434         local len=${COLUMNS:-80}
435         local msg="$(echo "$*" | cut -c-$len)"
436
437         if [ -n "$BE_VERBOSE" ]; then
438                 echo >&2 "$(date +%s.%N) $*"
439         fi
440
441         if [ "x$TITLECHANGE" = "xyes" -o "x$TITLECHANGE" = "x" ]; then
442                 local pkg
443                 if [ -n "$PACKAGE_NAME" ]; then
444                         pkg=${PACKAGE_NAME}-${PACKAGE_VERSION}-${PACKAGE_RELEASE}
445                 else
446                         pkg=${SPECFILE}
447                 fi
448
449                 msg="$pkg: ${SHELL_TITLE_PREFIX:+$SHELL_TITLE_PREFIX }$msg"
450                 msg=$(echo $msg | tr -d '\n\r')
451                 case "$TERM" in
452                         cygwin|xterm*)
453                         echo >&2 -ne "\033]1;$msg\007\033]2;$msg\007"
454                 ;;
455                         screen*)
456                         echo >&2 -ne "\033]0;$msg\007"
457                 ;;
458                 esac
459         fi
460 }
461
462 # set TARGET from BuildArch: from SPECFILE
463 set_spec_target() {
464         if [ -n "$SPECFILE" ] && [ -z "$TARGET" ]; then
465                 tmp=$(awk '/^BuildArch:/ { print $NF; exit }' $ASSUMED_NAME/$SPECFILE)
466                 if [ "$tmp" ]; then
467                                 target_platform=$(rpm -E '%{_target_vendor}-%{_target_os}%{?_gnu}')
468                                 TARGET="$tmp"
469                                 case "$RPMBUILD" in
470                                 "rpmbuild")
471                                         TARGET_SWITCH="--target ${TARGET}-${target_platform}" ;;
472                                 "rpm")
473                                         TARGET_SWITCH="--target=$TARGET" ;;
474                                 esac
475                 fi
476         fi
477 }
478
479 # runs rpm with minimal macroset
480 minirpm() {
481         # we reset macros not to contain macros.build as all the %() macros are
482         # executed here, while none of them are actually needed.
483         # at the time of this writing macros.build + macros contained 70 "%(...)" macros.
484         safe_macrofiles=$(rpm $TARGET_SWITCH --showrc | awk -F: '/^macrofiles/ { gsub(/^macrofiles[ \t]+:/, "", $0); gsub(/:.*macros.build:/, ":", $0); print $0 } ')
485
486         # TODO: move these to /usr/lib/rpm/macros
487         cat > $BUILDER_MACROS <<'EOF'
488 %x8664 x86_64 amd64 ia32e
489 %alt_kernel %{nil}
490 %_alt_kernel %{nil}
491 %bootstrap_release() %{1}
492 %requires_releq_kernel_up(s:n:) %{nil}
493 %requires_releq_kernel_smp(s:n:) %{nil}
494 %requires_releq_kernel(s:n:) %{nil}
495 %requires_releq() %{nil}
496 %pyrequires_eq() %{nil}
497 %requires_eq() %{nil}
498 %requires_eq_to() %{nil}
499 %requires_ge() %{nil}
500 %requires_ge_to() %{nil}
501 %requires_ge() %{nil}
502 %releq_kernel_up(n:) ERROR
503 %releq_kernel_smp(n:) ERROR
504 %releq_kernel(n:) ERROR
505 %kgcc_package ERROR
506 %_fontsdir ERROR
507 %ruby_version ERROR
508 %ruby_ver_requires_eq() %{nil}
509 %ruby_mod_ver_requires_eq() %{nil}
510 %__php_api_requires() %{nil}
511 %php_major_version ERROR
512 %php_api_version ERROR
513 %requires_xorg_xserver_extension %{nil}
514 %requires_xorg_xserver_xinput %{nil}
515 %requires_xorg_xserver_font %{nil}
516 %requires_xorg_xserver_videodrv %{nil}
517 %py_ver ERROR
518 %perl_vendorarch ERROR
519 %perl_vendorlib ERROR
520 # damn. need it here! - copied from /usr/lib/rpm/macros.build
521 %tmpdir         %(echo "${TMPDIR:-/tmp}")
522 %patchset_source(f:b:) %(
523         base=%{-b*}%{!-b*:10000};
524         start=$(expr $base + %1);
525         end=$(expr $base + %{?2}%{!?2:%{1}});
526         # we need to call seq twice as it doesn't allow two formats
527         seq -f 'Patch%g:' $start $end > %{tmpdir}/__ps1;
528         seq -f '%{-f*}' %1 %{?2}%{!?2:%{1}} > %{tmpdir}/__ps2;
529         paste %{tmpdir}/__ps{1,2};
530         rm -f %{tmpdir}/__ps{1,2};
531 ) \
532 %{nil}
533 %add_etc_shells(p) %{p:<lua>}
534 %remove_etc_shells(p) %{p:<lua>}
535 %lua_add_etc_shells()  %{nil}
536 %lua_remove_etc_shells() %{nil}
537 %required_jdk %{nil}
538 %buildrequires_jdk %{nil}
539 %pear_package_print_optionalpackages %{nil}
540 EOF
541         if [ "$NOINIT" = "yes" ] ; then
542                 cat >> $BUILDER_MACROS <<'EOF'
543 %_specdir ./
544 %_sourcedir ./
545 EOF
546         fi
547         eval $RPMBUILD $TARGET_SWITCH --macros "$safe_macrofiles:$BUILDER_MACROS" $QUIET $RPMOPTS $RPMBUILDOPTS $BCOND $* 2>&1
548 }
549
550 cache_rpm_dump() {
551         if [ -n "$DEBUG" ]; then
552                 set -x
553                 set -v
554         fi
555
556         if [ -x /usr/bin/rpm-specdump ]; then
557                 update_shell_title "cache_rpm_dump using rpm-specdump command"
558                 rpm_dump_cache=$(rpm-specdump $TARGET_SWITCH $BCOND $SPECFILE)
559         else
560                 update_shell_title "cache_rpm_dump using rpmbuild command"
561                 local rpm_dump
562                 rpm_dump=`
563                         # what we need from dump is NAME, VERSION, RELEASE and PATCHES/SOURCES.
564                         dump='%{echo:dummy: PACKAGE_NAME %{name} }%dump'
565                         case "$RPMBUILD" in
566                         rpm)
567                                 ARGS='-bp'
568                                 ;;
569                         rpmbuild)
570                                 ARGS='--nodigest --nosignature --nobuild'
571                                 ;;
572                         esac
573                         minirpm $ARGS --define "'prep $dump'" --nodeps $SPECFILE
574                 `
575                 if [ $? -gt 0 ]; then
576                         error=$(echo "$rpm_dump" | sed -ne '/^error:/,$p')
577                         echo "$error" >&2
578                         Exit_error err_build_fail
579                 fi
580
581                 # make small dump cache
582                 rpm_dump_cache=`echo "$rpm_dump" | awk '
583                         $2 ~ /^SOURCEURL/ {print}
584                         $2 ~ /^PATCHURL/  {print}
585                         $2 ~ /^nosource/ {print}
586                         $2 ~ /^PACKAGE_/ {print}
587                 '`
588         fi
589
590         update_shell_title "cache_rpm_dump: OK!"
591 }
592
593 rpm_dump() {
594         if [ -z "$rpm_dump_cache" ] ; then
595                 echo >&2 "internal error: cache_rpm_dump not called! (missing %prep?)"
596         fi
597         echo "$rpm_dump_cache"
598 }
599
600 get_icons() {
601         update_shell_title "get icons"
602         ICONS=$(awk '/^Icon:/ {print $2}' $PACKAGE_DIR/${SPECFILE})
603         if [ -z "$ICONS" ]; then
604                 return
605         fi
606
607         rpm_dump_cache="kalasaba" NODIST="yes" get_files $ICONS
608 }
609
610 parse_spec() {
611         update_shell_title "parsing specfile"
612         if [ -n "$DEBUG" ]; then
613                 set -x
614                 set -v
615         fi
616
617         # icons are needed for successful spec parse
618         get_icons
619
620         cd $PACKAGE_DIR
621         cache_rpm_dump
622
623         if (rpm_dump | grep -qEi ":.*nosource.*1"); then
624                 FAIL_IF_NO_SOURCES="no"
625         fi
626
627         if [ "$NOSRCS" != "yes" ]; then
628                 SOURCES=$(rpm_dump | awk '$2 ~ /^SOURCEURL[0-9]+/ {print substr($2, length("SOURCEURL") + 1), $3}' | LC_ALL=C sort -n | awk '{print $2}')
629                 PATCHES=$(rpm_dump | awk '$2 ~ /^PATCHURL[0-9]+/ {print substr($2, length("PATCHURL") + 1), $3}' | LC_ALL=C sort -n | awk '{print $2}')
630                 ICONS=$(awk '/^Icon:/ {print $2}' ${SPECFILE})
631         fi
632
633         PACKAGE_NAME=$(rpm_dump | awk '$2 == "PACKAGE_NAME" { print $3; exit}')
634         PACKAGE_VERSION=$(rpm_dump | awk '$2 == "PACKAGE_VERSION" { print $3; exit}')
635         PACKAGE_RELEASE=$(rpm_dump | awk '$2 == "PACKAGE_RELEASE" { print $3; exit}')
636
637         if [ "$PACKAGE_NAME" != "$ASSUMED_NAME" ]; then
638                 echo >&2 "WARNING! Spec name ($ASSUMED_NAME) does not agree with package name ($PACKAGE_NAME)"
639         fi
640
641         if [ -n "$BE_VERBOSE" ]; then
642                 echo "- Sources :  `nourl $SOURCES`"
643                 if [ -n "$PATCHES" ]; then
644                         echo "- Patches :  `nourl $PATCHES`"
645                 else
646                         echo "- Patches :  *no patches needed*"
647                 fi
648                 if [ -n "$ICONS" ]; then
649                         echo "- Icon    :  `nourl $ICONS`"
650                 else
651                         echo "- Icon    :  *no package icon*"
652                 fi
653                 echo "- Name    : $PACKAGE_NAME"
654                 echo "- Version : $PACKAGE_VERSION"
655                 echo "- Release : $PACKAGE_RELEASE"
656         fi
657
658         update_shell_title "parse_spec: OK!"
659 }
660
661 Exit_error() {
662         if [ -n "$DEBUG" ]; then
663                 set -x
664                 set -v
665         fi
666
667         cd "$__PWD"
668
669         case "$1" in
670                 "err_no_spec_in_cmdl" )
671                         remove_build_requires
672                         echo >&2 "ERROR: spec file name not specified."
673                         exit 2 ;;
674                 "err_invalid_cmdline" )
675                         echo >&2 "ERROR: invalid command line arg ($2)."
676                         exit 2 ;;
677                 "err_no_spec_in_repo" )
678                         remove_build_requires
679                         echo >&2 "Error: spec file not stored in PLD repo."
680                         exit 3 ;;
681                 "err_no_source_in_repo" )
682                         remove_build_requires
683                         echo >&2 "Error: some source, patch or icon files not stored in PLD repo. ($2)"
684                         exit 4 ;;
685                 "err_cvs_add_failed" )
686                         echo >&2 "Error: failed to add package to PLD repo."
687                         exit 4 ;;
688                 "err_build_fail" )
689                         remove_build_requires
690                         echo >&2 "Error: package build failed. (${2:-no more info})"
691                         exit 5 ;;
692                 "err_no_package_data" )
693                         remove_build_requires
694                         echo >&2 "Error: couldn't get out package name/version/release from spec file."
695                         exit 6 ;;
696                 "err_tag_exists" )
697                         remove_build_requires
698                         echo >&2 "Tag ${2} already exists"
699                         exit 9 ;;
700                 "err_fract_rel" )
701                         remove_build_requires
702                         echo >&2 "Release ${2} not integer and not a snapshot."
703                         exit 10 ;;
704                 "err_branch_exists" )
705                         remove_build_requires
706                         echo >&2 "Tree branch already exists (${2})."
707                         exit 11 ;;
708                 "err_acl_deny" )
709                         remove_build_requires
710                         echo >&2 "Error: conditions reject building this spec (${2})."
711                         exit 12 ;;
712                 "err_remote_problem" )
713                         remove_build_requires
714                         echo >&2 "Error: problem with remote (${2})"
715                         exit 13 ;;
716                 "err_not_implemented" )
717                         remove_build_requires
718                         echo >&2 "Error: functionality not yet imlemented"
719                         exit 110 ;;
720         esac
721         echo >&2 "Unknown error."
722         exit 100
723 }
724
725 init_builder() {
726         if [ -n "$DEBUG" ]; then
727                 set -x
728                 set -v
729         fi
730
731         if [ "$NOINIT" != "yes" ] ; then
732                 TOP_DIR=$(eval $RPM $RPMOPTS --eval '%{_topdir}')
733
734                 local macros_ver=$(rpm -E %?rpm_build_macros)
735                 if [ -z "$macros_ver" ]; then
736                         REPO_DIR=$TOP_DIR/packages
737                         PACKAGE_DIR=$TOP_DIR/packages/$ASSUMED_NAME
738                 else
739                         if awk "BEGIN{exit($macros_ver>=$RPM_MACROS_VER)}"; then
740                                 echo >&2 "builder requires rpm-build-macros >= $RPM_MACROS_VER"
741                                 exit 1
742                         fi
743                         REPO_DIR=$TOP_DIR
744                         PACKAGE_DIR=$REPO_DIR/$ASSUMED_NAME
745                 fi
746         else
747                 REPO_DIR="."
748                 PACKAGE_DIR="."
749         fi
750         export GIT_WORK_TREE=$PACKAGE_DIR
751         export GIT_DIR=$PACKAGE_DIR/.git
752
753         if [ -d "$GIT_DIR" ] && [ -z "$CVSTAG" ]; then
754                 if CVSTAG=$(GIT_DIR=$GIT_DIR git symbolic-ref HEAD) 2>/dev/null; then
755                         CVSTAG=${CVSTAG#refs/heads/}
756                         if [ "$CVSTAG" != "master" ]; then
757                                 echo >&2 "builder: Active branch $CVSTAG. Use -r BRANCHNAME to override"
758                         fi
759                 else
760                         echo >&2 "On detached HEAD. Use -r BRANCHNAME to override"
761                         HEAD_DETACHED="yes"
762                 fi
763         elif [ "$CVSTAG" = "HEAD" ]; then
764                 # assume -r HEAD is same as -A
765                 CVSTAG="master"
766         fi
767
768         __PWD=$(pwd)
769 }
770
771 create_git_repo() {
772         update_shell_title "add_package"
773
774         if [ -n "$DEBUG" ]; then
775                 set -x
776                 set -v
777         fi
778
779         cd "$REPO_DIR"
780         SPECFILE=$(basename $SPECFILE)
781         if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
782                 echo "ERROR: No package to add ($ASSUMED_NAME/$SPECFILE)" >&2
783                 exit 101
784         fi
785         [ -d "$ASSUMED_NAME/.git" ] || NEW_REPO=yes
786         ssh $GIT_SERVER create ${ASSUMED_NAME} || Exit_error err_cvs_add_failed
787         git init
788         git remote add $REMOTE_PLD ${GIT_SERVER}:${PACKAGES_DIR}/${ASSUMED_NAME}.git || Exit_error err_remote_problem $REMOTE_PLD
789 }
790
791 get_spec() {
792
793         update_shell_title "get_spec"
794
795         if [ -n "$DEBUG" ]; then
796                 set -x
797                 set -v
798         fi
799
800         cd "$REPO_DIR"
801         if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
802                 # XXX: still needed?
803                 SPECFILE=$(basename $SPECFILE)
804         fi
805
806         if [ "$NOCVSSPEC" != "yes" ]; then
807                 if [ -z "$DEPTH" ]; then
808                         if [ -d "$ASSUMED_NAME/.git" ]; then
809                                 git fetch $REMOTE_PLD || Exit_error err_no_spec_in_repo
810                         elif [ "$ADD_PACKAGE_CVS" = "yes" ]; then
811                                 if [ ! -r "$ASSUMED_NAME/$SPECFILE" ]; then
812                                         echo "ERROR: No package to add ($ASSUMED_NAME/$SPECFILE)" >&2
813                                         exit 101
814                                 fi
815                                 Exit_error err_not_implemented
816                         else
817                                 (
818                                         unset GIT_WORK_TREE
819                                         git clone -o $REMOTE_PLD ${GIT_SERVER}:${PACKAGES_DIR}/${ASSUMED_NAME}.git "$REPO_DIR/${ASSUMED_NAME}" || {
820                                                 # softfail if new package, i.e not yet added to PLD rep
821                                                 [ ! -f "$ASSUMED_NAME/$SPECFILE" ] && Exit_error err_no_spec_in_repo
822                                                 echo "Warning: package not in CVS - assuming new package"
823                                                 NOCVSSPEC="yes"
824                                         }
825                                 )
826                         fi
827                 else
828                         if [ ! -d "$ASSUMED_NAME/.git" ]; then
829                                 if [ ! -d "$ASSUMED_NAME" ]; then
830                                         mkdir $ASSUMED_NAME
831                                 fi
832                                 git init
833                                 git remote add $REMOTE_PLD ${GIT_SERVER}:${PACKAGES_DIR}/${ASSUMED_NAME}.git
834                                 CVSTAG=${CVSTAG:-"master"}
835                         fi
836                         local refs=''
837                         if [ -z "$ALL_BRANCHES" ]; then
838                                 refs="${CVSTAG}:remotes/${REMOTE_PLD}/${CVSTAG}"
839                         fi
840                         git fetch $DEPTH $REMOTE_PLD $refs || {
841                                 echo >&2 "Error: branch $CVSTAG does not exist"
842                                 exit 3
843                         }
844                 fi
845
846                 cvsignore_df .gitignore
847
848                 # add default log format to .gitignore if it is relative to package dir
849                 if [ -n "$LOGFILE" -a "$LOGFILE" = "${LOGFILE##*/}" ]; then
850                         # substitute known "macros" to glob
851                         local logfile=$(echo "$LOGFILE" | sed -e 's,\$\(PACKAGE_NAME\|DATE\),*,g')
852                         if [ "$logfile" ]; then
853                                 cvsignore_df "$logfile"
854                         fi
855                 fi
856
857                 # create symlinks for tools
858                 if [ "$SYMLINK_TOOLS" != "no" ]; then
859                         for a in dropin md5 adapter builder {relup,compile,repackage,pearize}.sh pldnotify.awk; do
860                                 [ -f $a ] || continue
861                                 ln -sf ../$a $ASSUMED_NAME
862                                 cvsignore_df $a
863                         done
864                 fi
865         fi
866
867         if [ -n "$CVSTAG" ]; then
868                 git checkout "$CVSTAG" -- 2>/dev/null || git checkout -t "${REMOTE_PLD}/$CVSTAG" > /dev/null || exit
869                 git symbolic-ref -q HEAD > /dev/null &&
870                         git merge '@{u}'
871                 if [ -n "$CVSDATE" ]; then
872                         git checkout $(git rev-list -n1 --before="'$CVSDATE'" $CVSTAG) || exit 1
873                 fi
874         fi
875
876         if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
877                 Exit_error err_no_spec_in_repo
878         fi
879
880         if [ "$CHMOD" = "yes" -a -n "$SPECFILE" ]; then
881                 chmod $CHMOD_MODE $ASSUMED_NAME/$SPECFILE
882         fi
883         unset OPTIONS
884         [ -n "$DONT_PRINT_REVISION" ] || grep -E -m 1 "^#.*Revision:.*Date" $ASSUMED_NAME/$SPECFILE
885
886         set_spec_target
887 }
888
889 find_mirror() {
890         cd "$REPO_DIR"
891         local url="$1"
892         if [ ! -f "mirrors"  ] ; then
893                 ln -s scripts/mirrors .
894         fi
895
896         IFS="|"
897         local origin mirror name rest ol prefix
898         while read origin mirror name rest; do
899                 # skip comments and empty lines
900                 if [ -z "$origin" ] || [ "${origin#\#}" != "$origin" ]; then
901                         continue
902                 fi
903                 ol=$(echo -n "$origin" | wc -c)
904                 prefix=$(echo -n "$url" | head -c $ol)
905                 if [ "$prefix" = "$origin" ] ; then
906                         suffix=$(echo "$url" | cut -b $((ol+1))-)
907                         echo -n "$mirror$suffix"
908                         return 0
909                 fi
910         done < mirrors
911         echo "$url"
912 }
913
914 # Warning: unpredictable results if same URL used twice
915 src_no() {
916         cd $PACKAGE_DIR
917         rpm_dump | \
918         grep "SOURCEURL[0-9]*[  ]*$1""[         ]*$" | \
919         sed -e 's/.*SOURCEURL\([0-9][0-9]*\).*/\1/' | \
920         head -n 1 | xargs
921 }
922
923 src_md5() {
924         [ "$NO5" = "yes" ] && return
925         no=$(src_no "$1")
926         [ -z "$no" ] && return
927         cd $PACKAGE_DIR
928         local md5
929
930         if [ -f additional-md5sums ]; then
931                 md5=$(grep -s -v '^#' additional-md5sums | \
932                 grep -E "[      ]$(basename "$1")([     ,]|\$)" | \
933                 sed -e 's/^\([0-9a-f]\{32\}\).*/\1/' | \
934                 grep -E '^[0-9a-f]{32}$')
935
936                 if [ "$md5" ]; then
937                         if [ $(echo "$md5" | wc -l) != 1 ] ; then
938                                 echo "$SPECFILE: more then one entry in additional-md5sums for $1" 1>&2
939                         fi
940                         echo "$md5" | tail -n 1
941                         return
942                 fi
943         fi
944
945         source_md5=`grep -i "^#[        ]*Source$no-md5[        ]*:" $SPECFILE | sed -e 's/.*://'`
946         if [ -n "$source_md5" ]; then
947                 echo $source_md5
948         else
949                 source_md5=`grep -i "BuildRequires:[    ]*digest(%SOURCE$no)[   ]*=" $SPECFILE | sed -e 's/.*=//'`
950                 if [ -n "$source_md5" ]; then
951                         echo $source_md5
952                 else
953                         # we have empty SourceX-md5, but it is still possible
954                         # that we have NoSourceX-md5 AND NoSource: X
955                         nosource_md5=`grep -i "^#[       ]*NoSource$no-md5[      ]*:" $SPECFILE | sed -e 's/.*://'`
956                         if [ -n "$nosource_md5" -a -n "`grep -i "^NoSource:[     ]*$no$" $SPECFILE`" ] ; then
957                                 echo $nosource_md5
958                         fi
959                 fi
960         fi
961 }
962
963 distfiles_path() {
964         echo "by-md5/$(src_md5 "$1" | sed -e 's|^\(.\)\(.\)|\1/\2/&|')/$(basename "$1")"
965 }
966
967 distfiles_url() {
968         echo "$PROTOCOL$DISTFILES_SERVER/distfiles/$(distfiles_path "$1")"
969 }
970
971 distfiles_attic_url() {
972         echo "$PROTOCOL$ATTICDISTFILES_SERVER/distfiles/Attic/$(distfiles_path "$1")"
973 }
974
975 good_md5() {
976         md5=$(src_md5 "$1")
977         [ "$md5" = "" ] || \
978         [ "$md5" = "$(md5sum $(nourl "$1") 2> /dev/null | sed -e 's/ .*//')" ]
979 }
980
981 good_size() {
982         size=$(find $(nourl "$1") -printf "%s" 2>/dev/null)
983         [ -n "$size" -a "$size" -gt 0 ]
984 }
985
986 cvsignore_df() {
987         if [ "$CVSIGNORE_DF" != "yes" ]; then
988                 return
989         fi
990         cvsignore=${PACKAGE_DIR}/.gitignore
991
992         # add only if not yet there
993         if ! awk -vf="$1" -vc=1 '$0 == f { c = 0 } END { exit c }' $cvsignore 2>/dev/null; then
994                 echo "$1" >> $cvsignore
995         fi
996 }
997
998 # returns true if "$1" is ftp, http or https protocol url
999 is_url() {
1000         case "$1" in
1001         ftp://*|http://*|https://*)
1002                 return 0
1003         ;;
1004         esac
1005         return 1
1006 }
1007
1008 update_md5() {
1009         if [ $# -eq 0 ]; then
1010                 return
1011         fi
1012
1013         update_shell_title "update md5"
1014         if [ -n "$DEBUG" ]; then
1015                 set -x
1016                 set -v
1017         fi
1018
1019         cd "$PACKAGE_DIR"
1020
1021         # pass 1: check files to be fetched
1022         local todo
1023         local need_files
1024         for i in "$@"; do
1025                 local fp=$(nourl "$i")
1026                 local srcno=$(src_no "$i")
1027                 if [ -n "$ADD5" ]; then
1028                         [ "$fp" = "$i" ] && continue # FIXME what is this check doing?
1029                         grep -qiE '^#[  ]*Source'$srcno'-md5[   ]*:' $PACKAGE_DIR/$SPECFILE && continue
1030                         grep -qiE '^BuildRequires:[     ]*digest[(]%SOURCE'$srcno'[)][  ]*=' $PACKAGE_DIR/$SPECFILE && continue
1031                 else
1032                         grep -qiE '^#[  ]*Source'$srcno'-md5[   ]*:' $PACKAGE_DIR/$SPECFILE || grep -qiE '^BuildRequires:[      ]*digest[(]%SOURCE'$srcno'[)][  ]*=' $PACKAGE_DIR/$SPECFILE || continue
1033                 fi
1034                 if [ ! -f "$fp" ] || [ $ALWAYS_CVSUP = "yes" ]; then
1035                         need_files="$need_files $i"
1036                 fi
1037         done
1038
1039         # pass 1a: get needed files
1040         if [ "$need_files" ]; then
1041                 get_files $need_files
1042         fi
1043
1044         # pass 2: proceed with md5 adding or updating
1045         for i in "$@"; do
1046                 local fp=$(nourl "$i")
1047                 local srcno=$(src_no "$i")
1048                 local md5=$(grep -iE '^#[       ]*(No)?Source'$srcno'-md5[      ]*:' $PACKAGE_DIR/$SPECFILE )
1049                 if [ -z "$md5" ]; then
1050                         md5=$(grep -iE '^[      ]*BuildRequires:[       ]*digest[(]%SOURCE'$srcno'[)][  ]*=' $PACKAGE_DIR/$SPECFILE )
1051                 fi
1052                 if [ -n "$ADD5" ] && is_url $i || [ -n "$md5" ]; then
1053                         local tag="# Source$srcno-md5:\t"
1054                         if [[ "$md5" == *NoSource* ]]; then
1055                                 tag="# NoSource$srcno-md5:\t"
1056                         elif [ -n "$USEDIGEST" ]; then
1057                                 tag="BuildRequires:\tdigest(%SOURCE$srcno) = "
1058                         fi
1059                         md5=$(md5sum "$fp" | cut -f1 -d' ')
1060                         echo "Updating Source$srcno ($md5: $fp)."
1061                         perl -i -ne '
1062                                 print unless (/^\s*#\s*(No)?Source'$srcno'-md5\s*:/i or /^\s*BuildRequires:\s*digest\(%SOURCE'$srcno'\)/i);
1063                                 print "'"$tag$md5"'\n" if /^Source'$srcno'\s*:\s+/;
1064                         ' \
1065                         $PACKAGE_DIR/$SPECFILE
1066                 fi
1067         done
1068 }
1069
1070 check_md5() {
1071         local bad
1072         [ "$NO5" = "yes" ] && return
1073
1074         update_shell_title "check md5"
1075
1076         for i in "$@"; do
1077                 bad=0
1078                 if ! good_md5 "$i"; then
1079                         echo -n "MD5 sum mismatch."
1080                         bad=1
1081                 fi
1082                 if ! good_size "$i"; then
1083                         echo -n "0 sized file."
1084                         bad=1
1085                 fi
1086
1087                 if [ $bad -eq 1 ]; then
1088                         echo " Use -U to refetch sources,"
1089                         echo "or -5 to update md5 sums, if you're sure files are correct."
1090                         Exit_error err_no_source_in_repo $i
1091                 fi
1092         done
1093 }
1094
1095 get_files() {
1096         update_shell_title "get_files"
1097
1098         if [ -n "$DEBUG" ]; then
1099                 set -x
1100                 set -v
1101         fi
1102
1103         if [ $# -gt 0 ]; then
1104                 cd "$PACKAGE_DIR"
1105
1106                 local nc=0
1107                 local get_files_cvs=""
1108                 for i in "$@"; do
1109                         nc=$((nc + 1))
1110                         local cvsup=0
1111                         SHELL_TITLE_PREFIX="get_files[$nc/$#]"
1112                         update_shell_title "$i"
1113                         local fp=`nourl "$i"`
1114                         if [ "$SKIP_EXISTING_FILES" = "yes" ] && [ -f "$fp" ]; then
1115                                 continue
1116                         fi
1117
1118                         FROM_DISTFILES=0
1119                         local srcmd5=$(src_md5 "$i")
1120
1121                         # we know if source/patch is present in cvs/distfiles
1122                         # - has md5 (in distfiles)
1123                         # - in cvs... ideas?
1124
1125                         # CHECK: local file didn't exist or always cvs up (first) requested.
1126                         if [ ! -f "$fp" ] || [ $ALWAYS_CVSUP = "yes" ]; then
1127                                 if echo $i | grep -vE '(http|ftp|https|cvs|svn)://' | grep -qE '\.(gz|bz2)$']; then
1128                                         echo "Warning: no URL given for $i"
1129                                 fi
1130                                 target="$fp"
1131
1132                                 if [ -z "$NODIST" ] && [ -n "$srcmd5" ]; then
1133                                         if good_md5 "$i" && good_size "$i"; then
1134                                                 echo "$fp having proper md5sum already exists"
1135                                                 continue
1136                                         fi
1137
1138                                         # optionally prefer mirror over distfiles if there's mirror
1139                                         # TODO: build url list and then try each url from the list
1140                                         if [ -n "$PREFMIRRORS" ] && [ -z "$NOMIRRORS" ] && im=$(find_mirror "$i") && [ "$im" != "$i" ]; then
1141                                                 url="$im"
1142                                         else
1143                                                 url=$(distfiles_url "$i")
1144                                         fi
1145
1146                                         url_attic=$(distfiles_attic_url "$i")
1147                                         FROM_DISTFILES=1
1148                                         # is $url local file?
1149                                         if [[ "$url" = [./]* ]]; then
1150                                                 update_shell_title "${GETLOCAL%% *}: $url"
1151                                                 ${GETLOCAL} $url $target
1152                                         else
1153                                                 if [ -z "$NOMIRRORS" ]; then
1154                                                         url=$(find_mirror "$url")
1155                                                 fi
1156
1157                                                 local uri=${url}
1158                                                 # make shorter message for distfiles urls
1159                                                 if [[ "$uri" = ${PROTOCOL}${DISTFILES_SERVER}* ]] || [[ "$uri" = ${PROTOCOL}${ATTICDISTFILES_SERVER}* ]]; then
1160                                                         uri=${uri#${PROTOCOL}${DISTFILES_SERVER}/distfiles/by-md5/?/?/*/}
1161                                                         uri=${uri#${PROTOCOL}${ATTICDISTFILES_SERVER}/distfiles/by-md5/?/?/*/}
1162                                                         uri="df: $uri"
1163                                                 fi
1164                                                 update_shell_title "${GETURI%% *}: $uri"
1165                                                 ${GETURI} ${OUTFILEOPT} "$target" "$url" || \
1166                                                 if [ "`echo $url | grep -E 'ftp://'`" ]; then
1167                                                         update_shell_title "${GETURI2%% *}: $url"
1168                                                         ${GETURI2} ${OUTFILEOPT} "$target" "$url"
1169                                                 fi
1170                                         fi
1171
1172                                         # is it empty file?
1173                                         if [ ! -s "$target" ]; then
1174                                                 rm -f "$target"
1175                                                 if [ `echo $url_attic | grep -E '^(\.|/)'` ]; then
1176                                                         update_shell_title "${GETLOCAL%% *}: $url_attic"
1177                                                         ${GETLOCAL} $url_attic $target
1178                                                 else
1179                                                         if [ -z "$NOMIRRORS" ]; then
1180                                                                 url_attic=$(find_mirror "$url_attic")
1181                                                         fi
1182                                                         update_shell_title "${GETURI%% *}: $url_attic"
1183                                                         ${GETURI} ${OUTFILEOPT} "$target" "$url_attic" || \
1184                                                         if [ "`echo $url_attic | grep -E 'ftp://'`" ]; then
1185                                                                 update_shell_title "${GETURI2%% *}: $url_attic"
1186                                                                 ${GETURI2} ${OUTFILEOPT} "$target" "$url_attic"
1187                                                         fi
1188                                                         test -s "$target" || rm -f "$target"
1189                                                 fi
1190                                         fi
1191
1192                                         if [ -s "$target" ]; then
1193                                                 cvsignore_df $target
1194                                         else
1195                                                 rm -f "$target"
1196                                                 FROM_DISTFILES=0
1197                                         fi
1198                                 fi
1199
1200                                 if [ -z "$NOURLS" ] && [ ! -f "$fp" -o -n "$UPDATE" ] && [ "`echo $i | grep -E 'ftp://|http://|https://'`" ]; then
1201                                         if [ -z "$NOMIRRORS" ]; then
1202                                                 im=$(find_mirror "$i")
1203                                         else
1204                                                 im="$i"
1205                                         fi
1206                                         update_shell_title "${GETURI%% *}: $im"
1207                                         ${GETURI} "$im" ${OUTFILEOPT} "$target" || \
1208                                         if [ "`echo $im | grep -E 'ftp://'`" ]; then
1209                                                 update_shell_title "${GETURI2%% *}: $im"
1210                                                 ${GETURI2} "$im" ${OUTFILEOPT} "$target"
1211                                         fi
1212                                         test -s "$target" || rm -f "$target"
1213                                 fi
1214
1215                                 if [ "$cvsup" = 1 ]; then
1216                                         continue
1217                                 fi
1218
1219                         fi
1220
1221                         # the md5 check must be moved elsewhere as if we've called from update_md5 the md5 is wrong.
1222                         if [ ! -f "$fp" -a "$FAIL_IF_NO_SOURCES" != "no" ]; then
1223                                 Exit_error err_no_source_in_repo $i
1224                         fi
1225
1226                         # we check md5 here just only to refetch immediately
1227                         if good_md5 "$i" && good_size "$i"; then
1228                                 :
1229                         elif [ "$FROM_DISTFILES" = 1 ]; then
1230                                 # wrong md5 from distfiles: remove the file and try again
1231                                 # but only once ...
1232                                 echo "MD5 sum mismatch. Trying full fetch."
1233                                 FROM_DISTFILES=2
1234                                 rm -f $target
1235                                 update_shell_title "${GETURI%% *}: $url"
1236                                 ${GETURI} ${OUTFILEOPT} "$target" "$url" || \
1237                                 if [ "`echo $url | grep -E 'ftp://'`" ]; then
1238                                         update_shell_title "${GETURI2%% *}: $url"
1239                                         ${GETURI2} ${OUTFILEOPT} "$target" "$url"
1240                                 fi
1241                                 if [ ! -s "$target" ]; then
1242                                         rm -f "$target"
1243                                         update_shell_title "${GETURI%% *}: $url_attic"
1244                                         ${GETURI} ${OUTFILEOPT} "$target" "$url_attic" || \
1245                                         if [ "`echo $url_attic | grep -E 'ftp://'`" ]; then
1246                                                 update_shell_title "${GETURI2%% *}: $url_attic"
1247                                                 ${GETURI2} ${OUTFILEOPT} "$target" "$url_attic"
1248                                         fi
1249                                 fi
1250                                 test -s "$target" || rm -f "$target"
1251                         fi
1252                 done
1253                 SHELL_TITLE_PREFIX=""
1254
1255
1256                 if [ "$CHMOD" = "yes" ]; then
1257                         CHMOD_FILES=$(nourl "$@")
1258                         if [ -n "$CHMOD_FILES" ]; then
1259                                 chmod $CHMOD_MODE $CHMOD_FILES
1260                         fi
1261                 fi
1262         fi
1263 }
1264
1265 make_tagver() {
1266         if [ -n "$DEBUG" ]; then
1267                 set -x
1268                 set -v
1269         fi
1270
1271         # Check whether first character of PACKAGE_NAME is legal for tag name
1272         if [ -z "${PACKAGE_NAME##[_0-9]*}" -a -z "$TAG_PREFIX" ]; then
1273                 TAG_PREFIX=tag_
1274         fi
1275
1276         # NOTE: CVS tags may must not contain the characters `$,.:;@'
1277         TAGVER=$(echo $TAG_PREFIX$PACKAGE_NAME-$PACKAGE_VERSION-$PACKAGE_RELEASE | tr '[.@]' '[_#]')
1278
1279         # Remove #kernel.version_release from TAGVER because tagging sources
1280         # could occur with different kernel-headers than kernel-headers used at build time.
1281         # besides, %{_kernel_ver_str} is not expanded.
1282
1283         # TAGVER=auto-ac-madwifi-ng-0-0_20070225_1#%{_kernel_ver_str}
1284         # TAGVER=auto-ac-madwifi-ng-0-0_20070225_1
1285
1286         TAGVER=${TAGVER%#*}
1287         echo -n "$TAGVER"
1288 }
1289
1290 tag_files() {
1291         TAG_FILES="$@"
1292
1293         if [ -n "$DEBUG" ]; then
1294                 set -x
1295                 set -v
1296         fi
1297
1298         echo "Version: $PACKAGE_VERSION"
1299         echo "Release: $PACKAGE_RELEASE"
1300
1301         local TAGVER
1302         if [ "$TAG_VERSION" = "yes" ]; then
1303                 TAGVER=`make_tagver`
1304                 echo "tag: $TAGVER"
1305         fi
1306         if [ -n "$TAG" ]; then
1307                 echo "tag: $TAG"
1308         fi
1309
1310         local OPTIONS="tag $CVS_FORCE"
1311
1312         local _tag=$TAG
1313         if [ "$TAG_VERSION" = "yes" ]; then
1314                 _tag=$TAGVER
1315         fi;
1316
1317         cd "$PACKAGE_DIR"
1318
1319         if [ "$TAG_VERSION" = "yes" ]; then
1320                 update_shell_title "tag sources: $TAGVER"
1321                 git $OPTIONS $TAGVER || exit
1322                 git push $CVS_FORCE $REMOTE_PLD tag $TAGVER || Exit_error err_remote_problem $REMOTE_PLD
1323         fi
1324         if [ -n "$TAG" ]; then
1325                 update_shell_title "tag sources: $TAG"
1326                 git $OPTIONS $TAG $chunk || exit
1327                 git push $CVS_FORCE $REMOTE_PLD tag $TAG || Exit_error err_remote_problem $REMOTE_PLD
1328         fi
1329 }
1330
1331 branch_files() {
1332         TAG=$1
1333         echo "Git branch: $TAG"
1334         shift
1335
1336         if [ -n "$DEBUG" ]; then
1337                 set -x
1338                 set -v
1339         fi
1340
1341         local OPTIONS="branch $CVS_FORCE"
1342
1343         cd "$PACKAGE_DIR"
1344         git $OPTIONS $TAG || exit
1345 }
1346
1347
1348 # this function should exit early if package can't be built for this arch
1349 # this avoids unneccessary BR filling.
1350 check_buildarch() {
1351         local out ret
1352         out=$(minirpm --short-circuit -bp --define "'prep exit 0'" --nodeps $SPECFILE 2>&1)
1353         ret=$?
1354         if [ $ret -ne 0 ]; then
1355                 echo >&2 "$out"
1356                 exit $ret
1357         fi
1358 }
1359
1360 # from relup.sh
1361 set_release() {
1362         local specfile="$1"
1363         local rel="$2"
1364         local newrel="$3"
1365         sed -i -e "
1366                 s/^\(%define[ \t]\+_\?rel[ \t]\+\)$rel\$/\1$newrel/
1367                 s/^\(Release:[ \t]\+\)$rel\$/\1$newrel/
1368         " $specfile
1369 }
1370
1371 set_version() {
1372         local specfile="$1"
1373         local ver="$2" subver=$ver
1374         local newver="$3" newsubver=$newver
1375
1376         # try handling subver, everything that's not numeric-dotted in version
1377         if grep -Eq '%define\s+subver' $specfile; then
1378                 subver=$(echo "$ver" | sed -re 's,^[0-9.]+,,')
1379                 ver=${ver%$subver}
1380                 newsubver=$(echo "$newver" | sed -re 's,^[0-9.]+,,')
1381                 newver=${newver%$newsubver}
1382         fi
1383         sed -i -e "
1384                 s/^\(%define[ \t]\+_\?ver[ \t]\+\)$ver\$/\1$newver/
1385                 s/^\(%define[ \t]\+subver[ \t]\+\)$subver\$/\1$newsubver/
1386                 s/^\(Version:[ \t]\+\)$ver\$/\1$newver/
1387         " $specfile
1388 }
1389
1390 try_upgrade() {
1391         if [ -n "$TRY_UPGRADE" ]; then
1392                 local TNOTIFY TNEWVER TOLDVER
1393                 update_shell_title "build_package: try_upgrade"
1394
1395                 cd "$PACKAGE_DIR"
1396                 
1397                 if [ "$UPGRADE_VERSION" ]; then
1398                         TNEWVER=$UPGRADE_VERSION
1399                 else
1400                         if [ -n "$FLOAT_VERSION" ]; then
1401                                 TNOTIFY=$($APPDIR/pldnotify.awk ${BE_VERBOSE:+-vDEBUG=1} $SPECFILE -n) || exit 1
1402                         else
1403                                 TNOTIFY=$($APPDIR/pldnotify.awk ${BE_VERBOSE:+-vDEBUG=1} $SPECFILE) || exit 1
1404                         fi
1405
1406                         # pldnotify.awk does not set exit codes, but it has match for ERROR
1407                         # in output which means so.
1408                         if [[ "$TNOTIFY" = *ERROR* ]]; then
1409                                 echo >&2 "$TNOTIFY"
1410                                 exit 1
1411                         fi
1412
1413                         TNEWVER=$(echo $TNOTIFY | awk '{ match($4,/\[NEW\]/); print $5 }')
1414                 fi
1415
1416                 if [ -n "$TNEWVER" ]; then
1417                         TOLDVER=`echo $TNOTIFY | awk '{ print $3; }'`
1418                         echo "New version found, updating spec file from $TOLDVER to version $TNEWVER"
1419                         if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
1420                                 cp -f $SPECFILE $SPECFILE.bak
1421                         fi
1422                         chmod +w $SPECFILE
1423                         set_release $SPECFILE $PACKAGE_RELEASE 1
1424                         set_version $SPECFILE $PACKAGE_VERSION $TNEWVER
1425                         parse_spec
1426                         if [ "$PACKAGE_VERSION" != "$TNEWVER" ]; then
1427                                 echo >&2 "Upgrading version failed, you need to update spec yourself"
1428                                 exit 1
1429                         fi
1430                         return 1
1431                 fi
1432         fi
1433         return 0
1434 }
1435
1436 build_package() {
1437         update_shell_title "build_package"
1438         if [ -n "$DEBUG" ]; then
1439                 set -x
1440                 set -v
1441         fi
1442
1443         cd "$PACKAGE_DIR"
1444
1445         case "$COMMAND" in
1446                 build )
1447                         BUILD_SWITCH="-ba" ;;
1448                 build-binary )
1449                         BUILD_SWITCH="-bb" ;;
1450                 build-source )
1451                         BUILD_SWITCH="-bs --nodeps" ;;
1452                 build-prep )
1453                         BUILD_SWITCH="-bp --nodeps" ;;
1454                 build-build )
1455                         BUILD_SWITCH="-bc" ;;
1456                 build-install )
1457                         BUILD_SWITCH="-bi" ;;
1458                 build-list )
1459                         BUILD_SWITCH="-bl" ;;
1460
1461         esac
1462
1463         update_shell_title "build_package: $COMMAND"
1464         if [ -n "$LOGFILE" ]; then
1465                 LOG=`eval echo $LOGFILE`
1466                 if [ -d "$LOG" ]; then
1467                         echo "Log file $LOG is a directory."
1468                         echo "Parse error in the spec?"
1469                         Exit_error err_build_fail
1470                 fi
1471                 if [ -n "$LASTLOG_FILE" ]; then
1472                         echo "LASTLOG=$LOG" > $LASTLOG_FILE
1473                 fi
1474                 RES_FILE=$(tempfile)
1475                 local specfile=$(insert_gitlog $SPECFILE)
1476
1477                 (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
1478                 RETVAL=`cat $RES_FILE`
1479                 rm $RES_FILE $specfile
1480                 if [ -n "$LOGDIROK" ] && [ -n "$LOGDIRFAIL" ]; then
1481                         if [ "$RETVAL" -eq "0" ]; then
1482                                 mv $LOG $LOGDIROK
1483                         else
1484                                 mv $LOG $LOGDIRFAIL
1485                         fi
1486                 fi
1487         else
1488                 BRLISTFILE=$(tempfile)
1489                 eval ${NICE_COMMAND} $RPMBUILD $TARGET_SWITCH $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $RPMBUILDOPTS $BCOND --define \'_specdir $PACKAGE_DIR\' --define \'_sourcedir $PACKAGE_DIR\' $SPECFILE 2>$BRLISTFILE
1490                 RETVAL=$?
1491         fi
1492         if [ "$RETVAL" -ne "0" ]; then
1493                 if [ -n "$TRY_UPGRADE" ]; then
1494                         echo "\nUpgrade package to new version failed."
1495                         if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
1496                                 echo "Restoring old spec file."
1497                                 mv -f $SPECFILE.bak $SPECFILE
1498                         fi
1499                         echo ""
1500                 fi
1501                 # try to nicely show package list, to just copy&paste it to poldek or so...
1502                 cat $BRLISTFILE
1503                 BRLIST=$(awk 'BEGIN{ORS=" ";} NR>1 {print $1;}' $BRLISTFILE)
1504                 echo
1505                 echo "To install packages type:"
1506                 echo "poldek -ivh $BRLIST"
1507                 echo
1508                 echo "In poldek, copy these command:"
1509                 echo "install $BRLIST"
1510                 echo
1511                 rm $BRLISTFILE
1512                 Exit_error err_build_fail
1513         fi
1514         unset BUILD_SWITCH
1515 }
1516
1517 nourl() {
1518         echo "$@" | sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g'
1519 }
1520
1521 install_required_packages() {
1522         run_poldek -vi $1
1523         return $?
1524 }
1525
1526 find_spec_bcond() { # originally from /usr/lib/rpm/find-spec-bcond
1527         local SPEC="$1"
1528         awk -F"\n" '
1529         /^%changelog/ { exit }
1530         /^%bcond_with/{
1531                 match($0, /bcond_with(out)?[ \t]+[_a-zA-Z0-9]+/);
1532                 bcond = substr($0, RSTART + 6, RLENGTH - 6);
1533                 gsub(/[ \t]+/, "_", bcond);
1534                 print bcond
1535         }' $SPEC | LC_ALL=C sort -u
1536 }
1537
1538 process_bcondrc() {
1539         # expand bconds from ~/.bcondrc
1540         # The file structure is like gentoo's package.use:
1541         # ---
1542         # * -selinux
1543         # samba -mysql -pgsql
1544         # w32codec-installer license_agreement
1545         # php +mysqli
1546         # ---
1547         if ([ -f $HOME/.bcondrc ] || ([ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ])); then
1548                 :
1549         else
1550                 return
1551         fi
1552
1553         SN=${SPECFILE%%\.spec}
1554
1555         local bcondrc=$HOME/.bcondrc
1556         [ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ] && bcondrc=$HOME_ETC/.bcondrc
1557
1558         local bcond_avail=$(find_spec_bcond $SPECFILE)
1559
1560         while read pkg flags; do
1561                 # ignore comments
1562                 [[ "$pkg" == \#* ]] && continue
1563
1564                 # any package or current package?
1565                 if [ "$pkg" = "*" ] || [ "$pkg" = "$PACKAGE_NAME" ] || [ "$pkg" = "$SN" ]; then
1566                         for flag in $flags; do
1567                                 local opt=${flag#[+-]}
1568
1569                                 # use only flags which are in this package.
1570                                 if [[ $bcond_avail = *${opt}* ]]; then
1571                                         if [[ $flag = -* ]]; then
1572                                                 if [[ $BCOND != *--with?${opt}* ]]; then
1573                                                         BCOND="$BCOND --without $opt"
1574                                                 fi
1575                                         else
1576                                                 if [[ $BCOND != *--without?${opt}* ]]; then
1577                                                         BCOND="$BCOND --with $opt"
1578                                                 fi
1579                                         fi
1580                                 fi
1581                         done
1582                 fi
1583         done < $bcondrc
1584         update_shell_title "parse ~/.bcondrc: DONE!"
1585 }
1586
1587 set_bconds_values() {
1588         update_shell_title "set bcond values"
1589
1590         AVAIL_BCONDS_WITHOUT=""
1591         AVAIL_BCONDS_WITH=""
1592
1593         if grep -Eq '^# *_with' ${SPECFILE}; then
1594                 echo >&2 "ERROR: This spec has old style bconds."
1595                 exit 1
1596         fi
1597
1598         if ! grep -q '^%bcond' ${SPECFILE}; then
1599                 return
1600         fi
1601
1602         local bcond_avail=$(find_spec_bcond $SPECFILE)
1603         process_bcondrc "$SPECFILE"
1604
1605         update_shell_title "parse bconds"
1606
1607         local opt bcond
1608         for opt in $bcond_avail; do
1609                 case "$opt" in
1610                 without_*)
1611                         bcond=${opt#without_}
1612                         case "$BCOND" in
1613                         *--without?${bcond}*)
1614                                 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT <$bcond>"
1615                                 ;;
1616                         *)
1617                                 AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT $bcond"
1618                                 ;;
1619                         esac
1620                         ;;
1621                 with_*)
1622                         bcond=${opt#with_}
1623                         case "$BCOND" in
1624                         *--with?${bcond}*)
1625                                 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH <$bcond>"
1626                                 ;;
1627                         *)
1628                                 AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH $bcond"
1629                                 ;;
1630                         esac
1631                         ;;
1632                 *)
1633                         echo >&2 "ERROR: unexpected '$opt' in set_bconds_values"
1634                         exit 1
1635                         ;;
1636                 esac
1637         done
1638 }
1639
1640 run_sub_builder() {
1641         package_name="${1}"
1642         update_shell_title "run_sub_builder $package_name"
1643         #
1644         # No i tutaj bym chcia³ zrobiæ sztuczn± inteligencjê, która spróbuje tego
1645         # pakieta zbudowaæ. Aktualnie niewiele dziala, bo generalnie nie widze do
1646         # konca algorytmu... Ale damy rade. :) Na razie po prostu sie wyjebie tak samo
1647         # jakby nie bylo tego kawalka kodu.
1648         #
1649         # Update: Poprawi³em parê rzeczy i zaczê³o generowaæ pakiety spoza zadanej listy.
1650         #         Jednym s³owem budowanie niespoldkowanych zale¿no¶ci dzia³a w paru przypadkach.
1651         #
1652         #
1653         # y0shi.
1654         # kurwa. translate that ^^^^
1655
1656         parent_spec_name=''
1657
1658         # Istnieje taki spec? ${package}.spec
1659         if [ -f "${PACKAGE_DIR}/${package}.spec" ]; then
1660                 parent_spec_name=${package}.spec
1661         elif [ -f "${PACKAGE_DIR}/$(echo ${package_name} | sed -e s,-devel.*,,g -e s,-static,,g).spec" ]; then
1662                 parent_spec_name="$(echo ${package_name} | sed -e s,-devel.*,,g -e s,-static,,g).spec"
1663         else
1664                 for provides_line in $(grep -r ^Provides:.*$package ${PACKAGE_DIR}); do
1665                         echo $provides_line
1666                 done
1667         fi
1668
1669         if [ "${parent_spec_name}" != "" ]; then
1670                 spawn_sub_builder $parent_spec_name
1671         fi
1672         NOT_INSTALLED_PACKAGES="$NOT_INSTALLED_PACKAGES $package_name"
1673 }
1674
1675 spawn_sub_builder() {
1676         package_name="${1}"
1677         update_shell_title "spawn_sub_builder $package_name"
1678
1679         sub_builder_opts=''
1680         if [ "${FETCH_BUILD_REQUIRES}" = "yes" ]; then
1681                 sub_builder_opts="${sub_builder_opts} -R"
1682         fi
1683         if [ "${REMOVE_BUILD_REQUIRES}" = "nice" ]; then
1684                 sub_builder_opts="${sub_builder_opts} -RB"
1685         elif [ "${REMOVE_BUILD_REQUIRES}" = "force" ]; then
1686                 sub_builder_opts="${sub_builder_opts} -FRB"
1687         fi
1688         if [ "${UPDATE_POLDEK_INDEXES}" = "yes" ]; then
1689                 sub_builder_opts="${sub_builder_opts} -Upi"
1690         fi
1691
1692         cd "${PACKAGE_DIR}"
1693         ./builder ${sub_builder_opts} "$@"
1694 }
1695
1696 remove_build_requires() {
1697         if [ "$INSTALLED_PACKAGES" != "" ]; then
1698                 case "$REMOVE_BUILD_REQUIRES" in
1699                         "force")
1700                                 run_poldek --noask -ve $INSTALLED_PACKAGES
1701                                 ;;
1702                         "nice")
1703                                 run_poldek --ask -ve $INSTALLED_PACKAGES
1704                                 ;;
1705                         *)
1706                                 echo You may want to manually remove following BuildRequires fetched:
1707                                 echo $INSTALLED_PACKAGES
1708                                 echo "Try poldek -e \`cat $(pwd)/.${SPECFILE}_INSTALLED_PACKAGES\`"
1709                                 ;;
1710                 esac
1711         fi
1712 }
1713
1714 display_bconds() {
1715         if [ "$AVAIL_BCONDS_WITH" -o "$AVAIL_BCONDS_WITHOUT" ]; then
1716                 if [ "$BCOND" ]; then
1717                         echo ""
1718                         echo "Building $SPECFILE with the following conditional flags:"
1719                         echo -n "$BCOND"
1720                 else
1721                         echo ""
1722                         echo "No conditional flags passed"
1723                 fi
1724                 echo ""
1725                 echo "from available:"
1726                 echo "--with   :\t$AVAIL_BCONDS_WITH"
1727                 echo "--without:\t$AVAIL_BCONDS_WITHOUT"
1728                 echo ""
1729         fi
1730 }
1731
1732 display_branches() {
1733         echo -n "Available branches: "
1734         git branch -r | grep "^  ${REMOTE_PLD}" | grep -v ${REMOTE_PLD}/HEAD | sed "s#^ *${REMOTE_PLD}/##" | xargs
1735 }
1736
1737 # checks a given list of packages/files/provides agains current rpmdb.
1738 # outputs all dependencies which current rpmdb doesn't satisfy.
1739 # input can be either STDIN or parameters
1740 _rpm_prov_check() {
1741         local DEPS
1742
1743         if [ $# -gt 0 ]; then
1744                 DEPS="$@"
1745         else
1746                 DEPS=$(cat)
1747         fi
1748
1749         DEPS=$(LANG=C rpm -q --whatprovides $DEPS 2>&1 | awk '/^(error:|no package provides)/ { print }')
1750
1751         # packages
1752         echo "$DEPS" | awk '/^no package provides/ { print $NF }'
1753
1754         # other deps (files)
1755         echo "$DEPS" | awk -F: '/^error:.*No such file/{o = $2; gsub("^ file ", "", o); print o}'
1756 }
1757
1758 # checks if given package/files/provides exists in rpmdb.
1759 # input can be either stdin or parameters
1760 # returns packages which are present in the rpmdb
1761 _rpm_cnfl_check() {
1762         local DEPS
1763
1764         if [ $# -gt 0 ]; then
1765                 DEPS="$@"
1766         else
1767                 DEPS=$(cat)
1768         fi
1769
1770         LANG=C rpm -q --whatprovides $DEPS 2>/dev/null | awk '!/no package provides/ { print }'
1771 }
1772
1773 # install deps via information from 'rpm-getdeps' or 'rpm --specsrpm'
1774 install_build_requires_rpmdeps() {
1775         if [ "$FETCH_BUILD_REQUIRES_RPMGETDEPS" = "yes" ]; then
1776                 # TODO: Conflicts list doesn't check versions
1777                 local CNFL=$(rpm-getdeps $BCOND $SPECFILE 2> /dev/null | awk '/^\-/ { print $3 } ' | _rpm_cnfl_check | xargs)
1778                 local DEPS=$(rpm-getdeps $BCOND $SPECFILE 2> /dev/null | awk '/^\+/ { print $3 } ' | _rpm_prov_check | xargs)
1779         fi
1780         if [ "$FETCH_BUILD_REQUIRES_RPMSPECSRPM" = "yes" ]; then
1781                 local CNFL=$(rpm -q --specsrpm --conflicts $BCOND $SPECFILE | awk '{print $1}' | _rpm_cnfl_check | xargs)
1782                 local DEPS=$(rpm -q --specsrpm --requires $BCOND $SPECFILE | awk '{print $1}' | _rpm_prov_check | xargs)
1783         fi
1784
1785         if [ -n "$CNFL" ] || [ -n "$DEPS" ]; then
1786                 echo "fetch BuildRequires: install [$DEPS]; remove [$CNFL]"
1787                 update_shell_title "poldek: install [$DEPS]; remove [$CNFL]"
1788                 $SU_SUDO /usr/bin/poldek -q --update || $SU_SUDO /usr/bin/poldek -q --upa
1789         fi
1790         if [ -n "$CNFL" ]; then
1791                 update_shell_title "uninstall conflicting packages: $CNFL"
1792                 echo "Trying to uninstall conflicting packages ($CNFL):"
1793                 $SU_SUDO /usr/bin/poldek --noask --nofollow -ev $CNFL
1794         fi
1795
1796         while [ "$DEPS" ]; do
1797                         update_shell_title "install deps: $DEPS"
1798                         echo "Trying to install dependencies ($DEPS):"
1799                         local log=.${SPECFILE}_poldek.log
1800                         LANG=C $SU_SUDO /usr/bin/poldek --noask --caplookup -uGqQ $DEPS | tee $log
1801                         failed=$(awk '/^error:/{a=$2; sub(/^error: /, "", a); sub(/:$/, "", a); print a}' $log)
1802                         rm -f $log
1803                         local ok
1804                         if [ -n "$failed" ]; then
1805                                 for package in $failed; do
1806                                         spawn_sub_builder -bb $(depspecname $package) && ok="$ok $package"
1807                                 done
1808                                 DEPS="$ok"
1809                         else
1810                                 DEPS=""
1811                         fi
1812         done
1813 }
1814
1815 fetch_build_requires()
1816 {
1817         if [ "${FETCH_BUILD_REQUIRES}" != "yes" ]; then
1818                 return
1819         fi
1820
1821         update_shell_title "fetch build requires"
1822         if [ "$FETCH_BUILD_REQUIRES_RPMGETDEPS" = "yes" ] || [ "$FETCH_BUILD_REQUIRES_RPMSPECSRPM" = "yes" ]; then
1823                 install_build_requires_rpmdeps
1824                 return
1825         fi
1826
1827                 # XXX is this ugliest code written in human history still needed?
1828                 echo "All packages installed by fetch_build_requires() are written to:"
1829                 echo "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES"
1830                 echo ""
1831                 echo "If anything fails, you may get rid of them by executing:"
1832                 echo "poldek -e \`cat `pwd`/.${SPECFILE}_INSTALLED_PACKAGES\`"
1833                 echo ""
1834                 echo > `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
1835                 for package_item in $(cat $SPECFILE | grep -B100000 ^%changelog|grep -v ^#|grep BuildRequires|grep -v ^-|sed -e "s/^.*BuildRequires://g"|awk '{print $1}'|sed -e s,perl\(,perl-,g -e s,::,-,g -e s,\(.*\),,g -e s,%{,,g -e s,},,g|grep -v OpenGL-devel|sed -e s,sh-utils,coreutils,g -e s,fileutils,coreutils,g -e s,textutils,coreutils,g -e s,kgcc_package,gcc,g -e s,\),,g)
1836                 do
1837                         package_item=$(echo $package_item|sed -e s,rpmbuild,rpm-build,g |sed -e s,__perl,perl,g |sed -e s,gasp,binutils-gasp,g -e s,binutils-binutils,binutils,g -e s,apxs,apache,g|sed -e s,apache\(EAPI\)-devel,apache-devel,g -e s,kernel-headers\(netfilter\),kernel-headers,g -e s,awk,mawk,g -e s,mmawk,mawk,g -e s,motif,openmotif,g -e s,openopenmotif,openmotif,g)
1838                         GO="yes"
1839                         package=$(basename "$package_item"|sed -e "s/}$//g")
1840                         COND_ARCH_TST=$(cat $SPECFILE|grep -B1 BuildRequires|grep -B1 $package|grep ifarch|sed -e "s/^.*ifarch//g")
1841                         mach=$(uname -m)
1842
1843                         COND_TST=`cat $SPECFILE|grep BuildRequires|grep "$package"`
1844                         if `echo $COND_TST|grep -q '^BuildRequires:'`; then
1845                                 if [ "$COND_ARCH_TST" != "" ] && [ "`echo $COND_ARCH_TST|sed -e "s/i.86/ix86/g"`" != "`echo $mach|sed -e "s/i.86/ix86/g"`" ]; then
1846                                         GO="yes"
1847                                 fi
1848                         # bcond:
1849                         else
1850                                 COND_NAME=`echo $COND_TST|sed -e s,:BuildRequires:.*$,,g`
1851                                 GO=""
1852                                 # %{without}
1853                                 if `echo $COND_TST|grep -q 'without_'`; then
1854                                         COND_NAME=`echo $COND_NAME|sed -e s,^.*without_,,g`
1855                                         if `echo $COND_TST|grep -q !`; then
1856                                                 COND_STATE="with"
1857                                         else
1858                                                 COND_STATE="wout"
1859                                         fi
1860                                         COND_WITH=`echo $AVAIL_BCONDS_WITH|grep "<$COND_NAME>"`
1861                                         COND_WITHOUT=`echo $AVAIL_BCONDS_WITHOUT|grep "<$COND_NAME>"`
1862                                         if [ -n "$COND_WITHOUT" ] || [ -z "$COND_WITH" ]; then
1863                                                 COND_ARGV="wout"
1864                                         else
1865                                                 COND_ARGV="with"
1866                                         fi
1867                                 # %{with}
1868                                 elif `echo $COND_TST|grep -q 'with_'`; then
1869                                         COND_NAME=`echo $COND_NAME|sed -e s,^.*with_,,g`
1870                                         if `echo $COND_TST|grep -q !`; then
1871                                                 COND_STATE="wout"
1872                                         else
1873                                                 COND_STATE="with"
1874                                         fi
1875                                         COND_WITH=`echo $AVAIL_BCONDS_WITH|grep "<$COND_NAME>"`
1876                                         COND_WITHOUT=`echo $AVAIL_BCONDS_WITHOUT|grep "<$COND_NAME>"`
1877                                         if [ -n "$COND_WITH" ] || [ -z "$COND_WITHOUT" ]; then
1878                                                 COND_ARGV="with"
1879                                         else
1880                                                 COND_ARGV="wout"
1881                                         fi
1882                                 fi
1883                                 RESULT="${COND_STATE}-${COND_ARGV}"
1884                                 case "$RESULT" in
1885                                         "with-wout" | "wout-with" )
1886                                                 GO=""
1887                                                 ;;
1888                                         "wout-wout" | "with-with" )
1889                                                 GO="yes"
1890                                                 ;;
1891                                         * )
1892                                                 echo "Action '$RESULT' was not defined for package '$package_item'"
1893                                                 GO="yes"
1894                                                 ;;
1895                                 esac
1896                         fi
1897
1898                         if [ "$GO" = "yes" ]; then
1899                                 if [ "`rpm -q $package|sed -e "s/$package.*/$package/g"`" != "$package" ]; then
1900                                         echo "Testing if $package has subrequirements..."
1901                                         run_poldek -t -i $package --dumpn=".$package-req.txt"
1902                                         if [ -f ".$package-req.txt" ]; then
1903                                                 for package_name in `cat ".$package-req.txt"|grep -v ^#`
1904                                                 do
1905                                                         if [ "$package_name" = "$package" ]; then
1906                                                                 echo "Installing BuildRequired package:\t$package_name"
1907                                                                 update_shell_title "Installing BuildRequired package: ${package_name}"
1908                                                                 install_required_packages $package
1909                                                         else
1910                                                                 echo "Installing (sub)Required package:\t$package_name"
1911                                                                 update_shell_title "Installing (sub)Required package: ${package_name}"
1912                                                                 install_required_packages $package_name
1913                                                         fi
1914                                                         case $? in
1915                                                                 0)
1916                                                                         INSTALLED_PACKAGES="$package_name $INSTALLED_PACKAGES"
1917                                                                         echo $package_name >> `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
1918                                                                         ;;
1919                                                                 *)
1920                                                                         echo "Attempting to run spawn sub - builder..."
1921                                                                         echo "Package installation failed:\t$package_name"
1922                                                                         run_sub_builder $package_name
1923                                                                         if [ $? -eq 0 ]; then
1924                                                                                 install_required_packages $package_name
1925                                                                                 case $? in
1926                                                                                         0)
1927                                                                                                 INSTALLED_PACKAGES="$package_name $INSTALLED_PACKAGES"
1928                                                                                                 echo $package_name >> `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
1929                                                                                                 ;;
1930                                                                                         *)
1931                                                                                                 NOT_INSTALLED_PACKAGES="$package_name $NOT_INSTALLED_PACKAGES"
1932                                                                                                 ;;
1933                                                                                 esac
1934                                                                         fi
1935                                                                         ;;
1936                                                         esac
1937                                                 done
1938                                                 rm -f ".$package-req.txt"
1939                                         else
1940                                                 echo "Attempting to run spawn sub - builder..."
1941                                                 echo "Package installation failed:\t$package"
1942                                                 run_sub_builder $package
1943                                                 if [ $? -eq 0 ]; then
1944                                                         install_required_packages $package
1945                                                         case $? in
1946                                                                 0)
1947                                                                         INSTALLED_PACKAGES="$package_name $INSTALLED_PACKAGES"
1948                                                                         echo $package_name >> `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
1949                                                                         ;;
1950                                                                 *)
1951                                                                         NOT_INSTALLED_PACKAGES="$package_name $NOT_INSTALLED_PACKAGES"
1952                                                                         ;;
1953                                                         esac
1954                                                 fi
1955                                         fi
1956                                 else
1957                                         echo "Package $package is already installed. BuildRequirement satisfied."
1958                                 fi
1959                         fi
1960                 done
1961                 if [ "$NOT_INSTALLED_PACKAGES" != "" ]; then
1962                         echo >&2 "Unable to install following packages and their dependencies:"
1963                         for pkg in "$NOT_INSTALLED_PACKAGES"
1964                         do
1965                                 echo $pkg
1966                         done
1967                         remove_build_requires
1968                         exit 8
1969                 fi
1970 }
1971
1972 init_rpm_dir() {
1973         local TOP_DIR=$(eval $RPM $RPMOPTS --eval '%{_topdir}')
1974         local rpmdir=$(eval $RPM $RPMOPTS --eval '%{_rpmdir}')
1975         local buildir=$(eval $RPM $RPMOPTS --eval '%{_builddir}')
1976         local srpmdir=$(eval $RPM $RPMOPTS --eval '%{_srcrpmdir}')
1977         local tmp
1978
1979         echo "Initializing rpm directories to $TOP_DIR from $GIT_SERVER"
1980         mkdir -p $TOP_DIR $rpmdir $buildir $srpmdir
1981
1982         cd "$TOP_DIR"
1983         if [ ! -e ../scripts ]; then
1984                 git clone  ${GIT_SERVER}:${PACKAGES_DIR}/scripts.git ../scripts
1985         fi
1986         for a in dropin md5 adapter builder mirrors {relup,compile,repackage,pearize}.sh pldnotify.awk; do
1987                 ln -s ../scripts/$a .
1988         done
1989         init_builder
1990 }
1991
1992 mr_proper() {
1993         init_builder
1994         NOCVSSPEC="yes"
1995         DONT_PRINT_REVISION="yes"
1996
1997         # remove spec and sources
1998         $RPMBUILD --clean --rmsource --rmspec --nodeps --define "_specdir $PACKAGE_DIR" --define "_sourcedir $PACKAGE_DIR" $PACKAGE_DIR/$SPECFILE
1999         rm -rf $PACKAGE_DIR/.git .gitignore
2000         rmdir --ignore-fail-on-non-empty $PACKAGE_DIR
2001 }
2002
2003 #---------------------------------------------
2004 # main()
2005
2006 if [ $# = 0 ]; then
2007         usage
2008         exit 1
2009 fi
2010
2011 while [ $# -gt 0 ]; do
2012         case "${1}" in
2013                 -5 | --update-md5)
2014                         COMMAND="update_md5"
2015                         NODIST="yes"
2016                         NOCVSSPEC="yes"
2017                         shift ;;
2018                 -a5 | --add-md5 )
2019                         COMMAND="update_md5"
2020                         NODIST="yes"
2021                         NOCVSSPEC="yes"
2022                         ADD5="yes"
2023                         shift ;;
2024                 -n5 | --no-md5 )
2025                         NO5="yes"
2026                         shift ;;
2027                 -D | --debug )
2028                         DEBUG="yes"; shift ;;
2029                 -V | --version )
2030                         COMMAND="version"; shift ;;
2031                 --short-version )
2032                         COMMAND="short-version"; shift ;;
2033                 -a | --add_cvs)
2034                         COMMAND="add_cvs";
2035                         shift ;;
2036                 --all-branches )
2037                         ALL_BRANCHES="yes"
2038                         shift ;;
2039                 -b | -ba | --build )
2040                         COMMAND="build"; shift ;;
2041                 -bb | --build-binary )
2042                         COMMAND="build-binary"; shift ;;
2043                 -bc )
2044                         COMMAND="build-build"; shift ;;
2045                 -bi )
2046                         COMMAND="build-install"; shift ;;
2047                 -bl )
2048                         COMMAND="build-list"; shift ;;
2049                 -bp | --build-prep )
2050                         COMMAND="build-prep"; shift ;;
2051                 -bs | --build-source )
2052                         COMMAND="build-source"; shift ;;
2053                 -B | --branch )
2054                         COMMAND="branch"; shift; TAG="${1}"; shift;;
2055                 -c | --clean )
2056                         CLEAN="--clean"; shift ;;
2057                 -cf | --cvs-force )
2058                         CVS_FORCE="-f"; shift;;
2059                 --depth )
2060                         DEPTH="--depth=$2"
2061                         shift 2
2062                         ;;
2063                 -g | --get )
2064                         COMMAND="get"; shift ;;
2065                 -h | --help )
2066                         COMMAND="usage"; shift ;;
2067                 --ftp )
2068                         PROTOCOL="ftp"; shift ;;
2069                 --http )
2070                         PROTOCOL="http"; shift ;;
2071                 -j)
2072                         RPMOPTS="${RPMOPTS} --define \"_smp_mflags -j$2\""
2073                         shift 2
2074                         ;;
2075                 -j[0-9]*)
2076                         RPMOPTS="${RPMOPTS} --define \"_smp_mflags $1\""
2077                         shift
2078                         ;;
2079                 -l | --logtofile )
2080                         shift; LOGFILE="${1}"; shift ;;
2081                 -ni| --nice )
2082                         shift; DEF_NICE_LEVEL=${1}; shift ;;
2083                 -ske | --skip-existing-files)
2084                         SKIP_EXISTING_FILES="yes"; shift ;;
2085                 -m | --mr-proper )
2086                         COMMAND="mr-proper"; shift ;;
2087                 -ncs | --no-cvs-specs )
2088                         NOCVSSPEC="yes"; shift ;;
2089                 -nd | --no-distfiles )
2090                         NODIST="yes"; shift ;;
2091                 -nm | --no-mirrors )
2092                         NOMIRRORS="yes"; shift ;;
2093                 -nu | --no-urls )
2094                         NOURLS="yes"; shift ;;
2095                 -ns | --no-srcs )
2096                         NOSRCS="yes"; shift ;;
2097                 -ns0 | --no-source0 )
2098                         NOSOURCE0="yes"; shift ;;
2099                 -nn | --no-net )
2100                         NOCVSSPEC="yes"
2101                         NODIST="yes"
2102                         NOMIRRORS="yes"
2103                         NOURLS="yes"
2104                         NOSRCS="yes"
2105                         ALWAYS_CVSUP="no"
2106                         shift;;
2107                 -pm | --prefer-mirrors )
2108                         PREFMIRRORS="yes"
2109                         shift;;
2110                 --no-init )
2111                         NOINIT="yes"
2112                         shift;;
2113                 --opts )
2114                         shift; RPMOPTS="${RPMOPTS} ${1}"; shift ;;
2115                 --nopatch | -np )
2116                         shift; RPMOPTS="${RPMOPTS} --define \"patch${1} : ignoring patch${1}; exit 1; \""; shift ;;
2117                 --skip-patch | -sp )
2118                         shift; RPMOPTS="${RPMOPTS} --define \"patch${1} : skiping patch${1}\""; shift ;;
2119                 --topdir)
2120                         RPMOPTS="${RPMOPTS} --define \"_topdir $2\""
2121                         shift 2
2122                         ;;
2123                 --with | --without )
2124                         case $GROUP_BCONDS in
2125                                 "yes")
2126                                         COND=${1}
2127                                         shift
2128                                         # XXX: broken: ./builder -bb ucspi-tcp.spec --without mysql
2129                                         while ! `echo ${1}|grep -qE '(^-|spec)'`
2130                                         do
2131                                                 BCOND="$BCOND $COND $1"
2132                                                 shift
2133                                         done;;
2134                                 "no")
2135                                         if [[ "$2" = *,* ]]; then
2136                                                 for a in $(echo "$2" | tr , ' '); do
2137                                                         BCOND="$BCOND $1 $a"
2138                                                 done
2139                                         else
2140                                                 BCOND="$BCOND $1 $2"
2141                                         fi
2142                                         shift 2 ;;
2143                         esac
2144                         ;;
2145                 --target )
2146                         shift; TARGET="${1}"; shift ;;
2147                 --target=* )
2148                         TARGET=$(echo "${1}" | sed 's/^--target=//'); shift ;;
2149                 -q | --quiet )
2150                         QUIET="--quiet"; shift ;;
2151                 --date )
2152                         CVSDATE="${2}"; shift 2
2153                         date -d "$CVSDATE" > /dev/null 2>&1 || { echo >&2 "No valid date specified"; exit 3; }
2154                         ;;
2155                 -r | --cvstag )
2156                         CVSTAG="$2"
2157                         shift 2
2158                         ;;
2159                 -A)
2160                         shift
2161                         CVSTAG="master"
2162                         ;;
2163                 -R | --fetch-build-requires)
2164                         FETCH_BUILD_REQUIRES="yes"
2165                         NOT_INSTALLED_PACKAGES=
2166                         shift ;;
2167                 -RB | --remove-build-requires)
2168                         REMOVE_BUILD_REQUIRES="nice"
2169                         shift ;;
2170                 -FRB | --force-remove-build-requires)
2171                         REMOVE_BUILD_REQUIRES="force"
2172                         shift ;;
2173                 -sc | --sources-cvs)
2174                         COMMAND="list-sources-cvs"
2175                         shift ;;
2176                 -sd | --source-distfiles)
2177                         COMMAND="list-sources-distfiles"
2178                         shift ;;
2179                 -sdp | --source-distfiles-paths)
2180                         COMMAND="list-sources-distfiles-paths"
2181                         shift ;;
2182                 -sf | --source-files)
2183                         COMMAND="list-sources-files"
2184                         shift ;;
2185                 -lsp | --source-paths)
2186                         COMMAND="list-sources-local-paths"
2187                         shift ;;
2188                 -su | --source-urls)
2189                         COMMAND="list-sources-urls"
2190                         shift ;;
2191                 -Tvs | --tag-version-stable )
2192                         COMMAND="tag"
2193                         TAG="STABLE"
2194                         TAG_VERSION="yes"
2195                         shift;;
2196                 -Ts | --tag-stable )
2197                         COMMAND="tag"
2198                         TAG="STABLE"
2199                         TAG_VERSION="no"
2200                         shift;;
2201                 -Tv | --tag-version )
2202                         COMMAND="tag"
2203                         TAG=""
2204                         TAG_VERSION="yes"
2205                         shift;;
2206                 -Tp | --tag-prefix )
2207                         TAG_PREFIX="$2"
2208                         shift 2;;
2209                 -tt | --test-tag )
2210                         TEST_TAG="yes"
2211                         shift;;
2212                 -T | --tag )
2213                         COMMAND="tag"
2214                         shift
2215                         TAG="$1"
2216                         TAG_VERSION="no"
2217                         shift;;
2218                 -ir | --integer-release-only )
2219                         INTEGER_RELEASE="yes"
2220                         shift;;
2221                 -U | --update )
2222                         COMMAND="update_md5"
2223                         UPDATE="yes"
2224                         NOCVSSPEC="yes"
2225                         NODIST="yes"
2226                         shift ;;
2227                 -Upi | --update-poldek-indexes )
2228                         UPDATE_POLDEK_INDEXES="yes"
2229                         shift ;;
2230                 --init-rpm-dir)
2231                         COMMAND="init_rpm_dir"
2232                         shift ;;
2233                 -u | --try-upgrade )
2234                         TRY_UPGRADE="1"; shift ;;
2235                 --upgrade-version )
2236                         shift; UPGRADE_VERSION="$1"; shift;;
2237                 -un | --try-upgrade-with-float-version )
2238                         TRY_UPGRADE="1"; FLOAT_VERSION="1"; shift ;;
2239                 -v | --verbose )
2240                         BE_VERBOSE="1"; shift ;;
2241                 --define)
2242                         shift
2243                         MACRO="${1}"
2244                         shift
2245                         if echo "${MACRO}" | grep -q '\W'; then
2246                                 RPMOPTS="${RPMOPTS} --define \"${MACRO}\""
2247                         else
2248                                 VALUE="${1}"
2249                                 shift
2250                                 RPMOPTS="${RPMOPTS} --define \"${MACRO} ${VALUE}\""
2251                         fi
2252                         ;;
2253                 --alt_kernel)
2254                         shift
2255                         RPMOPTS="${RPMOPTS} --define \"alt_kernel $1\""
2256                         shift
2257                         ;;
2258                 --short-circuit)
2259                         RPMBUILDOPTS="${RPMBUILDOPTS} --short-circuit"
2260                         shift
2261                         ;;
2262                 --show-bconds | -show-bconds | -print-bconds | --print-bconds | -display-bconds | --display-bconds )
2263                         COMMAND="show_bconds"
2264                         shift
2265                         ;;
2266                 --show-bcond-args)
2267                         COMMAND="show_bcond_args"
2268                         shift
2269                         ;;
2270                 --show-avail-bconds)
2271                         COMMAND="show_avail_bconds"
2272                         shift
2273                         ;;
2274                 --nodeps)
2275                         shift
2276                         RPMOPTS="${RPMOPTS} --nodeps"
2277                         ;;
2278                 -debug)
2279                         RPMBUILDOPTS="${RPMBUILDOPTS} -debug"; shift
2280                         ;;
2281                 -*)
2282                         Exit_error err_invalid_cmdline "$1"
2283                         ;;
2284                 *)
2285                         SPECFILE=${1%/}; shift
2286                         # check if specname was passed as specname:cvstag
2287                         if [ "${SPECFILE##*:}" != "${SPECFILE}" ]; then
2288                                 CVSTAG="${SPECFILE##*:}"
2289                                 SPECFILE="${SPECFILE%%:*}"
2290                         fi
2291                         # always have SPECFILE ending with .spec extension
2292                         SPECFILE=${SPECFILE%%.spec}.spec
2293                         ASSUMED_NAME=$(basename ${SPECFILE%%.spec})
2294         esac
2295 done
2296
2297 if [ "$CVSTAG" ]; then
2298         # pass $CVSTAG used by builder to rpmbuild too, so specs could use it
2299         RPMOPTS="$RPMOPTS --define \"_cvstag $CVSTAG\""
2300 fi
2301
2302 if [ -n "$ALL_BRANCHES" -a -z "$DEPTH" ]; then
2303         echo >&2 "--all branches requires --depth <number>"
2304         Exit_error err_invalid_cmdline
2305 fi
2306
2307 if [ -n "$DEBUG" ]; then
2308         set -x
2309         set -v
2310 fi
2311
2312 if [ -n "$TARGET" ]; then
2313         case "$RPMBUILD" in
2314                 "rpmbuild")
2315                         TARGET_SWITCH="--target $TARGET" ;;
2316                 "rpm")
2317                         TARGET_SWITCH="--target=$TARGET" ;;
2318         esac
2319 fi
2320
2321 if [ "$SCHEDTOOL" != "no" ]; then
2322         NICE_COMMAND="$SCHEDTOOL"
2323 else
2324         NICE_COMMAND="nice -n ${DEF_NICE_LEVEL}"
2325 fi
2326
2327 update_shell_title "$COMMAND"
2328 case "$COMMAND" in
2329         "show_bconds")
2330                 init_builder
2331                 if [ -z "$SPECFILE" ]; then
2332                         Exit_error err_no_spec_in_cmdl
2333                 fi
2334                 get_spec > /dev/null
2335                 parse_spec
2336                 set_bconds_values
2337                 display_bconds
2338                 ;;
2339         "show_bcond_args")
2340                 init_builder
2341                 if [ -z "$SPECFILE" ]; then
2342                         Exit_error err_no_spec_in_cmdl
2343                 fi
2344                 get_spec > /dev/null
2345                 parse_spec
2346                 set_bconds_values
2347                 echo "$BCOND"
2348                 ;;
2349         "show_avail_bconds")
2350                 init_builder
2351                 if [ -z "$SPECFILE" ]; then
2352                         Exit_error err_no_spec_in_cmdl
2353                 fi
2354
2355                 get_spec > /dev/null
2356                 parse_spec
2357                 local bcond_avail=$(find_spec_bcond $SPECFILE)
2358                 local opt bcond bconds
2359                 for opt in $bcond_avail; do
2360                         case "$opt" in
2361                         without_*)
2362                                 bcond=${opt#without_}
2363                                 bconds="$bconds $bcond"
2364                                 ;;
2365                         with_*)
2366                                 bcond=${opt#with_}
2367                                 bconds="$bconds $bcond"
2368                                 ;;
2369                         *)
2370                                 echo >&2 "ERROR: unexpected '$opt' in show_avail_bconds"
2371                                 exit 1
2372                                 ;;
2373                         esac
2374                 done
2375                 echo $bconds
2376
2377                 ;;
2378         "build" | "build-binary" | "build-source" | "build-prep" | "build-build" | "build-install" | "build-list")
2379                 init_builder
2380                 if [ -z "$SPECFILE" ]; then
2381                         Exit_error err_no_spec_in_cmdl
2382                 fi
2383
2384                 # display SMP make flags if set
2385                 smp_mflags=$(rpm -E %{?_smp_mflags})
2386                 if [ "$smp_mflags" ]; then
2387                         echo "builder: SMP make flags are set to $smp_mflags"
2388                 fi
2389
2390                 get_spec
2391                 parse_spec
2392                 set_bconds_values
2393                 display_bconds
2394                 display_branches
2395                 if [ "$COMMAND" != "build-source" ]; then
2396                         check_buildarch
2397                 fi
2398                 fetch_build_requires
2399                 if [ "$INTEGER_RELEASE" = "yes" ]; then
2400                         echo "Checking release $PACKAGE_RELEASE..."
2401                         if echo $PACKAGE_RELEASE | grep -q '^[^.]*\.[^.]*$' 2>/dev/null ; then
2402                                 Exit_error err_fract_rel "$PACKAGE_RELEASE"
2403                         fi
2404                 fi
2405
2406                 # ./builder -bs test.spec -r AC-branch -Tp auto-ac- -tt
2407                 if [ -n "$TEST_TAG" ]; then
2408                         local TAGVER=`make_tagver`
2409                         echo "Searching for tag $TAGVER..."
2410                         if [ -n "$DEPTH" ]; then
2411                                 local ref=`git ls-remote $REMOTE_PLD "refs/tags/$TAGVER"`
2412                                 [ -n  "$ref" ] && echo "$ref" && Exit_error err_tag_exists "$TAGVER"
2413                         else
2414                                 git show-ref "refs/tags/$TAGVER" && Exit_error err_tag_exists "$TAGVER"
2415                         fi
2416                         # - do not allow to build from HEAD when XX-branch exists
2417                         TREE_PREFIX=$(echo "$TAG_PREFIX" | sed -e 's#^auto-\([a-zA-Z]\+\)-.*#\1#g')
2418                         if [ "$TREE_PREFIX" != "$TAG_PREFIX" ]; then
2419                                 TAG_BRANCH="${TREE_PREFIX}-branch"
2420                                 if [ -n "$DEPTH" ]; then
2421                                         cmd_branches="git ls-remote --heads"
2422                                         ref_prefix=refs/heads
2423                                 else
2424                                         cmd_branches="git show-ref"
2425                                         ref_prefix=refs/remotes/${REMOTE_PLD}
2426                                 fi
2427                                 TAG_STATUS=$($cmd_branches | grep -i "${ref_prefix}/$TAG_BRANCH$")
2428                                 if [ -n "$TAG_STATUS" -a "$TAG_STATUS" != "$CVSTAG" ]; then
2429                                         Exit_error err_branch_exists "$TAG_STATUS"
2430                                 fi
2431                         fi
2432
2433                 fi
2434
2435                 if [ -n "$NOSOURCE0" ] ; then
2436                         SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
2437                 fi
2438                 try_upgrade
2439                 case $? in
2440                         0)
2441                                 get_files $SOURCES $PATCHES
2442                                 check_md5 $SOURCES
2443                                 ;;
2444                         *)
2445                                 NODIST="yes" get_files $SOURCES $PATCHES
2446                                 update_md5 $SOURCES
2447                                 ;;
2448                 esac
2449                 build_package
2450                 if [ "$UPDATE_POLDEK_INDEXES" = "yes" -a "$COMMAND" != "build-prep" ]; then
2451                         run_poldek --sdir="${POLDEK_INDEX_DIR}" --mkidxz
2452                 fi
2453                 remove_build_requires
2454                 ;;
2455         "branch" )
2456                 init_builder
2457                 if [ -z "$SPECFILE" ]; then
2458                         Exit_error err_no_spec_in_cmdl
2459                 fi
2460
2461                 get_spec
2462                 parse_spec
2463                 branch_files $TAG
2464                 ;;
2465         "add_cvs" )
2466                 init_builder
2467                 if [ -z "$SPECFILE" ]; then
2468                         Exit_error err_no_spec_in_cmdl
2469                 fi
2470
2471                 create_git_repo
2472                 if [ -n "$NEW_REPO" ]; then
2473                         parse_spec
2474                         local file
2475                         for file in $SOURCES $PATCHES; do
2476                                 if [ -z $(src_md5 "$file") ]; then
2477                                         git add $file || Exit_error err_no_source_in_repo $file
2478                                 else
2479                                         cvsignore_df `nourl $file`
2480                                 fi
2481                         done
2482                         git add $SPECFILE
2483                         git commit -m 'Initial commit'
2484                         git push --dry-run $REMOTE_PLD master || Exit_error err_cvs_add_failed
2485                 else
2486                         echo "You had already git repository. Push chosen branches to remote: ${REMOTE_PLD}"
2487                 fi
2488                 ;;
2489         "get" )
2490                 init_builder
2491                 if [ -z "$SPECFILE" ]; then
2492                         Exit_error err_no_spec_in_cmdl
2493                 fi
2494
2495                 get_spec
2496                 parse_spec
2497
2498                 if [ -n "$NOSOURCE0" ] ; then
2499                         SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
2500                 fi
2501                 get_files $SOURCES $PATCHES
2502                 check_md5 $SOURCES
2503                 ;;
2504         "update_md5" )
2505                 init_builder
2506                 if [ -z "$SPECFILE" ]; then
2507                         Exit_error err_no_spec_in_cmdl
2508                 fi
2509
2510                 get_spec
2511                 parse_spec
2512
2513                 if [ -n "$NOSOURCE0" ] ; then
2514                         SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
2515                 fi
2516                 update_md5 $SOURCES
2517                 ;;
2518         "tag" )
2519                 NOURLS=1
2520                 NODIST="yes"
2521                 init_builder
2522                 if [ -z "$SPECFILE" ]; then
2523                         Exit_error err_no_spec_in_cmdl
2524                 fi
2525
2526                 parse_spec
2527                 if  [ ! -d .git ]; then
2528                         echo "No git reposiotory" >&2
2529                         exit 101
2530                 fi
2531                 tag_files
2532                 ;;
2533         "mr-proper" )
2534                 mr_proper
2535                 ;;
2536         "list-sources-files" )
2537                 init_builder
2538                 NOCVSSPEC="yes"
2539                 DONT_PRINT_REVISION="yes"
2540                 get_spec
2541                 parse_spec
2542                 for SAP in $SOURCES $PATCHES; do
2543                         echo $SAP | awk '{gsub(/.*\//,"") ; print}'
2544                 done
2545                 ;;
2546         "list-sources-urls" )
2547                 init_builder
2548                 NOCVSSPEC="yes"
2549                 DONT_PRINT_REVISION="yes"
2550                 get_spec
2551                 parse_spec
2552                 SAPS="$SOURCES $PATCHES"
2553                 for SAP in $SAPS ; do
2554                         echo $SAP
2555                 done
2556                 ;;
2557         "list-sources-local-paths" )
2558                 init_builder
2559                 NOCVSSPEC="yes"
2560                 DONT_PRINT_REVISION="yes"
2561                 get_spec
2562                 parse_spec
2563                 for SAP in $SOURCES $PATCHES; do
2564                         echo $PACKAGE_DIR/$(echo $SAP | awk '{gsub(/.*\//,"") ; print }')
2565                 done
2566                 ;;
2567         "list-sources-distfiles-paths" )
2568                 init_builder
2569                 NOCVSSPEC="yes"
2570                 DONT_PRINT_REVISION="yes"
2571                 get_spec
2572                 parse_spec
2573                 for SAP in $SOURCES $PATCHES; do
2574                         if [ -n "$(src_md5 "$SAP")" ]; then
2575                                 distfiles_path "$SAP"
2576                         fi
2577                 done
2578                 ;;
2579         "list-sources-distfiles" )
2580                 init_builder
2581                 NOCVSSPEC="yes"
2582                 DONT_PRINT_REVISION="yes"
2583                 get_spec
2584                 parse_spec
2585                 for SAP in $SOURCES $PATCHES; do
2586                         if [ -n "$(src_md5 "$SAP")" ]; then
2587                                 distfiles_url "$SAP"
2588                         fi
2589                 done
2590                 ;;
2591         "list-sources-cvs" )
2592                 init_builder
2593 #               NOCVSSPEC="yes"
2594                 DONT_PRINT_REVISION="yes"
2595                 get_spec
2596                 parse_spec
2597                 for SAP in $SOURCES $PATCHES; do
2598                         if [ -z "$(src_md5 "$SAP")" ]; then
2599                                 echo $SAP | awk '{gsub(/.*\//,"") ; print}'
2600                         fi
2601                 done
2602                 ;;
2603         "init_rpm_dir")
2604                 init_rpm_dir
2605                 ;;
2606         "usage" )
2607                 usage
2608                 ;;
2609         "short-version" )
2610                 echo "$VERSION"
2611                 ;;
2612         "version" )
2613                 echo "$VERSIONSTRING"
2614                 ;;
2615 esac
2616 if [ -f "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES" -a "$REMOVE_BUILD_REQUIRES" != "" ]; then
2617         rm "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES"
2618 fi
2619 cd "$__PWD"
2620
2621 # vi:syntax=sh:ts=4:sw=4:noet