]> git.pld-linux.org Git - packages/rpm-build-tools.git/blobdiff - adapter.awk
- fix groups
[packages/rpm-build-tools.git] / adapter.awk
index 8772f199ce907edcc586aa239836306b680a87a9..64ec6377ce9a86272d54ddb87b96ed9c10658f4c 100644 (file)
@@ -85,6 +85,7 @@ BEGIN {
        "rpm --eval %py_sitedir" | getline py_sitedir
        "rpm --eval %py_scriptdir " | getline py_scriptdir
        "rpm --eval %php_pear_dir" | getline php_pear_dir
+       "rpm --eval %tmpdir" | getline tmpdir
 }
 
 # There should be a comment with CVS keywords on the first line of file.
@@ -189,8 +190,14 @@ function b_makekey(a, b,   s) {
                bindir = $3
        if ($2 ~ /_sbindir/)
                sbindir = $3
-       if ($2 ~ /_libdir/)
-               libdir = $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.")
@@ -199,8 +206,14 @@ function b_makekey(a, b,   s) {
                        sysconfdir = $3
                }
        }
-       if ($2 ~ /_datadir/)
-               datadir = $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/)
@@ -255,7 +268,7 @@ function b_makekey(a, b,    s) {
        }
 
        # Format description
-       if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !$0 ~ SECTIONS && !/^%description/) {
+       if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && !/^%description/) {
                if (/^[ \t]*$/) {
                        format_flush(format_line, format_indent)
                        print ""
@@ -343,6 +356,7 @@ function b_makekey(a, b,    s) {
        }
 
        use_macros()
+       use_tabs()
 
        if (/^automake$/)
                sub(/$/, " -a -c")
@@ -414,7 +428,7 @@ function b_makekey(a, b,    s) {
        did_clean = 1
 
        # prevent next section header like "%post -p /sbin/ldconfig" being adapterized
-       if (!/^%/) {
+       if (!/^%post/) {
                use_macros()
        }
 }
@@ -426,7 +440,12 @@ function b_makekey(a, b,   s) {
 
        preamble = 0
 
-       if (/^[ \t]*rm([ \t]+-[rf]+)*[ \t]+\${?RPM_BUILD_ROOT}?/ && did_rmroot==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
@@ -437,6 +456,11 @@ function b_makekey(a, b,   s) {
                did_rmroot=1
        }
 
+    if (tmpdir) {
+        buildroot = tmpdir "/" name "-" version "-root-" ENVIRON["USER"]
+               gsub(buildroot, "$RPM_BUILD_ROOT")
+    }
+
        use_macros()
 
        # 'install -d' instead 'mkdir -p'
@@ -462,10 +486,6 @@ function b_makekey(a, b,   s) {
        if ($1 ~ /chmod/ && $2 ~ /644/)
                next
 
-       # foreign rpms
-       $0 = fixedsub("%buildroot", "$RPM_BUILD_ROOT", $0)
-       $0 = fixedsub("%{buildroot}", "$RPM_BUILD_ROOT", $0)
-
        # atrpms
        $0 = fixedsub("%perl_makeinstall", "%{__make} pure_install \\\n\tDESTDIR=$RPM_BUILD_ROOT", $0);
 }
@@ -537,12 +557,18 @@ function b_makekey(a, b,  s) {
 /^%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) {
@@ -551,30 +577,39 @@ function b_makekey(a, b,  s) {
 }
 /^%preun/, (!/^%preun/ && $0 ~ SECTIONS) {
        preamble = 0
+       use_script_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()
 }
 
 #############
@@ -611,8 +646,10 @@ preamble == 1 {
                sub(/^X11\/GNOME/,"X11/Applications", group)
                sub(/^X11\/Utilities/,"X11/Applications", group)
                sub(/^X11\/Games\/Strategy/,"X11/Applications/Games/Strategy", group)
+               sub(/^X11\/Library/,"X11/Libraries", group)
                sub(/^Shells/,"Applications/Shells", group)
                sub(/^System Environment\/Libraries$/, "Libraries", group)
+               sub(/^Library\/Development$/, "Development/Libraries", group)
                sub(/^System Environment\/Daemons$/, "Daemons", group)
                sub(/^Applications\/Internet$/, "Applications/Networking", group)
                sub(/^Applications\/Daemons$/, "Daemons", group)
@@ -624,7 +661,15 @@ preamble == 1 {
                sub(/^Applications\/Internet\/Peer to Peer/, "Applications/Networking", group)
                sub(/^Networking\/Deamons$/, "Networking/Daemons", group)
                sub(/^Development\/Docs$/, "Documentation", group)
+               sub(/^Development\/Documentation$/, "Documentation", group)
                sub(/^System Environment\/Kernel$/, "Base/Kernel", group)
+               sub(/^Development\/Libraries\/Java$/, "Development/Languages/Java", group)
+               sub(/^Development\/Java/, "Development/Languages/Java", group)
+               sub(/^Development\/Testing$/, "Development", group)
+               sub(/^Text Processing\/Markup\/HTML$/, "Applications/Text", group)
+               sub(/^Text Processing\/Markup\/XML$/, "Applications/Text", group)
+               sub(/^Web\/Database$/, "Applications/WWW", group)
+               sub(/^System Environment\/Base$/, "Base", group)
 
                $0 = "Group:\t\t" group
 
@@ -655,32 +700,44 @@ preamble == 1 {
        }
 
        # split (build)requires, obsoletes on commas
-       if (field ~ /(obsoletes|requires|conflicts):/ && NF > 2) {
+       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:/) {
-               if ($2 == "awk" ||
-                       $2 == "binutils" ||
-                       $2 == "bzip2" ||
-                       $2 == "cpio" ||
-                       $2 == "diffutils" ||
-                       $2 == "elfutils" ||
-                       $2 == "fileutils" ||
-                       $2 == "findutils" ||
-                       $2 == "glibc-devel" ||
-                       $2 == "grep" ||
-                       $2 == "gzip" ||
-                       $2 == "make" ||
-                       $2 == "patch" ||
-                       $2 == "sed" ||
-                       $2 == "sh-utils" ||
-                       $2 == "tar" ||
-                       $2 == "textutils") {
+               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
                }
+
+        # perhaps we have common known name?
+
+        # jpackages
+               sub(/^java-devel$/, "jdk", $2);
+               sub(/^log4j$/, "jakarta-log4j", $2);
+               sub(/^oro$/, "jakarta-oro", $2);
+               sub(/^xerces-j2$/, "xerces-j", $2);
+               sub(/^ant-junit$/, "jakarta-ant", $2);
+               sub(/^ldapjdk$/, "ldapsdk", $2);
+               sub(/^saxon-scripts$/, "saxon", $2);
        }
 
        # obsolete/unwanted tags
@@ -818,6 +875,7 @@ preamble == 1 {
                sub("[?]use_mirror=.*$", "", $2);
                sub("[?]download$", "", $2);
                sub("^http://prdownloads\.sourceforge\.net/", "http://dl.sourceforge.net/", $2)
+               sub("^http://download\.sf\.net/", "http://dl.sourceforge.net/", $2)
 
                sub("^http://.*\.dl\.sourceforge\.net/", "http://dl.sourceforge.net/", $2)
                sub("^http://dl\.sourceforge\.net/sourceforge/", "http://dl.sourceforge.net/", $2)
@@ -840,6 +898,11 @@ preamble == 1 {
        }
 }
 
+/^%bcond_/ {
+       # do nothing
+       print
+       next
+}
 
 # sort BR/R!
 #
@@ -864,12 +927,6 @@ ENVIRON["SKIP_SORTBR"] != 1 && preamble == 1 && $0 ~ PREAMBLE_TAGS, $0 ~ PREAMBL
        next;
 }
 
-/^%bcond_/ {
-       # do nothing
-       print
-       next
-}
-
 preamble == 1 {
        if (b_idx > 0) {
                isort(b_key, b_idx);
@@ -890,7 +947,7 @@ preamble == 1 {
        print
 
        if (name_seen == 0 && name) {
-               print "Name:\t" name
+               print "Name:\t\t" name
                name_seen = 1
        }
 
@@ -994,6 +1051,7 @@ function use_macros()
        gsub(py_sitedir, "%{py_sitedir}")
        gsub(py_scriptdir, "%{py_scriptdir}")
        gsub("%{_libdir}/python2.4/site-packages", "%{py_sitedir}")
+       gsub("%{python_sitelib}", "%{py_sitedir}")
        gsub("%{_datadir}/applications", "%{_desktopdir}")
        gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}")
 
@@ -1013,12 +1071,15 @@ function use_macros()
                        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)
+       if (prefix"/sbin" == sbindir) {
                gsub("%{_prefix}/sbin", "%{_sbindir}")
+       }
 
        for (c = 1; c <= NF; c++) {
                if ($c ~ sysconfdir "/{?cron.")
@@ -1027,6 +1088,10 @@ function use_macros()
                        continue;
                if ($c ~ sysconfdir "/{?env.d")
                        continue;
+               if ($c ~ sysconfdir "/{?modprobe.(d|conf)")
+                       continue;
+               if ($c ~ sysconfdir "/{?udev/rules.d")
+                       continue;
                if ($c ~ sysconfdir "/{?logrotate.d")
                        continue;
                if ($c ~ sysconfdir "/{?pam.d")
@@ -1055,6 +1120,8 @@ function use_macros()
                        continue;
                if ($c ~ sysconfdir "/{?samba")
                        continue;
+               if ($c ~ sysconfdir "/shells")
+                       continue;
                gsub(sysconfdir, "%{_sysconfdir}", $c)
        }
 
@@ -1116,6 +1183,8 @@ function use_macros()
                                        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")
@@ -1178,6 +1247,14 @@ function use_macros()
        gsub("%_sbindir", "%{_sbindir}")
        gsub("%_mandir", "%{_mandir}")
        gsub("%name", "%{name}")
+    gsub(/%ant/, "ant")
+    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}")
@@ -1216,6 +1293,8 @@ function use_files_macros(        i, n, t, a)
                return;
        }
 
+       sub("^%doc %{_mandir}", "%{_mandir}")
+
        gsub("^%{_sbindir}", "%attr(755,root,root) %{_sbindir}")
        gsub("^%{_bindir}", "%attr(755,root,root) %{_bindir}")
 
@@ -1290,6 +1369,12 @@ function use_files_macros(       i, n, t, a)
                gsub("%attr\\(0", "%attr(")
        }
 
+    # kill default attrs
+    gsub(/%dir %attr\(755,root,root\)/, "%dir");
+    if (!/%dir/) {
+        gsub(/%attr\(644,root,root\) /, "");
+    }
+
        # sort %verify attrs
        if (match($0, /%verify\(not([^)]+)\)/)) {
                t = substr($0, RSTART, RLENGTH)
@@ -1332,6 +1417,14 @@ function use_files_macros(       i, n, t, a)
        gsub("%{_datadir}/pixmaps", "%{_pixmapsdir}");
 }
 
+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)
@@ -1456,3 +1549,9 @@ function format_requires(tag, value,      n, p, i, deps, ndeps) {
        }
        return substr(s, 1, length(s)-1);
 }
+
+function use_tabs()
+{
+       # reverse vim: ts=4 sw=4 et
+       gsub(/    /, "\t");
+}
This page took 0.091702 seconds and 4 git commands to generate.