]> 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 2d3742a2657b61b7b50eac06d85648d2ef0930f2..1e912456c6cf3478818f958c47437f3df5fd55ca 100644 (file)
@@ -1,15 +1,18 @@
 #!/bin/awk -f
 #
-# This is adapter v0.27. Adapter adapts .spec files for PLD.
+# This is adapter v0.27. Adapter adapts .spec files for PLD Linux.
 #
-# Copyright (C) 1999-2003 PLD-Team <feedback@pld-linux.org>
+# Copyright (C) 1999-2005 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>
-#      Elan Ruusamäe <glen@pld-linux.org>
+#      Elan Ruusamä¤e <glen@pld-linux.org>
+#
+# See cvs log adapter{,.awk} for list of contributors
+#
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
 
 # TODO
@@ -24,6 +27,8 @@ BEGIN {
        RPM_SECTIONS = "package|build|changelog|clean|description|install|post|posttrans|postun|pre|prep|pretrans|preun|triggerin|triggerpostun|triggerun"
        SECTIONS = "^%(" RPM_SECTIONS ")"
 
+       PREAMBLE_TAGS = "(Summary|Name|Version|Release|License|Group|URL|BuildArch|BuildRoot|Obsoletes|Conflicts|Provides|ExclusiveArch|ExcludeArch|PreReq|(Build)?Requires)"
+
        preamble = 1            # Is it part of preamble? Default - yes
        boc = 4                 # Beginning of %changelog
        bod = 0                 # Beginning of %description
@@ -48,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"
@@ -73,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.
@@ -101,49 +108,34 @@ function b_makekey(a, b,  s) {
        s = a "" b;
        # kill bcond
     gsub(/[#%]+{[!?]+[_a-zA-Z0-9]+:/, "", s);
+
        # kill commented out items
-    gsub(/[# \t]*/, "", s);
+    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(/^License/, "5License", 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/, "X7ExcludeArch", s);
+    gsub(/^BuildRoot/, "X9BuildRoot", s);
+
+#      printf("%s -> %s\n", a""b, s);
        return s;
 }
 
-# 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 && /(PreReq|(Build)?Requires)/, /(PreReq|(Build)?Requires)/ {
-       if ($1 ~ /PreReq:/) {
-               sub(/PreReq:/, "Requires:", $1);
-       }
-       format_preamble()
-
-       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;
-}
-
-/^%bcond_/ {
-       # do nothing
-       print
-       next
-}
-
-preamble == 1 {
-       if (b_idx > 0) {
-               isort(b_key, b_idx);
-               for (i = 1; i <= b_idx; i++) {
-                       print "" b_val[b_key[i]];
-               }
-               b_idx = 0
-       }
-}
-
 # Comments
 /^#/ && (description == 0) {
        if (/This file does not like to be adapterized!/) {
@@ -156,8 +148,11 @@ preamble == 1 {
 
        # Generally, comments are printed without touching
        sub(/[ \t]+$/, "")
-       print $0
-       next
+
+       if (/Source.*md5/) {
+               print $0
+               next
+       }
 }
 
 /^%define/ {
@@ -220,6 +215,9 @@ preamble == 1 {
        if ($2 ~ /^release$/)
                release = $3
 
+       if ($2 ~ /^mod_name$/)
+               mod_name = $3
+
        # do nothing further, otherwise adapter thinks we're at preamble
        print
        next
@@ -370,6 +368,10 @@ preamble == 1 {
        $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}");
@@ -567,53 +569,52 @@ preamble == 1 {
                next
        if (field ~ /group:/) {
                format_preamble()
-               sub(/^Utilities\//,"Applications/",$2)
-               sub(/^Games/,"Applications/Games",$2)
-               sub(/^X11\/Games/,"X11/Applications/Games",$2)
-               sub(/^X11\/GNOME\/Development\/Libraries/,"X11/Development/Libraries",$2)
-               sub(/^X11\/GNOME\/Applications/,"X11/Applications",$2)
-               sub(/^X11\/GNOME/,"X11/Applications",$2)
-               sub(/^X11\/Utilities/,"X11/Applications",$2)
-               sub(/^X11\/Games\/Strategy/,"X11/Applications/Games/Strategy",$2)
-               sub(/^Shells/,"Applications/Shells",$2)
-
-               sub(/^[^ \t]*[ \t]*/,"")
-               Grupa = $0
-
-               sub(/^System Environment\/Libraries$/, "Libraries", Grupa)
-               sub(/^System Environment\/Daemons$/, "Daemons", Grupa)
-               sub(/^Applications\/Internet$/, "Applications/Networking", Grupa)
-               sub(/^Applications\/Daemons$/, "Daemons", Grupa)
-               sub(/^Application\/Multimedia$/, "Applications/Multimedia", Grupa)
-               sub(/^System\/Servers$/, "Daemons", Grupa)
-               sub(/^X11\/Xserver$/, "X11/Servers", Grupa)
-               sub(/^X11\/XFree86/, "X11", Grupa)
-               sub(/^Applications\/Compilers$/, "Development/Languages", Grupa)
-               sub(/^Applications\/Internet\/Peer to Peer/, "Applications/Networking", Grupa)
-               sub(/^Networking\/Deamons$/, "Networking/Daemons", Grupa)
-               sub(/^Development\/Docs$/, "Documentation", Grupa)
-
-               print "Group:\t\t" Grupa
-               if (Grupa ~ /^X11/ && x11 == 0) # Is it X11 application?
+               group = $0;
+               sub(/^[^ \t]*[ \t]*/, "", group);
+
+               sub(/^Utilities\//,"Applications/", group)
+               sub(/^Games/,"Applications/Games", group)
+               sub(/^X11\/Games/,"X11/Applications/Games", group)
+               sub(/^X11\/GNOME\/Development\/Libraries/,"X11/Development/Libraries", group)
+               sub(/^X11\/GNOME\/Applications/,"X11/Applications", group)
+               sub(/^X11\/GNOME/,"X11/Applications", group)
+               sub(/^X11\/Utilities/,"X11/Applications", group)
+               sub(/^X11\/Games\/Strategy/,"X11/Applications/Games/Strategy", group)
+               sub(/^Shells/,"Applications/Shells", group)
+               sub(/^System Environment\/Libraries$/, "Libraries", group)
+               sub(/^System Environment\/Daemons$/, "Daemons", group)
+               sub(/^Applications\/Internet$/, "Applications/Networking", group)
+               sub(/^Applications\/Daemons$/, "Daemons", group)
+               sub(/^Application\/Multimedia$/, "Applications/Multimedia", group)
+               sub(/^System\/Servers$/, "Daemons", group)
+               sub(/^X11\/Xserver$/, "X11/Servers", group)
+               sub(/^X11\/XFree86/, "X11", group)
+               sub(/^Applications\/Compilers$/, "Development/Languages", group)
+               sub(/^Applications\/Internet\/Peer to Peer/, "Applications/Networking", group)
+               sub(/^Networking\/Deamons$/, "Networking/Daemons", group)
+               sub(/^Development\/Docs$/, "Documentation", group)
+
+               $0 = "Group:\t\t" group
+
+               if (group ~ /^X11/ && x11 == 0) # Is it X11 application?
                        x11 = 1
 
-               byl_plik_z_grupami = 0
+               byl_plik_z_groupmi = 0
                byl_opis_grupy = 0
                while ((getline linia_grup < groups_file) > 0) {
-                       byl_plik_z_grupami = 1
-                       if (linia_grup == Grupa) {
+                       byl_plik_z_groupmi = 1
+                       if (linia_grup == group) {
                                byl_opis_grupy = 1
                                break
                        }
                }
 
-               if (!byl_plik_z_grupami)
+               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)
-               next
        }
 
        if (field ~ /prereq:/) {
@@ -621,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)"
@@ -703,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])
@@ -752,6 +751,7 @@ preamble == 1 {
        if (field ~ /^patch:/)
                $1 = "Patch0:"
 
+       kill_preamble_macros();
        format_preamble()
 
        if (field ~ /requires/) {
@@ -760,6 +760,46 @@ preamble == 1 {
        }
 }
 
+
+# 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 ~ /PreReq:/) {
+               sub(/PreReq:/, "Requires:", $1);
+       }
+       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;
+}
+
+/^%bcond_/ {
+       # do nothing
+       print
+       next
+}
+
+preamble == 1 {
+       if (b_idx > 0) {
+               isort(b_key, b_idx);
+               for (i = 1; i <= b_idx; i++) {
+                       print "" b_val[b_key[i]];
+               }
+               b_idx = 0
+       }
+}
+
 # main() ;-)
 {
        preamble = 1
@@ -852,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}")
@@ -903,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)
@@ -1016,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}")
@@ -1027,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
@@ -1046,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}")
 
@@ -1054,6 +1116,11 @@ function use_files_macros(       i, n, t, a)
                $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")
@@ -1085,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
@@ -1201,3 +1272,76 @@ function cflags(var)
                sub("\$RPM_OPT_FLAGS", "%{rpmcflags}")
        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:/) {
+               # 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.14944 seconds and 4 git commands to generate.