]> git.pld-linux.org Git - packages/adapter.git/blobdiff - adapter.awk
- disable get_epoch for now (anyone want to fix it?)
[packages/adapter.git] / adapter.awk
index d52c5ef477b151e9b0ee7a94942686d22de89dc4..1e912456c6cf3478818f958c47437f3df5fd55ca 100644 (file)
@@ -53,6 +53,7 @@ BEGIN {
        "rpm --eval %_sourcedir" | getline groups_file
        groups_file = groups_file "/rpm.groups"
        system("cd `rpm --eval %_sourcedir`; [ -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"
@@ -78,6 +79,7 @@ BEGIN {
        "rpm --eval %perl_sitelib" | getline perl_sitelib
 
        "rpm --eval %py_sitescriptdir" | getline py_sitescriptdir
+       "rpm --eval %py_scriptdir " | getline py_scriptdir
 }
 
 # There should be a comment with CVS keywords on the first line of file.
@@ -120,12 +122,14 @@ function b_makekey(a, b,  s) {
     gsub(/^Group/, "6Group", s);
     gsub(/^URL/, "7URL", s);
 
+    gsub(/^BuildRequires/, "B1BuildRequires", s);
+    gsub(/^BuildConflicts/, "B2BuildConflicts", s);
     gsub(/^Provides/, "X1Provides", s);
     gsub(/^Obsoletes/, "X2Obsoletes", s);
     gsub(/^Conflicts/, "X3Conflicts", s);
     gsub(/^BuildArch/, "X4BuildArch", s);
     gsub(/^ExclusiveArch/, "X6ExclusiveArch", s);
-    gsub(/^ExcludeArch/, "X6ExcludeArch", s);
+    gsub(/^ExcludeArch/, "X7ExcludeArch", s);
     gsub(/^BuildRoot/, "X9BuildRoot", s);
 
 #      printf("%s -> %s\n", a""b, s);
@@ -364,6 +368,10 @@ function b_makekey(a, b,   s) {
        $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("libtoolize --force --automake --copy", "%{__libtoolize}", $0);
+       $0 = fixedsub("libtoolize -c -f --automake", "%{__libtoolize}", $0);
 
        sub(/^aclocal$/, "%{__aclocal}");
        sub(/^autoheader$/, "%{__autoheader}");
@@ -614,17 +622,15 @@ preamble == 1 {
        }
 
        # split (build)requires, obsoletes on commas
-       if (field ~ /(obsoletes|requires):/ && $0 ~ /,/) {
-               l = substr($0, index($0, $2));
-               n = split(l, p, / *, */);
-               for (i in p) {
-                       printf("%s\t%s\n", $1, p[i]);
-               }
-               next;
+       if (field ~ /(obsoletes|requires):/ && NF > 2) {
+               value = substr($0, index($0, $2));
+               $0 = format_requires($1, value);
        }
 
-       if (field ~ /packager:|distribution:|docdir:|prefix:/)
+       # obsolete/unwanted tags
+       if (field ~ /packager:|distribution:|docdir:|prefix:|icon:/) {
                next
+       }
 
        if (field ~ /buildroot:/)
                $0 = $1 "%{tmpdir}/%{name}-%{version}-root-%(id -u -n)"
@@ -696,7 +702,7 @@ preamble == 1 {
                        sub(/\.pamd$/,"",url[n])
                }
 
-               # allow %{name} just in last url component
+               # allow %{name} only in last url component
                s = ""
                for (i = 1; i <= n; i++) {
                        url[i] = fixedsub("%{name}", name, url[i])
@@ -767,7 +773,7 @@ ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS, $0 ~ PREAMBL
                sub(/PreReq:/, "Requires:", $1);
        }
        format_preamble()
-       kill_preamble_macros();
+#      kill_preamble_macros(); # breaks tabbing
 
        b_idx++;
        l = substr($0, index($0, $2));
@@ -886,6 +892,7 @@ function use_macros()
        gsub(perl_sitelib, "%{perl_sitelib}")
        
        gsub(py_sitescriptdir, "%{py_sitescriptdir}")
+       gsub(py_scriptdir, "%{py_scriptdir}")
 
        gsub(bindir, "%{_bindir}")
        gsub("%{prefix}/bin", "%{_bindir}")
@@ -937,6 +944,8 @@ function use_macros()
                        continue;
                if ($c ~ sysconfdir "/{?ld.so.conf.d")
                        continue;
+               if ($c ~ sysconfdir "/{?rpm")
+                       continue;
                if ($c ~ sysconfdir "/{?httpd") # temp
                        continue;
                gsub(sysconfdir, "%{_sysconfdir}", $c)
@@ -1050,6 +1059,11 @@ function use_macros()
        $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
        $0 = fixedsub("CXXFLAGS=%{rpmcflags} %configure", "CXXFLAGS=%{rpmcflags}\n%configure", $0);
 
+       # split configure line to multiple lines
+       if (/%configure / && !/\\$/) {
+               $0 = format_configure($0);
+       }
+
        gsub("%_bindir", "%{_bindir}")
        gsub("%_datadir", "%{_datadir}")
        gsub("%_iconsdir", "%{_iconsdir}")
@@ -1061,6 +1075,15 @@ function use_macros()
        gsub("%{_prefix}/src/linux", "%{_kernelsrcdir}")
 }
 
+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
@@ -1080,6 +1103,11 @@ function use_files_macros(       i, n, t, a)
 {
        use_macros()
 
+       # skip comments
+       if (/^#/) {
+               return;
+       }
+
        gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
        gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
 
@@ -1088,9 +1116,9 @@ function use_files_macros(        i, n, t, a)
                $0 = $0 " # FIXME nobody user/group can't own files! -adapter.awk"
        }
 
-       # suid programs with globs are evil
-       if (/%attr\(4...,.*\*/ && !/FIXME/) {
-               $0 = $0 " # FIXME no globs for suid files"
+       # s[gu]id programs with globs are evil
+       if (/%attr\([246]...,.*\*/ && !/FIXME/) {
+               $0 = $0 " # FIXME no globs for suid/sgid files"
        }
 
        # replace back
@@ -1124,6 +1152,10 @@ function use_files_macros(       i, n, t, a)
                $0 = "%attr(755,root,root) " $0
        }
 
+       if (/%{perl_vendorarch}.*\.so$/ && !/^%attr.*/) {
+               $0 = "%attr(755,root,root) " $0
+       }
+
        # /etc/sysconfig files
        # %attr(640,root,root) %config(noreplace) %verify(not size mtime md5) /etc/sysconfig/*
        # attr not required, allow default 644 attr
@@ -1241,9 +1273,75 @@ function cflags(var)
        return 1
 }
 
+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 (_snap) {
+               sub("%{_snap}", _snap, str);
+       }
+       return str;
+}
+
 function kill_preamble_macros()
 {
        if ($1 ~ /^URL:/ || $1 ~ /^Obsoletes:/) {
-               sub("%{mod_name}", mod_name, $2);
+               # NB! assigning $2 a value breaks tabbing
+               $2 = demacroize($2);
+               # unify sourceforge url
+               sub("\.sf\.net/$", ".sourceforge.net/", $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
+       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);
 }
This page took 0.040663 seconds and 4 git commands to generate.