]> git.pld-linux.org Git - packages/rpm.git/blame - rpm-perl-macros.patch
- rpm -> RPM Package Manager
[packages/rpm.git] / rpm-perl-macros.patch
CommitLineData
5b0f0ac9
MM
1--- rpm-4.1/scripts/Makefile.am.wiget Thu Aug 22 19:31:42 2002
2+++ rpm-4.1/scripts/Makefile.am Wed Sep 18 23:52:19 2002
3@@ -31,4 +31,5 @@
1e537e49 4 magic.prov magic.req perl.prov perl.req rpmdiff rpmdiff.cgi \
5b0f0ac9
MM
5 rpm.daily rpm.log rpm.xinetd rpm2cpio.sh \
6 sql.prov sql.req tcl.req tgpg trpm u_pkg.sh \
7+ find-perl-requires find-perl-provides \
8 vpkg-provides.sh vpkg-provides2.sh
5b0f0ac9
MM
9--- rpm-4.1/scripts/perl.req.wiget Mon Jun 3 22:56:33 2002
10+++ rpm-4.1/scripts/perl.req Wed Sep 18 23:50:15 2002
2fa5aec3
AF
11@@ -1,4 +1,4 @@
12-#!/usr/bin/perl
5b0f0ac9 13+#!@__PERL@
4703c2f4
AF
14
15 # RPM (and it's source code) is covered under two separate licenses.
16
17@@ -41,7 +41,11 @@
2fa5aec3
AF
18
19 if ("@ARGV") {
20 foreach (@ARGV) {
21- process_file($_);
20a6d548 22+ if (m=/usr/(sbin|bin|lib|share|X11R6/(lib|bin))/=) {
2eb651d8 23+ if (! m=(/(doc|man|info|usr/src)/|\.(so|ph|h|html|pod)$)=) {
2fa5aec3
AF
24+ process_file($_);
25+ }
26+ }
27 }
28 } else {
29
4703c2f4 30@@ -49,14 +53,22 @@
2fa5aec3
AF
31 # contents of the file.
32
33 foreach (<>) {
34- process_file($_);
4703c2f4
AF
35+ if (m=/usr/(sbin|bin|lib|share|X11R6/(lib|bin))/=) {
36+ if (! m=(/(doc|man|info|usr/src)/|\.(so|ph|h|html|pod)$)=) {
37+ process_file($_);
38+ }
39+ }
2fa5aec3
AF
40 }
41 }
edf87823 42
43
44 foreach $module (sort keys %require) {
edf87823 45 if (length($require{$module}) == 0) {
46- print "perl($module)\n";
4703c2f4
AF
47+ if ($module =~ /^[0-9._]+$/) {
48+ print "perl >= $module\n";
49+ } else {
50+ print "perl($module)\n";
51+ }
edf87823 52 } else {
2fa5aec3 53
4703c2f4 54 # I am not using rpm3.0 so I do not want spaces arround my
5b0f0ac9 55@@ -209,7 +221,31 @@
3ce8984f 56 # will be included with the name sys/systeminfo.ph so only use the
57 # basename of *.ph files
58
5b0f0ac9 59- ($module =~ m/\.ph$/) && next;
3ce8984f 60+ # ($module =~ m/\.ph$/) && ($module =~ s!.*/!!g );
5b0f0ac9 61+
852c3a98 62+ # there is no need to generate dependencies for ph, pl or test files
4a19987c 63+ # so let's just skip them.
4703c2f4 64+
852c3a98 65+ ($module =~ m/\.(ph|pl|t)$/) && next;
cfd811fa 66+
4a19987c 67+ # skip all modules for platforms other than linux.
92b19143 68+
69+ ($module =~ m/Mac|OS2|MSDOS|Win32|VMS|vmsish/) && next;
70+
4a19987c 71+ # if the module name starts in a dot it is not a module name.
4d8fb4e3 72+
73+ ($module =~ m/^\./) && next;
74+
4a19987c 75+ # if the module ends with .pm strip it to leave only basename.
5e855029 76+
4a19987c 77+ $module =~ s/\.pm$//;
5e855029 78+
cb87a980 79+ $module =~ s/\//::/;
80+
4a19987c 81+ # trim off trailing parenthesis if any. Sometimes people pass
82+ # the module an empty list.
83+
84+ $module =~ s/\(\s*\)$//;
cfd811fa 85
3ce8984f 86 $require{$module}=$version;
5b0f0ac9
MM
87 $line{$module}=$_;
88--- rpm-4.1/configure.ac.wiget Thu Aug 22 19:01:34 2002
89+++ rpm-4.1/configure.ac Wed Sep 18 23:50:46 2002
90@@ -1194,6 +1194,7 @@
91 AC_CONFIG_SUBDIRS(popt beecrypt zlib libelf db3)
92
93 AC_OUTPUT([ Doxyfile Makefile rpmrc macros platform rpmpopt rpm.spec
94+ macros.perl scripts/perl.req scripts/perl.prov
95 rpmio/Makefile rpmdb/Makefile lib/Makefile build/Makefile
96 scripts/Makefile scripts/brp-redhat
97 scripts/macros.perl scripts/macros.php scripts/macros.python
98--- rpm-4.1/macros.in.wiget Sun Sep 1 00:30:19 2002
99+++ rpm-4.1/macros.in Wed Sep 18 23:50:46 2002
100@@ -1012,8 +1012,10 @@
9884a1b5
AF
101 # %dir %{perl_sitearch}/auto/Image
102 #
5b0f0ac9
MM
103 %requires_eq() %(LC_ALL="C" echo '%*' | xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}\\n' | sed -e 's/ (none):/ /' -e 's/ 0:/ /' | grep -v "is not")
104-%perl_sitearch %(eval "`perl -V:installsitearch`"; echo $installsitearch)
105-%perl_archlib %(eval "`perl -V:installarchlib`"; echo $installarchlib)
9884a1b5
AF
106+#
107+# NOTE: %{perl_sitearch}, %{perl_archlib} and %{perl_sitelib} macros
108+# has been moved to macros.perl (see info in this file for details).
109+#
9884a1b5
AF
110
111 #------------------------------------------------------------------------------
112 # arch macro for all Intel i?86 compatibile processors
This page took 0.058802 seconds and 4 git commands to generate.