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