]> git.pld-linux.org Git - packages/rpm-build-tools.git/commitdiff
- take all scripts from cvsweb. not local copies
authorElan Ruusamäe <glen@pld-linux.org>
Sat, 15 Oct 2011 14:28:10 +0000 (14:28 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    adapter_.awk -> 1.14
    adapter_.sh -> 1.10
    builder_.sh -> 1.33
    pldnotify_.awk -> 1.13
    rpm-build-tools.spec -> 1.33

adapter_.awk [deleted file]
adapter_.sh [deleted file]
builder_.sh [deleted file]
pldnotify_.awk [deleted file]
rpm-build-tools.spec

diff --git a/adapter_.awk b/adapter_.awk
deleted file mode 100644 (file)
index 164c10a..0000000
+++ /dev/null
@@ -1,1997 +0,0 @@
-#!/usr/bin/gawk -f
-#
-# Adapter adapts .spec files for PLD Linux.
-#
-# Copyright (C) 1999-2010 PLD-Team <feedback@pld-linux.org>
-# Authors:
-#      Michał Kuratczyk <kura@pld.org.pl>
-#      Sebastian Zagrodzki <s.zagrodzki@mimuw.edu.pl>
-#      Tomasz Kłoczko <kloczek@rudy.mif.pg.gda.pl>
-#      Artur Frysiak <wiget@pld-linux.org>
-#      Michal Kochanowicz <mkochano@pld.org.pl>
-#      Jakub Bogusz <qboosh@pld-linux.org>
-#      Elan Ruusamäe <glen@pld-linux.org>
-#
-# See cvs log adapter{,.awk} for list of contributors
-#
-# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-
-# TODO
-# - really long sourceX make preamble sorting totally fcked up (try snake.spec r1.1)
-# - parse ../PLD-doc/BuildRequires.txt and setup proper BR epoches?
-# - add "-nc" option to skip CVS interaction
-# - sort Summary(XX)
-# - sort Requires, BuildRequires
-# - check if %description (lang=C) contains 8bit
-# - desc wrapping is totally fucked up on global.spec,1.25, dosemu.spec,1.115-
-# - it should change: /%source([0-9]+)/i to %{SOURCE\1}
-# - extra quote on LDFLAGS line: https://bugs.launchpad.net/pld-linux/+bug/385836
-# - %{with_foo:%attr()...} gets converted to %attr() %{with_foo:...} [vlc.spec]
-# - 'R: foo ' (with traliling space) gets coverted to "R: foo\nR: " [vlc.spec @ 1.199 ]
-
-BEGIN {
-       RPM_SECTIONS = "package|build|changelog|clean|description|install|post|posttrans|postun|pre|prep|pretrans|preun|triggerin|triggerpostun|triggerun|verifyscript|check"
-       SECTIONS = "^%(" RPM_SECTIONS ")"
-
-       RCSID = "$Id$"
-       rev = RCSID # TODO: parse from RCSID
-       VERSION = "0.35/" rev
-
-       PREAMBLE_TAGS = "(R|BR|Summary|Name|Version|Release|Epoch|License|Group|URL|BuildArch|BuildRoot|Obsoletes|Conflicts|Provides|ExclusiveArch|ExcludeArch|Pre[Rr]eq|(Build)?Requires|Suggests|Auto(Req|Prov))"
-
-       usedigest = 0   # Enable to switch to rpm 4.4.6+ md5 digests
-
-       preamble = 1    # Is it part of preamble? Default - yes
-       boc = 4                 # Beginning of %changelog
-       bod = 0                 # Beginning of %description
-       tw = 70                 # Descriptions width
-
-       b_idx = 0               # index of BR/R arrays
-       BR_count = 0    # number of additional BuildRequires
-
-       # If variable removed, then 1 (for removing it from export)
-       removed["LDFLAGS"] = 0
-       removed["CFLAGS"] = 0
-       removed["CXXFLAGS"] = 0
-
-       # If 1, we are inside of comment block (started with /^#%/)
-       comment_block = 0
-
-       import_rpm_macros()
-
-       packages_dir = topdir
-       groups_file = packages_dir "/rpm.groups"
-
-       system("cd "packages_dir"; [ -f rpm.groups ] || cvs up rpm.groups > /dev/null")
-       system("[ -d ../PLD-doc ] && cd ../PLD-doc && ([ -f BuildRequires.txt ] || cvs up BuildRequires.txt >/dev/null)");
-
-       # Temporary file for changelog section
-       changelog_file = ENVIRON["HOME"] "/tmp/adapter.changelog"
-}
-
-# There should be a comment with CVS keywords on the first line of file.
-FNR == 1 {
-       if (!/# \$Revision:/)   # If this line is already OK?
-               print "# $" "Revision:$, " "$" "Date:$" # No
-       else {
-               print $0                                # Yes
-               next            # It is enough for first line
-       }
-}
-
-# If the latest line matched /%files/
-defattr == 1 {
-       if (ENVIRON["SKIP_DEFATTR"] != 1) {
-               if ($0 !~ /defattr/) {  # If no %defattr
-                       print "%defattr(644,root,root,755)"     # Add it
-               } else {
-                       $0 = "%defattr(644,root,root,755)"      # Correct mistakes (if any)
-               }
-       }
-       defattr = 0
-}
-
-function b_makekey(a, b,       s) {
-       s = a "" b;
-       # kill bcond
-       gsub(/[#%]+{[!?]+[_a-zA-Z0-9]+:/, "", s);
-
-       # kill commented out items
-       gsub(/^#[ \t]*/, "", s);
-
-       # force order
-       gsub(/^Summary\(/, "11Summary(", s);
-       gsub(/^Summary/, "10Summary", s);
-
-       gsub(/^Name/, "2Name", s);
-       gsub(/^Version/, "3Version", s);
-       gsub(/^Release/, "4Release", s);
-       gsub(/^Epoch/, "5Epoch", s);
-       gsub(/^License/, "5License", s);
-       gsub(/^Group/, "6Group", s);
-       gsub(/^URL/, "7URL", s);
-
-       gsub(/^BuildRequires/, "B1BuildRequires", s);
-       gsub(/^BuildConflicts/, "B2BuildConflicts", s);
-
-       gsub(/^Suggests/, "X1Suggests", s);
-       gsub(/^Provides/, "X2Provides", s);
-       gsub(/^Obsoletes/, "X3Obsoletes", s);
-       gsub(/^Conflicts/, "X4Conflicts", s);
-       gsub(/^BuildArch/, "X5BuildArch", s);
-       gsub(/^ExclusiveArch/, "X6ExclusiveArch", s);
-       gsub(/^ExcludeArch/, "X7ExcludeArch", s);
-       gsub(/^BuildRoot/, "X9BuildRoot", s);
-
-       gsub(/^AutoProv/, "Xx1AutoProv", s);
-       gsub(/^AutoReq/, "Xx2AutoReq", s);
-
-#      printf("%s -> %s\n", a""b, s);
-       return s;
-}
-
-# Comments
-/^#/ && (description == 0) {
-       if (/This file does not like to be adapterized!/) {
-               print                   # print this message
-               while (getline)         # print the rest of spec as it is
-                       print
-               do_not_touch_anything = 1 # do not touch anything in END()
-               exit(rc = 0)
-       }
-
-       # Generally, comments are printed without touching
-       sub(/[ \t]+$/, "")
-
-       if (/#[ \t]*Source.*md5/) {
-               if (usedigest == 1) {
-                       sub(/^#[ \t]*Source/, "BuildRequires:\tdigest(%SOURCE", $0)
-                       sub(/-md5[ \t]*:[ \t]*/, ") = ", $0)
-               }
-               print $0
-               next
-       }
-}
-
-/^%define/ {
-       # Remove defining _applnkdir (this macro has been included in rpm-3.0.4)
-       if ($2 == "_applnkdir") {
-               next
-       }
-       if ($2 == "date") {
-               date = 1
-               if (did_files == 0) {
-                       print "%files"
-                       print ""
-                       did_files = 1
-               }
-       }
-
-       # Do not add %define of _prefix if it already is.
-       if ($2 ~ /^_prefix/) {
-               sub("^"prefix, $3, bindir)
-               sub("^"prefix, $3, sbindir)
-               sub("^"prefix, $3, libdir)
-               sub("^"prefix, $3, datadir)
-               sub("^"prefix, $3, includedir)
-               prefix = $3
-       }
-
-       if ($2 ~ /_bindir/ && !/_sbindir/)
-               bindir = $3
-       if ($2 ~ /_sbindir/)
-               sbindir = $3
-       if ($2 ~ /_libdir/) {
-               if ($3 ~ /^%\(/) {
-                       # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
-                       libdir = "%%%%%%%%%%%%%%"
-               } else {
-                       libdir = $3
-               }
-       }
-       if ($2 ~ /_sysconfdir/) {
-               if ($3 ~ /^%\(/) {
-                       # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
-                       sysconfdir = "%%%%%%%%%%%%%%"
-               } else {
-                       sysconfdir = $3
-               }
-       }
-       if ($2 ~ /_datadir/) {
-               if ($3 ~ /^%\(/) {
-                       # TODO: should escape for latter checks like: ($c ~ sysconfdir "/{?cron.")
-                       datadir = "%%%%%%%%%%%%%%"
-               } else {
-                       datadir = $3
-               }
-       }
-       if ($2 ~ /_includedir/)
-               includedir = $3
-       if ($2 ~ /_mandir/)
-               mandir = $3
-       if ($2 ~ /_infodir/)
-               infodir = $3
-       if ($2 ~ /_docdir/)
-               docdir = $3
-
-       # version related macros
-       if ($2 ~ /^_beta$/)
-               _beta = $3
-       if ($2 ~ /^_rc$/)
-               _rc = $3
-       if ($2 ~ /^_pre$/)
-               _pre = $3
-       if ($2 ~ /^_snap$/)
-               _snap = $3
-       if ($2 ~ /^subver$/)
-               subver = $3
-
-       # these are used usually when adapterizing external spec
-       if ($2 ~ /^name$/)
-               name = $3
-       if ($2 ~ /^version$/)
-               version = $3
-       if ($2 ~ /^release$/)
-               release = $3
-
-       if ($2 ~ /^mod_name$/)
-               mod_name = $3
-
-       sub(/[ \t]+$/, "");
-       # do nothing further, otherwise adapter thinks we're at preamble
-       print
-       next
-}
-
-# Obsolete
-/^%include.*\/usr\/lib\/rpm\/macros\.python$/ {
-       next
-}
-
-################
-# %description #
-################
-/^%description/, (!/^%description/ && $0 ~ SECTIONS) {
-       preamble = 0
-
-       if (/^%description/) {
-               bod++
-               format_line = ""
-               format_indent = -1
-       }
-
-       # Format description
-       if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && !/^%description/) {
-               if (/^[ \t]*$/) {
-                       format_flush(format_line, format_indent)
-                       print ""
-                       format_line = ""
-                       format_indent = -1
-               } else if (/^[ \t]*[-\*][ \t]*/) {
-                       format_flush(format_line, format_indent)
-                       match($0, /^[ \t]*/)
-                       format_indent = RLENGTH
-                       match($0, /^[ \t]*[-\*][ \t]/)
-                       format_line = substr($0, RLENGTH)
-               } else
-                       format_line = format_line " " $0
-               next
-       }
-
-       if (/^%[a-z]+/ && (!/^%description/ || bod == 2)) {
-               if (NF > 3 && $2 == "-l") {
-                       ll = $1
-                       for (i = 4; i <= NF; i++)
-                               ll = ll " " $i
-                       $0 = ll " -l " $3
-               }
-               format_flush(format_line, format_indent)
-               if (bod == 2) {
-                       bod = 1
-                       description = 1
-               } else {
-                       bod = 0
-                       description = 0
-               }
-       } else
-               description = 1
-}
-
-#########
-# %prep #
-#########
-/^%prep/, (!/^%prep/ && $0 ~ SECTIONS) {
-       preamble = 0
-       did_prep = 1
-
-       use_macros()
-
-       # Add '-q' to %setup
-       if (/^%setup/ && !/-q/) {
-               sub(/^%setup/, "%setup -q")
-       }
-
-       if (/^%setup/ && name != "setup") {
-               $0 = fixedsub(name, "%{name}", $0);
-               $0 = fixedsub(version, "%{version}", $0);
-               if (_beta) {
-                       $0 = fixedsub(_beta, "%{_beta}", $0);
-               }
-               if (_rc) {
-                       $0 = fixedsub(_rc, "%{_rc}", $0);
-               }
-               if (_pre) {
-                       $0 = fixedsub(_pre, "%{_pre}", $0);
-               }
-               if (_snap) {
-                       $0 = fixedsub(_snap, "%{_snap}", $0);
-               }
-               if (subver) {
-                       $0 = fixedsub(subver, "%{subver}", $0);
-               }
-       }
-
-       if (/^%setup/ && /-n %{name}-%{version}( |$)/) {
-               $0 = fixedsub(" -n %{name}-%{version}", "", $0)
-       }
-       sub("^%patch ", "%patch0 ");
-
-       # invalid in %prep
-       sub("^rm -rf \$RPM_BUILD_ROOT.*", "");
-}
-
-##########
-# %build #
-##########
-/^%build/, (!/^%build/ && $0 ~ SECTIONS) {
-       preamble = 0
-
-       if (did_prep == 0) {
-               print "%prep"
-               print ""
-               did_prep = 1
-       }
-
-       use_macros()
-       use_tabs()
-
-       if (/^automake$/)
-               sub(/$/, " -a -c")
-
-       if (/LDFLAGS/) {
-               if (/LDFLAGS="-s"/) {
-                       removed["LDFLAGS"] = 1
-                       next
-               } else {
-                       split($0, tmp, "LDFLAGS=")
-                       count = split(tmp[2], flags, "\"")
-                       if (flags[1] != "" && flags[1] !~ "!?debug") {
-                               sub(/-s[" ]?/, "%{rpmldflags} ", flags[1])
-                               $0 = tmp[1] line[1] "LDFLAGS=" flags[1] "\""
-                               for (i = 2; i < count; i++)
-                                       $0 = $0 flags[i] "\""
-                       }
-               }
-       }
-
-       if (/CFLAGS=/)
-               if (cflags("CFLAGS") == 0)
-                       next
-
-       if (/CXXFLAGS=/)
-               if (cflags("CXXFLAGS") == 0)
-                       next
-
-       if (/^export /) {
-               if (removed["LDFLAGS"])
-                       sub(" LDFLAGS", "")
-               if (removed["CFLAGS"])
-                       sub(" CFLAGS", "")
-               if (removed["CXXFLAGS"])
-                       sub(" CXXFLAGS", "")
-               # Is there still something?
-               if (/^export[ ]*$/)
-                       next
-       }
-
-       # quote CC
-       if (/CC=%{__cc} /) {
-               sub("CC=%{__cc}", "CC=\"%{__cc}\"")
-       }
-       
-       # use PLD Linux macros
-       $0 = fixedsub("glib-gettextize --copy --force","%{__glib_gettextize}", $0);
-       $0 = fixedsub("intltoolize --copy --force", "%{__intltoolize}", $0);
-       $0 = fixedsub("automake --add-missing --copy", "%{__automake}", $0);
-       $0 = fixedsub("automake -a --foreign --copy", "%{__automake}", $0);
-       $0 = fixedsub("automake -a -c --foreign", "%{__automake}", $0);
-       $0 = fixedsub("automake -a -c", "%{__automake}", $0);
-       $0 = fixedsub("libtoolize --force --automake --copy", "%{__libtoolize}", $0);
-       $0 = fixedsub("libtoolize -c -f --automake", "%{__libtoolize}", $0);
-
-       sub(/^aclocal$/, "%{__aclocal}");
-       sub(/^autoheader$/, "%{__autoheader}");
-       sub(/^autoconf$/, "%{__autoconf}");
-       sub(/^automake$/, "%{__automake}");
-       sub(/^libtoolize$/, "%{__libtoolize}");
-
-       # atrpms
-       $0 = fixedsub("%perl_configure", "%{__perl} Makefile.PL \\\n\tINSTALLDIRS=vendor", $0);
-       $0 = fixedsub("%perl_makecheck", "%{?with_tests:%{__make} test}", $0);
-
-       # alt linux
-       $0 = fixedsub("%make_build", "%{__make}", $0);
-}
-
-##########
-# %clean #
-##########
-/^%clean/, (!/^%clean/ && $0 ~ SECTIONS) {
-       did_clean = 1
-
-       use_macros()
-}
-
-############
-# %install #
-############
-/^%install/, (!/^%install/ && $0 ~ SECTIONS) {
-
-       preamble = 0
-
-       # foreign rpms
-       sub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
-       sub("%buildroot", "$RPM_BUILD_ROOT");
-       sub("%{buildroot}", "$RPM_BUILD_ROOT");
-
-       if (/^[ \t]*rm([ \t]+-[rf]+)*[ \t]+(\${?RPM_BUILD_ROOT}?|%{?buildroot}?)/ && did_rmroot==0) {
-               did_rmroot=1
-               print "rm -rf $RPM_BUILD_ROOT"
-               next
-       }
-
-       if (!/^(#?[ \t]*)$/ && !/^%install/ && did_rmroot==0) {
-               print "rm -rf $RPM_BUILD_ROOT"
-               did_rmroot=1
-       }
-
-       if (tmpdir) {
-               buildroot = tmpdir "/" name "-" version "-root-" ENVIRON["USER"]
-               gsub(buildroot, "$RPM_BUILD_ROOT")
-       }
-
-       if (!/%{_lib}/) {
-               sub("\$RPM_BUILD_ROOT/%", "$RPM_BUILD_ROOT%")
-       }
-
-       use_macros()
-
-       # 'install -d' instead 'mkdir -p'
-       if (/mkdir -p/)
-               sub(/mkdir -p/, "install -d")
-
-       # cp -a already implies cp -r
-       sub(/^cp -ar/, "cp -a")
-
-       # No '-u root' or '-g root' for 'install'
-       if (/^install/ && /-[ug][ \t]*root/)
-               gsub(/-[ug][ \t]*root /, "")
-
-       if (/^install/ && /-m[ \t]*[0-9]+/)
-               gsub(/-m[ \t]*[0-9]+ /, "")
-
-       # No lines contain 'chown' or 'chgrp' if owner/group is 'root'
-       if (($1 ~ /chown/ && $2 ~ /root\.root/) || ($1 ~ /chgrp/ && $2 ~ /root/))
-               next
-
-       # No lines contain 'chmod' if it sets the modes to '644'
-       if ($1 ~ /chmod/ && $2 ~ /644/)
-               next
-
-       # atrpms
-       $0 = fixedsub("%perl_makeinstall", "%{__make} pure_install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
-
-       # alt linux
-       $0 = fixedsub("%make_install DESTDIR=$RPM_BUILD_ROOT install", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
-}
-
-##########
-# %files #
-##########
-/^%files/, (!/^%files/ && $0 ~ SECTIONS) {
-       preamble = 0
-       did_files = 1
-
-       if ($0 ~ /^%files/)
-               defattr = 1
-
-       if (!use_files_macros()) {
-               next
-       }
-}
-
-##############
-# %changelog #
-##############
-/^%changelog/, (!/^%changelog/ && $0 ~ SECTIONS) {
-       preamble = 0
-       has_changelog = 1
-       skip = 0
-       # There should be some CVS keywords on the first line of %changelog.
-       if (boc == 3) {
-               if ($0 !~ _cvsmailfeedback) {
-                       print "* %{date} " _cvsmailfeedback > changelog_file
-               } else {
-                       skip = 1
-               }
-               boc = 2
-       }
-       if (boc == 2 && !skip) {
-               if (!/All persons listed below/) {
-                       printf "All persons listed below can be reached at " > changelog_file
-                       print "<cvs_login>" _cvsmaildomain "\n" > changelog_file
-               } else {
-                       skip = 1
-               }
-               boc = 1
-       }
-       if (boc == 1 && !skip) {
-               if (!/^$/) {
-                       if (!/\$.*Log:.*\$/) {
-                               print "$" "Log:$" > changelog_file
-                       }
-                       boc = 0
-               }
-       }
-       # Define date macro.
-       if (boc == 4) {
-               if (date == 0) {
-                       printf "%%define date\t%%(echo `LC_ALL=\"C\"" > changelog_file
-                       print " date +\"%a %b %d %Y\"`)" > changelog_file
-                       date = 1
-               }
-               boc = 3
-       }
-
-       sub(/[ \t]+$/, "");
-       if (!/^%[a-z]+$/ || /changelog/) {
-               # stop changelog if "real" changelog starts
-               if (boc == 0 && /^\* /) {
-                       boc = -1
-               }
-               if (boc == -1) {
-                       next;
-               }
-               print > changelog_file
-       } else {
-               print
-       }
-       next
-}
-
-###########
-# SCRIPTS #
-###########
-/^%pre/, (!/^%pre/ && $0 ~ SECTIONS) {
-       preamble = 0
-
-       if (gsub("/usr/sbin/useradd", "%useradd")) {
-               sub(" 2> /dev/null \|\| :", "");
-               sub(" >/dev/null 2>&1 \|\|:", "");
-       }
-
-       # %useradd and %groupadd may not be wrapped
-       if (/%(useradd|groupadd).*\\$/) {
-               a = $0; getline;
-               sub(/^[\s\t]*/, "");
-               $0 = substr(a, 1, length(a) - 1) $0;
-       }
-       use_script_macros()
-}
-
-/^%post/, (!/^%post/ && $0 ~ SECTIONS) {
-       preamble = 0
-       use_macros()
-}
-/^%preun/, (!/^%preun/ && $0 ~ SECTIONS) {
-       preamble = 0
-       use_macros()
-}
-/^%postun/, (!/^%postun/ && $0 ~ SECTIONS) {
-       preamble = 0
-       use_script_macros()
-}
-/^%triggerin/, (!/^%triggerin/ && $0 ~ SECTIONS) {
-       preamble = 0
-       use_script_macros()
-}
-/^%triggerun/, (!/^%triggerun/ && $0 ~ SECTIONS) {
-       preamble = 0
-       use_script_macros()
-}
-/^%triggerpostun/, (!/^%triggerpostun/ && $0 ~ SECTIONS) {
-       preamble = 0
-       use_script_macros()
-}
-/^%pretrans/, (!/^%pretrans/ && $0 ~ SECTIONS) {
-       preamble = 0
-       use_script_macros()
-}
-/^%posttrans/, (!/^%posttrans/ && $0 ~ SECTIONS) {
-       preamble = 0
-       use_script_macros()
-}
-/^%verifyscript/, (!/^%verifyscript/ && $0 ~ SECTIONS) {
-       preamble = 0
-       use_script_macros()
-}
-/^%check/, (!/^%check/ && $0 ~ SECTIONS) {
-       preamble = 0
-       use_script_macros()
-}
-
-#############
-# PREAMBLES #
-#############
-preamble == 1 {
-       # There should not be a space after the name of field
-       # and before the colon.
-       sub(/[ \t]*:/, ":")
-
-       if (/^%perl_module_wo_prefix/) {
-               name = $2
-               version = $3
-               release = "0." fixedsub(".%{disttag}.at", "", $4)
-       }
-
-       field = tolower($1)
-       fieldnlower = $1
-       if (field ~ /summary:/ && !/etc\.$/ && !/Inc\.$/) {
-               sub(/\.$/, "", $0);
-       }
-       if (field ~ /group(\([^)]+\)):/)
-               next
-       if (field ~ /group:/) {
-               format_preamble()
-               group = $0;
-               sub(/^[^ \t]*[ \t]*/, "", group);
-               group = replace_groupnames(group);
-               $0 = "Group:\t\t" group
-
-               if (group ~ /^X11/ && x11 == 0) # Is it X11 application?
-                       x11 = 1
-
-               byl_plik_z_groupmi = 0
-               byl_opis_grupy = 0
-               while ((getline linia_grup < groups_file) > 0) {
-                       byl_plik_z_groupmi = 1
-                       if (linia_grup == group) {
-                               byl_opis_grupy = 1
-                               break
-                       }
-               }
-
-               if (!byl_plik_z_groupmi)
-                       print "######\t\t" groups_file ": no such file"
-               else if (!byl_opis_grupy)
-                       print "######\t\t" "Unknown group!"
-
-               close(groups_file)
-               did_groups = 1
-       }
-
-       if (field ~ /prereq:/) {
-               sub(/Pre[Rr]eq:/, "Requires:", $1);
-       }
-
-       # split (build)requires, obsoletes on commas
-       if (field ~ /(obsoletes|requires|provides|conflicts):/ && NF > 2) {
-               value = substr($0, index($0, $2));
-               $0 = format_requires($1, value);
-       }
-
-       # BR: tar (and others) is to common (rpm-build requires it)
-       if (field ~ /^buildrequires:/) {
-               l = substr($0, index($0, $2));
-               if (l == "awk" ||
-                       l == "binutils" ||
-                       l == "bzip2" ||
-                       l == "cpio" ||
-                       l == "diffutils" ||
-                       l == "elfutils" ||
-                       l == "fileutils" ||
-                       l == "findutils" ||
-                       l == "glibc-devel" ||
-                       l == "grep" ||
-                       l == "gzip" ||
-                       l == "make" ||
-                       l == "patch" ||
-                       l == "sed" ||
-                       l == "sh-utils" ||
-                       l == "tar" ||
-                       l == "textutils") {
-                       next
-               }
-
-               replace_requires();
-       }
-
-       if (field ~ /^requires:/ || field ~ /^requires\(/) {
-               replace_requires();
-       }
-
-
-       # obsolete/unwanted tags
-       if (field ~ /vendor:|packager:|distribution:|docdir:|prefix:|icon:|author:|author-email:|metadata-version:/) {
-               next
-       }
-
-       if (field ~ /buildroot:/) {
-               $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
-               did_build_root = 1
-       }
-
-       # Use "License" instead of "Copyright" if it is (L)GPL or BSD
-       if (field ~ /copyright:/ && $2 ~ /GPL|BSD/) {
-               $1 = "License:"
-       }
-
-       # ease updating from debian .dsc
-       if (field ~ /homepage:/) {
-               $1 = "URL:"
-       }
-
-       if (field ~ /license:/) {
-               l = substr($0, index($0, $2));
-               if (l == "Python Software Foundation License") {
-                       l = "PSF"
-               }
-               if (l == "Apache License 2.0" || l == "Apache 2.0" || l == "Apache License Version 2.0" || l == "Apache License, Version 2.0" || l == "Apache Software License v2") {
-                       l = "Apache v2.0"
-               }
-               if (l == "Apache Group License" || l == "Apache Software License" || l == "Apache License") {
-                       l = "Apache"
-               }
-               if (l == "Apache-style License" || l == "Apache-style Software License") {
-                       l = "Apache-like"
-               }
-               if (l == "Apache Software License 1.1" || l == "Apache 1.1") {
-                       l = "Apache v1.1"
-               }
-               if (l == "GPLv2") {
-                       l = "GPL v2"
-               }
-               if (l == "GPLv2+") {
-                       l = "GPL v2+"
-               }
-               if (l == "LGPLv2+") {
-                       l = "LGPL v2+"
-               }
-               if (l == "GPLv3") {
-                       l = "GPL v3"
-               }
-               if (l == "GPLv3+") {
-                       l = "GPL v3+"
-               }
-               $0 = "License:\t" l;
-       }
-
-
-       if (field ~ /name:/) {
-               if ($2 == "%{name}" && name) {
-                       $2 = name
-               }
-               name = $2
-               name_seen = 1;
-       }
-
-       if (field ~ /version:/) {
-               if ($2 == "%{version}" && version) {
-                       $2 = version
-               }
-               version = $2
-               version_seen = 1;
-       }
-
-       if (field ~ /release:/) {
-               if ($2 == "%{release}" && release) {
-                       $2 = release
-               }
-               sub(/%atrelease /, "0.", $0)
-               release = $2
-               release_seen = 1;
-       }
-
-
-       if (field ~ /serial:/)
-               $1 = "Epoch:"
-
-       if (field ~ /home-page:/)
-               $1 = "URL:"
-
-       # proper caps
-       if (field ~ /^url:$/)
-               $1 = "URL:"
-
-       if (field ~ /^patch/)
-               $1 = "Patch" substr(field, 6);
-
-       if (field ~ /^description:$/)
-               $1 = "\n%description\n"
-
-       # Use %{name} and %{version} in the filenames in "Source:"
-       if (field ~ /^source/ || field ~ /patch/) {
-               n = split($2, url, /\//)
-               if (url[n] ~ /\.gz$/) {
-                       url[n+1] = ".gz" url[n+1]
-                       sub(/\.gz$/,"",url[n])
-               }
-               if (url[n] ~ /\.zip$/) {
-                       url[n+1] = ".zip" url[n+1]
-                       sub(/\.zip$/,"",url[n])
-               }
-               if (url[n] ~ /\.tar$/) {
-                       url[n+1] = ".tar" url[n+1]
-                       sub(/\.tar$/,"",url[n])
-               }
-               if (url[n] ~ /\.patch$/) {
-                       url[n+1] = ".patch" url[n+1]
-                       sub(/\.patch$/,"",url[n])
-               }
-               if (url[n] ~ /\.bz2$/) {
-                       url[n+1] = ".bz2" url[n+1]
-                       sub(/\.bz2$/,"",url[n])
-               }
-               if (url[n] ~ /\.logrotate$/) {
-                       url[n+1] = ".logrotate" url[n+1]
-                       sub(/\.logrotate$/,"",url[n])
-               }
-               if (url[n] ~ /\.pamd$/) {
-                       url[n+1] = ".pamd" url[n+1]
-                       sub(/\.pamd$/,"",url[n])
-               }
-
-               # allow %{name} only in last url component
-               s = ""
-               for (i = 1; i <= n; i++) {
-                       url[i] = fixedsub("%{name}", name, url[i])
-                       if (s) {
-                               s = s "/" url[i]
-                       } else {
-                               s = url[i]
-                       }
-               }
-               $2 = s url[n+1]
-
-               filename = url[n]
-               if (name) {
-                       url[n] = fixedsub(name, "%{name}", url[n])
-               }
-               if (field ~ /source/) {
-                       if (version) {
-                               url[n] = fixedsub(version, "%{version}", url[n])
-                       }
-                       if (_beta) {
-                               url[n] = fixedsub(_beta, "%{_beta}", url[n])
-                       }
-                       if (_rc) {
-                               url[n] = fixedsub(_rc, "%{_rc}", url[n])
-                       }
-                       if (_pre) {
-                               url[n] = fixedsub(_pre, "%{_pre}", url[n])
-                       }
-                       if (_snap) {
-                               url[n] = fixedsub(_snap, "%{_snap}", url[n])
-                       }
-                       if (subver) {
-                               url[n] = fixedsub(subver, "%{subver}", url[n])
-                       }
-               }
-               # assigning to $2 kills preamble formatting
-               $2 = fixedsub(filename, url[n], $2)
-
-               $2 = unify_url($2)
-       }
-
-
-       if (field ~ /^source:/)
-               $1 = "Source0:"
-
-       if (field ~ /^patch:/)
-               $1 = "Patch0:"
-
-       kill_preamble_macros();
-       format_preamble()
-
-       if (field ~ /requires/) {
-               # atrpms
-               $0 = fixedsub("%{eversion}", "%{epoch}:%{version}-%{release}", $0);
-       }
-}
-
-/^%bcond_/ {
-       # do nothing
-       print
-       next
-}
-
-# sort BR/R!
-#
-# NOTES:
-# - mixing BR/R and anything else confuses this (all will be sorted together)
-#      so don't do that.
-# - comments leading the BR/R can not be associated,
-#      so don't adapterize when the BR/R are mixed with comments
-ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS, $0 ~ PREAMBLE_TAGS {
-       if ($1 ~ /Pre[Rr]eq:/) {
-               sub(/Pre[Rr]eq:/, "Requires:", $1);
-       }
-       if ($1 == "BR:" ) {
-               $1 = "BuildRequires:"
-       }
-       if ($1 == "R:" ) {
-               $1 = "Requires:"
-       }
-       format_preamble()
-#      kill_preamble_macros(); # breaks tabbing
-
-       b_idx++;
-       l = substr($0, index($0, $2));
-       b_ktmp = b_makekey($1, l);
-       b_key[b_idx] = b_ktmp;
-       b_val[b_ktmp] = $0;
-
-       next;
-}
-
-preamble == 1 {
-       if (b_idx > 0) {
-               isort(b_key, b_idx);
-               for (i = 1; i <= b_idx; i++) {
-                       v = b_val[b_key[i]];
-                       sub(/[ \t]+$/, "", v);
-                       print "" v;
-               }
-               b_idx = 0
-       }
-}
-
-# main() ;-)
-{
-       preamble = 1
-
-       sub(/[ \t]+$/, "")
-       print
-
-       if (name_seen == 0 && name) {
-               print "Name:\t\t" name
-               name_seen = 1
-       }
-
-       if (version_seen == 0 && version) {
-               print "Version:\t" version
-               version_seen = 1
-       }
-
-       if (release_seen == 0 && release) {
-               print "Release:\t" release
-               release_seen = 1
-       }
-
-       if (did_build_root == 0) {
-#              print "BuildRoot:\t%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
-               did_build_root = 1
-       }
-       if (did_groups == 0) {
-#              print "Group:\t\tunknown"
-               did_groups = 1
-       }
-}
-
-
-END {
-       if (do_not_touch_anything) {
-               exit(rc)
-       }
-
-       # TODO: need to output these in proper place
-       if (BR_count > 0) {
-               for (i = 0; i <= BR_count; i++) {
-                       print BR[i];
-               }
-       }
-
-       close(changelog_file)
-       while ((getline < changelog_file) > 0)
-               print
-       system("rm -f " changelog_file)
-
-       if (did_clean == 0) {
-               print ""
-               print "%clean"
-               print "rm -rf $RPM_BUILD_ROOT"
-       }
-
-       if (date == 0) {
-               print ""
-               print "%define date\t%(echo `LC_ALL=\"C\" date +\"%a %b %d %Y\"`)"
-       }
-
-       if (has_changelog == 0) {
-               print "%changelog"
-       }
-
-       if (boc > 2) {
-               print "* %{date} PLD Team <feedback@pld-linux.org>"
-       }
-       if (boc > 1) {
-               printf "All persons listed below can be reached at "
-               print "<cvs_login>@pld-linux.org\n"
-       }
-       if (boc > 0) {
-               print "$" "Log:$"
-       }
-}
-
-# substitutes fixed strings (not regexps)
-function fixedsub(s1,s2,t, ind) {
-       if (ind = index(t,s1))
-               t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
-       return t
-}
-
-# replace s with s2 if it equals to s1
-function replace(s, s1, s2) {
-       if (s == s1) {
-               return s2;
-       } else {
-               return s;
-       }
-}
-
-# There should be one or two tabs after the colon.
-function format_preamble()
-{
-       if (/^#/ || /^%bcond_with/) {
-               return;
-       }
-       sub(/:[ \t]*/, ":")
-       if (match($0, /[A-Za-z0-9(),#_ \t.-]+[ \t]*:[ \t]*/) == 1) {
-               if (RLENGTH < 8) {
-                       sub(/:/, ":\t\t")
-               } else {
-                       sub(/:/, ":\t")
-               }
-       }
-}
-
-# Replace directly specified directories with macros
-function use_macros()
-{
-       # -m, --skip-macros, --no-macros -- skip macros subst
-       if (ENVIRON["SKIP_MACROS"]) {
-               return
-       }
-
-       # leave inline sed lines alone
-       if (/(%{__sed}|sed) -i -e/) {
-               return;
-       }
-
-       sub("%{_defaultdocdir}", "%{_docdir}");
-       sub("%{_bindir}/perl", "%{__perl}");
-       sub("%{_bindir}/python", "%{__python}");
-
-       gsub(infodir, "%{_infodir}")
-
-       gsub(perl_sitearch, "%{perl_sitearch}")
-       gsub(perl_archlib, "%{perl_archlib}")
-       gsub(perl_privlib, "%{perl_privlib}")
-       gsub(perl_vendorlib, "%{perl_vendorlib}")
-       gsub(perl_vendorarch, "%{perl_vendorarch}")
-       gsub(perl_sitelib, "%{perl_sitelib}")
-       
-       gsub(py_sitescriptdir, "%{py_sitescriptdir}")
-       gsub(py_sitedir, "%{py_sitedir}")
-       gsub(py_scriptdir, "%{py_scriptdir}")
-       gsub("%{_libdir}/python2.4/site-packages", "%{py_sitedir}")
-       gsub("%{python_sitelib}", "%{py_sitedir}")
-
-       gsub(ruby_archdir, "%{ruby_archdir}")
-       gsub(ruby_ridir, "%{ruby_ridir}")
-       gsub(ruby_rubylibdir, "%{ruby_rubylibdir}")
-       gsub(ruby_sitearchdir, "%{ruby_sitearchdir}")
-       gsub(ruby_sitelibdir, "%{ruby_sitelibdir}")
-       gsub(ruby_rdocdir, "%{ruby_rdocdir}")
-
-       gsub("%{_datadir}/applications", "%{_desktopdir}")
-       gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
-       gsub("%{_datadir}/java", "%{_javadir}")
-
-       gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}")
-       gsub(pkgconfigdir, "%{_pkgconfigdir}")
-
-       gsub(libdir, "%{_libdir}")
-       gsub(javadir, "%{_javadir}")
-
-       gsub(bindir, "%{_bindir}")
-       gsub("%{prefix}/bin", "%{_bindir}")
-       if (prefix"/bin" == bindir)
-               gsub("%{_prefix}/bin", "%{_bindir}")
-
-       for (c = 1; c <= NF; c++) {
-               if ($c ~ sbindir "/fix-info-dir")
-                       continue;
-               if ($c ~ sbindir "/webapp")
-                       continue;
-               if ($c ~ sbindir "/ldconfig")
-                       continue;
-               if ($c ~ sbindir "/chsh")
-                       continue;
-               if ($c ~ sbindir "/usermod")
-                       continue;
-               if ($c ~ sbindir "/chkconfig")
-                       continue;
-               if ($c ~ sbindir "/installzope(product|3package)")
-                       continue;
-               gsub(sbindir, "%{_sbindir}", $c)
-       }
-
-       gsub("%{prefix}/sbin", "%{_sbindir}")
-       if (prefix"/sbin" == sbindir) {
-               gsub("%{_prefix}/sbin", "%{_sbindir}")
-       }
-
-       for (c = 1; c <= NF; c++) {
-               if ($c ~ sysconfdir "/{?cron.")
-                       continue;
-               if ($c ~ sysconfdir "/{?crontab.d")
-                       continue;
-               if ($c ~ sysconfdir "/{?env.d")
-                       continue;
-               if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
-                       continue;
-               if ($c ~ sysconfdir "/{?udev")
-                       continue;
-               if ($c ~ sysconfdir "/{?hotplug")
-                       continue;
-               if ($c ~ sysconfdir "/{?logrotate.d")
-                       continue;
-               if ($c ~ sysconfdir "/{?pam.d")
-                       continue;
-               if ($c ~ sysconfdir "/{?profile.d")
-                       continue;
-               if ($c ~ sysconfdir "/{?rc.d")
-                       continue;
-               if ($c ~ sysconfdir "/{?security")
-                       continue;
-               if ($c ~ sysconfdir "/{?skel")
-                       continue;
-               if ($c ~ sysconfdir "/{?sysconfig")
-                       continue;
-               if ($c ~ sysconfdir "/{?shrc.d")
-                       continue;
-               if ($c ~ sysconfdir "/{?certs")
-                       continue;
-               if ($c ~ sysconfdir "/{?X11")
-                       continue;
-               if ($c ~ sysconfdir "/{?ld.so.conf.d")
-                       continue;
-               if ($c ~ sysconfdir "/{?rpm")
-                       continue;
-               if ($c ~ sysconfdir "/{?bash_completion.d")
-                       continue;
-               if ($c ~ sysconfdir "/{?samba")
-                       continue;
-               if ($c ~ sysconfdir "/shells")
-                       continue;
-               if ($c ~ sysconfdir "/ppp")
-                       continue;
-               if ($c ~ sysconfdir "/dbus-1")
-                       continue;
-               if ($c ~ sysconfdir "/tmpwatch")
-                       continue;
-               if ($c ~ sysconfdir "/acpi")
-                       continue;
-               if ($c ~ sysconfdir "/apm")
-                       continue;
-               gsub(sysconfdir, "%{_sysconfdir}", $c)
-       }
-
-       gsub(docdir, "%{_docdir}")
-
-       gsub(kdedocdir, "%{_kdedocdir}")
-
-       gsub(gtkdocdir, "%{_gtkdocdir}")
-       gsub("%{_docdir}/gtk-doc/html", "%{_gtkdocdir}")
-
-       gsub(php_pear_dir, "%{php_pear_dir}")
-       gsub(php_data_dir, "%{php_data_dir}")
-
-       for (c = 1; c <= NF; c++) {
-               if ($c ~ datadir "/automake")
-                       continue;
-               if ($c ~ datadir "/unsermake")
-                       continue;
-               if ($c ~ datadir "/file/magic.mime")
-                       continue;
-               gsub(datadir, "%{_datadir}", $c)
-       }
-
-       gsub("%{prefix}/share", "%{_datadir}")
-       if (prefix"/share" == datadir)
-               gsub("%{_prefix}/share", "%{_datadir}")
-
-       # CFLAGS="-I/usr/include/ncurses is usually correct.
-       if (!/-I\/usr\/include/) {
-               gsub(includedir, "%{_includedir}")
-       }
-
-       gsub("%{prefix}/include", "%{_includedir}")
-       if (prefix"/include" == includedir) {
-               gsub("%{_prefix}/include", "%{_includedir}")
-       }
-
-       gsub(mandir, "%{_mandir}")
-       if ($0 !~ "%{_datadir}/manual") {
-               gsub("%{_datadir}/man", "%{_mandir}")
-       }
-       gsub("%{_prefix}/share/man", "%{_mandir}")
-       gsub("%{prefix}/share/man", "%{_mandir}")
-       gsub("%{prefix}/man", "%{_mandir}")
-       gsub("%{_prefix}/man", "%{_mandir}")
-
-       gsub(infodir, "%{_infodir}")
-       gsub("%{prefix}/info", "%{_infodir}")
-       gsub("%{_prefix}/info", "%{_infodir}")
-
-       if (prefix !~ "/X11R6") {
-               gsub("%{_datadir}/aclocal", "%{_aclocaldir}")
-       }
-
-       gsub(examplesdir, "%{_examplesdir}")
-
-       if (prefix != "/") {
-               # leave --with-foo=/usr alone
-               if ($0 !~ "--with.*=.*" prefix) {
-                       for (c = 1; c <= NF; c++) {
-                               if ($c ~ prefix "/sbin/fix-info-dir")
-                                       continue;
-                               if ($c ~ prefix "/sbin/webapp")
-                                       continue;
-                               if ($c ~ prefix "/sbin/chsh")
-                                       continue;
-                               if ($c ~ prefix "/sbin/usermod")
-                                       continue;
-                               if ($c ~ prefix "/sbin/installzope(product|3package)")
-                                       continue;
-                               if ($c ~ prefix "/share/automake")
-                                       continue;
-                               if ($c ~ prefix "/share/unsermake")
-                                       continue;
-                               if ($c ~ prefix "/lib/sendmail")
-                                       continue;
-                               if ($c ~ prefix "/lib/pkgconfig")
-                                       continue;
-
-                               # CFLAGS="-I/usr..." is usually correct.
-                               if (/-I\/usr/)
-                                       continue;
-                               # same for LDFLAGS="-L/usr..."
-                               if (/-L\/usr/)
-                                       continue;
-
-                               gsub(prefix, "%{_prefix}", $c)
-                       }
-               }
-               gsub("%{prefix}", "%{_prefix}")
-       }
-
-       # replace back
-       gsub("%{_includedir}/ncurses", "/usr/include/ncurses")
-       gsub("%{_includedir}/freetype", "/usr/include/freetype")
-
-       gsub("%{PACKAGE_VERSION}", "%{version}")
-       gsub("%{PACKAGE_NAME}", "%{name}")
-
-       gsub("^make$", "%{__make}")
-       gsub("^make ", "%{__make} ")
-       gsub("^gcc ", "%{__cc} ")
-       gsub("^rm --interactive=never ", "%{__rm} ")
-
-       # fedora
-       gsub("%{ruby_sitearch}", "%{ruby_sitearchdir}")
-       gsub("%{python_sitearch}", "%{py_sitedir}")
-
-       # mandrake specs
-       gsub("^%make$", "%{__make}")
-       gsub("^%make ", "%{__make} ")
-       gsub("^%makeinstall_std", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
-       gsub("^%{makeinstall}", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
-       gsub("^%makeinstall", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
-       gsub("^%{__rm} -rf %{buildroot}", "rm -rf $RPM_BUILD_ROOT")
-       gsub("^%{__install}", "install")
-       gsub("%optflags", "%{rpmcflags}")
-       gsub("%{compat_perl_vendorarch}", "%{perl_vendorarch}")
-
-       gsub("^%{__make} install DESTDIR=\$RPM_BUILD_ROOT", "%{__make} install \\\n\tDESTDIR=$RPM_BUILD_ROOT")
-       gsub("^fix-info-dir$", "[ ! -x /usr/sbin/fix-info-dir ] || /usr/sbin/fix-info-dir -c %{_infodir} >/dev/null 2>\\&1")
-       $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
-       $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
-       $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
-       $0 = fixedsub("%__install", "install", $0);
-
-       # split configure line to multiple lines
-       if (/%configure / && !/\\$/) {
-               $0 = format_configure($0);
-       }
-
-       gsub("%_bindir", "%{_bindir}")
-       gsub("%_datadir", "%{_datadir}")
-       gsub("%_iconsdir", "%{_iconsdir}")
-       gsub("%_sbindir", "%{_sbindir}")
-       gsub("%_mandir", "%{_mandir}")
-       gsub("%name", "%{name}")
-       gsub(/%__rm/, "rm");
-       gsub(/%__mkdir_p/, "install -d");
-       gsub(/%__cp/, "cp");
-       gsub(/%__ln_s/, "ln -s");
-       gsub(/%__sed/, "%{__sed}");
-       gsub(/%__cat/, "cat");
-       gsub(/%__chmod/, "chmod");
-
-       gsub("/usr/src/linux", "%{_kernelsrcdir}")
-       gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
-
-       if (/^ant / || /^%{ant}/) {
-               sub(/^ant/, "%ant")
-               sub(/^%{ant}/, "%ant")
-               add_br("BuildRequires:  jpackage-utils");
-               add_br("BuildRequires:  rpmbuild(macros) >= 1.300");
-       }
-
-       $0 = fixedsub("%(%{__cc} -dumpversion)", "%{cc_version}", $0);
-       $0 = fixedsub("%(%{__cxx} -dumpversion)", "%{cxx_version}", $0);
-}
-
-function format_configure(line,                n, a, s) {
-       n = split(line, a, / /);
-       s = a[1] " \\\n";
-       for (i = 2; i <= n; i++) {
-               s = s "\t" a[i] " \\\n"
-       }
-       return s
-}
-
-
-# insertion sort of A[1..n]
-# copied from mawk manual
-function isort(A,n,            i,j,hold) {
-       for (i = 2; i <= n; i++) {
-               hold = A[j = i]
-               while (A[j-1] > hold) {
-                       j-- ; A[j+1] = A[j]
-               }
-               A[j] = hold
-       }
-       # sentinel A[0] = "" will be created if needed
-}
-
-
-function use_files_macros(     i, n, t, a, l)
-{
-       use_macros()
-
-       # skip comments
-       if (/^#/) {
-               return 1;
-       }
-
-       sub("^%doc %{_mandir}", "%{_mandir}")
-
-       gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
-       gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
-
-       # uid/gid nobody is not valid in %files
-       if (/%attr([^)]*nobody[^)]*)/ && !/FIXME/) {
-               $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
-       }
-
-       # s[gu]id programs with globs are evil
-       if (/%attr\([246]...,.*\*/ && !/FIXME/) {
-               $0 = $0 " # FIXME no globs for suid/sgid files"
-       }
-
-       # replace back
-       gsub("%{_sysconfdir}/cron\.d", "/etc/cron.d")
-       gsub("%{_sysconfdir}/crontab\.d", "/etc/crontab.d")
-       gsub("%{_sysconfdir}/logrotate\.d", "/etc/logrotate.d")
-       gsub("%{_sysconfdir}/pam\.d", "/etc/pam.d")
-       gsub("%{_sysconfdir}/profile\.d", "/etc/profile.d")
-       gsub("%{_sysconfdir}/rc\.d", "/etc/rc.d")
-       gsub("%{_sysconfdir}/security", "/etc/security")
-       gsub("%{_sysconfdir}/skel", "/etc/skel")
-       gsub("%{_sysconfdir}/sysconfig", "/etc/sysconfig")
-       gsub("%{_sysconfdir}/certs", "/etc/certs")
-       gsub("%{_sysconfdir}/init.d", "/etc/init.d")
-       gsub("%{_sysconfdir}/dbus-1", "/etc/dbus-1")
-       gsub("%{_sysconfdir}/pki", "/etc/pki")
-       gsub("%{_sysconfdir}/tmpwatch", "/etc/tmpwatch")
-
-       # /etc/init.d -> /etc/rc.d/init.d
-       if (!/^\/etc\/init\.d$/) {
-                gsub("/etc/init.d", "/etc/rc.d/init.d")
-       }
-
-       if (/\/etc\/rc\.d\/init\.d\// && !/functions/) {
-               if (!/%attr.*\/etc\/rc\.d\/init\.d/) {
-                       $0 = "%attr(754,root,root) " $0
-               }
-               if (/^%attr.*\/etc\/rc\.d\/init\.d/ && !/^%attr\(754 *,/) {
-                       gsub("^%attr\\(... *,", "%attr(754,");
-               }
-       }
-
-       if (/lib.+\.so/ && !/\.so$/ && !/^%attr.*/ && !/%exclude/) {
-               $0 = "%attr(755,root,root) " $0
-       }
-
-       if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
-               $0 = "%attr(755,root,root) " $0
-       }
-
-       # remove attrs from man pages
-       if (/%{_mandir}/ && /^%attr/) {
-               sub("^%attr\\(.*\\) *", "");
-       }
-
-       # /etc/sysconfig files
-       # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
-       # attr not required, allow default 644 attr
-       if (!/network-scripts/ && !/%dir/ && !/\.d$/ && !/functions/ && !/\/etc\/sysconfig\/wmstyle/) {
-               if (/\/etc\/sysconfig\// && /%config/ && !/%config\(noreplace/) {
-                       gsub("%config", "%config(noreplace)")
-               }
-
-               if (/\/etc\/sysconfig\// && !/%config\(noreplace/) {
-                       $NF = "%config(noreplace) " $NF
-               }
-
-               if (/\/etc\/sysconfig\// && /%attr\(755/) {
-                       gsub("^%attr\\(... *,", "%attr(640,");
-               }
-
-               if (/\/etc\/sysconfig\// && !/%verify/) {
-                       gsub("/etc/sysconfig", "%verify(not size mtime md5) /etc/sysconfig");
-               }
-       }
-
-       # kill leading zeros
-       if (/%attr\(0[1-9]/) {
-               gsub("%attr\\(0", "%attr(")
-       }
-
-       # kill leading whitespace
-       gsub(/^ +/, "");
-
-       # kill default attrs
-       gsub(/%dir %attr\(755,root,root\)/, "%dir");
-       gsub(/%attr\(755,root,root\) %dir/, "%dir");
-       if (!/%dir/) {
-               gsub(/%attr\(644,root,root\) /, "");
-       }
-
-       # sort %verify attrs
-       if (match($0, /%verify\(not([^)]+)\)/)) {
-               t = substr($0, RSTART, RLENGTH)
-               # kill commas: %verify(not,md5,size,mtime)
-               gsub(/,/, " ", t);
-
-               gsub(/^%verify\(not |\)$/, "", t)
-               n = split(t, a, / /)
-               isort(a, n)
-
-               s = "%verify(not"
-               for (i = 1 ; i <= n; i++) {
-                       s = s " " a[i]
-               }
-               s = s ")"
-
-               gsub(/%verify\(not[^)]+\)/, s)
-       }
-
-       if (/%{_mandir}/) {
-               gsub("\.gz$", "*")
-       }
-
-       # locale dir and no %lang -> bad
-       if (/%{_datadir}\/locale\/.*\// && !/%(dir|lang)/) {
-               $(NF + 1) = "# FIXME consider using %find_lang"
-       }
-
-       # python egg-infos
-       if (match($0, "^%{py_site(script)?dir}/.+-py"py_ver".egg-info$")) {
-               # tests:
-               #%{py_sitedir}/*-py2.4.egg-info
-               #%{py_sitescriptdir}/GnuPGInterface-%{version}-py2.4.egg-info
-               #%{py_sitescriptdir}/python_mpd-%{version}-py2.4.egg-info
-               #%{py_sitescriptdir}/mechanize-0.1.6b-py2.4.egg-info
-
-               l = index($0, "/");
-               t = substr($0, 0, l);
-               s = substr($0, l + 1, RLENGTH - l - length("-py"py_ver".egg-info"));
-               if (match(s, "[^-]+$")) {
-#printf("s[%s]; start[%d]; length[%d]\n", s, RSTART, RLENGTH);
-                       if (RSTART > 1) {
-                               s = substr(s, 0, RSTART - 1);
-                       }
-#printf("s2[%s]\n", s);
-                       print "%if \"%{py_ver}\" > \"2.4\""
-#print t "/.+.egg-info"
-                       gsub(t "/.+.egg-info", t "/" s "-*.egg-info");
-                       print
-                       print "%endif"
-                       return 0;
-               }
-       }
-
-       # atrpms
-       $0 = fixedsub("%{perl_man1dir}", "%{_mandir}/man1", $0);
-       $0 = fixedsub("%{perl_man3dir}", "%{_mandir}/man3", $0);
-       $0 = fixedsub("%{perl_bin}", "%{_bindir}", $0);
-
-       gsub(libdir "/pkgconfig", "%{_pkgconfigdir}");
-       gsub("%{_libdir}/pkgconfig", "%{_pkgconfigdir}");
-       gsub("%{_prefix}/lib/pkgconfig", "%{_pkgconfigdir}");
-
-       gsub("%{_datadir}/applications", "%{_desktopdir}");
-       gsub("%{_datadir}/icons", "%{_iconsdir}");
-       gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
-       gsub("%{_datadir}/pear", "%{php_pear_dir}");
-       gsub("%{_datadir}/php", "%{php_data_dir}");
-
-       return 1
-}
-
-function use_script_macros()
-{
-       if (gsub("/sbin/service", "%service")) {
-               sub(" >/dev/null 2>&1 \|\|:", "");
-               sub(" 2> /dev/null \|\| :", "");
-       }
-}
-
-function fill(ch, n, i) {
-       for (i = 0; i < n; i++)
-               printf("%c", ch)
-}
-
-function format_flush(line, indent, newline, word, first_word) {
-       first_word = 1
-       if (format_indent == -1)
-               newline = ""
-       else
-               newline = fill(" ", format_indent) "- "
-
-       while (match(line, /[^\t ]+/)) {
-               word = substr(line, RSTART, RLENGTH)
-               if (length(newline) + length(word) + 1 > tw) {
-                       print newline
-
-                       if (format_indent == -1)
-                               newline = ""
-                       else
-                               newline = fill(" ", format_indent + 2)
-                       first_word = 1
-               }
-
-               if (first_word) {
-                       newline = newline word
-                       first_word = 0
-               } else
-                       newline = newline " " word
-
-               line = substr(line, RSTART + RLENGTH)
-       }
-       if (newline ~ /[^\t ]/) {
-               print newline
-       }
-}
-
-function cflags(var)
-{
-       if ($0 == var "=\"$RPM_OPT_FLAGS\"") {
-               removed[var] = 1
-               return 0
-       }
-
-       if (!/!\?debug/)
-               sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
-       return 1
-}
-
-function unify_url(url)
-{
-
-       # sourceforge urls
-       # Docs about sourceforge mirror system: http://sourceforge.net/apps/trac/sourceforge/wiki/Mirrors
-       sub("^http://prdownloads\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
-       sub("^http://download\.sf\.net/", "http://downloads.sourceforge.net/", url)
-       sub("^http://download\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
-       sub("^http://dl\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
-       sub("^http://.*\.dl\.sourceforge\.net/", "http://downloads.sourceforge.net/", url)
-       sub("^http://dl\.sf\.net/", "http://downloads.sourceforge.net/", url)
-       sub("^http://downloads\.sourceforge\.net/sourceforge/", "http://downloads.sourceforge.net/", url)
-       # new style urls, strip "files/" between and prepend dl.
-       if (match(url, "^http://sourceforge.net/projects/[^/]+/files/")) {
-               url = substr(url, 1, RLENGTH - length("files/")) substr(url, RSTART + RLENGTH);
-               sub("^http://sourceforge.net/projects/", "http://downloads.sourceforge.net/project/", url);
-       }
-       if (url ~ /sourceforge.net/) {
-               sub("[?&]big_mirror=.*$", "", url);
-               sub("[?&]modtime=.*$", "", url);
-               sub("[?]use_mirror=.*$", "", url);
-               sub("[?]download$", "", url);
-               sub("/download$", "", url);
-       }
-
-       sub("^ftp://ftp\.gnome\.org/", "http://ftp.gnome.org/", url)
-       sub("^http://ftp\.gnome\.org/pub/gnome/", "http://ftp.gnome.org/pub/GNOME/", url)
-
-       # apache urls
-       sub("^http://apache.zone-h.org/", "http://www.apache.org/dist/", url)
-
-       # gnu.org
-       sub("^ftp://ftp.gnu.org/", "http://ftp.gnu.org/", url)
-       sub("^http://ftp.gnu.org/pub/gnu/", "http://ftp.gnu.org/gnu/", url)
-
-       return url
-}
-
-function demacroize(str)
-{
-       if (mod_name) {
-               sub("%{mod_name}", mod_name, str);
-       }
-       if (name) {
-               sub("%{name}", name, str);
-       }
-       if (version) {
-               sub("%{version}", version, str);
-       }
-       if (_beta) {
-               sub("%{_beta}", _beta, str);
-       }
-       if (_rc) {
-               sub("%{_rc}", _rc, str);
-       }
-       if (_pre) {
-               sub("%{_pre}", _pre, str);
-       }
-       if (_snap) {
-               sub("%{_snap}", _snap, str);
-       }
-       if (subver) {
-               sub("%{subver}", subver, str);
-       }
-       return str;
-}
-
-function kill_preamble_macros()
-{
-       if ($1 ~ /^Obsoletes:/) {
-               # NB! assigning $2 a value breaks tabbing
-               $2 = demacroize($2);
-       }
-       if ($1 ~ /^URL:/) {
-               # NB! assigning $2 a value breaks tabbing
-               $2 = demacroize($2);
-               $2 = unify_url($2)
-       }
-}
-
-function get_epoch(pkg, ver,   epoch)
-{
-       return
-# should parse the BR lines more adequately:
-#      freetype = 2.0.0 -> correct
-#      freetype = 2.1.9 -> with epoch 1, as epoch 1 was added in 2.1.7
-
-       shell = "grep -o '^" pkg ":[^:]\+' ../PLD-doc/BuildRequires.txt | awk '{print $NF}'";
-       shell | getline epoch;
-       return epoch;
-}
-
-function format_requires(tag, value,   n, p, i, deps, ndeps) {
-       # skip any formatting for commented out items or some weird macros
-       if (/^#/ || /%\(/) {
-               return tag "\t" value
-       }
-       n = split(value, p, / *,? */);
-       for (i = 1; i <= n; i++) {
-               if (p[i+1] ~ /[<=>]/) {
-                       # add epoch if the version doesn't have it but BuildRequires.txt has
-                       if (p[i] ~ /^[a-z]/ && p[i+2] !~ /^[0-9]+:/) {
-                               epoch = get_epoch(p[i], p[i+2])
-                               if (epoch) {
-                                       p[i+2] = epoch ":" p[i+2];
-                               }
-                       }
-                       deps[ndeps++] = p[i] " " p[i+1] " " p[i+2];
-                       i += 2;
-               } else {
-                       deps[ndeps++] = p[i];
-               }
-       }
-       s = ""
-       for (i in deps) {
-               s = s sprintf("%s\t%s\n", tag, deps[i]);
-       }
-       return substr(s, 1, length(s)-1);
-}
-
-function use_tabs()
-{
-       # reverse vim: ts=4 sw=4 et
-       gsub(/    /, "\t");
-}
-
-function add_br(br)
-{
-       BR[BR_count++] = br
-}
-
-
-# Load rpm macros
-# you should update the list also in adapter when making changes here
-function import_rpm_macros() {
-       # File with rpm groups
-       topdir = ENVIRON["_topdir"]
-
-       if (!topdir) {
-               print "adapter.awk should not not be invoked directly, but via adapter script" > "/dev/stderr"
-               do_not_touch_anything = 1
-               exit(rc = 1);
-       }
-
-       if (!ENVIRON["ADAPTER_REVISION"] || ENVIRON["ADAPTER_REVISION"] < 1.44) {
-               print "adapter shell script is outdated, please cvs up it" > "/dev/stderr"
-               do_not_touch_anything = 1
-               exit(rc = 1);
-       }
-
-       # get cvsaddress for changelog section
-       # using rpm macros as too lazy to add ~/.adapterrc parsing support.
-       _cvsmaildomain = ENVIRON["_cvsmaildomain"]
-       _cvsmailfeedback = ENVIRON["_cvsmailfeedback"]
-
-       prefix = ENVIRON["_prefix"]
-       bindir = ENVIRON["_bindir"]
-       sbindir = ENVIRON["_sbindir"]
-       libdir = ENVIRON["_libdir"]
-       sysconfdir = ENVIRON["_sysconfdir"]
-       datadir = ENVIRON["_datadir"]
-       includedir = ENVIRON["_includedir"]
-       mandir = ENVIRON["_mandir"]
-       infodir = ENVIRON["_infodir"]
-       examplesdir = ENVIRON["_examplesdir"]
-       docdir = ENVIRON["_defaultdocdir"]
-       kdedocdir = ENVIRON["_kdedocdir"]
-       gtkdocdir = ENVIRON["_gtkdocdir"]
-       desktopdir = ENVIRON["_desktopdir"]
-       pixmapsdir = ENVIRON["_pixmapsdir"]
-       javadir = ENVIRON["_javadir"]
-       pkgconfigdir = ENVIRON["_pkgconfigdir"]
-
-       perl_sitearch = ENVIRON["perl_sitearch"]
-       perl_archlib = ENVIRON["perl_archlib"]
-       perl_privlib = ENVIRON["perl_privlib"]
-       perl_vendorlib = ENVIRON["perl_vendorlib"]
-       perl_vendorarch = ENVIRON["perl_vendorarch"]
-       perl_sitelib = ENVIRON["perl_sitelib"]
-
-       py_sitescriptdir = ENVIRON["py_sitescriptdir"]
-       py_sitedir = ENVIRON["py_sitedir"]
-       py_scriptdir = ENVIRON["py_scriptdir"]
-       py_ver = ENVIRON["py_ver"]
-
-       ruby_archdir = ENVIRON["ruby_archdir"]
-       ruby_ridir = ENVIRON["ruby_ridir"]
-       ruby_rubylibdir = ENVIRON["ruby_rubylibdir"]
-       ruby_sitearchdir = ENVIRON["ruby_sitearchdir"]
-       ruby_sitelibdir = ENVIRON["ruby_sitelibdir"]
-       ruby_rdocdir = ENVIRON["ruby_rdocdir"]
-
-       php_pear_dir = ENVIRON["php_pear_dir"]
-       php_data_dir = ENVIRON["php_data_dir"]
-       tmpdir = ENVIRON["tmpdir"]
-}
-
-
-# php virtual deps as discussed in devel-en
-function replace_php_virtual_deps() {
-       pkg = $2
-#      if (pkg == "php-program") {
-#              $0 = $1 "\t/usr/bin/php"
-#              return
-#      }
-
-#      if (pkg ~ /^php-[a-z]/ && pkg !~ /^php-(pear|common|cli|devel|fcgi|cgi|dirs|program|pecl-)/) {
-#              sub(/^php-/, "php(", pkg);
-#              sub(/$/, ") # verify this correctness -- it may be wanted to use specific not virtual dep", pkg);
-#              $2 = pkg
-#      }
-
-       if (pkg ~/^php$/) {
-               $2 = "webserver(php)";
-               if ($4 ~ /^[0-9]:/) {
-                       $4 = substr($4, 3);
-               }
-       }
-
-       if (pkg ~/^php4$/) {
-               $2 = "webserver(php)";
-               if ($4 ~ /^[0-9]:/) {
-                       $4 = substr($4, 3);
-               }
-       }
-}
-
-function replace_requires() {
-
-       # jpackages
-       sub(/^java-devel$/, "jdk", $2);
-       sub(/^axis$/, "java-axis", $2);
-       sub(/^gnu-regexp$/, "java-gnu-regexp", $2);
-       sub(/^gnu.regexp$/, "java-gnu-regexp", $2);
-       sub(/^hamcrest$/, "java-hamcrest", $2);
-       sub(/^jaas$/, "java(jaas)", $2);
-       sub(/^jaf$/, "java(jaf)", $2);
-       sub(/^jakarta-ant$/, "ant", $2);
-       sub(/^jakarta-commons-httpclient$/, "java-commons-httpclient", $2);
-       sub(/^jakarta-log4j$/, "java-log4j", $2);
-       sub(/^jakarta-oro$/, "java-oro", $2);
-       sub(/^javamail$/, "java(javamail)", $2);
-       sub(/^jaxp$/, "java(jaxp)", $2);
-       sub(/^jaxp_parser_impl$/, "java(jaxp_parser_impl)", $2);
-       sub(/^jaxp_transform_impl$/, "java(jaxp_transform_impl)", $2);
-       sub(/^jce$/, "java(jce)", $2);
-       sub(/^jdbc-stdext$/, "java(jdbc-stdext)", $2);
-       sub(/^jmx$/, "java(jmx)", $2);
-       sub(/^jndi$/, "java(jndi)", $2);
-       sub(/^jsse$/, "java(jsse)", $2);
-       sub(/^jta$/, "java(jta)", $2);
-       sub(/^ldapjdk$/, "ldapsdk", $2);
-       sub(/^log4j$/, "java-log4j", $2);
-       sub(/^logging-log4j$/, "java-log4j", $2);
-       sub(/^oro$/, "java-oro", $2);
-       sub(/^rhino$/, "java-rhino", $2);
-       sub(/^saxon-scripts$/, "saxon", $2);
-       sub(/^servlet$/, "java(servlet)", $2);
-       sub(/^uddi4j$/, "java-uddi4j", $2);
-       sub(/^wsdl4j$/, "java-wsdl4j", $2);
-       sub(/^xalan-j2$/, "java-xalan", $2);
-       sub(/^xalan-j$/, "java-xalan", $2);
-       sub(/^xerces-j2$/, "java-xerces", $2);
-       sub(/^xerces-j$/, "java-xerces", $2);
-       sub(/^xml-commons-apis$/, "java-xml-commons-apis", $2);
-       sub(/^xml-commons-resolver$/, "java-xml-commons-resolver", $2);
-       sub(/^java\(Portlet\)$/, "java(portlet)", $2);
-       sub(/^java\(Servlet\)$/, "java(servlet)", $2);
-       sub(/^java\(JavaServerFaces\)$/, "java(javaserverfaces)", $2);
-       sub(/^java\(JSP\)$/, "java(jsp)", $2);
-
-       # redhat virtual
-       sub(/^tftp-server$/, "tftpdaemon", $2);
-
-       sub(/^gcc-c\+\+$/, "libstdc++-devel", $2);
-       sub(/^chkconfig$/, "/sbin/chkconfig", $2);
-
-       # fedora
-       sub(/^iscsi-initiator-utils$/, "open-iscsi", $2);
-       sub(/^gnome-python2-extras$/, "python-gnome-extras", $2);
-       sub(/^gnome-python2-gtkspell$/, "python-gnome-extras-gtkspell", $2);
-       sub(/^gtk2$/, "gtk+2", $2);
-       sub(/^gtk2-devel$/, "gtk+2-devel", $2);
-       sub(/^pygtk2-devel$/, "python-pygtk-devel", $2);
-       sub(/^pygtk2$/, "python-pygtk", $2);
-       sub(/^qt4-devel$/, "qt4-build", $2);
-       sub(/^file-devel$/, "libmagic-devel", $2);
-       sub(/^gamin-python$/, "python-gamin", $2);
-       sub(/^pygobject2$/, "python-pygobject", $2);
-       sub(/^tkinter$/, "python-tkinter", $2);
-       sub(/^python-imaging$/, "python-PIL", $2);
-       sub(/^python-imaging-tk$/, "python-PIL-tk", $2);
-       sub(/^initscripts$/, "rc-scripts", $2);
-       sub(/^libXft-devel$/, "xorg-lib-libXft-devel", $2);
-       sub(/^dbus-python$/, "python-dbus", $2);
-       sub(/^python-pygtk$/, "python-pygtk-gtk", $2);
-       sub(/^notify-python$/, "python-pynotify", $2);
-
-       # debian
-       sub(/^libgconf2-dev$/, "GConf2-devel", $2);
-       sub(/^libglib2.0-dev$/, "glib2-devel", $2);
-       sub(/^libgtk2.0-dev$/, "gtk+2-devel", $2);
-       sub(/^libhunspell-dev$/, "hunspell-devel", $2);
-       sub(/^libpango1.0-dev$/, "pango-devel", $2);
-       sub(/^libxslt1-dev$/, "libxslt-devel", $2);
-       sub(/^libgl1-mesa-dev$/, "OpenGL-devel", $2);
-       sub(/^mesa-common-dev$/, "OpenGL-devel", $2);
-       sub(/^libgl1-mesa-dri$/, "OpenGL", $2);
-       sub(/^libglu1-mesa-dev$/, "OpenGL-GLU-devel", $2);
-       sub(/^libxss-dev$/, "xorg-lib-libXScrnSaver-devel", $2);
-       sub(/^libboost-filesystem[0-9.]+-dev$/, "boost-devel", $2);
-       sub(/^libboost-program-options[0-9.]+-dev$/, "boost-devel", $2);
-       sub(/^libboost-regex[0-9.]+-dev$/, "boost-devel", $2);
-       sub(/^libboost-thread[0-9.]+-dev$/, "boost-devel", $2);
-       sub(/^libmcrypt-dev$/, "libmcrypt-devel", $2);
-       sub(/^libcurl4-openssl-dev$/, "curl-devel", $2);
-       sub(/^libmhash-dev$/, "mhash-devel", $2);
-       sub(/^libqt4-dev$/, "qt4-build", $2);
-       sub(/^libssl-dev$/, "openssl-devel", $2);
-
-       replace_php_virtual_deps()
-}
-
-function replace_groupnames(group) {
-       group = replace(group, "Amusements/Games", "Applications/Games");
-       group = replace(group, "Amusements/Games/Strategy/Real Time", "X11/Applications/Games/Strategy");
-       group = replace(group, "Application/Multimedia", "Applications/Multimedia");
-       group = replace(group, "Application/System", "Applications/System");
-       group = replace(group, "Applications/Compilers", "Development/Languages");
-       group = replace(group, "Applications/Daemons", "Daemons");
-       group = replace(group, "Applications/Internet", "Applications/Networking");
-       group = replace(group, "Applications/Internet/Peer to Peer", "Applications/Networking");
-       group = replace(group, "Applications/Productivity", "X11/Applications");
-       group = replace(group, "Database", "Applications/Databases");
-       group = replace(group, "Development/C", "Development/Libraries");
-       group = replace(group, "Development/Code Generators", "Development");
-       group = replace(group, "Development/Docs", "Documentation");
-       group = replace(group, "Development/Documentation", "Documentation");
-       group = replace(group, "Development/Java", "Development/Languages/Java");
-       group = replace(group, "Development/Languages/Other", "Development/Languages");;
-       group = replace(group, "Development/Languages/Ruby", "Development/Languages");
-       group = replace(group, "Development/Libraries/C and C++", "Development/Libraries");
-       group = replace(group, "Development/Libraries/Java", "Development/Languages/Java");
-       group = replace(group, "Development/Libraries/Python", "Development/Languages/Python");
-       group = replace(group, "Development/Libraries/TCL", "Development/Languages/Tcl");;
-       group = replace(group, "Development/Other", "Development");
-       group = replace(group, "Development/Python", "Development/Languages/Python");
-       group = replace(group, "Development/Testing", "Development");
-       group = replace(group, "Emulators", "Applications/Emulators");
-       group = replace(group, "File tools", "Applications/File");
-       group = replace(group, "Games", "Applications/Games");
-       group = replace(group, "Library/Development", "Development/Libraries");
-       group = replace(group, "Networking/Deamons", "Networking/Daemons");
-       group = replace(group, "Productivity/Databases/Servers", "Applications/Databases");
-       group = replace(group, "Productivity/Networking/Web/Servers", "Networking/Daemons/HTTP");;
-       group = replace(group, "Shells", "Applications/Shells");
-       group = replace(group, "System Environment/Base", "Base");
-       group = replace(group, "System Environment/Daemons", "Daemons");
-       group = replace(group, "System Environment/Kernel", "Base/Kernel");
-       group = replace(group, "System Environment/Libraries", "Libraries");
-       group = replace(group, "System Tools", "Applications/System");
-       group = replace(group, "System", "Base");
-       group = replace(group, "System/Base", "Base");
-       group = replace(group, "System/Kernel and hardware", "Base/Kernel");
-       group = replace(group, "System/Libraries", "Libraries");
-       group = replace(group, "System/Servers", "Daemons");
-       group = replace(group, "Text Processing/Markup/HTML", "Applications/Text");
-       group = replace(group, "Text Processing/Markup/XML", "Applications/Text");
-       group = replace(group, "User Interface/Desktops", "X11/Applications");
-       group = replace(group, "Utilities/System", "Applications/System");
-       group = replace(group, "Web/Database", "Applications/WWW");
-       group = replace(group, "X11/GNOME", "X11/Applications");
-       group = replace(group, "X11/GNOME/Applications", "X11/Applications");
-       group = replace(group, "X11/GNOME/Development/Libraries", "X11/Development/Libraries");
-       group = replace(group, "X11/Games", "X11/Applications/Games");
-       group = replace(group, "X11/Games/Strategy", "X11/Applications/Games/Strategy");
-       group = replace(group, "X11/Library", "X11/Libraries");
-       group = replace(group, "X11/Utilities", "X11/Applications");
-       group = replace(group, "X11/XFree86", "X11");
-       group = replace(group, "X11/Xserver", "X11/Servers");
-
-       return group;
-}
-
-# vim:ts=4:sw=4
diff --git a/adapter_.sh b/adapter_.sh
deleted file mode 100644 (file)
index efaa601..0000000
+++ /dev/null
@@ -1,309 +0,0 @@
-#!/bin/sh
-#
-# Authors:
-#      Michał Kuratczyk <kura@pld.org.pl>
-#      Sebastian Zagrodzki <s.zagrodzki@mimuw.edu.pl>
-#      Tomasz Kłoczko <kloczek@rudy.mif.pg.gda.pl>
-#      Artur Frysiak <wiget@pld-linux.org>
-#      Michal Kochanowicz <mkochano@pld.org.pl>
-#      Elan Ruusamäe <glen@pld-linux.org>
-#
-# See cvs log adapter{,.awk} for list of contributors
-#
-# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-
-RCSID='$Id$'
-REVISION=${RCSID#* * } REVISION=${REVISION%% *}
-VERSION="v0.35/$REVISION"
-VERSIONSTRING="\
-Adapter adapts .spec files for PLD Linux.
-$VERSION (C) 1999-2010 Free Penguins".
-
-PROGRAM=${0##*/}
-dir=$(d=$0; [ -L "$d" ] && d=$(readlink -f "$d"); dirname "$d")
-adapter=$dir/adapter.awk
-usage="Usage: $PROGRAM [FLAGS] SPECFILE
-
--s|--no-sort|--skip-sort
-       skip BuildRequires, Requires sorting
--m|--no-macros|--skip-macros
-       skip use_macros() substitutions
--d|--skip-desc
-       skip desc wrapping
--a|--skip-defattr
-       skip %defattr corrections
--o
-       do not do any diffing, just dump the output
-"
-
-if [ ! -x /usr/bin/getopt ]; then
-       echo >&2 "You need to install util-linux to use adapter"
-       exit 1
-fi
-
-if [ ! -x /usr/bin/patch ]; then
-       echo >&2 "You need to install patch to use adapter"
-       exit 1
-fi
-
-[ -n "$PAGER" ] || PAGER="/usr/bin/less -r"
-
-if [ -n "$CONFIG_DIR" ]; then
-       USER_CFG="$CONFIG_DIR/.adapterrc"
-elif [ -n "$HOME_ETC" ]; then
-       USER_CFG="$HOME_ETC/.adapterrc"
-else
-       USER_CFG=~/.adapterrc
-fi
-
-[ -f $USER_CFG ] && . $USER_CFG
-
-t=$(getopt -o hsomdaV --long help,version,sort,sort-br,no-macros,skip-macros,skip-desc,skip-defattr -n "$PROGRAM" -- "$@") || exit $?
-eval set -- "$t"
-
-while true; do
-       case "$1" in
-       -h|--help)
-               echo 2>&1 "$usage"
-               exit 1
-       ;;
-       -s|--no-sort|--skip-sort)
-               export SKIP_SORTBR=1
-       ;;
-       -m|--no-macros|--skip-macros)
-               export SKIP_MACROS=1
-       ;;
-       -d|--skip-desc)
-               export SKIP_DESC=1
-       ;;
-       -a|--skip-defattr)
-               export SKIP_DEFATTR=1
-       ;;
-       -V|--version)
-               echo "$VERSIONSTRING"
-               exit 0
-               ;;
-       -o)
-               outputonly=1
-       ;;
-       --)
-               shift
-               break
-       ;;
-       *)
-               echo >&2 "$PROGRAM: Internal error: \`$1' not recognized!"
-               exit 1
-               ;;
-       esac
-       shift
-done
-
-diffcol()
-{
-       # vim like diff colourization
-LC_ALL=en_US.UTF-8 gawk ' {
-       split( $0, S, /\t/ );
-       $0 = S[ 1 ];
-       for ( i = 2; i in S; i++ ) {
-               spaces = 7 - ( (length( $0 ) - 1) % 8 );
-               $0 = $0 "\xE2\x9E\x94";
-               for ( y = 0; y < spaces; y++ )
-                       $0 = $0 "\xE2\x87\xBE";
-               $0 = $0 S[ i ];
-       }
-       gsub( /\033/, "\033[44m^[\033[49m" );
-       cmd = "";
-       if ( sub( /^ /, "" ) )
-               cmd = " ";
-       sub( /(\xE2\x9E\x94(\xE2\x87\xBE)*| )+$/, "\033[31;41m&\033[39;49m" );
-       gsub( /\xE2\x9E\x94(\xE2\x87\xBE)*/, "\033[7m&\033[27m" );
-       gsub( /\xE2\x87\xBE/, " " );
-       # uncomment if you do not like utf-8 arrow
-       # gsub( /\xE2\x9E\x94/, ">" );
-       $0 = cmd $0;
-       gsub( /\007/, "\033[44m^G\033[49m" );
-       gsub( /\r/, "\033[44m^M\033[49m" );
-}
-/^(Index:|diff|---|\+\+\+) / { $0 = "\033[32m" $0 }
-/^@@ / { $0 = "\033[33m" $0 }
-/^-/ { $0 = "\033[35m" $0 }
-/^+/ { $0 = "\033[36m" $0 }
-{ $0 = $0 "\033[0m"; print }
-' "$@"
-}
-
-diff2hunks()
-{
-       # diff2hunks orignally by dig
-       perl -e '
-#! /usr/bin/perl -w
-
-use strict;
-
-for my $filename (@ARGV) {
-       my $counter = 1;
-       my $fh;
-       open $fh, "<", $filename or die "$filename: open for reading: $!";
-       my @lines = <$fh>;
-       my @hunks;
-       my @curheader;
-       for my $i (0 ... $#lines) {
-               next unless $lines[$i] =~ m/^\@\@ /;
-               if ($i >= 2 and $lines[$i - 2] =~ m/^--- / and $lines[$i - 1] =~ m/^\+\+\+ /) {
-                       @curheader = @lines[$i - 2 ... $i - 1];
-               }
-               next unless @curheader;
-               my $j = $i + 1;
-               while ($j < @lines and $lines[$j] !~ m/^\@\@ /) {$j++}
-               $j -= 2
-                       if $j >= 3 and $j < @lines
-                               and $lines[$j - 2] =~ m/^--- /
-                               and $lines[$j - 1] =~ m/^\+\+\+ /;
-               $j--;
-               $j-- until $lines[$j] =~ m/^[ @+-]/;
-               my $hunkfilename = $filename;
-               $hunkfilename =~ s/((\.(pat(ch)?|diff?))?)$/"-".sprintf("%03i",$counter++).$1/ei;
-               my $ofh;
-               open $ofh, ">", $hunkfilename or die "$hunkfilename: open for writing: $!";
-               print $ofh @curheader, @lines[$i ... $j];
-               close $ofh;
-       }
-}
-' "$@"
-}
-
-# import selected macros for adapter.awk
-# you should update the list also in adapter.awk when making changes here
-import_rpm_macros() {
-       macros="
-       _topdir
-       _prefix
-       _bindir
-       _sbindir
-       _libdir
-       _sysconfdir
-       _datadir
-       _includedir
-       _mandir
-       _infodir
-       _examplesdir
-       _defaultdocdir
-       _kdedocdir
-       _gtkdocdir
-       _desktopdir
-       _pixmapsdir
-       _javadir
-       _pkgconfigdir
-
-       perl_sitearch
-       perl_archlib
-       perl_privlib
-       perl_vendorlib
-       perl_vendorarch
-       perl_sitelib
-
-       py_sitescriptdir
-       py_sitedir
-       py_scriptdir
-       py_ver
-
-       ruby_archdir
-       ruby_ridir
-       ruby_rubylibdir
-       ruby_sitearchdir
-       ruby_sitelibdir
-       ruby_rdocdir
-
-       php_pear_dir
-       php_data_dir
-       tmpdir
-"
-       eval_expr=""
-       for macro in $macros; do
-               eval_expr="$eval_expr\nexport $macro='%{$macro}'"
-       done
-
-
-       # get cvsaddress for changelog section
-       # using rpm macros as too lazy to add ~/.adapterrc parsing support.
-       eval_expr="$eval_expr
-       export _cvsmaildomain='%{?_cvsmaildomain}%{!?_cvsmaildomain:@pld-linux.org}'
-       export _cvsmailfeedback='%{?_cvsmailfeedback}%{!?_cvsmailfeedback:PLD Team <feedback@pld-linux.org>}'
-       "
-
-       export ADAPTER_REVISION=$REVISION
-
-       eval $(rpm --eval "$(echo -e $eval_expr)")
-}
-
-adapterize() {
-       local workdir
-       workdir=$(mktemp -d ${TMPDIR:-/tmp}/adapter-XXXXXX) || exit $?
-       awk=gawk
-
-       local tmp=$workdir/$(basename $SPECFILE) || exit $?
-
-       import_rpm_macros
-
-       LC_ALL=en_US.UTF-8 $awk -f $adapter $SPECFILE > $tmp || exit $?
-
-       if [ "$outputonly" = 1 ]; then
-               cat $tmp
-
-       elif [ "$(diff --brief $SPECFILE $tmp)" ]; then
-               diff -u $SPECFILE $tmp > $tmp.diff
-               if [ -t 1 ]; then
-                               diffcol $tmp.diff | $PAGER
-                               while : ; do
-                                       echo -n "Accept? (Yes, No, Confirm each chunk)? "
-                                       read ans
-                                       case "$ans" in
-                                       [yYoO]) # y0 mama
-                                               mv -f $tmp $SPECFILE
-                                               echo "Ok, adapterized."
-                                               break
-                                       ;;
-                                       [cC]) # confirm each chunk
-                                               diff2hunks $tmp.diff
-                                               for t in $(ls $tmp-*.diff); do
-                                                               diffcol $t | $PAGER
-                                                               echo -n "Accept? (Yes, [N]o, Quit)? "
-                                                               read ans
-                                                               case "$ans" in
-                                                               [yYoO]) # y0 mama
-                                                                       patch -p0 < $t
-                                                                       ;;
-                                                               [Q]) # Abort
-                                                                       break
-                                                                       ;;
-                                                               esac
-                                               done
-                                               break
-                                       ;;
-                                       [QqnNsS])
-                                               echo "Ok, exiting."
-                                               break
-                                       ;;
-                                       esac
-                               done
-               else
-                               cat $tmp.diff
-               fi
-       else
-               echo "The SPEC is perfect ;)"
-       fi
-
-       rm -rf $workdir
-}
-
-SPECFILE="$1"
-[ -f "$SPECFILE" ] || SPECFILE="$(basename $SPECFILE .spec).spec"
-
-if [ $# -ne 1 -o ! -f "$SPECFILE" ]; then
-       echo "$usage"
-       exit 1
-fi
-
-adapterize
-
-# vim: ts=4:sw=4
diff --git a/builder_.sh b/builder_.sh
deleted file mode 100644 (file)
index e689068..0000000
+++ /dev/null
@@ -1,2624 +0,0 @@
-#!/bin/ksh
-#
-# This program is free software, distributed under the terms of
-# the GNU General Public License Version 2.
-#
-# -----------
-# Exit codes:
-#        0 - succesful
-#        1 - help displayed
-#        2 - no spec file name in cmdl parameters
-#        3 - spec file not stored in repo
-#        4 - some source, patch or icon files not stored in repo
-#        5 - package build failed
-#        6 - spec file with errors
-#        7 - wrong source in /etc/poldek.conf
-#        8 - Failed installing buildrequirements and subrequirements
-#        9 - Requested tag already exist
-#       10 - Refused to build fractional release
-#      100 - Unknown error (should not happen)
-
-# Notes (todo/bugs):
-# - when Icon: field is present, -5 and -a5 doesn't work
-# - builder -R skips installing BR if spec is not present before builder invocation (need to run builder twice)
-# - does not respect NoSource: X, and tries to cvs up such files [ example: VirtualBox-bin.spec and its Source0 ]
-# TODO:
-# - ability to do ./builder -bb foo.spec foo2.spec foo3.spec
-# - funny bug, if source-md5 is set then builder will download from distfiles even if there is no url present:
-#   Source10:  forwardfix.pl
-#   # Source10-md5:    8bf85f7368933a4e0cb4f875bac28733
-# - builder --help:
-#      basename: missing operand
-#      Try `basename --help' for more information.
-#      -- and the normal usage info --
-
-PROGRAM=${0##*/}
-APPDIR=$(d=$0; [ -L "$d" ] && d=$(readlink -f "$d"); dirname "$d")
-RCSID='$Id$' r=${RCSID#* * } rev=${r%% *}
-VERSION="v0.35/$rev"
-VERSIONSTRING="\
-Build package utility from PLD Linux CVS repository
-$VERSION (C) 1999-2010 Free Penguins".
-
-PATH="/bin:/usr/bin:/usr/sbin:/sbin:/usr/X11R6/bin"
-
-# required rpm-build-macros
-RPM_MACROS_VER=1.534
-
-COMMAND="build"
-TARGET=""
-
-SPECFILE=""
-BE_VERBOSE=""
-QUIET=""
-CLEAN=""
-DEBUG=""
-NOURLS=""
-NOCVS=""
-NOCVSSPEC=""
-NODIST=""
-NOINIT=""
-PREFMIRRORS=""
-UPDATE=""
-ADD5=""
-NO5=""
-ALWAYS_CVSUP=${ALWAYS_CVSUP:-"yes"}
-CVSROOT=""
-GREEDSRC=""
-
-# use rpm 4.4.6+ digest format instead of comments if non-zero
-USEDIGEST=
-
-# user agent when fetching files
-USER_AGENT="PLD/Builder($VERSION)"
-
-# It can be used i.e. in log file naming.
-# See LOGFILE example.
-DATE=`date +%Y-%m-%d_%H-%M-%S`
-
-# Example: LOGFILE='../log.$PACKAGE_NAME'
-# Example: LOGFILE='../LOGS/log.$PACKAGE_NAME.$DATE'
-# Example: LOGFILE='$PACKAGE_NAME/$PACKAGE_NAME.$DATE.log'
-# Example: LOGFILE='$PACKAGE_NAME.$DATE.log'
-# Yes, you can use variable name! Note _single_ quotes!
-LOGFILE=''
-
-LOGDIR=""
-LOGDIROK=""
-LOGDIRFAIL=""
-LASTLOG_FILE=""
-
-CHMOD="no"
-CHMOD_MODE="0644"
-RPMOPTS=""
-RPMBUILDOPTS=""
-BCOND=""
-GROUP_BCONDS="no"
-
-# create symlinks for tools in PACKAGE_DIR, see get_spec()
-SYMLINK_TOOLS="no"
-
-PATCHES=""
-SOURCES=""
-ICONS=""
-PACKAGE_RELEASE=""
-PACKAGE_VERSION=""
-PACKAGE_NAME=""
-ASSUMED_NAME=""
-PROTOCOL="ftp"
-WGET_RETRIES=${MAX_WGET_RETRIES:-0}
-
-CVS_COMMAND=${CVS_COMMAND:-cvs}
-CVS_FORCE=""
-CVSIGNORE_DF="yes"
-CVS_RETRIES=${MAX_CVS_RETRIES:-1000}
-CVS_SERVER="cvs.pld-linux.org"
-CVSTAG=""
-
-RES_FILE=""
-
-DISTFILES_SERVER="://distfiles.pld-linux.org"
-ATTICDISTFILES_SERVER="://attic-distfiles.pld-linux.org"
-
-DEF_NICE_LEVEL=19
-SCHEDTOOL="auto"
-
-FAIL_IF_NO_SOURCES="yes"
-
-# let get_files skip over files which are present to get those damn files fetched
-SKIP_EXISTING_FILES="no"
-
-TRY_UPGRADE=""
-# should the specfile be restored if upgrade failed?
-REVERT_BROKEN_UPGRADE="yes"
-
-if rpm --specsrpm 2>/dev/null; then
-       FETCH_BUILD_REQUIRES_RPMSPECSRPM="yes"
-       FETCH_BUILD_REQUIRES_RPMGETDEPS="no"
-else
-       FETCH_BUILD_REQUIRES_RPMSPECSRPM="no"
-       if [ -x /usr/bin/rpm-getdeps ]; then
-               FETCH_BUILD_REQUIRES_RPMGETDEPS="yes"
-       else
-               FETCH_BUILD_REQUIRES_RPMGETDEPS="no"
-       fi
-fi
-
-
-# Here we load saved user environment used to
-# predefine options set above, or passed to builder
-# in command line.
-# This one reads global system environment settings:
-if [ -f ~/etc/builderrc ]; then
-       . ~/etc/builderrc
-fi
-# And this one cascades settings using user personal
-# builder settings.
-# Example of ~/.builderrc:
-#
-#UPDATE_POLDEK_INDEXES="yes"
-#FETCH_BUILD_REQUIRES="yes"
-#REMOVE_BUILD_REQUIRES="force"
-#GROUP_BCONDS="yes"
-#LOGFILE='../LOGS/log.$PACKAGE_NAME.$DATE'
-#TITLECHANGE=no
-#
-SU_SUDO=""
-if [ -n "$HOME_ETC" ]; then
-       USER_CFG="$HOME_ETC/.builderrc"
-       BUILDER_MACROS="$HOME_ETC/.builder-rpmmacros"
-else
-       USER_CFG=~/.builderrc
-       BUILDER_MACROS=~/.builder-rpmmacros
-fi
-
-[ -f "$USER_CFG" ] && . "$USER_CFG"
-
-if [ "$SCHEDTOOL" = "auto" ]; then
-       if [ -x /usr/bin/schedtool ] && schedtool -B -e echo >/dev/null; then
-               SCHEDTOOL="schedtool -B -e"
-       else
-               SCHEDTOOL="no"
-       fi
-fi
-
-if [ -n "$USE_PROZILLA" ]; then
-       GETURI="proz --no-getch -r -P ./ -t$WGET_RETRIES $PROZILLA_OPTS"
-       GETURI2="$GETURI"
-       OUTFILEOPT="-O"
-elif [ -n "$USE_AXEL" ]; then
-       GETURI="axel -a $AXEL_OPTS"
-       GETURI2="$GETURI"
-       OUTFILEOPT="-o"
-else
-       wget --help 2>&1 | grep -q -- ' --no-check-certificate ' && WGET_OPTS="$WGET_OPTS --no-check-certificate"
-       wget --help 2>&1 | grep -q -- ' --inet ' && WGET_OPTS="$WGET_OPTS --inet"
-       wget --help 2>&1 | grep -q -- ' --retry-connrefused ' && WGET_OPTS="$WGET_OPTS --retry-connrefused"
-       WGET_OPTS="$WGET_OPTS --user-agent=$USER_AGENT"
-
-       GETURI="wget --passive-ftp -c -nd -t$WGET_RETRIES $WGET_OPTS"
-       GETURI2="wget -c -nd -t$WGET_RETRIES $WGET_OPTS"
-       OUTFILEOPT="-O"
-fi
-
-GETLOCAL="cp -a"
-
-if (rpm --version 2>&1 | grep -q '4.0.[0-2]'); then
-       RPM="rpm"
-       RPMBUILD="rpm"
-else
-       RPM="rpm"
-       RPMBUILD="rpmbuild"
-fi
-
-#
-# sanity checks
-#
-if [ -d $HOME/rpm/SOURCES ]; then
-       echo "ERROR: ~/rpm/{SPECS,SOURCES} structure is obsolete" >&2
-       echo "ERROR: get rid of your ~/rpm/SOURCES" >&2
-       exit 1
-fi
-
-#
-# are we using cvs-nserver ?
-#
-CVS_NSERVER=0
-$CVS_COMMAND --version 2>&1 | grep -q 'CVS-nserver'
-[ $? -eq 0 ] && CVS_NSERVER=1
-
-POLDEK_INDEX_DIR="$($RPM --eval %_rpmdir)/"
-POLDEK_CMD="$SU_SUDO /usr/bin/poldek --noask"
-
-run_poldek() {
-       RES_FILE=$(mktemp -t builder.XXXXXX || ${TMPDIR:-/tmp}/builder.$RANDOM)
-       if [ -n "$LOGFILE" ]; then
-               LOG=`eval echo $LOGFILE`
-               if [ -n "$LASTLOG_FILE" ]; then
-                       echo "LASTLOG=$LOG" > $LASTLOG_FILE
-               fi
-               (${NICE_COMMAND} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE})|tee -a $LOG
-               return $exit_pldk
-       else
-               (${NICE_COMMAND} ${POLDEK_CMD} `while test $# -gt 0; do echo "$1 ";shift;done` ; echo $? > ${RES_FILE}) 1>&2 >/dev/null
-               return `cat ${RES_FILE}`
-               rm -rf ${RES_FILE}
-       fi
-}
-
-#---------------------------------------------
-# functions
-
-usage() {
-       if [ -n "$DEBUG" ]; then set -xv; fi
-       echo "\
-Usage: builder [-D|--debug] [-V|--version] [--short-version] [-a|--as_anon] [-b|-ba|--build]
-[-bb|--build-binary] [-bs|--build-source] [-bc] [-bi] [-bl] [-u|--try-upgrade]
-[{-cf|--cvs-force}] [{-B|--branch} <branch>] [{-d|--cvsroot} <cvsroot>]
-[-g|--get] [-h|--help] [--http] [{-l|--logtofile} <logfile>] [-m|--mr-proper]
-[-q|--quiet] [--date <yyyy-mm-dd> [-r <cvstag>] [{-T|--tag <cvstag>]
-[-Tvs|--tag-version-stable] [-Ts|--tag-stable] [-Tv|--tag-version]
-[{-Tp|--tag-prefix} <prefix>] [{-tt|--test-tag}] [--use-greed-sources]
-[-nu|--no-urls] [-v|--verbose] [--opts <rpm opts>] [--short-circuit]
-[--show-bconds] [--with/--without <feature>] [--define <macro> <value>]
-<package>[.spec][:cvstag]
-
--5, --update-md5    - update md5 comments in spec, implies -nd -ncs
--a5, --add-md5      - add md5 comments to URL sources, implies -nc -nd -ncs
--n5, --no-md5       - ignore md5 comments in spec
--D, --debug         - enable builder script debugging mode,
--debug              - produce rpm debug package (same as --opts -debug)
--V, --version       - output builder version string
---short-version     - output builder short version
--a, --as_anon       - get files via pserver as cvs@$CVS_SERVER,
--b, -ba, --build    - get all files from CVS repo or HTTP/FTP and build package
-                      from <package>.spec,
--bb, --build-binary - get all files from CVS repo or HTTP/FTP and build binary
-                      only package from <package>.spec,
--bp, --build-prep   - execute the %prep phase of <package>.spec,
--bc                 - execute the %build phase of <package>.spec,
--bi                 - execute the %install phase of <package>.spec
--bl                                    - execute the %files phase of <package>.spec
--bs, --build-source - get all files from CVS repo or HTTP/FTP and only pack
-                      them into src.rpm,
---short-circuit     - short-circuit build
--B, --branch        - add branch
--c, --clean         - clean all temporarily created files (in BUILD\$RPM_BUILD_ROOT) after rpmbuild commands.
-                      may be used with building process.
--m, --mr-proper     - clean all temporarily created files (in BUILD, SOURCES,
-                                         SPECS and \$RPM_BUILD_ROOT and CVS/Entries). Doesn't run
-                                         any rpm building.
--cf, --cvs-force       - use -F when tagging (useful when moving branches)
--d <cvsroot>, --cvsroot <cvsroot>
-                    - setup \$CVSROOT,
---define <macro> <value>
-                    - define a macro <macro> with value <value>,
---alt_kernel <kernel>
-                    - same as --define 'alt_kernel <kernel>'
---nodeps            - rpm won't check any dependences
--g, --get           - get <package>.spec and all related files from CVS repo
-                      or HTTP/FTP,
--h, --help          - this message,
---http              - use http instead of ftp,
--l <logfile>, --logtofile <logfile>
-                    - log all to file,
--nc, --no-cvs       - don't download sources from CVS, if source URL is given,
--ncs, --no-cvs-specs
-                    - don't check specs in CVS
--nd, --no-distfiles - don't download from distfiles
--nm, --no-mirrors   - don't download from mirror, if source URL is given,
--nu, --no-urls      - don't try to download from FTP/HTTP location,
--ns, --no-srcs      - don't download Sources/Patches
--ns0, --no-source0  - don't download Source0
--nn, --no-net       - don't download anything from the net
--pm, --prefer-mirrors - prefer mirrors (if any) over distfiles for SOURCES
---no-init           - don't initialize builder paths (SPECS and SOURCES)
--ske,
---skip-existing-files - skip existing files in get_files
---opts <rpm opts>   - additional options for rpm
--q, --quiet         - be quiet,
---date yyyy-mm-dd   - build package using resources from specified CVS date,
--r <cvstag>, --cvstag <cvstag>
-                    - build package using resources from specified CVS tag,
--A                  - build package using CVS resources as any sticky tags/date/kopts being reset.
--R, --fetch-build-requires
-                    - fetch what is BuildRequired,
--RB, --remove-build-requires
-                    - remove all you fetched with -R or --fetch-build-requires
-                      remember, this option requires confirmation,
--FRB, --force-remove-build-requires
-                    - remove all you fetched with -R or --fetch-build-requires
-                      remember, this option works without confirmation,
--sd, --source-distfiles - list sources available from distfiles (intended for offline
-                      operations; does not work when Icon field is present
-                      but icon file is absent),
--sc, --source-cvs - list sources available from CVS
--sdp, --source-distfiles-paths - list sources available from distfiles -
-                      paths relative to distfiles directory (intended for offline
-                      operations; does not work when Icon field is present
-                      but icon file is absent),
--sf, --source-files - list sources - bare filenames (intended for offline
-                      operations; does not work when Icon field is present
-                      but icon file is absent),
--sp, --source-paths - list sources - filenames with full local paths (intended for
-                      offline operations; does not work when Icon field is present
-                      but icon file is absent),
--su, --source-urls  - list urls - urls to sources and patches
-                      intended for copying urls with spec with lots of macros in urls
--T <cvstag> , --tag <cvstag>
-                    - add cvs tag <cvstag> for files,
--Tvs, --tag-version-stable
-                    - add cvs tags STABLE and NAME-VERSION-RELEASE for files,
--Ts, --tag-stable
-                    - add cvs tag STABLE for files,
--Tv, --tag-version
-                    - add cvs tag NAME-VERSION-RELEASE for files,
--Tp, --tag-prefix <prefix>
-                    - add <prefix> to NAME-VERSION-RELEASE tags,
--tt, --test-tag <prefix>
-                    - fail if tag is already present,
--ir, --integer-release-only
-                    - allow only integer and snapshot releases
--v, --verbose       - be verbose,
--u, --try-upgrade   - check version, and try to upgrade package
--un, --try-upgrade-with-float-version
-                    - as above, but allow float version
---use-greed-sources
-                    - try download source from tag head if don't find it in
-                      current tag
--U, --update        - refetch sources, don't use distfiles, and update md5 comments
--Upi, --update-poldek-indexes
-                    - refresh or make poldek package index files.
--np, --nopatch <patchnumber>
-                    - don't apply <patchnumber>
---show-bconds       - show available conditional builds, which can be used
-                    - with --with and/or --without switches.
---show-bcond-args   - show active bconds, from ~/.bcondrc. this is used by
-                      ./repackage.sh script. in other words, the output is
-                      parseable by scripts.
---show-avail-bconds - show available bconds
---with/--without <feature>
-                    - conditional build package depending on %_with_<feature>/
-                      %_without_<feature> macro switch.  You may now use
-                      --with feat1 feat2 feat3 --without feat4 feat5 --with feat6
-                      constructions. Set GROUP_BCONDS to yes to make use of it.
---target <platform>, --target=<platform>
-                     - build for platform <platform>.
---init-rpm-dir       - initialize ~/rpm directory structure
-"
-}
-
-# change dependency to specname
-# common changes:
-# - perl(Package::Name) -> perl-Package-Name
-depspecname() {
-       local package="$1"
-
-       package=$(echo "$package" | sed -e '/perl(.*)/{s,perl(\(.*\)),perl-\1,;s,::,-,g};' -e 's/-\(devel\|static\)$//' )
-       echo "$package"
-}
-
-update_shell_title() {
-       [ -t 1 ] || return
-       local len=${COLUMNS:-80}
-       local msg="$(echo "$*" | cut -c-$len)"
-
-       if [ -n "$BE_VERBOSE" ]; then
-               echo >&2 "$(date +%s.%N) $*"
-       fi
-
-       if [ "x$TITLECHANGE" = "xyes" -o "x$TITLECHANGE" = "x" ]; then
-               local pkg
-               if [ -n "$PACKAGE_NAME" ]; then
-                       pkg=${PACKAGE_NAME}-${PACKAGE_VERSION}-${PACKAGE_RELEASE}
-               else
-                       pkg=${SPECFILE}
-               fi
-
-               msg="$pkg: ${SHELL_TITLE_PREFIX:+$SHELL_TITLE_PREFIX }$msg"
-               msg=$(echo $msg | tr -d '\n\r')
-               case "$TERM" in
-                       cygwin|xterm*)
-                       echo >&2 -ne "\033]1;$msg\007\033]2;$msg\007"
-               ;;
-                       screen*)
-                       echo >&2 -ne "\033]0;$msg\007"
-               ;;
-               esac
-       fi
-}
-
-# set TARGET from BuildArch: from SPECFILE
-set_spec_target() {
-       if [ -n "$SPECFILE" ] && [ -z "$TARGET" ]; then
-               tmp=$(awk '/^BuildArch:/ { print $NF; exit }' $ASSUMED_NAME/$SPECFILE)
-               if [ "$tmp" ]; then
-                               target_platform=$(rpm -E '%{_target_vendor}-%{_target_os}%{?_gnu}')
-                               TARGET="$tmp"
-                               case "$RPMBUILD" in
-                               "rpmbuild")
-                                       TARGET_SWITCH="--target ${TARGET}-${target_platform}" ;;
-                               "rpm")
-                                       TARGET_SWITCH="--target=$TARGET" ;;
-                               esac
-               fi
-       fi
-}
-
-# runs rpm with minimal macroset
-minirpm() {
-       # we reset macros not to contain macros.build as all the %() macros are
-       # executed here, while none of them are actually needed.
-       # at the time of this writing macros.build + macros contained 70 "%(...)" macros.
-       safe_macrofiles=$(rpm $TARGET_SWITCH --showrc | awk -F: '/^macrofiles/ { gsub(/^macrofiles[ \t]+:/, "", $0); gsub(/:.*macros.build:/, ":", $0); print $0 } ')
-
-       # TODO: move these to /usr/lib/rpm/macros
-       cat > $BUILDER_MACROS <<'EOF'
-%x8664 x86_64 amd64 ia32e
-%alt_kernel %{nil}
-%_alt_kernel %{nil}
-%bootstrap_release() %{1}
-%requires_releq_kernel_up(s:n:) %{nil}
-%requires_releq_kernel_smp(s:n:) %{nil}
-%requires_releq_kernel(s:n:) %{nil}
-%requires_releq() %{nil}
-%pyrequires_eq() %{nil}
-%requires_eq() %{nil}
-%requires_eq_to() %{nil}
-%requires_ge() %{nil}
-%releq_kernel_up(n:) ERROR
-%releq_kernel_smp(n:) ERROR
-%releq_kernel(n:) ERROR
-%kgcc_package ERROR
-%_fontsdir ERROR
-%ruby_version ERROR
-%ruby_ver_requires_eq() %{nil}
-%ruby_mod_ver_requires_eq() %{nil}
-%__php_api_requires() %{nil}
-%php_major_version ERROR
-%php_api_version ERROR
-%requires_xorg_xserver_extension %{nil}
-%requires_xorg_xserver_xinput %{nil}
-%requires_xorg_xserver_font %{nil}
-%requires_xorg_xserver_videodrv %{nil}
-%py_ver ERROR
-%perl_vendorarch ERROR
-%perl_vendorlib ERROR
-# damn. need it here! - copied from /usr/lib/rpm/macros.build
-%tmpdir                %(echo "${TMPDIR:-/tmp}")
-%patchset_source(f:b:) %(
-       base=%{-b*}%{!-b*:10000};
-       start=$(expr $base + %1);
-       end=$(expr $base + %{?2}%{!?2:%{1}});
-       # we need to call seq twice as it doesn't allow two formats
-       seq -f 'Patch%g:' $start $end > %{tmpdir}/__ps1;
-       seq -f '%{-f*}' %1 %{?2}%{!?2:%{1}} > %{tmpdir}/__ps2;
-       paste %{tmpdir}/__ps{1,2};
-       rm -f %{tmpdir}/__ps{1,2};
-) \
-%{nil}
-%add_etc_shells(p) %{p:<lua>}
-%remove_etc_shells(p) %{p:<lua>}
-%lua_add_etc_shells()  %{nil}
-%lua_remove_etc_shells() %{nil}
-%required_jdk %{nil}
-%buildrequires_jdk %{nil}
-EOF
-       if [ "$NOINIT" = "yes" ] ; then
-               cat >> $BUILDER_MACROS <<'EOF'
-%_specdir ./
-%_sourcedir ./
-EOF
-       fi
-       eval $RPMBUILD $TARGET_SWITCH --macros "$safe_macrofiles:$BUILDER_MACROS" $QUIET $RPMOPTS $RPMBUILDOPTS $BCOND $* 2>&1
-}
-
-cache_rpm_dump() {
-       if [ -n "$DEBUG" ]; then
-               set -x
-               set -v
-       fi
-
-       if [ -x /usr/bin/rpm-specdump ]; then
-               update_shell_title "cache_rpm_dump using rpm-specdump command"
-               rpm_dump_cache=$(rpm-specdump $TARGET_SWITCH $BCOND $SPECFILE)
-       else
-               update_shell_title "cache_rpm_dump using rpmbuild command"
-               local rpm_dump
-               rpm_dump=`
-                       # what we need from dump is NAME, VERSION, RELEASE and PATCHES/SOURCES.
-                       dump='%{echo:dummy: PACKAGE_NAME %{name} }%dump'
-                       case "$RPMBUILD" in
-                       rpm)
-                               ARGS='-bp'
-                               ;;
-                       rpmbuild)
-                               ARGS='--nodigest --nosignature --nobuild'
-                               ;;
-                       esac
-                       minirpm $ARGS --define "'prep $dump'" --nodeps $SPECFILE
-               `
-               if [ $? -gt 0 ]; then
-                       error=$(echo "$rpm_dump" | sed -ne '/^error:/,$p')
-                       echo "$error" >&2
-                       Exit_error err_build_fail
-               fi
-
-               # make small dump cache
-               rpm_dump_cache=`echo "$rpm_dump" | awk '
-                       $2 ~ /^SOURCEURL/ {print}
-                       $2 ~ /^PATCHURL/  {print}
-                       $2 ~ /^nosource/ {print}
-                       $2 ~ /^PACKAGE_/ {print}
-               '`
-       fi
-
-       update_shell_title "cache_rpm_dump: OK!"
-}
-
-rpm_dump() {
-       if [ -z "$rpm_dump_cache" ] ; then
-               echo >&2 "internal error: cache_rpm_dump not called! (missing %prep?)"
-       fi
-       echo "$rpm_dump_cache"
-}
-
-get_icons() {
-       update_shell_title "get icons"
-       ICONS=$(awk '/^Icon:/ {print $2}' $PACKAGE_DIR/${SPECFILE})
-       if [ -z "$ICONS" ]; then
-               return
-       fi
-
-       rpm_dump_cache="kalasaba" NODIST="yes" get_files $ICONS
-}
-
-parse_spec() {
-       update_shell_title "parsing specfile"
-       if [ -n "$DEBUG" ]; then
-               set -x
-               set -v
-       fi
-
-       # icons are needed for successful spec parse
-       get_icons
-
-       cd $PACKAGE_DIR
-       cache_rpm_dump
-
-       if (rpm_dump | grep -qEi ":.*nosource.*1"); then
-               FAIL_IF_NO_SOURCES="no"
-       fi
-
-       if [ "$NOSRCS" != "yes" ]; then
-               SOURCES=$(rpm_dump | awk '$2 ~ /^SOURCEURL[0-9]+/ {print substr($2, length("SOURCEURL") + 1), $3}' | LC_ALL=C sort -n | awk '{print $2}')
-               PATCHES=$(rpm_dump | awk '$2 ~ /^PATCHURL[0-9]+/ {print substr($2, length("PATCHURL") + 1), $3}' | LC_ALL=C sort -n | awk '{print $2}')
-               ICONS=$(awk '/^Icon:/ {print $2}' ${SPECFILE})
-       fi
-
-       PACKAGE_NAME=$(rpm_dump | awk '$2 == "PACKAGE_NAME" { print $3; exit}')
-       PACKAGE_VERSION=$(rpm_dump | awk '$2 == "PACKAGE_VERSION" { print $3; exit}')
-       PACKAGE_RELEASE=$(rpm_dump | awk '$2 == "PACKAGE_RELEASE" { print $3; exit}')
-
-       if [ "$PACKAGE_NAME" != "$ASSUMED_NAME" ]; then
-               echo >&2 "WARNING! Spec name ($ASSUMED_NAME) does not agree with package name ($PACKAGE_NAME)"
-       fi
-
-       if [ -n "$BE_VERBOSE" ]; then
-               echo "- Sources :  `nourl $SOURCES`"
-               if [ -n "$PATCHES" ]; then
-                       echo "- Patches :  `nourl $PATCHES`"
-               else
-                       echo "- Patches :  *no patches needed*"
-               fi
-               if [ -n "$ICONS" ]; then
-                       echo "- Icon    :  `nourl $ICONS`"
-               else
-                       echo "- Icon    :  *no package icon*"
-               fi
-               echo "- Name    : $PACKAGE_NAME"
-               echo "- Version : $PACKAGE_VERSION"
-               echo "- Release : $PACKAGE_RELEASE"
-       fi
-
-       update_shell_title "parse_spec: OK!"
-}
-
-Exit_error() {
-       if [ -n "$DEBUG" ]; then
-               set -x
-               set -v
-       fi
-
-       cd "$__PWD"
-
-       case "$1" in
-               "err_no_spec_in_cmdl" )
-                       remove_build_requires
-                       echo >&2 "ERROR: spec file name not specified."
-                       exit 2 ;;
-               "err_invalid_cmdline" )
-                       echo >&2 "ERROR: invalid command line arg ($2)."
-                       exit 2 ;;
-               "err_no_spec_in_repo" )
-                       remove_build_requires
-                       echo >&2 "Error: spec file not stored in CVS repo."
-                       exit 3 ;;
-               "err_no_source_in_repo" )
-                       remove_build_requires
-                       echo >&2 "Error: some source, patch or icon files not stored in CVS repo. ($2)"
-                       exit 4 ;;
-               "err_build_fail" )
-                       remove_build_requires
-                       echo >&2 "Error: package build failed. (${2:-no more info})"
-                       exit 5 ;;
-               "err_no_package_data" )
-                       remove_build_requires
-                       echo >&2 "Error: couldn't get out package name/version/release from spec file."
-                       exit 6 ;;
-               "err_tag_exists" )
-                       remove_build_requires
-                       echo >&2 "Tag ${2} already exists (spec release: ${3})."
-                       exit 9 ;;
-               "err_fract_rel" )
-                       remove_build_requires
-                       echo >&2 "Release ${2} not integer and not a snapshot."
-                       exit 10 ;;
-               "err_branch_exists" )
-                       remove_build_requires
-                       echo >&2 "Tree branch already exists (${2})."
-                       exit 11 ;;
-               "err_acl_deny" )
-                       remove_build_requires
-                       echo >&2 "Error: conditions reject building this spec (${2})."
-                       exit 12 ;;
-       esac
-       echo >&2 "Unknown error."
-       exit 100
-}
-
-init_builder() {
-       if [ -n "$DEBUG" ]; then
-               set -x
-               set -v
-       fi
-
-       if [ "$NOINIT" != "yes" ] ; then
-               TOP_DIR=$(eval $RPM $RPMOPTS --eval '%{_topdir}')
-
-               local macros_ver=$(rpm -E %?rpm_build_macros)
-               if [ -z "$macros_ver" ]; then
-                       REPO_DIR=$TOP_DIR/packages
-                       PACKAGE_DIR=$TOP_DIR/packages/$ASSUMED_NAME
-               else
-                       if awk "BEGIN{exit($macros_ver>=$RPM_MACROS_VER)}"; then
-                               echo >&2 "builder requires rpm-build-macros >= $RPM_MACROS_VER"
-                               exit 1
-                       fi
-                       REPO_DIR=$TOP_DIR
-                       PACKAGE_DIR=$REPO_DIR/$ASSUMED_NAME
-               fi
-       else
-               REPO_DIR="."
-               PACKAGE_DIR="."
-       fi
-
-       __PWD=$(pwd)
-}
-
-get_spec() {
-
-       update_shell_title "get_spec"
-
-       if [ -n "$DEBUG" ]; then
-               set -x
-               set -v
-       fi
-
-       cd "$REPO_DIR"
-       if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
-               # XXX: still needed?
-               SPECFILE=$(basename $SPECFILE)
-       fi
-       if [ "$NOCVSSPEC" != "yes" ]; then
-
-               if [ ! -s CVS/Root -a "$NOCVSSPEC" != "yes" ]; then
-                       echo "Warning: No CVS access defined - using local .spec file"
-                       NOCVSSPEC="yes"
-               fi
-
-               if [ -d "$ASSUMED_NAME" ]; then
-                       cvsup "$ASSUMED_NAME/$SPECFILE" || Exit_error err_no_spec_in_repo
-               else
-                       cvsup -c -d $ASSUMED_NAME "packages/$ASSUMED_NAME/$SPECFILE" || Exit_error err_no_spec_in_repo
-
-                       # remove Entries.Static -- so 'cvs up' would update all files in a repo
-                       rm "$ASSUMED_NAME/CVS/Entries.Static"
-                       cvsignore_df .cvsignore
-
-                       # create symlinks for tools
-                       if [ "$SYMLINK_TOOLS" != "no" ]; then
-                               for a in dropin md5 adapter builder {relup,compile,repackage,rsync,pearize}.sh pldnotify.awk; do
-                                       [ -f $a ] || continue
-                                       ln -s ../$a $ASSUMED_NAME
-                                       cvsignore_df $a
-                               done
-                       fi
-               fi
-       fi
-
-       if [ ! -f "$ASSUMED_NAME/$SPECFILE" ]; then
-               Exit_error err_no_spec_in_repo
-       fi
-
-       if [ "$CHMOD" = "yes" -a -n "$SPECFILE" ]; then
-               chmod $CHMOD_MODE $ASSUMED_NAME/$SPECFILE
-       fi
-       unset OPTIONS
-       [ -n "$DONT_PRINT_REVISION" ] || grep -E -m 1 "^#.*Revision:.*Date" $ASSUMED_NAME/$SPECFILE
-
-       set_spec_target
-}
-
-find_mirror() {
-       cd "$REPO_DIR"
-       local url="$1"
-       if [ ! -f "mirrors" -a "$NOCVSSPEC" != "yes" ] ; then
-               $CVS_COMMAND update mirrors >&2
-       fi
-
-       IFS="|"
-       local origin mirror name rest ol prefix
-       while read origin mirror name rest; do
-               # skip comments and empty lines
-               if [ -z "$origin" ] || [ "${origin#\#}" != "$origin" ]; then
-                       continue
-               fi
-               ol=$(echo -n "$origin" | wc -c)
-               prefix=$(echo -n "$url" | head -c $ol)
-               if [ "$prefix" = "$origin" ] ; then
-                       suffix=$(echo "$url" | cut -b $((ol+1))-)
-                       echo -n "$mirror$suffix"
-                       return 0
-               fi
-       done < mirrors
-       echo "$url"
-}
-
-# Warning: unpredictable results if same URL used twice
-src_no() {
-       cd $PACKAGE_DIR
-       rpm_dump | \
-       grep "SOURCEURL[0-9]*[  ]*$1""[         ]*$" | \
-       sed -e 's/.*SOURCEURL\([0-9][0-9]*\).*/\1/' | \
-       head -n 1 | xargs
-}
-
-src_md5() {
-       [ "$NO5" = "yes" ] && return
-       no=$(src_no "$1")
-       [ -z "$no" ] && return
-       cd $PACKAGE_DIR
-       local md5
-
-       if [ -f additional-md5sums ]; then
-               local spec_rev=$(grep $SPECFILE CVS/Entries 2>/dev/null | sed -e s:/$SPECFILE/:: -e s:/.*::)
-               if [ -z "$spec_rev" ]; then
-                       spec_rev=$(head -n 1 $SPECFILE | sed -e 's/.*\$Revision: \([0-9.]*\).*/\1/')
-               fi
-               local spec="$SPECFILE[0-9.,]*,$(echo $spec_rev | sed 's/\./\\./g')"
-               md5=$(grep -s -v '^#' additional-md5sums | \
-               grep -E "[      ]$(basename "$1")[      ]+${spec}([     ,]|\$)" | \
-               sed -e 's/^\([0-9a-f]\{32\}\).*/\1/' | \
-               grep -E '^[0-9a-f]{32}$')
-
-               if [ "$md5" ]; then
-                       if [ $(echo "$md5" | wc -l) != 1 ] ; then
-                               echo "$SPECFILE: more then one entry in additional-md5sums for $1" 1>&2
-                       fi
-                       echo "$md5" | tail -n 1
-                       return
-               fi
-       fi
-
-       source_md5=`grep -i "^#[        ]*Source$no-md5[        ]*:" $SPECFILE | sed -e 's/.*://'`
-       if [ -n "$source_md5" ]; then
-               echo $source_md5
-       else
-               source_md5=`grep -i "BuildRequires:[    ]*digest(%SOURCE$no)[   ]*=" $SPECFILE | sed -e 's/.*=//'`
-               if [ -n "$source_md5" ]; then
-                       echo $source_md5
-               else
-                       # we have empty SourceX-md5, but it is still possible
-                       # that we have NoSourceX-md5 AND NoSource: X
-                       nosource_md5=`grep -i "^#[       ]*NoSource$no-md5[      ]*:" $SPECFILE | sed -e 's/.*://'`
-                       if [ -n "$nosource_md5" -a -n "`grep -i "^NoSource:[     ]*$no$" $SPECFILE`" ] ; then
-                               echo $nosource_md5
-                       fi
-               fi
-       fi
-}
-
-distfiles_path() {
-       echo "by-md5/$(src_md5 "$1" | sed -e 's|^\(.\)\(.\)|\1/\2/&|')/$(basename "$1")"
-}
-
-distfiles_url() {
-       echo "$PROTOCOL$DISTFILES_SERVER/distfiles/$(distfiles_path "$1")"
-}
-
-distfiles_attic_url() {
-       echo "$PROTOCOL$ATTICDISTFILES_SERVER/distfiles/Attic/$(distfiles_path "$1")"
-}
-
-good_md5() {
-       md5=$(src_md5 "$1")
-       [ "$md5" = "" ] || \
-       [ "$md5" = "$(md5sum $(nourl "$1") 2> /dev/null | sed -e 's/ .*//')" ]
-}
-
-good_size() {
-       size=$(find $(nourl "$1") -printf "%s" 2>/dev/null)
-       [ -n "$size" -a "$size" -gt 0 ]
-}
-
-cvsignore_df() {
-       if [ "$CVSIGNORE_DF" != "yes" ]; then
-               return
-       fi
-       cvsignore=${PACKAGE_DIR}/.cvsignore
-
-       # add only if not yet there
-       if ! awk -vf="$1" -vc=1 '$0 == f { c = 0 } END { exit c }' $cvsignore 2>/dev/null; then
-               echo "$1" >> $cvsignore
-       fi
-}
-
-cvsup() {
-       update_shell_title "cvsup"
-       local OPTIONS="up "
-
-       if [ "$1" = "-c" ]; then
-               OPTIONS="co "
-               shift
-       fi
-       if [ -n "$CVSROOT" ]; then
-               OPTIONS="-d $CVSROOT $OPTIONS"
-       fi
-
-       if [ -z "$CVSDATE" -a -z "$CVSTAG" ]; then
-               OPTIONS="$OPTIONS -A"
-       else
-               if [ -n "$CVSDATE" ]; then
-                       OPTIONS="$OPTIONS -D $CVSDATE"
-               fi
-               if [ -n "$CVSTAG" ]; then
-                       OPTIONS="$OPTIONS -r $CVSTAG"
-               fi
-       fi
-
-       local result=1
-       local retries_counter=0
-       if [ $# = 1 ]; then
-               update_shell_title "cvsup: $*"
-       else
-               update_shell_title "cvsup: $# files"
-       fi
-       while [ "$result" != "0" -a "$retries_counter" -le "$CVS_RETRIES" ]; do
-               retries_counter=$(( $retries_counter + 1 ))
-               output=$(LC_ALL=C $CVS_COMMAND $OPTIONS "$@" 2>&1)
-               result=$?
-               [ -n "$output" ] && echo "$output"
-               if (echo "$output" | grep -qE "(Cannot connect to|connect to .* failed|Connection reset by peer|Connection timed out|Unknown host)") && [ "$result" -ne "0" -a "$retries_counter" -le "$CVS_RETRIES" ]; then
-                       echo "Trying again [$*]... ($retries_counter)"
-                       update_shell_title "cvsup: retry #$retries_counter"
-                       sleep 2
-                       continue
-               else
-                       break
-               fi
-       done
-       update_shell_title "cvsup: done!"
-       return $result
-}
-
-# returns true if "$1" is ftp, http or https protocol url
-is_url() {
-       case "$1" in
-       ftp://*|http://*|https://*)
-               return 0
-       ;;
-       esac
-       return 1
-}
-
-update_md5() {
-       if [ $# -eq 0 ]; then
-               return
-       fi
-
-       update_shell_title "update md5"
-       if [ -n "$DEBUG" ]; then
-               set -x
-               set -v
-       fi
-
-       cd "$PACKAGE_DIR"
-
-       # pass 1: check files to be fetched
-       local todo
-       local need_files
-       for i in "$@"; do
-               local fp=$(nourl "$i")
-               local srcno=$(src_no "$i")
-               if [ -n "$ADD5" ]; then
-                       [ "$fp" = "$i" ] && continue # FIXME what is this check doing?
-                       grep -qiE '^#[  ]*Source'$srcno'-md5[   ]*:' $PACKAGE_DIR/$SPECFILE && continue
-                       grep -qiE '^BuildRequires:[     ]*digest[(]%SOURCE'$srcno'[)][  ]*=' $PACKAGE_DIR/$SPECFILE && continue
-               else
-                       grep -qiE '^#[  ]*Source'$srcno'-md5[   ]*:' $PACKAGE_DIR/$SPECFILE || grep -qiE '^BuildRequires:[      ]*digest[(]%SOURCE'$srcno'[)][  ]*=' $PACKAGE_DIR/$SPECFILE || continue
-               fi
-               if [ ! -f "$fp" ] || [ $ALWAYS_CVSUP = "yes" ]; then
-                       need_files="$need_files $i"
-               fi
-       done
-
-       # pass 1a: get needed files
-       if [ "$need_files" ]; then
-               get_files $need_files
-       fi
-
-       # pass 2: proceed with md5 adding or updating
-       for i in "$@"; do
-               local fp=$(nourl "$i")
-               local srcno=$(src_no "$i")
-               local md5=$(grep -iE '^#[       ]*(No)?Source'$srcno'-md5[      ]*:' $PACKAGE_DIR/$SPECFILE )
-               if [ -z "$md5" ]; then
-                       md5=$(grep -iE '^[      ]*BuildRequires:[       ]*digest[(]%SOURCE'$srcno'[)][  ]*=' $PACKAGE_DIR/$SPECFILE )
-               fi
-               if [ -n "$ADD5" ] && is_url $i || [ -n "$md5" ]; then
-                       local tag="# Source$srcno-md5:\t"
-                       if [[ "$md5" == *NoSource* ]]; then
-                               tag="# NoSource$srcno-md5:\t"
-                       elif [ -n "$USEDIGEST" ]; then
-                               tag="BuildRequires:\tdigest(%SOURCE$srcno) = "
-                       fi
-                       md5=$(md5sum "$fp" | cut -f1 -d' ')
-                       echo "Updating Source$srcno ($md5: $fp)."
-                       perl -i -ne '
-                               print unless (/^\s*#\s*(No)?Source'$srcno'-md5\s*:/i or /^\s*BuildRequires:\s*digest\(%SOURCE'$srcno'\)/i);
-                               print "'"$tag$md5"'\n" if /^Source'$srcno'\s*:\s+/;
-                       ' \
-                       $PACKAGE_DIR/$SPECFILE
-               fi
-       done
-}
-
-check_md5() {
-       local bad
-       [ "$NO5" = "yes" ] && return
-
-       update_shell_title "check md5"
-
-       for i in "$@"; do
-               bad=0
-               if ! good_md5 "$i"; then
-                       echo -n "MD5 sum mismatch."
-                       bad=1
-               fi
-               if ! good_size "$i"; then
-                       echo -n "0 sized file."
-                       bad=1
-               fi
-
-               if [ $bad -eq 1 ]; then
-                       echo " Use -U to refetch sources,"
-                       echo "or -5 to update md5 sums, if you're sure files are correct."
-                       Exit_error err_no_source_in_repo $i
-               fi
-       done
-}
-
-get_files() {
-       update_shell_title "get_files"
-
-       if [ -n "$DEBUG" ]; then
-               set -x
-               set -v
-       fi
-
-       if [ $# -gt 0 ]; then
-               cd "$PACKAGE_DIR"
-
-               if [ ! -s CVS/Root -a "$NOCVS" != "yes" ]; then
-                       echo "Warning: No CVS access defined for SOURCES"
-                       NOCVS="yes"
-               fi
-
-               local nc=0
-               local get_files_cvs=""
-               for i in "$@"; do
-                       nc=$((nc + 1))
-                       local cvsup=0
-                       SHELL_TITLE_PREFIX="get_files[$nc/$#]"
-                       update_shell_title "$i"
-                       local fp=`nourl "$i"`
-                       if [ "$SKIP_EXISTING_FILES" = "yes" ] && [ -f "$fp" ]; then
-                               continue
-                       fi
-
-                       FROM_DISTFILES=0
-                       local srcmd5=$(src_md5 "$i")
-
-                       # we know if source/patch is present in cvs/distfiles
-                       # - has md5 (in distfiles)
-                       # - in cvs... ideas?
-
-                       # CHECK: local file didn't exist or always cvs up (first) requested.
-                       if [ ! -f "$fp" ] || [ $ALWAYS_CVSUP = "yes" ]; then
-                               if echo $i | grep -vE '(http|ftp|https|cvs|svn)://' | grep -qE '\.(gz|bz2)$']; then
-                                       echo "Warning: no URL given for $i"
-                               fi
-                               target="$fp"
-
-                               if [ -z "$NODIST" ] && [ -n "$srcmd5" ]; then
-                                       if good_md5 "$i" && good_size "$i"; then
-                                               echo "$fp having proper md5sum already exists"
-                                               continue
-                                       fi
-
-                                       # optionally prefer mirror over distfiles if there's mirror
-                                       # TODO: build url list and then try each url from the list
-                                       if [ -n "$PREFMIRRORS" ] && [ -z "$NOMIRRORS" ] && im=$(find_mirror "$i") && [ "$im" != "$i" ]; then
-                                               url="$im"
-                                       else
-                                               url=$(distfiles_url "$i")
-                                       fi
-
-                                       url_attic=$(distfiles_attic_url "$i")
-                                       FROM_DISTFILES=1
-                                       # is $url local file?
-                                       if [[ "$url" = [./]* ]]; then
-                                               update_shell_title "${GETLOCAL%% *}: $url"
-                                               ${GETLOCAL} $url $target
-                                       else
-                                               if [ -z "$NOMIRRORS" ]; then
-                                                       url=$(find_mirror "$url")
-                                               fi
-
-                                               local uri=${url}
-                                               # make shorter message for distfiles urls
-                                               if [[ "$uri" = ${PROTOCOL}${DISTFILES_SERVER}* ]] || [[ "$uri" = ${PROTOCOL}${ATTICDISTFILES_SERVER}* ]]; then
-                                                       uri=${uri#${PROTOCOL}${DISTFILES_SERVER}/distfiles/by-md5/?/?/*/}
-                                                       uri=${uri#${PROTOCOL}${ATTICDISTFILES_SERVER}/distfiles/by-md5/?/?/*/}
-                                                       uri="df: $uri"
-                                               fi
-                                               update_shell_title "${GETURI%% *}: $uri"
-                                               ${GETURI} ${OUTFILEOPT} "$target" "$url" || \
-                                               if [ "`echo $url | grep -E 'ftp://'`" ]; then
-                                                       update_shell_title "${GETURI2%% *}: $url"
-                                                       ${GETURI2} ${OUTFILEOPT} "$target" "$url"
-                                               fi
-                                       fi
-
-                                       # is it empty file?
-                                       if [ ! -s "$target" ]; then
-                                               rm -f "$target"
-                                               if [ `echo $url_attic | grep -E '^(\.|/)'` ]; then
-                                                       update_shell_title "${GETLOCAL%% *}: $url_attic"
-                                                       ${GETLOCAL} $url_attic $target
-                                               else
-                                                       if [ -z "$NOMIRRORS" ]; then
-                                                               url_attic=$(find_mirror "$url_attic")
-                                                       fi
-                                                       update_shell_title "${GETURI%% *}: $url_attic"
-                                                       ${GETURI} ${OUTFILEOPT} "$target" "$url_attic" || \
-                                                       if [ "`echo $url_attic | grep -E 'ftp://'`" ]; then
-                                                               update_shell_title "${GETURI2%% *}: $url_attic"
-                                                               ${GETURI2} ${OUTFILEOPT} "$target" "$url_attic"
-                                                       fi
-                                                       test -s "$target" || rm -f "$target"
-                                               fi
-                                       fi
-
-                                       if [ -s "$target" ]; then
-                                               cvsignore_df $target
-                                       else
-                                               rm -f "$target"
-                                               FROM_DISTFILES=0
-                                       fi
-                               elif [ "$NOCVS" != "yes" -a -z "$srcmd5" ]; then
-                                       if [ $# -gt 1 ]; then
-                                               get_files_cvs="$get_files_cvs $fp"
-                                               update_shell_title "$fp (will cvs up later)"
-                                               cvsup=1
-                                       else
-                                               cvsup $fp
-                                       fi
-                               fi
-
-                               if [ -z "$NOURLS" ] && [ ! -f "$fp" -o -n "$UPDATE" ] && [ "`echo $i | grep -E 'ftp://|http://|https://'`" ]; then
-                                       if [ -z "$NOMIRRORS" ]; then
-                                               im=$(find_mirror "$i")
-                                       else
-                                               im="$i"
-                                       fi
-                                       update_shell_title "${GETURI%% *}: $im"
-                                       ${GETURI} "$im" ${OUTFILEOPT} "$target" || \
-                                       if [ "`echo $im | grep -E 'ftp://'`" ]; then
-                                               update_shell_title "${GETURI2%% *}: $im"
-                                               ${GETURI2} "$im" ${OUTFILEOPT} "$target"
-                                       fi
-                                       test -s "$target" || rm -f "$target"
-                               fi
-
-                               if [ "$cvsup" = 1 ]; then
-                                       continue
-                               fi
-
-                       fi
-
-                       # the md5 check must be moved elsewhere as if we've called from update_md5 the md5 is wrong.
-                       if [ ! -f "$fp" -a "$FAIL_IF_NO_SOURCES" != "no" ]; then
-                               if [ -n "GREEDSRC" ]; then
-                                       get_greed_sources $i
-                               else
-                                       Exit_error err_no_source_in_repo $i
-                               fi
-                       fi
-
-                       # we check md5 here just only to refetch immediately
-                       if good_md5 "$i" && good_size "$i"; then
-                               :
-                       elif [ "$FROM_DISTFILES" = 1 ]; then
-                               # wrong md5 from distfiles: remove the file and try again
-                               # but only once ...
-                               echo "MD5 sum mismatch. Trying full fetch."
-                               FROM_DISTFILES=2
-                               rm -f $target
-                               update_shell_title "${GETURI%% *}: $url"
-                               ${GETURI} ${OUTFILEOPT} "$target" "$url" || \
-                               if [ "`echo $url | grep -E 'ftp://'`" ]; then
-                                       update_shell_title "${GETURI2%% *}: $url"
-                                       ${GETURI2} ${OUTFILEOPT} "$target" "$url"
-                               fi
-                               if [ ! -s "$target" ]; then
-                                       rm -f "$target"
-                                       update_shell_title "${GETURI%% *}: $url_attic"
-                                       ${GETURI} ${OUTFILEOPT} "$target" "$url_attic" || \
-                                       if [ "`echo $url_attic | grep -E 'ftp://'`" ]; then
-                                               update_shell_title "${GETURI2%% *}: $url_attic"
-                                               ${GETURI2} ${OUTFILEOPT} "$target" "$url_attic"
-                                       fi
-                               fi
-                               test -s "$target" || rm -f "$target"
-                       fi
-               done
-               SHELL_TITLE_PREFIX=""
-
-               if [ "$get_files_cvs" ]; then
-                       cvsup $get_files_cvs
-               fi
-
-               if [ "$CHMOD" = "yes" ]; then
-                       CHMOD_FILES=$(nourl "$@")
-                       if [ -n "$CHMOD_FILES" ]; then
-                               chmod $CHMOD_MODE $CHMOD_FILES
-                       fi
-               fi
-       fi
-}
-
-make_tagver() {
-       if [ -n "$DEBUG" ]; then
-               set -x
-               set -v
-       fi
-
-       # Check whether first character of PACKAGE_NAME is legal for tag name
-       if [ -z "${PACKAGE_NAME##[_0-9]*}" -a -z "$TAG_PREFIX" ]; then
-               TAG_PREFIX=tag_
-       fi
-
-       # NOTE: CVS tags may must not contain the characters `$,.:;@'
-       TAGVER=$(echo $TAG_PREFIX$PACKAGE_NAME-$PACKAGE_VERSION-$PACKAGE_RELEASE | tr '[.@]' '[_#]')
-
-       # Remove #kernel.version_release from TAGVER because tagging sources
-       # could occur with different kernel-headers than kernel-headers used at build time.
-       # besides, %{_kernel_ver_str} is not expanded.
-
-       # TAGVER=auto-ac-madwifi-ng-0-0_20070225_1#%{_kernel_ver_str}
-       # TAGVER=auto-ac-madwifi-ng-0-0_20070225_1
-
-       TAGVER=${TAGVER%#*}
-       echo -n "$TAGVER"
-}
-
-# bool is_tag_a_branch(tag)
-#
-# returns 1 if a tag is a branch set on SPECFILE
-is_tag_a_branch() {
-       if [ -n "$DEBUG" ]; then
-               set -x
-               set -v
-       fi
-
-       if [ $# -ne 1 ]; then
-               return 0;
-       fi
-
-       TAG=$1
-
-       cd "$PACKAGE_DIR"
-       $CVS_COMMAND status -v $SPECFILE | grep -Eiq "${TAG}.+(branch: [0-9.]+)"
-       return $?
-}
-
-tag_files() {
-       TAG_FILES="$@"
-
-       if [ -n "$DEBUG" ]; then
-               set -x
-               set -v
-       fi
-
-       echo "Version: $PACKAGE_VERSION"
-       echo "Release: $PACKAGE_RELEASE"
-
-       local TAGVER
-       if [ "$TAG_VERSION" = "yes" ]; then
-               TAGVER=`make_tagver`
-               echo "CVS tag: $TAGVER"
-       fi
-       if [ -n "$TAG" ]; then
-               echo "CVS tag: $TAG"
-       fi
-
-       local OPTIONS="tag $CVS_FORCE"
-       if [ -n "$CVSROOT" ]; then
-               OPTIONS="-d $CVSROOT $OPTIONS"
-       fi
-
-       # if a tagname we are about to set already exists
-       # and happens to be a branch (common case with AC-branch)
-       # pass -B (allows -F to disturb branch tag)
-       local _tag=$TAG
-       if [ "$TAG_VERSION" = "yes" ]; then
-               _tag=$TAGVER
-       fi;
-       is_tag_a_branch $_tag
-       if [ $? -eq 0 -a $CVS_NSERVER -eq 0 ]; then
-               OPTIONS="$OPTIONS -B"
-       fi;
-
-       cd "$PACKAGE_DIR"
-       local tag_files
-       for i in $TAG_FILES; do
-               # don't tag files stored on distfiles
-               [ -n "`src_md5 $i`" ] && continue
-               local fp=`nourl "$i"`
-               if [ -f "$fp" ]; then
-                       tag_files="$tag_files $fp"
-               elif [ -n "GREEDSRC" ]; then
-                       get_greed_sources $i
-               else
-                       Exit_error err_no_source_in_repo $i
-               fi
-       done
-
-       if [ "$tag_files" ]; then
-               if [ "$TAG_VERSION" = "yes" ]; then
-                       update_shell_title "tag sources: $TAGVER"
-                       printf "Tagging %d files\n" $(echo $tag_files | wc -w)
-                       $CVS_COMMAND $OPTIONS $TAGVER $tag_files || exit
-               fi
-               if [ -n "$TAG" ]; then
-                       update_shell_title "tag sources: $TAG"
-
-                       while [ "$tag_files" ]; do
-                               local chunk=$(echo $tag_files | tr ' ' '\n' | head -n 100)
-                               printf "Tagging %d files\n" $(echo $chunk | wc -w)
-                               $CVS_COMMAND $OPTIONS $TAG $chunk || exit
-                               tag_files=$(echo $tag_files | tr ' ' '\n' | tail +101)
-                       done
-               fi
-       fi
-
-       cd "$PACKAGE_DIR"
-       if [ "$TAG_VERSION" = "yes" ]; then
-               update_shell_title "tag spec: $TAGVER"
-               $CVS_COMMAND $OPTIONS $TAGVER $SPECFILE || exit
-       fi
-       if [ -n "$TAG" ]; then
-               update_shell_title "tag spec: $TAG"
-               $CVS_COMMAND $OPTIONS $TAG $SPECFILE || exit
-       fi
-}
-
-branch_files() {
-       TAG=$1
-       echo "CVS branch tag: $TAG"
-       shift
-
-       TAG_FILES="$@"
-
-       if [ -n "$DEBUG" ]; then
-               set -x
-               set -v
-       fi
-
-       local OPTIONS="tag $CVS_FORCE -b"
-
-       # branch exists?
-       is_tag_a_branch $TAG
-       if [ $? -eq 1 ]; then
-               OPTIONS="$OPTIONS -B"
-       fi
-
-       if [ -n "$CVSROOT" ]; then
-               OPTIONS="-d $CVSROOT $OPTIONS"
-       fi
-       cd "$PACKAGE_DIR"
-       local tag_files
-       for i in $TAG_FILES; do
-               local fp=`nourl "$i"`
-               if [ -f "$fp" ]; then
-                       tag_files="$tag_files $fp"
-               elif [ -n "GREEDSRC" ]; then
-                       get_greed_sources $i
-               else
-                       Exit_error err_no_source_in_repo $i
-               fi
-       done
-       if [ "$tag_files" ]; then
-               $CVS_COMMAND $OPTIONS $TAG $tag_files || exit
-       fi
-
-       cd "$PACKAGE_DIR"
-       $CVS_COMMAND $OPTIONS $TAG $SPECFILE || exit
-}
-
-
-# this function should exit early if package can't be built for this arch
-# this avoids unneccessary BR filling.
-check_buildarch() {
-       local out ret
-       out=$(minirpm --short-circuit -bp --define "'prep exit 0'" --nodeps $SPECFILE 2>&1)
-       ret=$?
-       if [ $ret -ne 0 ]; then
-               echo >&2 "$out"
-               exit $ret
-       fi
-}
-
-# from relup.sh
-set_release() {
-       local specfile="$1"
-       local rel="$2"
-       local newrel="$3"
-       sed -i -e "
-               s/^\(%define[ \t]\+_\?rel[ \t]\+\)$rel\$/\1$newrel/
-               s/^\(Release:[ \t]\+\)$rel\$/\1$newrel/
-       " $specfile
-}
-
-set_version() {
-       local specfile="$1"
-       local ver="$2"
-       local newver="$3"
-       sed -i -e "
-               s/^\(%define[ \t]\+_\?ver[ \t]\+\)$ver\$/\1$newver/
-               s/^\(Version:[ \t]\+\)$ver\$/\1$newver/
-       " $specfile
-}
-
-try_upgrade() {
-       if [ -n "$TRY_UPGRADE" ]; then
-               local TNOTIFY TNEWVER TOLDVER
-               update_shell_title "build_package: try_upgrade"
-
-               cd "$PACKAGE_DIR"
-               
-               if [ -n "$FLOAT_VERSION" ]; then
-                       TNOTIFY=$($APPDIR/pldnotify.awk ${BE_VERBOSE:+-vDEBUG=1} $SPECFILE -n) || exit 1
-               else
-                       TNOTIFY=$($APPDIR/pldnotify.awk ${BE_VERBOSE:+-vDEBUG=1} $SPECFILE) || exit 1
-               fi
-
-               TNEWVER=$(echo $TNOTIFY | awk '{ match($4,/\[NEW\]/); print $5 }')
-
-               if [ -n "$TNEWVER" ]; then
-                       TOLDVER=`echo $TNOTIFY | awk '{ print $3; }'`
-                       echo "New version found, updating spec file from $TOLDVER to version $TNEWVER"
-                       if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
-                               cp -f $SPECFILE $SPECFILE.bak
-                       fi
-                       chmod +w $SPECFILE
-                       set_release $SPECFILE $PACKAGE_RELEASE 1
-                       set_version $SPECFILE $PACKAGE_VERSION $TNEWVER
-                       parse_spec
-                       return 1
-               fi
-       fi
-       return 0
-}
-
-build_package() {
-       update_shell_title "build_package"
-       if [ -n "$DEBUG" ]; then
-               set -x
-               set -v
-       fi
-
-       cd "$PACKAGE_DIR"
-
-       case "$COMMAND" in
-               build )
-                       BUILD_SWITCH="-ba" ;;
-               build-binary )
-                       BUILD_SWITCH="-bb" ;;
-               build-source )
-                       BUILD_SWITCH="-bs --nodeps" ;;
-               build-prep )
-                       BUILD_SWITCH="-bp --nodeps" ;;
-               build-build )
-                       BUILD_SWITCH="-bc" ;;
-               build-install )
-                       BUILD_SWITCH="-bi" ;;
-               build-list )
-                       BUILD_SWITCH="-bl" ;;
-
-       esac
-
-       update_shell_title "build_package: $COMMAND"
-       if [ -n "$LOGFILE" ]; then
-               LOG=`eval echo $LOGFILE`
-               if [ -d "$LOG" ]; then
-                       echo "Log file $LOG is a directory."
-                       echo "Parse error in the spec?"
-                       Exit_error err_build_fail
-               fi
-               if [ -n "$LASTLOG_FILE" ]; then
-                       echo "LASTLOG=$LOG" > $LASTLOG_FILE
-               fi
-               RES_FILE=$(mktemp -t builder.XXXXXX || ${TMPDIR:-/tmp}/builder.$RANDOM)
-
-               (time eval ${NICE_COMMAND} $RPMBUILD $TARGET_SWITCH $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $RPMBUILDOPTS $BCOND --define \'_specdir $PACKAGE_DIR\' --define \'_sourcedir $PACKAGE_DIR\' $SPECFILE; echo $? > $RES_FILE) 2>&1 |tee $LOG
-               RETVAL=`cat $RES_FILE`
-               rm $RES_FILE
-               if [ -n "$LOGDIROK" ] && [ -n "$LOGDIRFAIL" ]; then
-                       if [ "$RETVAL" -eq "0" ]; then
-                               mv $LOG $LOGDIROK
-                       else
-                               mv $LOG $LOGDIRFAIL
-                       fi
-               fi
-       else
-               eval ${NICE_COMMAND} $RPMBUILD $TARGET_SWITCH $BUILD_SWITCH -v $QUIET $CLEAN $RPMOPTS $RPMBUILDOPTS $BCOND --define \'_specdir $PACKAGE_DIR\' --define \'_sourcedir $PACKAGE_DIR\' $SPECFILE
-               RETVAL=$?
-       fi
-       if [ "$RETVAL" -ne "0" ]; then
-               if [ -n "$TRY_UPGRADE" ]; then
-                       echo "\nUpgrade package to new version failed."
-                       if [ "$REVERT_BROKEN_UPGRADE" = "yes" ]; then
-                               echo "Restoring old spec file."
-                               mv -f $SPECFILE.bak $SPECFILE
-                       fi
-                       echo ""
-               fi
-               Exit_error err_build_fail
-       fi
-       unset BUILD_SWITCH
-}
-
-nourl() {
-       echo "$@" | sed 's#\<\(ftp\|http\|https\|cvs\|svn\)://[^ ]*/##g'
-}
-
-install_required_packages() {
-       run_poldek -vi $1
-       return $?
-}
-
-find_spec_bcond() { # originally from /usr/lib/rpm/find-spec-bcond
-       local SPEC="$1"
-       awk -F"\n" '
-       /^%changelog/ { exit }
-       /^%bcond_with/{
-               match($0, /bcond_with(out)?[ \t]+[_a-zA-Z0-9]+/);
-               bcond = substr($0, RSTART + 6, RLENGTH - 6);
-               gsub(/[ \t]+/, "_", bcond);
-               print bcond
-       }' $SPEC | LC_ALL=C sort -u
-}
-
-process_bcondrc() {
-       # expand bconds from ~/.bcondrc
-       # The file structure is like gentoo's package.use:
-       # ---
-       # * -selinux
-       # samba -mysql -pgsql
-       # w32codec-installer license_agreement
-       # php +mysqli
-       # ---
-       if ([ -f $HOME/.bcondrc ] || ([ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ])); then
-               :
-       else
-               return
-       fi
-
-       SN=${SPECFILE%%\.spec}
-
-       local bcondrc=$HOME/.bcondrc
-       [ -n $HOME_ETC ] && [ -f $HOME_ETC/.bcondrc ] && bcondrc=$HOME_ETC/.bcondrc
-
-       local bcond_avail=$(find_spec_bcond $SPECFILE)
-
-       while read pkg flags; do
-               # ignore comments
-               [[ "$pkg" == \#* ]] && continue
-
-               # any package or current package?
-               if [ "$pkg" = "*" ] || [ "$pkg" = "$PACKAGE_NAME" ] || [ "$pkg" = "$SN" ]; then
-                       for flag in $flags; do
-                               local opt=${flag#[+-]}
-
-                               # use only flags which are in this package.
-                               if [[ $bcond_avail = *${opt}* ]]; then
-                                       if [[ $flag = -* ]]; then
-                                               if [[ $BCOND != *--with?${opt}* ]]; then
-                                                       BCOND="$BCOND --without $opt"
-                                               fi
-                                       else
-                                               if [[ $BCOND != *--without?${opt}* ]]; then
-                                                       BCOND="$BCOND --with $opt"
-                                               fi
-                                       fi
-                               fi
-                       done
-               fi
-       done < $bcondrc
-       update_shell_title "parse ~/.bcondrc: DONE!"
-}
-
-set_bconds_values() {
-       update_shell_title "set bcond values"
-
-       AVAIL_BCONDS_WITHOUT=""
-       AVAIL_BCONDS_WITH=""
-
-       if egrep -q '^# *_with' ${SPECFILE}; then
-               echo >&2 "ERROR: This spec has old style bconds."
-               exit 1
-       fi
-
-       if ! grep -q '^%bcond' ${SPECFILE}; then
-               return
-       fi
-
-       local bcond_avail=$(find_spec_bcond $SPECFILE)
-       process_bcondrc "$SPECFILE"
-
-       update_shell_title "parse bconds"
-
-       local opt bcond
-       for opt in $bcond_avail; do
-               case "$opt" in
-               without_*)
-                       bcond=${opt#without_}
-                       case "$BCOND" in
-                       *--without?${bcond}*)
-                               AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT <$bcond>"
-                               ;;
-                       *)
-                               AVAIL_BCONDS_WITHOUT="$AVAIL_BCONDS_WITHOUT $bcond"
-                               ;;
-                       esac
-                       ;;
-               with_*)
-                       bcond=${opt#with_}
-                       case "$BCOND" in
-                       *--with?${bcond}*)
-                               AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH <$bcond>"
-                               ;;
-                       *)
-                               AVAIL_BCONDS_WITH="$AVAIL_BCONDS_WITH $bcond"
-                               ;;
-                       esac
-                       ;;
-               *)
-                       echo >&2 "ERROR: unexpected '$opt' in set_bconds_values"
-                       exit 1
-                       ;;
-               esac
-       done
-}
-
-run_sub_builder() {
-       package_name="${1}"
-       update_shell_title "run_sub_builder $package_name"
-       #
-       # No i tutaj bym chcia³ zrobiæ sztuczn± inteligencjê, która spróbuje tego
-       # pakieta zbudowaæ. Aktualnie niewiele dziala, bo generalnie nie widze do
-       # konca algorytmu... Ale damy rade. :) Na razie po prostu sie wyjebie tak samo
-       # jakby nie bylo tego kawalka kodu.
-       #
-       # Update: Poprawi³em parê rzeczy i zaczê³o generowaæ pakiety spoza zadanej listy.
-       #         Jednym s³owem budowanie niespoldkowanych zale¿no¶ci dzia³a w paru przypadkach.
-       #
-       #
-       # y0shi.
-       # kurwa. translate that ^^^^
-
-       parent_spec_name=''
-
-       # Istnieje taki spec? ${package}.spec
-       if [ -f "${PACKAGE_DIR}/${package}.spec" ]; then
-               parent_spec_name=${package}.spec
-       elif [ -f "${PACKAGE_DIR}/$(echo ${package_name} | sed -e s,-devel.*,,g -e s,-static,,g).spec" ]; then
-               parent_spec_name="$(echo ${package_name} | sed -e s,-devel.*,,g -e s,-static,,g).spec"
-       else
-               for provides_line in $(grep -r ^Provides:.*$package ${PACKAGE_DIR}); do
-                       echo $provides_line
-               done
-       fi
-
-       if [ "${parent_spec_name}" != "" ]; then
-               spawn_sub_builder $parent_spec_name
-       fi
-       NOT_INSTALLED_PACKAGES="$NOT_INSTALLED_PACKAGES $package_name"
-}
-
-spawn_sub_builder() {
-       package_name="${1}"
-       update_shell_title "spawn_sub_builder $package_name"
-
-       sub_builder_opts=''
-       if [ "${FETCH_BUILD_REQUIRES}" == "yes" ]; then
-               sub_builder_opts="${sub_builder_opts} -R"
-       fi
-       if [ "${REMOVE_BUILD_REQUIRES}" == "nice" ]; then
-               sub_builder_opts="${sub_builder_opts} -RB"
-       elif [ "${REMOVE_BUILD_REQUIRES}" == "force" ]; then
-               sub_builder_opts="${sub_builder_opts} -FRB"
-       fi
-       if [ "${UPDATE_POLDEK_INDEXES}" == "yes" ]; then
-               sub_builder_opts="${sub_builder_opts} -Upi"
-       fi
-
-       cd "${PACKAGE_DIR}"
-       ./builder ${sub_builder_opts} "$@"
-}
-
-remove_build_requires() {
-       if [ "$INSTALLED_PACKAGES" != "" ]; then
-               case "$REMOVE_BUILD_REQUIRES" in
-                       "force")
-                               run_poldek --noask -ve $INSTALLED_PACKAGES
-                               ;;
-                       "nice")
-                               run_poldek --ask -ve $INSTALLED_PACKAGES
-                               ;;
-                       *)
-                               echo You may want to manually remove following BuildRequires fetched:
-                               echo $INSTALLED_PACKAGES
-                               echo "Try poldek -e \`cat $(pwd)/.${SPECFILE}_INSTALLED_PACKAGES\`"
-                               ;;
-               esac
-       fi
-}
-
-display_bconds() {
-       if [ "$AVAIL_BCONDS_WITH" -o "$AVAIL_BCONDS_WITHOUT" ]; then
-               if [ "$BCOND" ]; then
-                       echo ""
-                       echo "Building $SPECFILE with the following conditional flags:"
-                       echo -n "$BCOND"
-               else
-                       echo ""
-                       echo "No conditional flags passed"
-               fi
-               echo ""
-               echo "from available:"
-               echo "--with   :\t$AVAIL_BCONDS_WITH"
-               echo "--without:\t$AVAIL_BCONDS_WITHOUT"
-               echo ""
-       fi
-}
-
-display_branches() {
-       if [ "$NOCVSSPEC" != "yes" ]; then
-               echo -n "Available branches: "
-               $CVS_COMMAND status -v "${SPECFILE}" | awk '!/Sticky Tag:/ && /\(branch:/ { print $1 } ' | xargs
-       fi
-}
-
-# checks a given list of packages/files/provides agains current rpmdb.
-# outputs all dependencies which current rpmdb doesn't satisfy.
-# input can be either STDIN or parameters
-_rpm_prov_check() {
-       local DEPS
-
-       if [ $# -gt 0 ]; then
-               DEPS="$@"
-       else
-               DEPS=$(cat)
-       fi
-
-       DEPS=$(LANG=C rpm -q --whatprovides $DEPS 2>&1 | awk '/^(error:|no package provides)/ { print }')
-
-       # packages
-       echo "$DEPS" | awk '/^no package provides/ { print $NF }'
-
-       # other deps (files)
-       echo "$DEPS" | awk -F: '/^error:.*No such file/{o = $2; gsub("^ file ", "", o); print o}'
-}
-
-# checks if given package/files/provides exists in rpmdb.
-# input can be either stdin or parameters
-# returns packages which are present in the rpmdb
-_rpm_cnfl_check() {
-       local DEPS
-
-       if [ $# -gt 0 ]; then
-               DEPS="$@"
-       else
-               DEPS=$(cat)
-       fi
-
-       LANG=C rpm -q --whatprovides $DEPS 2>/dev/null | awk '!/no package provides/ { print }'
-}
-
-# install deps via information from 'rpm-getdeps' or 'rpm --specsrpm'
-install_build_requires_rpmdeps() {
-       if [ "$FETCH_BUILD_REQUIRES_RPMGETDEPS" = "yes" ]; then
-               # TODO: Conflicts list doesn't check versions
-               local CNFL=$(rpm-getdeps $BCOND $SPECFILE 2> /dev/null | awk '/^\-/ { print $3 } ' | _rpm_cnfl_check | xargs)
-               local DEPS=$(rpm-getdeps $BCOND $SPECFILE 2> /dev/null | awk '/^\+/ { print $3 } ' | _rpm_prov_check | xargs)
-       fi
-       if [ "$FETCH_BUILD_REQUIRES_RPMSPECSRPM" = "yes" ]; then
-               local CNFL=$(rpm -q --specsrpm --conflicts $BCOND $SPECFILE | awk '{print $1}' | _rpm_cnfl_check | xargs)
-               local DEPS=$(rpm -q --specsrpm --requires $BCOND $SPECFILE | awk '{print $1}' | _rpm_prov_check | xargs)
-       fi
-
-       if [ -n "$CNFL" ] || [ -n "$DEPS" ]; then
-               echo "fetch BuildRequires: install [$DEPS]; remove [$CNFL]"
-               update_shell_title "poldek: install [$DEPS]; remove [$CNFL]"
-               $SU_SUDO /usr/bin/poldek -q --update || $SU_SUDO /usr/bin/poldek -q --upa
-       fi
-       if [ -n "$CNFL" ]; then
-               update_shell_title "uninstall conflicting packages: $CNFL"
-               echo "Trying to uninstall conflicting packages ($CNFL):"
-               $SU_SUDO /usr/bin/poldek --noask --nofollow -ev $CNFL
-       fi
-
-       while [ "$DEPS" ]; do
-                       update_shell_title "install deps: $DEPS"
-                       echo "Trying to install dependencies ($DEPS):"
-                       local log=.${SPECFILE}_poldek.log
-                       LANG=C $SU_SUDO /usr/bin/poldek --noask --caplookup -uGqQ $DEPS | tee $log
-                       failed=$(awk '/^error:/{a=$2; sub(/^error: /, "", a); sub(/:$/, "", a); print a}' $log)
-                       rm -f $log
-                       local ok
-                       if [ -n "$failed" ]; then
-                               for package in $failed; do
-                                       spawn_sub_builder -bb $(depspecname $package) && ok="$ok $package"
-                               done
-                               DEPS="$ok"
-                       else
-                               DEPS=""
-                       fi
-       done
-}
-
-fetch_build_requires()
-{
-       if [ "${FETCH_BUILD_REQUIRES}" != "yes" ]; then
-               return
-       fi
-
-       update_shell_title "fetch build requires"
-       if [ "$FETCH_BUILD_REQUIRES_RPMGETDEPS" = "yes" ] || [ "$FETCH_BUILD_REQUIRES_RPMSPECSRPM" = "yes" ]; then
-               install_build_requires_rpmdeps
-               return
-       fi
-
-               # XXX is this ugliest code written in human history still needed?
-               echo "All packages installed by fetch_build_requires() are written to:"
-               echo "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES"
-               echo ""
-               echo "If anything fails, you may get rid of them by executing:"
-               echo "poldek -e \`cat `pwd`/.${SPECFILE}_INSTALLED_PACKAGES\`"
-               echo ""
-               echo > `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
-               for package_item in $(cat $SPECFILE | grep -B100000 ^%changelog|grep -v ^#|grep BuildRequires|grep -v ^-|sed -e "s/^.*BuildRequires://g"|awk '{print $1}'|sed -e s,perl\(,perl-,g -e s,::,-,g -e s,\(.*\),,g -e s,%{,,g -e s,},,g|grep -v OpenGL-devel|sed -e s,sh-utils,coreutils,g -e s,fileutils,coreutils,g -e s,textutils,coreutils,g -e s,kgcc_package,gcc,g -e s,\),,g)
-               do
-                       package_item=$(echo $package_item|sed -e s,rpmbuild,rpm-build,g |sed -e s,__perl,perl,g |sed -e s,gasp,binutils-gasp,g -e s,binutils-binutils,binutils,g -e s,apxs,apache,g|sed -e s,apache\(EAPI\)-devel,apache-devel,g -e s,kernel-headers\(netfilter\),kernel-headers,g -e s,awk,mawk,g -e s,mmawk,mawk,g -e s,motif,openmotif,g -e s,openopenmotif,openmotif,g)
-                       GO="yes"
-                       package=$(basename "$package_item"|sed -e "s/}$//g")
-                       COND_ARCH_TST=$(cat $SPECFILE|grep -B1 BuildRequires|grep -B1 $package|grep ifarch|sed -e "s/^.*ifarch//g")
-                       mach=$(uname -m)
-
-                       COND_TST=`cat $SPECFILE|grep BuildRequires|grep "$package"`
-                       if `echo $COND_TST|grep -q '^BuildRequires:'`; then
-                               if [ "$COND_ARCH_TST" != "" ] && [ "`echo $COND_ARCH_TST|sed -e "s/i.86/ix86/g"`" != "`echo $mach|sed -e "s/i.86/ix86/g"`" ]; then
-                                       GO="yes"
-                               fi
-                       # bcond:
-                       else
-                               COND_NAME=`echo $COND_TST|sed -e s,:BuildRequires:.*$,,g`
-                               GO=""
-                               # %{without}
-                               if `echo $COND_TST|grep -q 'without_'`; then
-                                       COND_NAME=`echo $COND_NAME|sed -e s,^.*without_,,g`
-                                       if `echo $COND_TST|grep -q !`; then
-                                               COND_STATE="with"
-                                       else
-                                               COND_STATE="wout"
-                                       fi
-                                       COND_WITH=`echo $AVAIL_BCONDS_WITH|grep "<$COND_NAME>"`
-                                       COND_WITHOUT=`echo $AVAIL_BCONDS_WITHOUT|grep "<$COND_NAME>"`
-                                       if [ -n "$COND_WITHOUT" ] || [ -z "$COND_WITH" ]; then
-                                               COND_ARGV="wout"
-                                       else
-                                               COND_ARGV="with"
-                                       fi
-                               # %{with}
-                               elif `echo $COND_TST|grep -q 'with_'`; then
-                                       COND_NAME=`echo $COND_NAME|sed -e s,^.*with_,,g`
-                                       if `echo $COND_TST|grep -q !`; then
-                                               COND_STATE="wout"
-                                       else
-                                               COND_STATE="with"
-                                       fi
-                                       COND_WITH=`echo $AVAIL_BCONDS_WITH|grep "<$COND_NAME>"`
-                                       COND_WITHOUT=`echo $AVAIL_BCONDS_WITHOUT|grep "<$COND_NAME>"`
-                                       if [ -n "$COND_WITH" ] || [ -z "$COND_WITHOUT" ]; then
-                                               COND_ARGV="with"
-                                       else
-                                               COND_ARGV="wout"
-                                       fi
-                               fi
-                               RESULT="${COND_STATE}-${COND_ARGV}"
-                               case "$RESULT" in
-                                       "with-wout" | "wout-with" )
-                                               GO=""
-                                               ;;
-                                       "wout-wout" | "with-with" )
-                                               GO="yes"
-                                               ;;
-                                       * )
-                                               echo "Action '$RESULT' was not defined for package '$package_item'"
-                                               GO="yes"
-                                               ;;
-                               esac
-                       fi
-
-                       if [ "$GO" = "yes" ]; then
-                               if [ "`rpm -q $package|sed -e "s/$package.*/$package/g"`" != "$package" ]; then
-                                       echo "Testing if $package has subrequirements..."
-                                       run_poldek -t -i $package --dumpn=".$package-req.txt"
-                                       if [ -f ".$package-req.txt" ]; then
-                                               for package_name in `cat ".$package-req.txt"|grep -v ^#`
-                                               do
-                                                       if [ "$package_name" = "$package" ]; then
-                                                               echo "Installing BuildRequired package:\t$package_name"
-                                                               update_shell_title "Installing BuildRequired package: ${package_name}"
-                                                               install_required_packages $package
-                                                       else
-                                                               echo "Installing (sub)Required package:\t$package_name"
-                                                               update_shell_title "Installing (sub)Required package: ${package_name}"
-                                                               install_required_packages $package_name
-                                                       fi
-                                                       case $? in
-                                                               0)
-                                                                       INSTALLED_PACKAGES="$package_name $INSTALLED_PACKAGES"
-                                                                       echo $package_name >> `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
-                                                                       ;;
-                                                               *)
-                                                                       echo "Attempting to run spawn sub - builder..."
-                                                                       echo "Package installation failed:\t$package_name"
-                                                                       run_sub_builder $package_name
-                                                                       if [ $? -eq 0 ]; then
-                                                                               install_required_packages $package_name
-                                                                               case $? in
-                                                                                       0)
-                                                                                               INSTALLED_PACKAGES="$package_name $INSTALLED_PACKAGES"
-                                                                                               echo $package_name >> `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
-                                                                                               ;;
-                                                                                       *)
-                                                                                               NOT_INSTALLED_PACKAGES="$package_name $NOT_INSTALLED_PACKAGES"
-                                                                                               ;;
-                                                                               esac
-                                                                       fi
-                                                                       ;;
-                                                       esac
-                                               done
-                                               rm -f ".$package-req.txt"
-                                       else
-                                               echo "Attempting to run spawn sub - builder..."
-                                               echo "Package installation failed:\t$package"
-                                               run_sub_builder $package
-                                               if [ $? -eq 0 ]; then
-                                                       install_required_packages $package
-                                                       case $? in
-                                                               0)
-                                                                       INSTALLED_PACKAGES="$package_name $INSTALLED_PACKAGES"
-                                                                       echo $package_name >> `pwd`/.${SPECFILE}_INSTALLED_PACKAGES
-                                                                       ;;
-                                                               *)
-                                                                       NOT_INSTALLED_PACKAGES="$package_name $NOT_INSTALLED_PACKAGES"
-                                                                       ;;
-                                                       esac
-                                               fi
-                                       fi
-                               else
-                                       echo "Package $package is already installed. BuildRequirement satisfied."
-                               fi
-                       fi
-               done
-               if [ "$NOT_INSTALLED_PACKAGES" != "" ]; then
-                       echo >&2 "Unable to install following packages and their dependencies:"
-                       for pkg in "$NOT_INSTALLED_PACKAGES"
-                       do
-                               echo $pkg
-                       done
-                       remove_build_requires
-                       exit 8
-               fi
-}
-
-init_rpm_dir() {
-       TOP_DIR=$(eval $RPM $RPMOPTS --eval '%{_topdir}')
-       CVSROOT=":pserver:cvs@$CVS_SERVER:/cvsroot"
-
-       echo "Initializing rpm directories to $TOP_DIR from $CVSROOT"
-       mkdir -p $TOP_DIR/{RPMS,BUILD,SRPMS}
-       cd $TOP_DIR
-       $CVS_COMMAND -d $CVSROOT co packages/{.cvsignore,rpm.groups,dropin,mirrors,md5,adapter{,.awk},fetchsrc_request,builder,{relup,compile,repackage}.sh}
-
-       init_builder
-
-       echo "To checkout *all* .spec files (read-only):"
-       echo "- run cvs co SPECS"
-
-       echo "To checkout *all* packages:"
-       echo "- run cvs up -dP in $TOP_DIR/packages dir"
-
-       echo ""
-       echo "To commit with your developer account:"
-       echo "- edit $TOP_DIR/packages/CVS/Root"
-}
-
-get_greed_sources() {
-       CVSROOT=":pserver:cvs@$CVS_SERVER:/cvsroot"
-       if [ -n "BE_VERBOSE" ]; then
-               echo "Try greed download: $1 from: $CVSROOT"
-       fi
-       $CVS_COMMAND -d $CVSROOT get SOURCES/$1
-       if [ $? != 0 ]; then
-               Exit_error err_no_source_in_repo $1
-       fi
-
-}
-
-# remove entries from CVS/Entries
-cvs_entry_remove() {
-       local cvsdir="$1"; shift
-       if [ ! -d "$cvsdir" ]; then
-               echo >&2 "cvs_entry_remove: $cvsdir is not a directory"
-               exit 1
-       fi
-
-       for file in "$@"; do
-               rm -f $cvsdir/CVS/Entries.new || return 1
-               awk -ve="${file##*/}" -F/ '$2 != e {print}' $cvsdir/CVS/Entries > $cvsdir/CVS/Entries.new || return 1
-               mv -f $cvsdir/CVS/Entries.new $cvsdir/CVS/Entries || return 1
-       done
-       return 0
-}
-
-mr_proper() {
-       init_builder
-       NOCVSSPEC="yes"
-       DONT_PRINT_REVISION="yes"
-       get_spec
-       parse_spec
-
-       # remove from CVS/Entries
-       cvs_entry_remove $PACKAGE_DIR $SPECFILE $SOURCES $PATCHES
-
-       # remove spec and sources
-       $RPMBUILD --clean --rmsource --rmspec --nodeps --define \'_specdir $PACKAGE_DIR\' --define \'_sourcedir $PACKAGE_DIR\' $SPECFILE
-}
-
-#---------------------------------------------
-# main()
-
-if [ $# = 0 ]; then
-       usage
-       exit 1
-fi
-
-while [ $# -gt 0 ]; do
-       case "${1}" in
-               -5 | --update-md5)
-                       COMMAND="update_md5"
-                       NODIST="yes"
-                       NOCVSSPEC="yes"
-                       shift ;;
-               -a5 | --add-md5 )
-                       COMMAND="update_md5"
-                       NODIST="yes"
-                       NOCVS="yes"
-                       NOCVSSPEC="yes"
-                       ADD5="yes"
-                       shift ;;
-               -n5 | --no-md5 )
-                       NO5="yes"
-                       shift ;;
-               -D | --debug )
-                       DEBUG="yes"; shift ;;
-               -V | --version )
-                       COMMAND="version"; shift ;;
-               --short-version )
-                       COMMAND="short-version"; shift ;;
-               -a | --as_anon )
-                       CVSROOT=":pserver:cvs@$CVS_SERVER:/cvsroot"; shift ;;
-               -b | -ba | --build )
-                       COMMAND="build"; shift ;;
-               -bb | --build-binary )
-                       COMMAND="build-binary"; shift ;;
-               -bc )
-                       COMMAND="build-build"; shift ;;
-               -bi )
-                       COMMAND="build-install"; shift ;;
-               -bl )
-                       COMMAND="build-list"; shift ;;
-               -bp | --build-prep )
-                       COMMAND="build-prep"; shift ;;
-               -bs | --build-source )
-                       COMMAND="build-source"; shift ;;
-               -B | --branch )
-                       COMMAND="branch"; shift; TAG="${1}"; shift;;
-               -c | --clean )
-                       CLEAN="--clean"; shift ;;
-               -cf | --cvs-force )
-                       CVS_FORCE="-F"; shift;;
-               -d | --cvsroot )
-                       shift; CVSROOT="${1}"; shift ;;
-               -g | --get )
-                       COMMAND="get"; shift ;;
-               -h | --help )
-                       COMMAND="usage"; shift ;;
-               --http )
-                       PROTOCOL="http"; shift ;;
-               -l | --logtofile )
-                       shift; LOGFILE="${1}"; shift ;;
-               -ni| --nice )
-                       shift; DEF_NICE_LEVEL=${1}; shift ;;
-               -ske | --skip-existing-files)
-                       SKIP_EXISTING_FILES="yes"; shift ;;
-               -m | --mr-proper )
-                       COMMAND="mr-proper"; shift ;;
-               -nc | --no-cvs )
-                       NOCVS="yes"; shift ;;
-               -ncs | --no-cvs-specs )
-                       NOCVSSPEC="yes"; shift ;;
-               -nd | --no-distfiles )
-                       NODIST="yes"; shift ;;
-               -nm | --no-mirrors )
-                       NOMIRRORS="yes"; shift ;;
-               -nu | --no-urls )
-                       NOURLS="yes"; shift ;;
-               -ns | --no-srcs )
-                       NOSRCS="yes"; shift ;;
-               -ns0 | --no-source0 )
-                       NOSOURCE0="yes"; shift ;;
-               -nn | --no-net )
-                       NOCVS="yes"
-                       NOCVSSPEC="yes"
-                       NODIST="yes"
-                       NOMIRRORS="yes"
-                       NOURLS="yes"
-                       NOSRCS="yes"
-                       ALWAYS_CVSUP="no"
-                       shift;;
-               -pm | --prefer-mirrors )
-                       PREFMIRRORS="yes"
-                       shift;;
-               --no-init )
-                       NOINIT="yes"
-                       shift;;
-               --opts )
-                       shift; RPMOPTS="${RPMOPTS} ${1}"; shift ;;
-               --nopatch | -np )
-                       shift; RPMOPTS="${RPMOPTS} --define \"patch${1} : ignoring patch${1}; exit 1; \""; shift ;;
-               --topdir)
-                       RPMOPTS="${RPMOPTS} --define \"_topdir $2\""
-                       shift 2
-                       ;;
-               --with | --without )
-                       case $GROUP_BCONDS in
-                               "yes")
-                                       COND=${1}
-                                       shift
-                                       # XXX: broken: ./builder -bb ucspi-tcp.spec --without mysql
-                                       while ! `echo ${1}|grep -qE '(^-|spec)'`
-                                       do
-                                               BCOND="$BCOND $COND $1"
-                                               shift
-                                       done;;
-                               "no")
-                                       if [[ "$2" = *,* ]]; then
-                                               for a in $(echo "$2" | tr , ' '); do
-                                                       BCOND="$BCOND $1 $a"
-                                               done
-                                       else
-                                               BCOND="$BCOND $1 $2"
-                                       fi
-                                       shift 2 ;;
-                       esac
-                       ;;
-               --target )
-                       shift; TARGET="${1}"; shift ;;
-               --target=* )
-                       TARGET=$(echo "${1}" | sed 's/^--target=//'); shift ;;
-               -q | --quiet )
-                       QUIET="--quiet"; shift ;;
-               --date )
-                       CVSDATE="${2}"; shift 2 ;;
-               -r | --cvstag )
-                       CVSTAG="$2"
-                       shift 2
-                       ;;
-               -A)
-                       shift
-                       CVSTAG="HEAD"
-                       ;;
-               -R | --fetch-build-requires)
-                       FETCH_BUILD_REQUIRES="yes"
-                       NOT_INSTALLED_PACKAGES=
-                       shift ;;
-               -RB | --remove-build-requires)
-                       REMOVE_BUILD_REQUIRES="nice"
-                       shift ;;
-               -FRB | --force-remove-build-requires)
-                       REMOVE_BUILD_REQUIRES="force"
-                       shift ;;
-               -sc | --sources-cvs)
-                       COMMAND="list-sources-cvs"
-                       shift ;;
-               -sd | --sources-distfiles)
-                       COMMAND="list-sources-distfiles"
-                       shift ;;
-               -sdp | --sources-distfiles-paths)
-                       COMMAND="list-sources-distfiles-paths"
-                       shift ;;
-               -sf | --sources-files)
-                       COMMAND="list-sources-files"
-                       shift ;;
-               -sp | --sources-paths)
-                       COMMAND="list-sources-local-paths"
-                       shift ;;
-               -su | --sources-urls)
-                       COMMAND="list-sources-urls"
-                       shift ;;
-               -Tvs | --tag-version-stable )
-                       COMMAND="tag"
-                       TAG="STABLE"
-                       TAG_VERSION="yes"
-                       shift;;
-               -Ts | --tag-stable )
-                       COMMAND="tag"
-                       TAG="STABLE"
-                       TAG_VERSION="no"
-                       shift;;
-               -Tv | --tag-version )
-                       COMMAND="tag"
-                       TAG=""
-                       TAG_VERSION="yes"
-                       shift;;
-               -Tp | --tag-prefix )
-                       TAG_PREFIX="$2"
-                       shift 2;;
-               -tt | --test-tag )
-                       TEST_TAG="yes"
-                       shift;;
-               -T | --tag )
-                       COMMAND="tag"
-                       shift
-                       TAG="$1"
-                       TAG_VERSION="no"
-                       shift;;
-               -ir | --integer-release-only )
-                       INTEGER_RELEASE="yes"
-                       shift;;
-               -U | --update )
-                       COMMAND="update_md5"
-                       UPDATE="yes"
-                       NOCVSSPEC="yes"
-                       NODIST="yes"
-                       shift ;;
-               -Upi | --update-poldek-indexes )
-                       UPDATE_POLDEK_INDEXES="yes"
-                       shift ;;
-               --init-rpm-dir)
-                       COMMAND="init_rpm_dir"
-                       shift ;;
-               --use-greed-sources )
-                       GREEDSRC="1"
-                       shift;;
-               -u | --try-upgrade )
-                       TRY_UPGRADE="1"; shift ;;
-               -un | --try-upgrade-with-float-version )
-                       TRY_UPGRADE="1"; FLOAT_VERSION="1"; shift ;;
-               -v | --verbose )
-                       BE_VERBOSE="1"; shift ;;
-               --define)
-                       shift
-                       MACRO="${1}"
-                       shift
-                       if echo "${MACRO}" | grep -q '\W'; then
-                               RPMOPTS="${RPMOPTS} --define \"${MACRO}\""
-                       else
-                               VALUE="${1}"
-                               shift
-                               RPMOPTS="${RPMOPTS} --define \"${MACRO} ${VALUE}\""
-                       fi
-                       ;;
-               --alt_kernel)
-                       shift
-                       RPMOPTS="${RPMOPTS} --define \"alt_kernel $1\""
-                       shift
-                       ;;
-               --short-circuit)
-                       RPMBUILDOPTS="${RPMBUILDOPTS} --short-circuit"
-                       shift
-                       ;;
-               --show-bconds | -show-bconds | -print-bconds | --print-bconds | -display-bconds | --display-bconds )
-                       COMMAND="show_bconds"
-                       shift
-                       ;;
-               --show-bcond-args)
-                       COMMAND="show_bcond_args"
-                       shift
-                       ;;
-               --show-avail-bconds)
-                       COMMAND="show_avail_bconds"
-                       shift
-                       ;;
-               --nodeps)
-                       shift
-                       RPMOPTS="${RPMOPTS} --nodeps"
-                       ;;
-               -debug)
-                       RPMBUILDOPTS="${RPMBUILDOPTS} -debug"; shift
-                       ;;
-               -*)
-                       Exit_error err_invalid_cmdline "$1"
-                       ;;
-               *)
-                       SPECFILE=$1; shift
-                       # check if specname was passed as specname:cvstag
-                       if [ "${SPECFILE##*:}" != "${SPECFILE}" ]; then
-                               CVSTAG="${SPECFILE##*:}"
-                               SPECFILE="${SPECFILE%%:*}"
-                       fi
-                       # always have SPECFILE ending with .spec extension
-                       SPECFILE=${SPECFILE%%.spec}.spec
-                       ASSUMED_NAME=$(basename ${SPECFILE%%.spec})
-       esac
-done
-
-[ -d "$ASSUMED_NAME" ] && CVS_ENTRIES="$ASSUMED_NAME/CVS/Entries" || CVS_ENTRIES="CVS/Entries"
-if [ -f "$CVS_ENTRIES" ] && [ -z "$CVSTAG" ]; then
-       CVSTAG=$(awk -vSPECFILE=$(basename $SPECFILE) -F/ '$2 == SPECFILE && $6 ~ /^T/{print substr($6, 2)}' ${CVS_ENTRIES})
-       if [ "$CVSTAG" ]; then
-               echo >&2 "builder: Sticky tag $CVSTAG active. Use -r TAGNAME to override."
-       fi
-elif [ "$CVSTAG" = "HEAD" ]; then
-       # assume -r HEAD is same as -A
-       CVSTAG=""
-fi
-
-if [ "$CVSTAG" ]; then
-       # pass $CVSTAG used by builder to rpmbuild too, so specs could use it
-       RPMOPTS="$RPMOPTS --define \"_cvstag $CVSTAG\""
-fi
-
-if [ -n "$DEBUG" ]; then
-       set -x
-       set -v
-fi
-
-if [ -n "$TARGET" ]; then
-       case "$RPMBUILD" in
-               "rpmbuild")
-                       TARGET_SWITCH="--target $TARGET" ;;
-               "rpm")
-                       TARGET_SWITCH="--target=$TARGET" ;;
-       esac
-fi
-
-if [ "$SCHEDTOOL" != "no" ]; then
-       NICE_COMMAND="$SCHEDTOOL"
-else
-       NICE_COMMAND="nice -n ${DEF_NICE_LEVEL}"
-fi
-
-update_shell_title "$COMMAND"
-case "$COMMAND" in
-       "show_bconds")
-               init_builder
-               if [ -n "$SPECFILE" ]; then
-                       get_spec > /dev/null
-                       parse_spec
-                       set_bconds_values
-                       display_bconds
-               fi
-               ;;
-       "show_bcond_args")
-               init_builder
-               if [ -n "$SPECFILE" ]; then
-                       get_spec > /dev/null
-                       parse_spec
-                       set_bconds_values
-                       echo "$BCOND"
-               fi
-               ;;
-       "show_avail_bconds")
-               init_builder
-               if [ -n "$SPECFILE" ]; then
-                       get_spec > /dev/null
-                       parse_spec
-                       local bcond_avail=$(find_spec_bcond $SPECFILE)
-                       local opt bcond bconds
-                       for opt in $bcond_avail; do
-                               case "$opt" in
-                               without_*)
-                                       bcond=${opt#without_}
-                                       bconds="$bconds $bcond"
-                                       ;;
-                               with_*)
-                                       bcond=${opt#with_}
-                                       bconds="$bconds $bcond"
-                                       ;;
-                               *)
-                                       echo >&2 "ERROR: unexpected '$opt' in show_avail_bconds"
-                                       exit 1
-                                       ;;
-                               esac
-                       done
-                       echo $bconds
-               fi
-
-               ;;
-       "build" | "build-binary" | "build-source" | "build-prep" | "build-build" | "build-install" | "build-list")
-               init_builder
-               if [ -n "$SPECFILE" ]; then
-                       # display SMP make flags if set
-                       smp_mflags=$(rpm -E %{?_smp_mflags})
-                       if [ "$smp_mflags" ]; then
-                               echo "builder: SMP make flags are set to $smp_mflags"
-                       fi
-
-                       get_spec
-                       parse_spec
-                       set_bconds_values
-                       display_bconds
-                       display_branches
-                       if [ "$COMMAND" != "build-source" ]; then
-                               check_buildarch
-                       fi
-                       fetch_build_requires
-                       if [ "$INTEGER_RELEASE" = "yes" ]; then
-                               echo "Checking release $PACKAGE_RELEASE..."
-                               if echo $PACKAGE_RELEASE | grep -q '^[^.]*\.[^.]*$' 2>/dev/null ; then
-                                       Exit_error err_fract_rel "$PACKAGE_RELEASE"
-                               fi
-                       fi
-
-                       # ./builder -bs test.spec -r AC-branch -Tp auto-ac- -tt
-                       if [ -n "$TEST_TAG" ]; then
-                               local TAGVER=`make_tagver`
-                               echo "Searching for tag $TAGVER..."
-                               TAGREL=$($CVS_COMMAND status -v $SPECFILE | grep -E "^[[:space:]]*${TAGVER}[[[:space:]]" | sed -e 's#.*(revision: ##g' -e 's#).*##g')
-                               if [ -n "$TAGREL" ]; then
-                                       Exit_error err_tag_exists "$TAGVER" "$TAGREL"
-                               fi
-
-                               # - do not allow to build from HEAD when XX-branch exists
-                               TREE_PREFIX=$(echo "$TAG_PREFIX" | sed -e 's#^auto-\([a-zA-Z]\+\)-.*#\1#g')
-                               if [ "$TREE_PREFIX" != "$TAG_PREFIX" ]; then
-                                       TAG_BRANCH="${TREE_PREFIX}-branch"
-                                       TAG_STATUS=$($CVS_COMMAND status -v $SPECFILE | grep -Ei "${TAG_BRANCH}.+(branch: [0-9.]+)")
-                                       if [ -n "$TAG_STATUS" -a "$CVSTAG" = "HEAD" ]; then
-                                               Exit_error err_branch_exists "$TAG_STATUS"
-                                       fi
-                               fi
-
-                       fi
-
-                       if [ -n "$NOSOURCE0" ] ; then
-                               SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
-                       fi
-                       try_upgrade
-                       case $? in
-                               0)
-                                       get_files $SOURCES $PATCHES
-                                       check_md5 $SOURCES
-                                       ;;
-                               *)
-                                       NODIST="yes" get_files $SOURCES $PATCHES
-                                       update_md5 $SOURCES
-                                       ;;
-                       esac
-                       build_package
-                       if [ "$UPDATE_POLDEK_INDEXES" = "yes" -a "$COMMAND" != "build-prep" ]; then
-                               run_poldek --sdir="${POLDEK_INDEX_DIR}" --mkidxz
-                       fi
-                       remove_build_requires
-               else
-                       Exit_error err_no_spec_in_cmdl
-               fi
-               ;;
-       "branch" )
-               init_builder
-               if [ -n "$SPECFILE" ]; then
-                       get_spec
-                       parse_spec
-                       # don't fetch sources from remote locations
-                       new_SOURCES=""
-                       for file in $SOURCES; do
-                               [ -n "`src_md5 $file`" ] && continue
-                               new_SOURCES="$new_SOURCES $file"
-                       done
-                       SOURCES="$new_SOURCES"
-                       get_files $SOURCES $PATCHES
-                       check_md5 $SOURCES
-                       branch_files $TAG $SOURCES $PATCHES $ICONS
-               else
-                       Exit_error err_no_spec_in_cmdl
-               fi
-               ;;
-       "get" )
-               init_builder
-               if [ -n "$SPECFILE" ]; then
-                       get_spec
-                       parse_spec
-
-                       if [ -n "$NOSOURCE0" ] ; then
-                               SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
-                       fi
-                       get_files $SOURCES $PATCHES
-                       check_md5 $SOURCES
-               else
-                       Exit_error err_no_spec_in_cmdl
-               fi
-               ;;
-       "update_md5" )
-               init_builder
-               if [ -n "$SPECFILE" ]; then
-                       get_spec
-                       parse_spec
-
-                       if [ -n "$NOSOURCE0" ] ; then
-                               SOURCES=`echo $SOURCES | xargs | sed -e 's/[^ ]*//'`
-                       fi
-                       update_md5 $SOURCES
-               else
-                       Exit_error err_no_spec_in_cmdl
-               fi
-               ;;
-       "tag" )
-               NOURLS=1
-               NODIST="yes"
-               init_builder
-               if [ -n "$SPECFILE" ]; then
-                       get_spec
-                       parse_spec
-
-                       # don't fetch sources from remote locations
-                       new_SOURCES=""
-                       for file in $SOURCES; do
-                               [ -n "`src_md5 $file`" ] && continue
-                               new_SOURCES="$new_SOURCES $file"
-                       done
-                       SOURCES="$new_SOURCES"
-                       get_files $SOURCES $PATCHES
-                       check_md5 $SOURCES
-                       tag_files $SOURCES $PATCHES $ICONS
-               else
-                       Exit_error err_no_spec_in_cmdl
-               fi
-               ;;
-       "mr-proper" )
-               mr_proper
-               ;;
-       "list-sources-files" )
-               init_builder
-               NOCVSSPEC="yes"
-               DONT_PRINT_REVISION="yes"
-               get_spec
-               parse_spec
-               for SAP in $SOURCES $PATCHES; do
-                       echo $SAP | awk '{gsub(/.*\//,"") ; print}'
-               done
-               ;;
-       "list-sources-urls" )
-               init_builder
-               NOCVSSPEC="yes"
-               DONT_PRINT_REVISION="yes"
-               get_spec
-               parse_spec
-               SAPS="$SOURCES $PATCHES"
-               for SAP in $SAPS ; do
-                       echo $SAP
-               done
-               ;;
-       "list-sources-local-paths" )
-               init_builder
-               NOCVSSPEC="yes"
-               DONT_PRINT_REVISION="yes"
-               get_spec
-               parse_spec
-               for SAP in $SOURCES $PATCHES; do
-                       echo $PACKAGE_DIR/$(echo $SAP | awk '{gsub(/.*\//,"") ; print }')
-               done
-               ;;
-       "list-sources-distfiles-paths" )
-               init_builder
-               NOCVSSPEC="yes"
-               DONT_PRINT_REVISION="yes"
-               get_spec
-               parse_spec
-               for SAP in $SOURCES $PATCHES; do
-                       if [ -n "$(src_md5 "$SAP")" ]; then
-                               distfiles_path "$SAP"
-                       fi
-               done
-               ;;
-       "list-sources-distfiles" )
-               init_builder
-               NOCVSSPEC="yes"
-               DONT_PRINT_REVISION="yes"
-               get_spec
-               parse_spec
-               for SAP in $SOURCES $PATCHES; do
-                       if [ -n "$(src_md5 "$SAP")" ]; then
-                               distfiles_url "$SAP"
-                       fi
-               done
-               ;;
-       "list-sources-cvs" )
-               init_builder
-#              NOCVSSPEC="yes"
-               DONT_PRINT_REVISION="yes"
-               get_spec
-               parse_spec
-               for SAP in $SOURCES $PATCHES; do
-                       if [ -z "$(src_md5 "$SAP")" ]; then
-                               echo $SAP | awk '{gsub(/.*\//,"") ; print}'
-                       fi
-               done
-               ;;
-       "init_rpm_dir")
-               init_rpm_dir
-               ;;
-       "usage" )
-               usage
-               ;;
-       "short-version" )
-               echo "$VERSION"
-               ;;
-       "version" )
-               echo "$VERSIONSTRING"
-               ;;
-esac
-if [ -f "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES" -a "$REMOVE_BUILD_REQUIRES" != "" ]; then
-       rm "`pwd`/.${SPECFILE}_INSTALLED_PACKAGES"
-fi
-cd "$__PWD"
-
-# vi:syntax=sh:ts=4:sw=4:noet
diff --git a/pldnotify_.awk b/pldnotify_.awk
deleted file mode 100644 (file)
index b5dbd03..0000000
+++ /dev/null
@@ -1,590 +0,0 @@
-#!/bin/awk -f
-# $Revision$, $Date$
-#
-# Copyright (C) 2000-2010 PLD-Team <feedback@pld-linux.org>
-# Authors:
-#      Sebastian Zagrodzki <zagrodzki@pld-linux.org>
-#      Jacek Konieczny <jajcus@pld-linux.org>
-#      Andrzej Krzysztofowicz <ankry@pld-linux.org>
-#      Jakub Bogusz <qboosh@pld-linux.org>
-#      Elan Ruusamäe <glen@pld-linux.org>
-#
-# See cvs log pldnotify.awk for list of contributors
-#
-# TODO:
-# - "SourceXDownload" support (use given URLs if present instead of cut-down SourceX URLs)
-# - "SourceXActiveFTP" support
-
-
-function d(s) {
-       if (!DEBUG) {
-               return
-       }
-       print s >> "/dev/stderr"
-}
-
-function fixedsub(s1,s2,t,     ind) {
-# substitutes fixed strings (not regexps)
-       if (ind = index(t,s1)) {
-               t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
-       }
-       return t
-}
-
-function ispre(s) {
-       if ((s~"pre")||(s~"PRE")||(s~"beta")||(s~"BETA")||(s~"alpha")||(s~"ALPHA")||(s~"rc")||(s~"RC")) {
-               d("pre-version")
-               return 1
-       } else {
-               return 0
-       }
-}
-
-function compare_ver(v1,v2) {
-# compares version numbers
-       while (match(v1,/[a-zA-Z][0-9]|[0-9][a-zA-Z]/))
-               v1=(substr(v1,1,RSTART) "." substr(v1,RSTART+RLENGTH-1))
-       while (match(v2,/[a-zA-Z][0-9]|[0-9][a-zA-Z]/))
-               v2=(substr(v2,1,RSTART) "." substr(v2,RSTART+RLENGTH-1))
-       sub("^0*","",v1)
-       sub("^0*","",v2)
-       gsub("\.0*",".",v1)
-       gsub("\.0*",".",v2)
-       d("v1 == " v1)
-       d("v2 == " v2)
-       count=split(v1,v1a,"\.")
-       count2=split(v2,v2a,"\.")
-
-       if (count<count2) mincount=count
-       else mincount=count2
-
-       for (i=1; i<=mincount; i++) {
-               if (v1a[i]=="") v1a[i]=0
-               if (v2a[i]=="") v2a[i]=0
-               d("i == " i)
-               d("v1[i] == " v1a[i])
-               d("v2[i] == " v2a[i])
-               if ((v1a[i]~/[0-9]/)&&(v2a[i]~/[0-9]/)) {
-                       if (length(v2a[i])>length(v1a[i]))
-                               return 1
-                       else if (v2a[i]>v1a[i])
-                               return 1
-                       else if (length(v1a[i])>length(v2a[i]))
-                               return 0
-                       else if (v1a[i]>v2a[i])
-                               return 0
-               } else if ((v1a[i]~/[A-Za-z]/)&&(v2a[i]~/[A-Za-z]/)) {
-                       if (v2a[i]>v1a[i])
-                               return 1
-                       else if (v1a[i]>v2a[i])
-                               return 0
-               } else if (ispre(v1a[i]) == 1)
-                       return 1
-               else
-                       return 0
-       }
-       if ((count2==mincount)&&(count!=count2)) {
-               for (i=count2+1; i<=count; i++)
-                       if (ispre(v1a[i]) == 1)
-                               return 1
-               return 0
-       } else if (count!=count2) {
-               for (i=count+1; i<=count2; i++)
-                       if (ispre(v2a[i]) == 1)
-                               return 0
-               return 1
-       }
-       return 0
-}
-
-function compare_ver_dec(v1,v2) {
-# compares version numbers as decimal floats
-       while (match(v1,/[0-9][a-zA-Z]/))
-               v1=(substr(v1,1,RSTART) "." substr(v1,RSTART+RLENGTH-1))
-       while (match(v2,/[0-9][a-zA-Z]/))
-               v2=(substr(v2,1,RSTART) "." substr(v2,RSTART+RLENGTH-1))
-       sub("^0*","",v1)
-       sub("^0*","",v2)
-       d("v1 == " v1)
-       d("v2 == " v2)
-       count=split(v1,v1a,"\.")
-       count2=split(v2,v2a,"\.")
-
-       if (count<count2) mincount=count
-       else mincount=count2
-
-       for (i=1; i<=mincount; i++) {
-               if (v1a[i]=="") v1a[i]=0
-               if (v2a[i]=="") v2a[i]=0
-               d("i == " i)
-               d("v1[i] == " v1a[i])
-               d("v2[i] == " v2a[i])
-               if ((v1a[i]~/[0-9]/)&&(v2a[i]~/[0-9]/)) {
-                       if (i==2) {
-                               if (0+("." v2a[i])>0+("." v1a[i]))
-                                       return 1
-                               else if (0+("." v1a[i])>0+("." v2a[i]))
-                                       return 0
-                       } else {
-                               if (length(v2a[i])>length(v1a[i]))
-                                       return 1
-                               else if (v2a[i]>v1a[i])
-                                       return 1
-                               else if (length(v1a[i])>length(v2a[i]))
-                                       return 0
-                               else if (v1a[i]>v2a[i])
-                                       return 0
-                       }
-               } else if ((v1a[i]~/[A-Za-z]/)&&(v2a[i]~/[A-Za-z]/)) {
-                       if (v2a[i]>v1a[i])
-                               return 1
-                       else if (v1a[i]>v2a[i])
-                               return 0
-               } else if (ispre(v1a[i]) == 1)
-                       return 1
-               else
-                       return 0
-       }
-       if ((count2==mincount)&&(count!=count2)) {
-               for (i=count2+1; i<=count; i++)
-                       if (ispre(v1a[i]) == 1)
-                               return 1
-               return 0
-       } else if (count!=count2) {
-               for (i=count+1; i<=count2; i++)
-                       if (ispre(v2a[i]) == 1)
-                               return 0
-               return 1
-       }
-       return 0
-}
-
-function link_seen(link) {
-       for (seenlink in frameseen) {
-               if (seenlink == link) {
-                       d("Link: [" link "] seen already, skipping...")
-                       return 1
-               }
-       }
-       frameseen[link]=1
-       return 0
-}
-
-function mktemp(   _cmd, _tmpfile) {
-       _cmd = "mktemp /tmp/XXXXXX"
-       _cmd | getline _tmpfile
-       close(_cmd)
-       return _tmpfile
-}
-
-# fix link to artificial one that will be recognized rest of this script
-function postfix_link(url, link) {
-       oldlink = link
-       if ((url ~/^(http|https):\/\/github.com\//) && (link ~ /.*\/tarball\//)) {
-               gsub(".*\/tarball\/", "", link)
-               link = link ".tar.gz"
-       }
-       d("POST FIXING URL [ " oldlink " ] to [ " link " ]")
-       return link
-}
-
-# get all <A HREF=..> tags from specified URL
-function get_links(url,filename,   errno,link,oneline,retval,odp,wholeodp,lowerodp,tmpfile,cmd) {
-
-       wholeerr=""
-
-       tmpfile = mktemp()
-       tmpfileerr = mktemp()
-
-       if (url ~ /^http:\/\/(download|dl).(sf|sourceforge).net\//) {
-               gsub("^http://(download|dl).(sf|sourceforge).net/", "", url)
-               gsub("/.*", "", url)
-               url = "http://sourceforge.net/projects/" url "/files/"
-               d("sf url, mungled url to: " url)
-       }
-
-       if (url ~ /^http:\/\/(.*)\.googlecode\.com\/files\//) {
-               gsub("^http://", "", url)
-               gsub("\..*", "", url)
-               url = "http://code.google.com/p/" url "/downloads/list"
-               d("googlecode url, mungled url to: " url)
-       }
-
-       if (url ~ /^http:\/\/pecl.php.net\/get\//) {
-               gsub("-.*", "", filename)
-               url = "http://pecl.php.net/package/" filename
-               d("pecl.php.net url, mungled url to: " url)
-       }
-
-       if (url ~ /^(http|ftp):\/\/mysql.*\/Downloads\/MySQL-5.1\//) {
-               url = "http://dev.mysql.com/downloads/mysql/5.1.html#source"
-                d("mysql 5.1 url, mungled url to: " url)
-       }
-
-       if (url ~/^(http|https):\/\/launchpad\.net\/(.*)\//) {
-               gsub("^(http|https):\/\/launchpad\.net\/", "", url)
-               gsub("\/.*/", "", url)
-               url = "https://code.launchpad.net/" url "/+download"
-               d("main launchpad url, mungled url to: " url)
-       }
-
-       if (url ~/^(http|https):\/\/edge\.launchpad\.net\/(.*)\//) {
-               gsub("^(http|https):\/\/edge\.launchpad\.net\/", "", url)
-               gsub("\/.*/", "", url)
-               url = "https://edge.launchpad.net/" url "/+download"
-               d("edge launchpad url, mungled url to: " url)
-       }
-
-       if (url ~/^(http|https):\/\/github.com\/.*\/(.*)\/tarball\//) {
-               gsub("\/tarball\/.*", "/downloads", url)
-               d("github tarball url, mungled url to: " url)
-       }
-
-
-       d("Retrieving: " url)
-       cmd = "wget --user-agent \"Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2) Gecko/20100129 PLD/3.0 (Th) Iceweasel/3.6\" -nv -O - \"" url "\" -t 2 -T 45 --passive-ftp --no-check-certificate > " tmpfile " 2> " tmpfileerr
-       d("Execute: " cmd)
-       errno = system(cmd)
-       d("Execute done")
-
-       if (errno==0) {
-               wholeodp = ""
-               d("Reading succeess response...")
-               while (getline oneline < tmpfile)
-                       wholeodp=(wholeodp " " oneline)
-#                      d("Response: " wholeodp)
-       } else {
-               d("Reading failure response...")
-               wholeerr = ""
-               while (getline oneline < tmpfileerr)
-                       wholeerr=(wholeerr " " oneline)
-               d("Error Response: " wholeerr)
-       }
-
-       system("rm -f " tmpfile)
-       system("rm -f " tmpfileerr)
-
-       urldir=url;
-       sub(/[^\/]+$/,"",urldir)
-
-       if ( errno==0) {
-               while (match(wholeodp, /<([aA]|[fF][rR][aA][mM][eE])[ \t][^>]*>/) > 0) {
-                       d("Processing links...")
-                       odp=substr(wholeodp,RSTART,RLENGTH);
-                       wholeodp=substr(wholeodp,RSTART+RLENGTH);
-
-                       lowerodp=tolower(odp);
-                       if (lowerodp ~ /<frame[ \t]/) {
-                               sub(/[sS][rR][cC]=[ \t]*/,"src=",odp);
-                               match(odp,/src="[^"]+"/)
-                               newurl=substr(odp,RSTART+5,RLENGTH-6)
-                               d("Frame: " newurl)
-                               if (newurl !~ /\//) {
-                                       newurl=(urldir newurl)
-                                       d("Frame->: " newurl)
-                               }
-
-                               if (link_seen(newurl)) {
-                                       newurl=""
-                                       continue
-                               }
-
-                               retval=(retval " " get_links(newurl))
-                       } else if (lowerodp ~ /href=[ \t]*"[^"]*"/) {
-                               sub(/[hH][rR][eE][fF]=[ \t]*"/,"href=\"",odp)
-                               match(odp,/href="[^"]*"/)
-                               link=substr(odp,RSTART,RLENGTH)
-                               odp=substr(odp,1,RSTART) substr(odp,RSTART+RLENGTH)
-                               link=substr(link,7,length(link)-7)
-                               link=postfix_link(url, link)
-
-                               if (link_seen(link)) {
-                                       link=""
-                                       continue
-                               }
-
-                               retval=(retval " " link)
-                               d("href(\"\"): " link)
-                       } else if (lowerodp ~ /href=[ \t]*'[^']*'/) {
-                               sub(/[hH][rR][eE][fF]=[ \t]*'/,"href='",odp)
-                               match(odp,/href='[^']*'/)
-                               link=substr(odp,RSTART,RLENGTH)
-                               odp=substr(odp,1,RSTART) substr(odp,RSTART+RLENGTH)
-                               link=substr(link,7,length(link)-7)
-                               link=postfix_link(url, link)
-
-                               if (link_seen(link)) {
-                                       link=""
-                                       continue
-                               }
-
-                               retval=(retval " " link)
-                               d("href(''): " link)
-                       } else if (lowerodp ~ /href=[ \t]*[^ \t>]*/) {
-                               sub(/[hH][rR][eE][fF]=[ \t]*/,"href=",odp)
-                               match(odp,/href=[^ \t>]*/)
-                               link=substr(odp,RSTART,RLENGTH)
-                               odp=substr(odp,1,RSTART) substr(odp,RSTART+RLENGTH)
-                               link=substr(link,6,length(link)-5)
-
-                               if (link_seen(link)) {
-                                       link=""
-                                       continue
-                               }
-
-                               retval=(retval " " link)
-                               d("href(): " link)
-                       } else {
-                               # <a ...> but not href - skip
-                               d("skipping <a > without href: " odp)
-                       }
-               }
-       } else {
-               retval=("WGET ERROR: " errno ": " wholeerr)
-       }
-
-
-       d("Returning: " retval)
-       return retval
-}
-
-function subst_defines(var,defs) {
-# substitute all possible RPM macros
-       while ((var ~ /%{.*}/) || (var ~ /%[A-Za-z0-9_]+/)) {
-               oldvar=var
-               for (j in defs) {
-                       gsub("%{" j "}", defs[j], var)
-                       gsub("%" j , defs[j], var)
-               }
-               if (var==oldvar) {
-                       if (DEBUG) {
-                               for (i in defs) {
-                                       d(i " == " defs[i])
-                               }
-                       }
-                       return var
-               }
-       }
-       return var
-}
-
-function find_mirror(url) {
-
-       while (succ = (getline line < "mirrors")) {
-           if (succ==-1) { return url }
-               nf=split(line,fields,"|")
-               if (nf>1){
-                       origin=fields[1]
-                       mirror=fields[2]
-                       mname=fields[3]
-                       prefix=substr(url,1,length(origin))
-                       if (prefix==origin){
-                               d("Mirror fount at " mname)
-                               close("mirrors")
-                               return mirror substr(url,length(origin)+1)
-                       }
-               }
-       }
-
-       return url
-}
-
-function process_source(number,lurl,name,version) {
-# fetches file list, and compares version numbers
-       d("Processing " lurl)
-
-       if ( index(lurl,version)==0 ) {
-               d("There is no version number.")
-               return 0
-       }
-
-       sub("://",":",lurl)
-       sub("/",":/",lurl)
-       gsub("[^/]*$",":&",lurl)
-       split(lurl,url,":")
-       acc=url[1]
-       host=url[2]
-       dir=url[3]
-       filename=url[4]
-
-       if (index(dir,version)) {
-               # directory name as version maching mode:
-               # if /something/version/name-version.tarball then check
-               # in /something/ looking for newer directory
-               dir=substr(dir,1,index(dir,version)-1)
-               sub("[^/]*$","",dir)
-               sub("(\.tar\.(bz|bz2|gz)|zip)$","",filename)
-       }
-
-       d("Will check a directory: " dir)
-       d("and a file: " filename)
-
-       filenameexp=filename
-       gsub("\+","\\+",filenameexp)
-       sub(version,"[A-Za-z0-9.]+",filenameexp)
-       gsub("\.","\\.",filenameexp)
-       d("Expression: " filenameexp)
-       match(filename,version)
-       prever=substr(filename,1,RSTART-1)
-       postver=substr(filename,RSTART+RLENGTH)
-       d("Before number: " prever)
-       d("and after: " postver)
-       newurl=find_mirror(acc "://" host dir)
-       #print acc "://" host dir
-       #newurl=url[1]"://"url[2]url[3]url[4]
-       #newurl=acc "://" host dir filename
-       d("Looking at " newurl)
-
-       references=0
-       finished=0
-       oldversion=version
-       odp=get_links(newurl,filename)
-       if( odp ~ "ERROR: ") {
-               print name "(" number ") " odp
-       } else {
-               d("WebPage downloaded")
-               c=split(odp,linki)
-               for (nr=1; nr<=c; nr++) {
-                       addr=linki[nr]
-
-                       d("Found link: " addr)
-
-                       # github has very different tarball links that clash with this safe check
-                       if (!(newurl ~/^(http|https):\/\/github.com\/.*\/tarball/)) {
-                               if (addr ~ "[-_.0-9A-Za-z~]" filenameexp) {
-                                       continue
-                               }
-                       }
-
-                       if (addr ~ filenameexp) {
-                               match(addr,filenameexp)
-                               newfilename=substr(addr,RSTART,RLENGTH)
-                               d("Hypothetical new: " newfilename)
-                               newfilename=fixedsub(prever,"",newfilename)
-                               newfilename=fixedsub(postver,"",newfilename)
-                               d("Version: " newfilename)
-                               if (newfilename ~ /\.(asc|sig|pkg|bin|binary|built)$/) continue
-                               # strip ending (happens when in directiory name as version matching mode)
-                               sub("(\.tar\.(bz|bz2|gz)|zip)$","",newfilename)
-                               if (NUMERIC) {
-                                       if ( compare_ver_dec(version, newfilename)==1 ) {
-                                               d("Yes, there is new one")
-                                               version=newfilename
-                                               finished=1
-                                       }
-                               } else if ( compare_ver(version, newfilename)==1 ) {
-                                       d("Yes, there is new one")
-                                       version=newfilename
-                                       finished=1
-                               }
-                       }
-               }
-               if (finished==0)
-                       print name "(" number ") seems ok: " oldversion
-               else
-                       print name "(" number ") [OLD] " oldversion " [NEW] " version
-       }
-}
-
-# upgrade check for pear package using PEAR CLI
-function pear_upgrade(name, ver,    pname, pearcmd, nver) {
-       pname = name;
-       sub(/^php-pear-/, "", pname);
-
-       pearcmd = "pear remote-info " pname " | awk '/^Latest/{print $NF}'"
-       d("pearcmd: " pearcmd)
-       pearcmd | getline nver
-       close(pearcmd)
-
-       if (compare_ver(ver, nver)) {
-               print name " [OLD] " ver " [NEW] " nver
-       } else {
-               print name " seems ok: " ver
-       }
-
-       return
-}
-
-function vim_upgrade(name, ver,     mver, nver, vimcmd) {
-       # %patchset_source -f ftp://ftp.vim.org/pub/editors/vim/patches/7.2/7.2.%03g 1 %{patchlevel}
-       mver = substr(ver, 0, 4)
-       vimcmd = "wget -q -O - ftp://ftp.vim.org/pub/editors/vim/patches/"mver"/MD5SUMS|grep -vF .gz|tail -n1|awk '{print $2}'"
-       d("vimcmd: " vimcmd)
-       vimcmd | getline nver
-       close(vimcmd)
-
-       if (compare_ver(ver, nver)) {
-               print name " [OLD] " ver " [NEW] " nver
-       } else {
-               print name " seems ok: " ver
-       }
-}
-
-function process_data(name,ver,rel,src) {
-       if (name ~ /^php-pear-/) {
-               return pear_upgrade(name, ver);
-       }
-       if (name == "vim") {
-               return vim_upgrade(name, ver);
-       }
-
-# this function checks if substitutions were valid, and if true:
-# processes each URL and tries to get current file list
-       for (i in src) {
-               if ( src[i] ~ /%{nil}/ ) {
-                       gsub(/\%\{nil\}/, "", src[i])
-               }
-               if ( src[i] !~ /%{.*}/ && src[i] !~ /%[A-Za-z0-9_]/ )  {
-                       d("Source: " src[i])
-                       process_source(i,src[i],name,ver)
-               } else {
-                       print FNAME ":" i ": impossible substitution: " src[i]
-               }
-       }
-}
-
-BEGIN {
-       # if U want to use DEBUG, run script with "-v DEBUG=1"
-       # or uncomment the line below
-       # DEBUG = 1
-
-       errno=system("wget --help > /dev/null 2>&1")
-       if (errno) {
-               print "No wget installed!"
-               exit 1
-       }
-       if (ARGC>=3 && ARGV[2]=="-n") {
-               NUMERIC=1
-               for (i=3; i<ARGC; i++) ARGV[i-1]=ARGV[i]
-               ARGC=ARGC-1
-       }
-}
-
-FNR==1 {
-       if ( ARGIND != 1 ) {
-               # clean frameseen for each ARG
-               for (i in frameseen) {
-                       delete frameseen[i]
-               }
-               frameseen[0] = 1
-
-               process_data(NAME,VER,REL,SRC)
-               NAME="" ; VER="" ; REL=""
-               for (i in DEFS) delete DEFS[i]
-               for (i in SRC) delete SRC[i]
-       }
-       FNAME=FILENAME
-       DEFS["_alt_kernel"]=""
-       DEFS["20"]="\\ "
-}
-
-/^[Uu][Rr][Ll]:/&&(URL=="") { URL=subst_defines($2,DEFS) ; DEFS["url"]=URL }
-/^[Nn]ame:/&&(NAME=="") { NAME=subst_defines($2,DEFS) ; DEFS["name"]=NAME }
-/^[Vv]ersion:/&&(VER=="") { VER=subst_defines($2,DEFS) ; DEFS["version"]=VER }
-/^[Rr]elease:/&&(REL=="") { REL=subst_defines($2,DEFS) ; DEFS["release"]=REL }
-/^[Ss]ource[0-9]*:/ { if (/(ftp|http|https):\/\//) SRC[FNR]=subst_defines($2,DEFS) }
-/%define/ { DEFS[$2]=subst_defines($3,DEFS) }
-
-END {
-       process_data(NAME,VER,REL,SRC)
-}
index 2e01f7b22d49ffb4fab9a21d90bd5d937334d803..2884916a0ce0209d210cefdee202695abf028af8 100644 (file)
@@ -1,4 +1,7 @@
 %define                builder_ver     1.621
+%define                adapter_awk_ver 1.499
+%define                adapter_ver     1.47
+%define                pldnotify_ver   1.101
 Summary:       Scripts for managing .spec files and building RPM packages
 Summary(de.UTF-8):     Scripts fürs Bauen binärer RPM-Pakete
 Summary(pl.UTF-8):     Skrypty pomocnicze do zarządznia plikami .spec i budowania RPM-ów
@@ -6,16 +9,19 @@ Summary(pt_BR.UTF-8): Scripts e programas executáveis usados para construir pac
 Summary(ru.UTF-8):     Скрипты и утилиты, необходимые для сборки пакетов
 Summary(uk.UTF-8):     Скрипти та утиліти, необхідні для побудови пакетів
 Name:          rpm-build-tools
-Version:       4.4.39
+Version:       4.5
 Release:       1
 License:       GPL
 Group:         Applications/File
 Group:         Base
 Source0:       http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/~checkout~/packages/builder?rev=%{builder_ver}#/builder.sh
 # Source0-md5: bc6163cd6dd40cc394c57e3805629fba
-Source1:       adapter.awk
-Source2:       adapter.sh
-Source3:       pldnotify.awk
+Source1:       http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/~checkout~/packages/adapter.awk?rev=%{adapter_awk_ver}#/adapter.awk
+# Source1-md5: 58281c6c20d7ef6beb468abba92e117a
+Source2:       http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/~checkout~/packages/adapter?rev=%{adapter_ver}#/adapter.sh
+# Source2-md5: bac5127c0e6af07ed6931faf2260aace
+Source3:       http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/~checkout~/packages/pldnotify.awk?rev=%{pldnotify_ver}#/pldnotify.awk
+# Source3-md5: 25bdcfac479c170fc30669442f957836
 BuildRequires: sed >= 4.0
 Requires:      gawk >= 3.1.7
 Requires:      grep
@@ -68,7 +74,7 @@ cp -p %{SOURCE0} %{SOURCE1} %{SOURCE2} %{SOURCE3} .
 %install
 rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT{%{_bindir},%{_libdir}}
-cp -a adapter.awk $RPM_BUILD_ROOT%{_libdir}/adapter.awk
+cp -p adapter.awk $RPM_BUILD_ROOT%{_libdir}/adapter.awk
 install -p pldnotify.awk $RPM_BUILD_ROOT%{_bindir}
 install -p builder.sh $RPM_BUILD_ROOT%{_bindir}/builder
 install -p adapter.sh $RPM_BUILD_ROOT%{_bindir}/adapter
This page took 0.476646 seconds and 4 git commands to generate.