diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-07-01 15:51:53 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-08 11:20:12 +0100 |
commit | e73deac6dc7861c64ced49d2a35f781d655db79a (patch) | |
tree | df7352dd791d9714ef62d4a6a87b64e2a90903e2 | |
parent | 93d77b6ca83e55f3ecbc09f5502d8ae928f2bd91 (diff) | |
download | poky-e73deac6dc7861c64ced49d2a35f781d655db79a.tar.gz |
perl, perl-native, perl-ptest: upgrade from 5.14.3 to 5.20.0
Changed:
- The Copying has no change, except the company address.
- pick patches from debian
http://ftp.de.debian.org/debian/pool/main/p/perl/perl_5.20.0-1.debian.tar.xz
- Not used by oe:
deprecate-with-apt.diff
patchlevel.diff
fakeroot.diff
- Create/Update perl-rdepends_${PV}.inc by the hardcode script;
- Update config.sh by:
1) Copy the Perl 5.20.0 source code onto your TARGET machine
linux qemuarm 3.14.5-yocto-standard from OE-Core rev:
f506d0660c9949485268a92724ac770b5457b0ca
2) Execute sh Configure as normal and configure as required,
do not "make";
3) Compare with the old config.sh files, and update;
- perl-ptest.inc
1) Copy the souce code to ptest since almost 112 test cases
failed with the reason that no souce code found;
2) Add two patches to fix test case issue;
- perl-native
Reference perl (5.20.0-1) in debian to update perl shared library headers
https://packages.debian.org/experimental/i386/perl/filelist
Obsolete:
- 09_fix_installperl.patch
The dead code was removed from installperl
http://perl5.git.perl.org/perl.git/commit/236818e0b9d9fe874831086b4d0b94dc6f245dfd
- perl-build-in-t-dir.patch
The upstream has fix it. The issue description:
Perl cannot cross build in a path containing a directory that has the
name of "t". As an example, you can make the perl build fail with
"mkdir -p /tmp/build/t", go to the directory, unpack the sources,
configure and cross build.
- 0001-Fix-misparsing-of-maketext-strings.patch
as they are part of the upstream code now:
http://perl5.git.perl.org/perl.git/commit/1735f6f53ca19f99c6e9e39496c486af323ba6a8
- 0001-Prevent-premature-hsplit-calls-and-only-trigger-REHA.patch
the hash function changed:
http://perl5.git.perl.org/perl.git/commit/7dc8663964c66a698d31bbdc8e8abed69bddeec3
(From OE-Core rev: c7ac82415efc42ff7a93c6df163f88f2dde00d26)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
86 files changed, 1887 insertions, 2890 deletions
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/0001-Fix-misparsing-of-maketext-strings.patch b/meta/recipes-devtools/perl/perl-5.14.3/0001-Fix-misparsing-of-maketext-strings.patch deleted file mode 100644 index 89ec6eff0f..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/0001-Fix-misparsing-of-maketext-strings.patch +++ /dev/null | |||
@@ -1,86 +0,0 @@ | |||
1 | From 1735f6f53ca19f99c6e9e39496c486af323ba6a8 Mon Sep 17 00:00:00 2001 | ||
2 | From: Brian Carlson <brian.carlson@cpanel.net> | ||
3 | Date: Wed, 28 Nov 2012 08:54:33 -0500 | ||
4 | Subject: [PATCH] Fix misparsing of maketext strings. | ||
5 | |||
6 | Case 61251: This commit fixes a misparse of maketext strings that could | ||
7 | lead to arbitrary code execution. Basically, maketext was compiling | ||
8 | bracket notation into functions, but neglected to escape backslashes | ||
9 | inside the content or die on fully-qualified method names when | ||
10 | generating the code. This change escapes all such backslashes and dies | ||
11 | when a method name with a colon or apostrophe is specified. | ||
12 | --- | ||
13 | AUTHORS | 1 + | ||
14 | dist/Locale-Maketext/lib/Locale/Maketext.pm | 24 ++++++++---------------- | ||
15 | 2 files changed, 9 insertions(+), 16 deletions(-) | ||
16 | |||
17 | Upstream-Status: Backport | ||
18 | |||
19 | Signed-off-by: Saul Wold <sgw@linux.intel.com> | ||
20 | |||
21 | |||
22 | diff --git a/AUTHORS b/AUTHORS | ||
23 | index 70734b0..009dea0 100644 | ||
24 | --- a/AUTHORS | ||
25 | +++ b/AUTHORS | ||
26 | @@ -154,6 +154,7 @@ Breno G. de Oliveira <garu@cpan.org> | ||
27 | Brent Dax <brentdax@cpan.org> | ||
28 | Brooks D Boyd | ||
29 | Brian Callaghan <callagh@itginc.com> | ||
30 | +Brian Carlson <brian.carlson@cpanel.net> | ||
31 | Brian Clarke <clarke@appliedmeta.com> | ||
32 | brian d foy <brian.d.foy@gmail.com> | ||
33 | Brian Fraser <fraserbn@gmail.com> | ||
34 | diff --git a/dist/Locale-Maketext/lib/Locale/Maketext.pm b/dist/Locale-Maketext/lib/Locale/Maketext.pm | ||
35 | index 4822027..63e5fba 100644 | ||
36 | --- a/dist/Locale-Maketext/lib/Locale/Maketext.pm | ||
37 | +++ b/dist/Locale-Maketext/lib/Locale/Maketext.pm | ||
38 | @@ -625,21 +625,9 @@ sub _compile { | ||
39 | # 0-length method name means to just interpolate: | ||
40 | push @code, ' ('; | ||
41 | } | ||
42 | - elsif($m =~ /^\w+(?:\:\:\w+)*$/s | ||
43 | - and $m !~ m/(?:^|\:)\d/s | ||
44 | - # exclude starting a (sub)package or symbol with a digit | ||
45 | + elsif($m =~ /^\w+$/s | ||
46 | + # exclude anything fancy, especially fully-qualified module names | ||
47 | ) { | ||
48 | - # Yes, it even supports the demented (and undocumented?) | ||
49 | - # $obj->Foo::bar(...) syntax. | ||
50 | - $target->_die_pointing( | ||
51 | - $string_to_compile, q{Can't use "SUPER::" in a bracket-group method}, | ||
52 | - 2 + length($c[-1]) | ||
53 | - ) | ||
54 | - if $m =~ m/^SUPER::/s; | ||
55 | - # Because for SUPER:: to work, we'd have to compile this into | ||
56 | - # the right package, and that seems just not worth the bother, | ||
57 | - # unless someone convinces me otherwise. | ||
58 | - | ||
59 | push @code, ' $_[0]->' . $m . '('; | ||
60 | } | ||
61 | else { | ||
62 | @@ -693,7 +681,9 @@ sub _compile { | ||
63 | elsif(substr($1,0,1) ne '~') { | ||
64 | # it's stuff not containing "~" or "[" or "]" | ||
65 | # i.e., a literal blob | ||
66 | - $c[-1] .= $1; | ||
67 | + my $text = $1; | ||
68 | + $text =~ s/\\/\\\\/g; | ||
69 | + $c[-1] .= $text; | ||
70 | |||
71 | } | ||
72 | elsif($1 eq '~~') { # "~~" | ||
73 | @@ -731,7 +721,9 @@ sub _compile { | ||
74 | else { | ||
75 | # It's a "~X" where X is not a special character. | ||
76 | # Consider it a literal ~ and X. | ||
77 | - $c[-1] .= $1; | ||
78 | + my $text = $1; | ||
79 | + $text =~ s/\\/\\\\/g; | ||
80 | + $c[-1] .= $text; | ||
81 | } | ||
82 | } | ||
83 | } | ||
84 | -- | ||
85 | 1.8.3.1 | ||
86 | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/0001-Prevent-premature-hsplit-calls-and-only-trigger-REHA.patch b/meta/recipes-devtools/perl/perl-5.14.3/0001-Prevent-premature-hsplit-calls-and-only-trigger-REHA.patch deleted file mode 100644 index 4357c2ef58..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/0001-Prevent-premature-hsplit-calls-and-only-trigger-REHA.patch +++ /dev/null | |||
@@ -1,178 +0,0 @@ | |||
1 | From d59e31fc729d8a39a774f03bc6bc457029a7aef2 Mon Sep 17 00:00:00 2001 | ||
2 | From: Yves Orton <demerphq@gmail.com> | ||
3 | Date: Tue, 12 Feb 2013 10:53:05 +0100 | ||
4 | Subject: [PATCH] Prevent premature hsplit() calls, and only trigger REHASH | ||
5 | after hsplit() | ||
6 | |||
7 | Triggering a hsplit due to long chain length allows an attacker | ||
8 | to create a carefully chosen set of keys which can cause the hash | ||
9 | to use 2 * (2**32) * sizeof(void *) bytes ram. AKA a DOS via memory | ||
10 | exhaustion. Doing so also takes non trivial time. | ||
11 | |||
12 | Eliminating this check, and only inspecting chain length after a | ||
13 | normal hsplit() (triggered when keys>buckets) prevents the attack | ||
14 | entirely, and makes such attacks relatively benign. | ||
15 | |||
16 | (cherry picked from commit f1220d61455253b170e81427c9d0357831ca0fac) | ||
17 | |||
18 | Upstream-Status: Backport | ||
19 | |||
20 | Signed-off-by: Saul Wold <sgw@linux.intel.com> | ||
21 | |||
22 | |||
23 | --- | ||
24 | ext/Hash-Util-FieldHash/t/10_hash.t | 18 ++++++++++++++++-- | ||
25 | hv.c | 35 ++++++++--------------------------- | ||
26 | t/op/hash.t | 20 +++++++++++++++++--- | ||
27 | 3 files changed, 41 insertions(+), 32 deletions(-) | ||
28 | |||
29 | diff --git a/ext/Hash-Util-FieldHash/t/10_hash.t b/ext/Hash-Util-FieldHash/t/10_hash.t | ||
30 | index 2cfb4e8..d58f053 100644 | ||
31 | --- a/ext/Hash-Util-FieldHash/t/10_hash.t | ||
32 | +++ b/ext/Hash-Util-FieldHash/t/10_hash.t | ||
33 | @@ -38,15 +38,29 @@ use constant START => "a"; | ||
34 | |||
35 | # some initial hash data | ||
36 | fieldhash my %h2; | ||
37 | -%h2 = map {$_ => 1} 'a'..'cc'; | ||
38 | +my $counter= "a"; | ||
39 | +$h2{$counter++}++ while $counter ne 'cd'; | ||
40 | |||
41 | ok (!Internals::HvREHASH(%h2), | ||
42 | "starting with pre-populated non-pathological hash (rehash flag if off)"); | ||
43 | |||
44 | my @keys = get_keys(\%h2); | ||
45 | +my $buckets= buckets(\%h2); | ||
46 | $h2{$_}++ for @keys; | ||
47 | +$h2{$counter++}++ while buckets(\%h2) == $buckets; # force a split | ||
48 | ok (Internals::HvREHASH(%h2), | ||
49 | - scalar(@keys) . " colliding into the same bucket keys are triggering rehash"); | ||
50 | + scalar(@keys) . " colliding into the same bucket keys are triggering rehash after split"); | ||
51 | + | ||
52 | +# returns the number of buckets in a hash | ||
53 | +sub buckets { | ||
54 | + my $hr = shift; | ||
55 | + my $keys_buckets= scalar(%$hr); | ||
56 | + if ($keys_buckets=~m!/([0-9]+)\z!) { | ||
57 | + return 0+$1; | ||
58 | + } else { | ||
59 | + return 8; | ||
60 | + } | ||
61 | +} | ||
62 | |||
63 | sub get_keys { | ||
64 | my $hr = shift; | ||
65 | diff --git a/hv.c b/hv.c | ||
66 | index 2be1feb..abb9d76 100644 | ||
67 | --- a/hv.c | ||
68 | +++ b/hv.c | ||
69 | @@ -35,7 +35,8 @@ holds the key and hash value. | ||
70 | #define PERL_HASH_INTERNAL_ACCESS | ||
71 | #include "perl.h" | ||
72 | |||
73 | -#define HV_MAX_LENGTH_BEFORE_SPLIT 14 | ||
74 | +#define HV_MAX_LENGTH_BEFORE_REHASH 14 | ||
75 | +#define SHOULD_DO_HSPLIT(xhv) ((xhv)->xhv_keys > (xhv)->xhv_max) /* HvTOTALKEYS(hv) > HvMAX(hv) */ | ||
76 | |||
77 | static const char S_strtab_error[] | ||
78 | = "Cannot modify shared string table in hv_%s"; | ||
79 | @@ -794,29 +795,9 @@ Perl_hv_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen, | ||
80 | if (masked_flags & HVhek_ENABLEHVKFLAGS) | ||
81 | HvHASKFLAGS_on(hv); | ||
82 | |||
83 | - { | ||
84 | - const HE *counter = HeNEXT(entry); | ||
85 | - | ||
86 | - xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */ | ||
87 | - if (!counter) { /* initial entry? */ | ||
88 | - } else if (xhv->xhv_keys > xhv->xhv_max) { | ||
89 | - /* Use only the old HvKEYS(hv) > HvMAX(hv) condition to limit | ||
90 | - bucket splits on a rehashed hash, as we're not going to | ||
91 | - split it again, and if someone is lucky (evil) enough to | ||
92 | - get all the keys in one list they could exhaust our memory | ||
93 | - as we repeatedly double the number of buckets on every | ||
94 | - entry. Linear search feels a less worse thing to do. */ | ||
95 | - hsplit(hv); | ||
96 | - } else if(!HvREHASH(hv)) { | ||
97 | - U32 n_links = 1; | ||
98 | - | ||
99 | - while ((counter = HeNEXT(counter))) | ||
100 | - n_links++; | ||
101 | - | ||
102 | - if (n_links > HV_MAX_LENGTH_BEFORE_SPLIT) { | ||
103 | - hsplit(hv); | ||
104 | - } | ||
105 | - } | ||
106 | + xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */ | ||
107 | + if ( SHOULD_DO_HSPLIT(xhv) ) { | ||
108 | + hsplit(hv); | ||
109 | } | ||
110 | |||
111 | if (return_svp) { | ||
112 | @@ -1192,7 +1173,7 @@ S_hsplit(pTHX_ HV *hv) | ||
113 | |||
114 | |||
115 | /* Pick your policy for "hashing isn't working" here: */ | ||
116 | - if (longest_chain <= HV_MAX_LENGTH_BEFORE_SPLIT /* split worked? */ | ||
117 | + if (longest_chain <= HV_MAX_LENGTH_BEFORE_REHASH /* split worked? */ | ||
118 | || HvREHASH(hv)) { | ||
119 | return; | ||
120 | } | ||
121 | @@ -2831,8 +2812,8 @@ S_share_hek_flags(pTHX_ const char *str, I32 len, register U32 hash, int flags) | ||
122 | |||
123 | xhv->xhv_keys++; /* HvTOTALKEYS(hv)++ */ | ||
124 | if (!next) { /* initial entry? */ | ||
125 | - } else if (xhv->xhv_keys > xhv->xhv_max /* HvKEYS(hv) > HvMAX(hv) */) { | ||
126 | - hsplit(PL_strtab); | ||
127 | + } else if ( SHOULD_DO_HSPLIT(xhv) ) { | ||
128 | + hsplit(PL_strtab); | ||
129 | } | ||
130 | } | ||
131 | |||
132 | diff --git a/t/op/hash.t b/t/op/hash.t | ||
133 | index 278bea7..201260a 100644 | ||
134 | --- a/t/op/hash.t | ||
135 | +++ b/t/op/hash.t | ||
136 | @@ -39,22 +39,36 @@ use constant THRESHOLD => 14; | ||
137 | use constant START => "a"; | ||
138 | |||
139 | # some initial hash data | ||
140 | -my %h2 = map {$_ => 1} 'a'..'cc'; | ||
141 | +my %h2; | ||
142 | +my $counter= "a"; | ||
143 | +$h2{$counter++}++ while $counter ne 'cd'; | ||
144 | |||
145 | ok (!Internals::HvREHASH(%h2), | ||
146 | "starting with pre-populated non-pathological hash (rehash flag if off)"); | ||
147 | |||
148 | my @keys = get_keys(\%h2); | ||
149 | +my $buckets= buckets(\%h2); | ||
150 | $h2{$_}++ for @keys; | ||
151 | +$h2{$counter++}++ while buckets(\%h2) == $buckets; # force a split | ||
152 | ok (Internals::HvREHASH(%h2), | ||
153 | - scalar(@keys) . " colliding into the same bucket keys are triggering rehash"); | ||
154 | + scalar(@keys) . " colliding into the same bucket keys are triggering rehash after split"); | ||
155 | + | ||
156 | +# returns the number of buckets in a hash | ||
157 | +sub buckets { | ||
158 | + my $hr = shift; | ||
159 | + my $keys_buckets= scalar(%$hr); | ||
160 | + if ($keys_buckets=~m!/([0-9]+)\z!) { | ||
161 | + return 0+$1; | ||
162 | + } else { | ||
163 | + return 8; | ||
164 | + } | ||
165 | +} | ||
166 | |||
167 | sub get_keys { | ||
168 | my $hr = shift; | ||
169 | |||
170 | # the minimum of bits required to mount the attack on a hash | ||
171 | my $min_bits = log(THRESHOLD)/log(2); | ||
172 | - | ||
173 | # if the hash has already been populated with a significant amount | ||
174 | # of entries the number of mask bits can be higher | ||
175 | my $keys = scalar keys %$hr; | ||
176 | -- | ||
177 | 1.8.3.1 | ||
178 | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/09_fix_installperl.patch b/meta/recipes-devtools/perl/perl-5.14.3/09_fix_installperl.patch deleted file mode 100644 index a80d17c8b0..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/09_fix_installperl.patch +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [embedded specific] | ||
2 | |||
3 | Correctly identify arch-specific modules in ext/ where the .pm files | ||
4 | are under lib. | ||
5 | |||
6 | Ensure that POSIX/SigAction is kept with the rest of the POSIX module | ||
7 | under archlib. | ||
8 | |||
9 | Index: perl-5.12.3/installperl | ||
10 | =================================================================== | ||
11 | --- perl-5.12.3.orig/installperl | ||
12 | +++ perl-5.12.3/installperl | ||
13 | @@ -750,7 +750,7 @@ sub installlib { | ||
14 | } | ||
15 | |||
16 | if (-f $_) { | ||
17 | - if (/\.(?:al|ix)$/ && !($dir =~ m[^auto/(.*)$])) { | ||
18 | + if (/\.(?:al|ix)$/ && !($dir =~ m[^auto/(.*)$] && $archpms{$1})) { | ||
19 | $installlib = $installprivlib; | ||
20 | #We're installing *.al and *.ix files into $installprivlib, | ||
21 | #but we have to delete old *.al and *.ix files from the 5.000 | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/Makefile.SH.patch b/meta/recipes-devtools/perl/perl-5.14.3/Makefile.SH.patch deleted file mode 100644 index 41f2b53d78..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/Makefile.SH.patch +++ /dev/null | |||
@@ -1,298 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [embedded specific] | ||
2 | |||
3 | Index: perl-5.14.2/Makefile.SH | ||
4 | =================================================================== | ||
5 | --- perl-5.14.2.orig/Makefile.SH | ||
6 | +++ perl-5.14.2/Makefile.SH | ||
7 | @@ -36,7 +36,7 @@ case "$useshrplib" in | ||
8 | true) | ||
9 | # Prefix all runs of 'miniperl' and 'perl' with | ||
10 | # $ldlibpth so that ./perl finds *this* shared libperl. | ||
11 | - ldlibpth=LD_LIBRARY_PATH=`pwd`'$${LD_LIBRARY_PATH:+:}$$LD_LIBRARY_PATH' | ||
12 | + #ldlibpth=LD_LIBRARY_PATH=`pwd`'$${LD_LIBRARY_PATH:+:}$$LD_LIBRARY_PATH' | ||
13 | |||
14 | pldlflags="$cccdlflags" | ||
15 | static_ldflags='' | ||
16 | @@ -114,7 +114,8 @@ true) | ||
17 | ldlibpth='' | ||
18 | ;; | ||
19 | *) | ||
20 | - eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\"" | ||
21 | +# We compile in the library path in OE from cross-compile, so lets not do this | ||
22 | +# eval "ldlibpth=\"$ldlibpthname=`pwd`:\$$ldlibpthname\"" | ||
23 | ;; | ||
24 | esac | ||
25 | # Strip off any trailing :'s | ||
26 | @@ -135,18 +136,7 @@ true) | ||
27 | # INSTALL file, under "Building a shared perl library". | ||
28 | # If there is no pre-existing $libperl, we don't need | ||
29 | # to do anything further. | ||
30 | - if test -f $archlib/CORE/$libperl; then | ||
31 | - rm -f preload | ||
32 | - cat <<'EOT' > preload | ||
33 | -#! /bin/sh | ||
34 | -lib=$1 | ||
35 | -shift | ||
36 | -test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD" | ||
37 | -exec "$@" | ||
38 | -EOT | ||
39 | - chmod 755 preload | ||
40 | - ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl" | ||
41 | - fi | ||
42 | + echo linux libraries overwritten by cross-compile patches | ||
43 | ;; | ||
44 | os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth" | ||
45 | ;; | ||
46 | @@ -529,9 +519,19 @@ splintfiles = $(c1) | ||
47 | .c.s: | ||
48 | $(CCCMDSRC) -S $*.c | ||
49 | |||
50 | -all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make | ||
51 | - @echo " "; | ||
52 | - @echo " Everything is up to date. Type '$(MAKE) test' to run test suite." | ||
53 | +#all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make | ||
54 | +# @echo " "; | ||
55 | +# @echo " Everything is up to date. Type '$(MAKE) test' to run test suite." | ||
56 | + | ||
57 | +all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) miniperl $(unidatafiles) | ||
58 | + | ||
59 | +more: $(generated_pods) $(private) $(public) | ||
60 | + | ||
61 | +more2: $(dynamic_ext) | ||
62 | + | ||
63 | +more3: $(nonxs_ext) | ||
64 | + | ||
65 | +more4: extras.make | ||
66 | |||
67 | .PHONY: all translators utilities | ||
68 | |||
69 | @@ -539,7 +539,7 @@ all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $( | ||
70 | # by make_patchnum.pl. | ||
71 | git_version.h: lib/Config_git.pl | ||
72 | |||
73 | -lib/Config_git.pl: $(MINIPERL_EXE) make_patchnum.pl | ||
74 | +lib/Config_git.pl: make_patchnum.pl | ||
75 | $(MINIPERL) make_patchnum.pl | ||
76 | |||
77 | # make sure that we recompile perl.c if the git version changes | ||
78 | @@ -552,8 +552,8 @@ perl$(OBJ_EXT): git_version.h | ||
79 | # loading, we need to build perl first. | ||
80 | case "$usedl" in | ||
81 | define) | ||
82 | - util_deps='$(MINIPERL_EXE) $(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE' | ||
83 | - x2p_deps='$(MINIPERL_EXE) $(CONFIGPM) $(dynamic_ext) FORCE' | ||
84 | + util_deps='$(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE' | ||
85 | + x2p_deps='$(CONFIGPM) $(dynamic_ext) FORCE' | ||
86 | ;; | ||
87 | *) util_deps='$(PERL_EXE) $(CONFIGPM) FORCE' | ||
88 | x2p_deps='$(PERL_EXE) $(CONFIGPM) FORCE' | ||
89 | @@ -627,7 +627,7 @@ generate_uudmap$(HOST_EXE_EXT): generate | ||
90 | miniperlmain$(OBJ_EXT): miniperlmain.c patchlevel.h | ||
91 | $(CCCMD) $(PLDLFLAGS) $*.c | ||
92 | |||
93 | -perlmain.c: $(MINIPERL_EXE) lib/ExtUtils/Miniperl.pm | ||
94 | +perlmain.c: lib/ExtUtils/Miniperl.pm | ||
95 | $(MINIPERL) -Ilib -MExtUtils::Miniperl -e 'writemain(@ARGV)' DynaLoader $(static_ext) > perlmain.c | ||
96 | |||
97 | perlmain$(OBJ_EXT): perlmain.c | ||
98 | @@ -691,7 +691,7 @@ PERLEXPORT = perl.exp | ||
99 | ;; | ||
100 | esac | ||
101 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
102 | -perl.exp: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) | ||
103 | +perl.exp: makedef.pl config.sh $(SYM) $(SYMH) | ||
104 | ./$(MINIPERLEXP) makedef.pl PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" | sort -u | sort -f > perl.exp | ||
105 | |||
106 | !NO!SUBS! | ||
107 | @@ -700,7 +700,7 @@ os2) | ||
108 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
109 | MINIPERLEXP = miniperl | ||
110 | |||
111 | -perl5.def: $(MINIPERLEXP) makedef.pl config.sh $(SYM) $(SYMH) miniperl.map | ||
112 | +perl5.def: makedef.pl config.sh $(SYM) $(SYMH) miniperl.map | ||
113 | ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def | ||
114 | |||
115 | !NO!SUBS! | ||
116 | @@ -757,7 +757,7 @@ $(LIBPERL): $& $(obj) $(DYNALOADER) $(LI | ||
117 | true) | ||
118 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
119 | rm -f $@ | ||
120 | - $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs) | ||
121 | + $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs) -Wl,-soname,libperl.so.5 | ||
122 | !NO!SUBS! | ||
123 | case "$osname" in | ||
124 | aix) | ||
125 | @@ -798,7 +798,9 @@ $(MINIPERL_EXE): $& miniperlmain$(OBJ_EX | ||
126 | $(CC) -o $(MINIPERL_EXE) $(CLDFLAGS) \ | ||
127 | $(mini_obj) \ | ||
128 | miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs) | ||
129 | - $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest | ||
130 | + mv -f miniperl miniperl-target | ||
131 | + ln -s hostperl miniperl | ||
132 | +# $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest | ||
133 | !NO!SUBS! | ||
134 | ;; | ||
135 | next4*) | ||
136 | @@ -806,7 +808,9 @@ $(MINIPERL_EXE): $& miniperlmain$(OBJ_EX | ||
137 | $(MINIPERL_EXE): $& miniperlmain$(OBJ_EXT) $(mini_obj) perlmini$(OBJ_EXT) opmini$(OBJ_EXT) | ||
138 | $(CC) -o $(MINIPERL_EXE) $(mini_obj) \ | ||
139 | miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs) | ||
140 | - $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest | ||
141 | + mv -f miniperl miniperl-target | ||
142 | + ln -s hostperl miniperl | ||
143 | +# $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest | ||
144 | !NO!SUBS! | ||
145 | ;; | ||
146 | darwin*) | ||
147 | @@ -828,7 +832,9 @@ $(MINIPERL_EXE): $& miniperlmain$(OBJ_EX | ||
148 | $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o $(MINIPERL_EXE) \ | ||
149 | $(mini_obj) \ | ||
150 | miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs) | ||
151 | - $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest | ||
152 | + mv -f miniperl miniperl-target | ||
153 | + ln -s hostperl miniperl | ||
154 | +# $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest | ||
155 | !NO!SUBS! | ||
156 | ;; | ||
157 | *) | ||
158 | @@ -838,7 +844,10 @@ $(MINIPERL_EXE): $& miniperlmain$(OBJ_EX | ||
159 | $(LDLIBPTH) $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \ | ||
160 | $(mini_obj) \ | ||
161 | miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) perlmini$(OBJ_EXT) $(libs) | ||
162 | - $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest | ||
163 | + | ||
164 | + mv -f miniperl miniperl-target | ||
165 | + ln -s hostperl miniperl | ||
166 | +# $(LDLIBPTH) $(RUN) ./miniperl$(HOST_EXE_EXT) -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest | ||
167 | !NO!SUBS! | ||
168 | ;; | ||
169 | esac | ||
170 | @@ -960,7 +969,7 @@ case "${osname}" in | ||
171 | catamount) | ||
172 | $spitshell >>$Makefile <<!GROK!THIS! | ||
173 | .PHONY: makeppport | ||
174 | -makeppport: \$(MINIPERL_EXE) \$(CONFIGPM) | ||
175 | +makeppport: \$(CONFIGPM) | ||
176 | -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \ | ||
177 | (cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \ | ||
178 | done | ||
179 | @@ -970,7 +979,7 @@ makeppport: \$(MINIPERL_EXE) \$(CONFIGPM | ||
180 | *) | ||
181 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
182 | .PHONY: makeppport | ||
183 | -makeppport: $(MINIPERL_EXE) $(CONFIGPM) $(nonxs_ext) | ||
184 | +makeppport: $(CONFIGPM) $(nonxs_ext) | ||
185 | $(MINIPERL) $(Icwd) mkppport | ||
186 | |||
187 | !NO!SUBS! | ||
188 | @@ -980,22 +989,22 @@ esac | ||
189 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
190 | |||
191 | .PHONY: preplibrary | ||
192 | -preplibrary: $(MINIPERL_EXE) $(CONFIGPM) $(PREPLIBRARY_LIBPERL) | ||
193 | +preplibrary: $(CONFIGPM) $(PREPLIBRARY_LIBPERL) | ||
194 | |||
195 | $(CONFIGPM_FROM_CONFIG_SH): $(CONFIGPOD) | ||
196 | |||
197 | -$(CONFIGPOD): config.sh $(MINIPERL_EXE) configpm Porting/Glossary lib/Config_git.pl | ||
198 | +$(CONFIGPOD): config.sh configpm Porting/Glossary lib/Config_git.pl | ||
199 | $(MINIPERL) configpm | ||
200 | |||
201 | -lib/ExtUtils/Miniperl.pm: miniperlmain.c $(MINIPERL_EXE) minimod.pl $(CONFIGPM) | ||
202 | +lib/ExtUtils/Miniperl.pm: miniperlmain.c minimod.pl $(CONFIGPM) | ||
203 | $(MINIPERL) minimod.pl > lib/ExtUtils/Miniperl.pm | ||
204 | |||
205 | -lib/buildcustomize.pl: $(MINIPERL_EXE) write_buildcustomize.pl | ||
206 | +lib/buildcustomize.pl: write_buildcustomize.pl | ||
207 | $(MINIPERL) write_buildcustomize.pl >lib/buildcustomize.pl | ||
208 | |||
209 | unidatafiles $(unidatafiles) pod/perluniprops.pod: uni.data | ||
210 | |||
211 | -uni.data: $(MINIPERL_EXE) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext) | ||
212 | +uni.data: $(CONFIGPM) lib/unicore/mktables $(nonxs_ext) | ||
213 | $(MINIPERL) $(Icwd) lib/unicore/mktables -C lib/unicore -P pod -maketest -makelist -p | ||
214 | # Commented out so always runs, mktables looks at far more files than we | ||
215 | # can in this makefile to decide if needs to run or not | ||
216 | @@ -1004,21 +1013,21 @@ uni.data: $(MINIPERL_EXE) $(CONFIGPM) li | ||
217 | # $(PERL_EXE) and ext because buildtoc uses Text::Wrap uses re | ||
218 | # But also this ensures that all extensions are built before we try to scan | ||
219 | # them, which picks up Devel::PPPort's documentation. | ||
220 | -pod/perltoc.pod: $(perltoc_pod_prereqs) $(PERL_EXE) $(ext) pod/buildtoc | ||
221 | - $(RUN_PERL) -f -Ilib pod/buildtoc --build-toc -q | ||
222 | +pod/perltoc.pod: $(perltoc_pod_prereqs) $(ext) pod/buildtoc | ||
223 | + $(MINIPERL) -f -Ilib pod/buildtoc --build-toc -q | ||
224 | |||
225 | pod/perlapi.pod: pod/perlintern.pod | ||
226 | |||
227 | -pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc | ||
228 | +pod/perlintern.pod: autodoc.pl embed.fnc | ||
229 | $(MINIPERL) autodoc.pl | ||
230 | |||
231 | -pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST | ||
232 | +pod/perlmodlib.pod: pod/perlmodlib.PL MANIFEST | ||
233 | $(MINIPERL) $(Icwd) pod/perlmodlib.PL -q | ||
234 | |||
235 | pod/perl5143delta.pod: pod/perldelta.pod | ||
236 | $(LNS) perldelta.pod pod/perl5143delta.pod | ||
237 | |||
238 | -extra.pods: $(MINIPERL_EXE) | ||
239 | +extra.pods: | ||
240 | -@test ! -f extra.pods || rm -f `cat extra.pods` | ||
241 | -@rm -f extra.pods | ||
242 | -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \ | ||
243 | @@ -1058,11 +1067,7 @@ no-install: | ||
244 | INSTALL_DEPENDENCE = all | ||
245 | |||
246 | install.perl: $(INSTALL_DEPENDENCE) installperl | ||
247 | - $(RUN_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS) | ||
248 | - -@test ! -s extras.lst || $(MAKE) extras.install | ||
249 | - | ||
250 | -install.man: all installman | ||
251 | - $(RUN_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS) | ||
252 | + ./hostperl -Ifake_config_library -Ilib -MConfig installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS) | ||
253 | |||
254 | # XXX Experimental. Hardwired values, but useful for testing. | ||
255 | # Eventually Configure could ask for some of these values. | ||
256 | @@ -1161,16 +1166,16 @@ manicheck: FORCE | ||
257 | # | ||
258 | # DynaLoader may be needed for extensions that use Makefile.PL. | ||
259 | |||
260 | -$(DYNALOADER): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext) | ||
261 | +$(DYNALOADER): lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext) | ||
262 | $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS) | ||
263 | |||
264 | -d_dummy $(dynamic_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) | ||
265 | +d_dummy $(dynamic_ext): lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) | ||
266 | $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic | ||
267 | |||
268 | -s_dummy $(static_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE | ||
269 | +s_dummy $(static_ext): lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE | ||
270 | $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS) | ||
271 | |||
272 | -n_dummy $(nonxs_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE | ||
273 | +n_dummy $(nonxs_ext): lib/buildcustomize.pl preplibrary FORCE | ||
274 | $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) | ||
275 | !NO!SUBS! | ||
276 | |||
277 | @@ -1365,10 +1370,10 @@ _test: | ||
278 | |||
279 | test_prep_pre: preplibrary utilities $(nonxs_ext) | ||
280 | |||
281 | -test_prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) $(dynamic_ext) $(TEST_PERL_DLL) runtests x2p/s2p $(generated_pods) | ||
282 | +test_prep: test_prep_pre $(unidatafiles) $(PERL_EXE) $(dynamic_ext) $(TEST_PERL_DLL) runtests x2p/s2p $(generated_pods) | ||
283 | cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE)) | ||
284 | |||
285 | -test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL) | ||
286 | +test_prep_reonly: $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL) | ||
287 | $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic | ||
288 | cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE)) | ||
289 | |||
290 | @@ -1459,7 +1464,7 @@ minitest.prep: | ||
291 | |||
292 | # Can't depend on lib/Config.pm because that might be where miniperl | ||
293 | # is crashing. | ||
294 | -minitest: $(MINIPERL_EXE) minitest.prep | ||
295 | +minitest: minitest.prep | ||
296 | - cd t && (rm -f $(PERL_EXE); $(LNS) ../$(MINIPERL_EXE) $(PERL_EXE)) \ | ||
297 | && $(RUN_PERL) TEST base/*.t comp/*.t cmd/*.t run/*.t io/*.t re/*.t op/*.t uni/*.t </dev/tty | ||
298 | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/arm_thread_stress_timeout.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/arm_thread_stress_timeout.diff deleted file mode 100644 index 6e70c66f52..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/arm_thread_stress_timeout.diff +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From f624a9f1206cdd44fde99c40d82e2f326db485dd Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | ||
4 | Date: Sat, 1 Nov 2008 15:10:16 +0200 | ||
5 | Subject: Raise the timeout of ext/threads/shared/t/stress.t to accommodate | ||
6 | slower build hosts | ||
7 | |||
8 | Bug-Debian: http://bugs.debian.org/501970 | ||
9 | |||
10 | Patch-Name: debian/arm_thread_stress_timeout.diff | ||
11 | --- | ||
12 | dist/threads-shared/t/stress.t | 2 +- | ||
13 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
14 | |||
15 | diff --git a/dist/threads-shared/t/stress.t b/dist/threads-shared/t/stress.t | ||
16 | index adfd1ed..652a3e6 100644 | ||
17 | --- a/dist/threads-shared/t/stress.t | ||
18 | +++ b/dist/threads-shared/t/stress.t | ||
19 | @@ -34,7 +34,7 @@ use threads::shared; | ||
20 | { | ||
21 | my $cnt = 50; | ||
22 | |||
23 | - my $TIMEOUT = 60; | ||
24 | + my $TIMEOUT = 150; | ||
25 | |||
26 | my $mutex = 1; | ||
27 | share($mutex); | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/cpanplus_config_path.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/cpanplus_config_path.diff deleted file mode 100644 index f33221c3d1..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/cpanplus_config_path.diff +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From 9825086b15f34f365a272cc8d6caf4e2044bede6 Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | ||
4 | Date: Mon, 6 Jul 2009 22:17:53 +0300 | ||
5 | Subject: Save local versions of CPANPLUS::Config::System into /etc/perl. | ||
6 | |||
7 | This is a configuration file and needs to go in /etc by policy. | ||
8 | Besides, /usr may not even be writable. | ||
9 | |||
10 | This mirrors the Debian setup of CPAN.pm in debian/cpan_config_path. | ||
11 | |||
12 | See #533707. | ||
13 | |||
14 | Patch-Name: debian/cpanplus_config_path.diff | ||
15 | --- | ||
16 | cpan/CPANPLUS/lib/CPANPLUS/Configure.pm | 1 + | ||
17 | cpan/CPANPLUS/lib/CPANPLUS/Internals/Constants.pm | 3 +++ | ||
18 | 2 files changed, 4 insertions(+), 0 deletions(-) | ||
19 | |||
20 | diff --git a/cpan/CPANPLUS/lib/CPANPLUS/Configure.pm b/cpan/CPANPLUS/lib/CPANPLUS/Configure.pm | ||
21 | index ba1ca07..25cbe5f 100644 | ||
22 | --- a/cpan/CPANPLUS/lib/CPANPLUS/Configure.pm | ||
23 | +++ b/cpan/CPANPLUS/lib/CPANPLUS/Configure.pm | ||
24 | @@ -280,6 +280,7 @@ Saves the configuration to the package name you provided. | ||
25 | If this package is not C<CPANPLUS::Config::System>, it will | ||
26 | be saved in your C<.cpanplus> directory, otherwise it will | ||
27 | be attempted to be saved in the system wide directory. | ||
28 | +(On Debian systems, this system wide directory is /etc/perl.) | ||
29 | |||
30 | If no argument is provided, it will default to your personal | ||
31 | config. | ||
32 | diff --git a/cpan/CPANPLUS/lib/CPANPLUS/Internals/Constants.pm b/cpan/CPANPLUS/lib/CPANPLUS/Internals/Constants.pm | ||
33 | index 443d5a4..f7085a8 100644 | ||
34 | --- a/cpan/CPANPLUS/lib/CPANPLUS/Internals/Constants.pm | ||
35 | +++ b/cpan/CPANPLUS/lib/CPANPLUS/Internals/Constants.pm | ||
36 | @@ -209,6 +209,9 @@ use constant CONFIG_USER_FILE => sub { | ||
37 | ) . '.pm'; | ||
38 | }; | ||
39 | use constant CONFIG_SYSTEM_FILE => sub { | ||
40 | + # Debian-specific shortcut | ||
41 | + return '/etc/perl/CPANPLUS/Config/System.pm'; | ||
42 | + | ||
43 | require CPANPLUS::Internals; | ||
44 | require File::Basename; | ||
45 | my $dir = File::Basename::dirname( | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/cpanplus_definstalldirs.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/cpanplus_definstalldirs.diff deleted file mode 100644 index 7df28606b7..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/cpanplus_definstalldirs.diff +++ /dev/null | |||
@@ -1,56 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From 66517b14790aa6410fd37e411dd62521e1e02b7f Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | ||
4 | Date: Mon, 6 Jul 2009 21:58:41 +0300 | ||
5 | Subject: Configure CPANPLUS to use the site directories by default. | ||
6 | |||
7 | Bug-Debian: http://bugs.debian.org/533707 | ||
8 | |||
9 | The core modules usually default to INSTALLDIRS=perl (ExtUtils::MakeMaker) | ||
10 | or installdirs=core (Module::Build), so we need to explicitly ask for | ||
11 | the site destination to get upgraded versions into /usr/local. | ||
12 | |||
13 | See also the sister patch, debian/cpan_definstalldirs . | ||
14 | |||
15 | Patch-Name: debian/cpanplus_definstalldirs.diff | ||
16 | --- | ||
17 | cpan/CPANPLUS/lib/CPANPLUS/Config/System.pm | 30 +++++++++++++++++++++++++++ | ||
18 | 1 files changed, 30 insertions(+), 0 deletions(-) | ||
19 | create mode 100644 cpan/CPANPLUS/lib/CPANPLUS/Config/System.pm | ||
20 | |||
21 | diff --git a/cpan/CPANPLUS/lib/CPANPLUS/Config/System.pm b/cpan/CPANPLUS/lib/CPANPLUS/Config/System.pm | ||
22 | new file mode 100644 | ||
23 | index 0000000..5e6e11e | ||
24 | --- /dev/null | ||
25 | +++ b/cpan/CPANPLUS/lib/CPANPLUS/Config/System.pm | ||
26 | @@ -0,0 +1,30 @@ | ||
27 | +### minimal pod, so you can find it with perldoc -l, etc | ||
28 | +=pod | ||
29 | + | ||
30 | +=head1 NAME | ||
31 | + | ||
32 | +CPANPLUS::Config::System | ||
33 | + | ||
34 | +=head1 DESCRIPTION | ||
35 | + | ||
36 | +This is a CPANPLUS configuration file that sets appropriate default | ||
37 | +settings on Debian systems. | ||
38 | + | ||
39 | +The only preconfigured settings are C<makemakerflags> (set to | ||
40 | +C<INSTALLDIRS=site>) and C<buildflags> (set to C<--installdirs site>). | ||
41 | + | ||
42 | +These settings will not have any effect if | ||
43 | +C</etc/perl/CPANPLUS/Config/System.pm> is present. | ||
44 | + | ||
45 | +=cut | ||
46 | + | ||
47 | + | ||
48 | +package CPANPLUS::Config::System; | ||
49 | + | ||
50 | +sub setup { | ||
51 | + my $conf = shift; | ||
52 | + $conf->set_conf( makemakerflags => 'INSTALLDIRS=site' ); | ||
53 | + $conf->set_conf( buildflags => '--installdirs site' ); | ||
54 | +} | ||
55 | + | ||
56 | +1; | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/deprecate-with-apt.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/deprecate-with-apt.diff deleted file mode 100644 index 3a145a1671..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/deprecate-with-apt.diff +++ /dev/null | |||
@@ -1,407 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From c2bd2059cfbba573643c748ace4ff4db4cbf015d Mon Sep 17 00:00:00 2001 | ||
3 | From: Dominic Hargreaves <dom@earth.li> | ||
4 | Date: Mon, 17 May 2010 13:23:07 +0300 | ||
5 | Subject: Point users to Debian packages of deprecated core modules | ||
6 | |||
7 | Bug-Debian: http://bugs.debian.org/580034 | ||
8 | |||
9 | Class::ISA, Switch, Pod::Plainer, and (partially) Shell were | ||
10 | deprecated from the Perl core in 5.12.0. | ||
11 | |||
12 | Class::ISA, Switch, Pod::Plainer were removed from the Perl core in | ||
13 | 5.14.0. | ||
14 | |||
15 | Shell and Devel::DProf, and Perl 4 libraries, were deprecated from the | ||
16 | Perl core in 5.14.0. | ||
17 | |||
18 | To get a clean transition, perl/perl-modules is going to recommend the | ||
19 | separate Debian packages of these for one release cycle so that they will be | ||
20 | pulled in by default on upgrades. | ||
21 | |||
22 | However, on systems configured to ignore recommendations the deprecation | ||
23 | warnings will still be useful, so modify them slightly to point to the | ||
24 | separate packages instead. | ||
25 | |||
26 | Patch-Name: debian/deprecate-with-apt.diff | ||
27 | --- | ||
28 | lib/abbrev.pl | 2 +- | ||
29 | lib/assert.pl | 2 +- | ||
30 | lib/bigfloat.pl | 2 +- | ||
31 | lib/bigint.pl | 2 +- | ||
32 | lib/bigrat.pl | 2 +- | ||
33 | lib/cacheout.pl | 2 +- | ||
34 | lib/complete.pl | 2 +- | ||
35 | lib/ctime.pl | 2 +- | ||
36 | lib/deprecate.pm | 16 +++++++++++++++- | ||
37 | lib/dotsh.pl | 2 +- | ||
38 | lib/exceptions.pl | 2 +- | ||
39 | lib/fastcwd.pl | 2 +- | ||
40 | lib/find.pl | 2 +- | ||
41 | lib/finddepth.pl | 2 +- | ||
42 | lib/flush.pl | 2 +- | ||
43 | lib/getcwd.pl | 2 +- | ||
44 | lib/getopt.pl | 2 +- | ||
45 | lib/getopts.pl | 2 +- | ||
46 | lib/hostname.pl | 2 +- | ||
47 | lib/importenv.pl | 2 +- | ||
48 | lib/look.pl | 2 +- | ||
49 | lib/newgetopt.pl | 2 +- | ||
50 | lib/open2.pl | 2 +- | ||
51 | lib/open3.pl | 2 +- | ||
52 | lib/pwd.pl | 2 +- | ||
53 | lib/shellwords.pl | 2 +- | ||
54 | lib/stat.pl | 2 +- | ||
55 | lib/syslog.pl | 2 +- | ||
56 | lib/tainted.pl | 2 +- | ||
57 | lib/termcap.pl | 2 +- | ||
58 | lib/timelocal.pl | 2 +- | ||
59 | lib/validate.pl | 2 +- | ||
60 | 32 files changed, 46 insertions(+), 32 deletions(-) | ||
61 | |||
62 | diff --git a/lib/abbrev.pl b/lib/abbrev.pl | ||
63 | index d46321f..0168631 100644 | ||
64 | --- a/lib/abbrev.pl | ||
65 | +++ b/lib/abbrev.pl | ||
66 | @@ -1,4 +1,4 @@ | ||
67 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
68 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
69 | |||
70 | ;# Usage: | ||
71 | ;# %foo = (); | ||
72 | diff --git a/lib/assert.pl b/lib/assert.pl | ||
73 | index d47e006..80593c5 100644 | ||
74 | --- a/lib/assert.pl | ||
75 | +++ b/lib/assert.pl | ||
76 | @@ -1,4 +1,4 @@ | ||
77 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
78 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
79 | |||
80 | # | ||
81 | # This library is no longer being maintained, and is included for backward | ||
82 | diff --git a/lib/bigfloat.pl b/lib/bigfloat.pl | ||
83 | index 82d0f5c..c21bac6 100644 | ||
84 | --- a/lib/bigfloat.pl | ||
85 | +++ b/lib/bigfloat.pl | ||
86 | @@ -1,4 +1,4 @@ | ||
87 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
88 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
89 | |||
90 | package bigfloat; | ||
91 | require "bigint.pl"; | ||
92 | diff --git a/lib/bigint.pl b/lib/bigint.pl | ||
93 | index 6de1c53..031e8ad 100644 | ||
94 | --- a/lib/bigint.pl | ||
95 | +++ b/lib/bigint.pl | ||
96 | @@ -1,4 +1,4 @@ | ||
97 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
98 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
99 | |||
100 | package bigint; | ||
101 | # | ||
102 | diff --git a/lib/bigrat.pl b/lib/bigrat.pl | ||
103 | index aaf1713..146a8f4 100644 | ||
104 | --- a/lib/bigrat.pl | ||
105 | +++ b/lib/bigrat.pl | ||
106 | @@ -1,4 +1,4 @@ | ||
107 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
108 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
109 | |||
110 | package bigrat; | ||
111 | require "bigint.pl"; | ||
112 | diff --git a/lib/cacheout.pl b/lib/cacheout.pl | ||
113 | index a5da453..937405d 100644 | ||
114 | --- a/lib/cacheout.pl | ||
115 | +++ b/lib/cacheout.pl | ||
116 | @@ -1,4 +1,4 @@ | ||
117 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
118 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
119 | |||
120 | # | ||
121 | # This library is no longer being maintained, and is included for backward | ||
122 | diff --git a/lib/complete.pl b/lib/complete.pl | ||
123 | index 9ed041c..2ab0c6a 100644 | ||
124 | --- a/lib/complete.pl | ||
125 | +++ b/lib/complete.pl | ||
126 | @@ -1,4 +1,4 @@ | ||
127 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
128 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
129 | |||
130 | ;# | ||
131 | # | ||
132 | diff --git a/lib/ctime.pl b/lib/ctime.pl | ||
133 | index aa00d00..ac24e71 100644 | ||
134 | --- a/lib/ctime.pl | ||
135 | +++ b/lib/ctime.pl | ||
136 | @@ -1,4 +1,4 @@ | ||
137 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
138 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
139 | |||
140 | ;# ctime.pl is a simple Perl emulation for the well known ctime(3C) function. | ||
141 | # | ||
142 | diff --git a/lib/deprecate.pm b/lib/deprecate.pm | ||
143 | index 7562c69..fc548b0 100644 | ||
144 | --- a/lib/deprecate.pm | ||
145 | +++ b/lib/deprecate.pm | ||
146 | @@ -7,6 +7,14 @@ our $VERSION = 0.02; | ||
147 | our %Config; | ||
148 | unless (%Config) { require Config; *Config = \%Config::Config; } | ||
149 | |||
150 | +# Debian-specific change: recommend the separate Debian packages of | ||
151 | +# deprecated modules where available | ||
152 | + | ||
153 | +my %DEBIAN_PACKAGES = ( | ||
154 | + "Shell" => "libshell-perl", | ||
155 | + "Devel::DProf" => "libdevel-dprof-perl" | ||
156 | +); | ||
157 | + | ||
158 | # This isn't a public API. It's internal to code maintained by the perl-porters | ||
159 | # If you would like it to be a public API, please send a patch with | ||
160 | # documentation and tests. Until then, it may change without warning. | ||
161 | @@ -58,9 +66,15 @@ EOM | ||
162 | if (defined $callers_bitmask | ||
163 | && (vec($callers_bitmask, $warnings::Offsets{deprecated}, 1) | ||
164 | || vec($callers_bitmask, $warnings::Offsets{all}, 1))) { | ||
165 | - warn <<"EOM"; | ||
166 | + if (my $deb = $DEBIAN_PACKAGES{$package}) { | ||
167 | + warn <<"EOM"; | ||
168 | +$package will be removed from the Perl core distribution in the next major release. Please install the separate $deb package. It is being used at $call_file, line $call_line. | ||
169 | +EOM | ||
170 | + } else { | ||
171 | + warn <<"EOM"; | ||
172 | $package will be removed from the Perl core distribution in the next major release. Please install it from CPAN. It is being used at $call_file, line $call_line. | ||
173 | EOM | ||
174 | + } | ||
175 | } | ||
176 | } | ||
177 | } | ||
178 | diff --git a/lib/dotsh.pl b/lib/dotsh.pl | ||
179 | index 92f1f4c..4085122 100644 | ||
180 | --- a/lib/dotsh.pl | ||
181 | +++ b/lib/dotsh.pl | ||
182 | @@ -1,4 +1,4 @@ | ||
183 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
184 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
185 | |||
186 | # | ||
187 | # @(#)dotsh.pl 03/19/94 | ||
188 | diff --git a/lib/exceptions.pl b/lib/exceptions.pl | ||
189 | index 8af64c8..b5b1427 100644 | ||
190 | --- a/lib/exceptions.pl | ||
191 | +++ b/lib/exceptions.pl | ||
192 | @@ -1,4 +1,4 @@ | ||
193 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
194 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
195 | |||
196 | # exceptions.pl | ||
197 | # tchrist@convex.com | ||
198 | diff --git a/lib/fastcwd.pl b/lib/fastcwd.pl | ||
199 | index 70007a1..2c7c42e 100644 | ||
200 | --- a/lib/fastcwd.pl | ||
201 | +++ b/lib/fastcwd.pl | ||
202 | @@ -1,4 +1,4 @@ | ||
203 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
204 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
205 | |||
206 | # By John Bazik | ||
207 | # | ||
208 | diff --git a/lib/find.pl b/lib/find.pl | ||
209 | index 8e1b42c..7fb2fbf 100644 | ||
210 | --- a/lib/find.pl | ||
211 | +++ b/lib/find.pl | ||
212 | @@ -1,4 +1,4 @@ | ||
213 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
214 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
215 | |||
216 | # This library is deprecated and unmaintained. It is included for | ||
217 | # compatibility with Perl 4 scripts which may use it, but it will be | ||
218 | diff --git a/lib/finddepth.pl b/lib/finddepth.pl | ||
219 | index 479905f..c07cea5 100644 | ||
220 | --- a/lib/finddepth.pl | ||
221 | +++ b/lib/finddepth.pl | ||
222 | @@ -1,4 +1,4 @@ | ||
223 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
224 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
225 | |||
226 | # This library is deprecated and unmaintained. It is included for | ||
227 | # compatibility with Perl 4 scripts which may use it, but it will be | ||
228 | diff --git a/lib/flush.pl b/lib/flush.pl | ||
229 | index c427976..e5ed0ae 100644 | ||
230 | --- a/lib/flush.pl | ||
231 | +++ b/lib/flush.pl | ||
232 | @@ -1,4 +1,4 @@ | ||
233 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
234 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
235 | |||
236 | # | ||
237 | # This library is no longer being maintained, and is included for backward | ||
238 | diff --git a/lib/getcwd.pl b/lib/getcwd.pl | ||
239 | index 77b2442..3810a99 100644 | ||
240 | --- a/lib/getcwd.pl | ||
241 | +++ b/lib/getcwd.pl | ||
242 | @@ -1,4 +1,4 @@ | ||
243 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
244 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
245 | |||
246 | # By Brandon S. Allbery | ||
247 | # | ||
248 | diff --git a/lib/getopt.pl b/lib/getopt.pl | ||
249 | index 1d4008a..019a165 100644 | ||
250 | --- a/lib/getopt.pl | ||
251 | +++ b/lib/getopt.pl | ||
252 | @@ -1,4 +1,4 @@ | ||
253 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
254 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
255 | |||
256 | ;# $RCSfile: getopt.pl,v $$Revision: 4.1 $$Date: 92/08/07 18:23:58 $ | ||
257 | # | ||
258 | diff --git a/lib/getopts.pl b/lib/getopts.pl | ||
259 | index 37ecb4a..3d27418 100644 | ||
260 | --- a/lib/getopts.pl | ||
261 | +++ b/lib/getopts.pl | ||
262 | @@ -1,4 +1,4 @@ | ||
263 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
264 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
265 | |||
266 | ;# getopts.pl - a better getopt.pl | ||
267 | # | ||
268 | diff --git a/lib/hostname.pl b/lib/hostname.pl | ||
269 | index f57375e..b055d30 100644 | ||
270 | --- a/lib/hostname.pl | ||
271 | +++ b/lib/hostname.pl | ||
272 | @@ -1,4 +1,4 @@ | ||
273 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
274 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
275 | |||
276 | # From: asherman@fmrco.com (Aaron Sherman) | ||
277 | # | ||
278 | diff --git a/lib/importenv.pl b/lib/importenv.pl | ||
279 | index 625edf6..52ee722 100644 | ||
280 | --- a/lib/importenv.pl | ||
281 | +++ b/lib/importenv.pl | ||
282 | @@ -1,4 +1,4 @@ | ||
283 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
284 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
285 | |||
286 | # This library is no longer being maintained, and is included for backward | ||
287 | # compatibility with Perl 4 programs which may require it. | ||
288 | diff --git a/lib/look.pl b/lib/look.pl | ||
289 | index 7be55b2..12dcace 100644 | ||
290 | --- a/lib/look.pl | ||
291 | +++ b/lib/look.pl | ||
292 | @@ -1,4 +1,4 @@ | ||
293 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
294 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
295 | |||
296 | ;# Usage: &look(*FILEHANDLE,$key,$dict,$fold) | ||
297 | # | ||
298 | diff --git a/lib/newgetopt.pl b/lib/newgetopt.pl | ||
299 | index 4ac9470..08df6cb 100644 | ||
300 | --- a/lib/newgetopt.pl | ||
301 | +++ b/lib/newgetopt.pl | ||
302 | @@ -1,4 +1,4 @@ | ||
303 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
304 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
305 | |||
306 | # This library is no longer being maintained, and is included for backward | ||
307 | # compatibility with Perl 4 programs which may require it. | ||
308 | diff --git a/lib/open2.pl b/lib/open2.pl | ||
309 | index ceb5653..a05f2ab 100644 | ||
310 | --- a/lib/open2.pl | ||
311 | +++ b/lib/open2.pl | ||
312 | @@ -1,4 +1,4 @@ | ||
313 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
314 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
315 | |||
316 | # This legacy library is deprecated and will be removed in a future | ||
317 | # release of perl. | ||
318 | diff --git a/lib/open3.pl b/lib/open3.pl | ||
319 | index 9f4d5a4..27f7ab4 100644 | ||
320 | --- a/lib/open3.pl | ||
321 | +++ b/lib/open3.pl | ||
322 | @@ -1,4 +1,4 @@ | ||
323 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
324 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
325 | |||
326 | # This legacy library is deprecated and will be removed in a future | ||
327 | # release of perl. | ||
328 | diff --git a/lib/pwd.pl b/lib/pwd.pl | ||
329 | index bd8123b..bdace6e 100644 | ||
330 | --- a/lib/pwd.pl | ||
331 | +++ b/lib/pwd.pl | ||
332 | @@ -1,4 +1,4 @@ | ||
333 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
334 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
335 | |||
336 | ;# pwd.pl - keeps track of current working directory in PWD environment var | ||
337 | ;# | ||
338 | diff --git a/lib/shellwords.pl b/lib/shellwords.pl | ||
339 | index b562f5f..7f16375 100644 | ||
340 | --- a/lib/shellwords.pl | ||
341 | +++ b/lib/shellwords.pl | ||
342 | @@ -1,4 +1,4 @@ | ||
343 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
344 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
345 | |||
346 | ;# This legacy library is deprecated and will be removed in a future | ||
347 | ;# release of perl. | ||
348 | diff --git a/lib/stat.pl b/lib/stat.pl | ||
349 | index feda273..910ce1c 100644 | ||
350 | --- a/lib/stat.pl | ||
351 | +++ b/lib/stat.pl | ||
352 | @@ -1,4 +1,4 @@ | ||
353 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
354 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
355 | |||
356 | ;# This legacy library is deprecated and will be removed in a future | ||
357 | ;# release of perl. | ||
358 | diff --git a/lib/syslog.pl b/lib/syslog.pl | ||
359 | index 7504a5d..4c2b95f 100644 | ||
360 | --- a/lib/syslog.pl | ||
361 | +++ b/lib/syslog.pl | ||
362 | @@ -1,4 +1,4 @@ | ||
363 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
364 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
365 | |||
366 | # | ||
367 | # syslog.pl | ||
368 | diff --git a/lib/tainted.pl b/lib/tainted.pl | ||
369 | index e88bca1..d58c765 100644 | ||
370 | --- a/lib/tainted.pl | ||
371 | +++ b/lib/tainted.pl | ||
372 | @@ -1,4 +1,4 @@ | ||
373 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
374 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
375 | |||
376 | # This legacy library is deprecated and will be removed in a future | ||
377 | # release of perl. | ||
378 | diff --git a/lib/termcap.pl b/lib/termcap.pl | ||
379 | index a84cba3..e641f4d 100644 | ||
380 | --- a/lib/termcap.pl | ||
381 | +++ b/lib/termcap.pl | ||
382 | @@ -1,4 +1,4 @@ | ||
383 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
384 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
385 | |||
386 | ;# $RCSfile: termcap.pl,v $$Revision: 4.1 $$Date: 92/08/07 18:24:16 $ | ||
387 | # | ||
388 | diff --git a/lib/timelocal.pl b/lib/timelocal.pl | ||
389 | index fefb9da..2297888 100644 | ||
390 | --- a/lib/timelocal.pl | ||
391 | +++ b/lib/timelocal.pl | ||
392 | @@ -1,4 +1,4 @@ | ||
393 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
394 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
395 | |||
396 | ;# timelocal.pl | ||
397 | ;# | ||
398 | diff --git a/lib/validate.pl b/lib/validate.pl | ||
399 | index fc2d16a..1a8aef4 100644 | ||
400 | --- a/lib/validate.pl | ||
401 | +++ b/lib/validate.pl | ||
402 | @@ -1,4 +1,4 @@ | ||
403 | -warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install it from the CPAN distribution Perl4::CoreLibs. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
404 | +warn "Legacy library @{[(caller(0))[6]]} will be removed from the Perl core distribution in the next major release. Please install the separate libperl4-corelibs-perl package. It is being used at @{[(caller)[1]]}, line @{[(caller)[2]]}.\n"; | ||
405 | |||
406 | ;# The validate routine takes a single multiline string consisting of | ||
407 | ;# lines containing a filename plus a file test to try on it. (The | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/disable-zlib-bundling.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/disable-zlib-bundling.diff deleted file mode 100644 index 03ef76f7c7..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/disable-zlib-bundling.diff +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From 90c7967530102c66bbff25d89273d3f0bf189a83 Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | ||
4 | Date: Fri, 10 Apr 2009 01:17:43 +0300 | ||
5 | Subject: Disable zlib bundling in Compress::Raw::Zlib | ||
6 | |||
7 | Compress::Raw::Zlib statically links its bundled version of zlib | ||
8 | by default, but we use the system library instead. | ||
9 | |||
10 | Patch-Name: debian/disable-zlib-bundling.diff | ||
11 | --- | ||
12 | cpan/Compress-Raw-Zlib/config.in | 6 +++--- | ||
13 | 1 files changed, 3 insertions(+), 3 deletions(-) | ||
14 | |||
15 | diff --git a/cpan/Compress-Raw-Zlib/config.in b/cpan/Compress-Raw-Zlib/config.in | ||
16 | index c56cc03..2c6659b 100644 | ||
17 | --- a/cpan/Compress-Raw-Zlib/config.in | ||
18 | +++ b/cpan/Compress-Raw-Zlib/config.in | ||
19 | @@ -16,9 +16,9 @@ | ||
20 | # Setting the Gzip OS Code | ||
21 | # | ||
22 | |||
23 | -BUILD_ZLIB = True | ||
24 | -INCLUDE = ./zlib-src | ||
25 | -LIB = ./zlib-src | ||
26 | +BUILD_ZLIB = False | ||
27 | +INCLUDE = /usr/include | ||
28 | +LIB = /usr/lib | ||
29 | |||
30 | OLD_ZLIB = False | ||
31 | GZIP_OS_CODE = AUTO_DETECT | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/extutils_set_libperl_path.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/extutils_set_libperl_path.diff deleted file mode 100644 index d704c00c60..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/extutils_set_libperl_path.diff +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From 334ac01a8306485ed901f4fb45d79f39a944fe77 Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | ||
4 | Date: Tue, 8 Mar 2005 19:30:38 +1100 | ||
5 | Subject: EU:MM: Set location of libperl.a to /usr/lib | ||
6 | |||
7 | Patch-Name: debian/extutils_set_libperl_path.diff | ||
8 | --- | ||
9 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 2 +- | ||
10 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
11 | |||
12 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | ||
13 | index 4ee6b3f..42bbb83 100644 | ||
14 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | ||
15 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | ||
16 | @@ -2409,7 +2409,7 @@ MAP_PRELIBS = $Config{perllibs} $Config{cryptlib} | ||
17 | ($lperl = $libperl) =~ s/\$\(A\)/$self->{LIB_EXT}/; | ||
18 | } | ||
19 | unless ($libperl && -f $lperl) { # Ilya's code... | ||
20 | - my $dir = $self->{PERL_SRC} || "$self->{PERL_ARCHLIB}/CORE"; | ||
21 | + my $dir = $self->{PERL_SRC} || "/usr/lib"; | ||
22 | $dir = "$self->{PERL_ARCHLIB}/.." if $self->{UNINSTALLED_PERL}; | ||
23 | $libperl ||= "libperl$self->{LIB_EXT}"; | ||
24 | $libperl = "$dir/$libperl"; | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/fakeroot.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/fakeroot.diff deleted file mode 100644 index 79e7fcffa7..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/fakeroot.diff +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From a46a7107fb045ffa6047488b8002fec97b621a11 Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | ||
4 | Date: Fri, 18 Mar 2005 22:22:25 +1100 | ||
5 | Subject: Postpone LD_LIBRARY_PATH evaluation to the binary targets. | ||
6 | |||
7 | Modify the setting of LD_LIBRARY_PATH to append pre-existing values at the | ||
8 | time the rule is evaluated rather than when the Makefile is created. | ||
9 | |||
10 | This is required when building packages with dpkg-buildpackage and fakeroot, | ||
11 | since fakeroot (which now sets LD_LIBRARY_PATH) is not used for the "build" | ||
12 | rule where the Makefile is created, but is for the clean/binary* targets. | ||
13 | |||
14 | Patch-Name: debian/fakeroot.diff | ||
15 | --- | ||
16 | Makefile.SH | 9 ++------- | ||
17 | 1 files changed, 2 insertions(+), 7 deletions(-) | ||
18 | |||
19 | diff --git a/Makefile.SH b/Makefile.SH | ||
20 | index eb6326a..1dac585 100755 | ||
21 | --- a/Makefile.SH | ||
22 | +++ b/Makefile.SH | ||
23 | @@ -36,12 +36,7 @@ case "$useshrplib" in | ||
24 | true) | ||
25 | # Prefix all runs of 'miniperl' and 'perl' with | ||
26 | # $ldlibpth so that ./perl finds *this* shared libperl. | ||
27 | - case "$LD_LIBRARY_PATH" in | ||
28 | - '') | ||
29 | - ldlibpth="LD_LIBRARY_PATH=`pwd`";; | ||
30 | - *) | ||
31 | - ldlibpth="LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}";; | ||
32 | - esac | ||
33 | + ldlibpth=LD_LIBRARY_PATH=`pwd`'$${LD_LIBRARY_PATH:+:}$$LD_LIBRARY_PATH' | ||
34 | |||
35 | pldlflags="$cccdlflags" | ||
36 | static_ldflags='' | ||
37 | @@ -112,7 +107,7 @@ true) | ||
38 | ;; | ||
39 | esac | ||
40 | case "$ldlibpthname" in | ||
41 | - '') ;; | ||
42 | + ''|LD_LIBRARY_PATH) ;; | ||
43 | *) | ||
44 | case "$osname" in | ||
45 | os2) | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/extutils-cbuilder-cflags.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/extutils-cbuilder-cflags.diff deleted file mode 100644 index f9a3c6bdf1..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/extutils-cbuilder-cflags.diff +++ /dev/null | |||
@@ -1,87 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From 0c91624f1f9ec46a6f13cad3031b706213233479 Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | ||
4 | Date: Thu, 28 Apr 2011 09:18:54 +0300 | ||
5 | Subject: Append CFLAGS and LDFLAGS to their Config.pm counterparts in | ||
6 | EU::CBuilder | ||
7 | |||
8 | Bug: http://rt.perl.org/rt3//Public/Bug/Display.html?id=89478 | ||
9 | Bug-Debian: http://bugs.debian.org/624460 | ||
10 | Origin: upstream, http://perl5.git.perl.org/perl.git/commitdiff/011e8fb476b5fb27c9aa613360d918aa0b798b3d | ||
11 | |||
12 | Since ExtUtils::CBuilder 0.27_04 (bleadperl commit 06e8058f27e4), | ||
13 | CFLAGS and LDFLAGS from the environment have overridden the Config.pm | ||
14 | ccflags and ldflags settings. This can cause binary incompatibilities | ||
15 | between the core Perl and extensions built with EU::CBuilder. | ||
16 | |||
17 | Append to the Config.pm values rather than overriding them. | ||
18 | |||
19 | Patch-Name: fixes/extutils-cbuilder-cflags.diff | ||
20 | --- | ||
21 | .../lib/ExtUtils/CBuilder/Base.pm | 6 +++- | ||
22 | dist/ExtUtils-CBuilder/t/04-base.t | 25 +++++++++++++++++++- | ||
23 | 2 files changed, 28 insertions(+), 3 deletions(-) | ||
24 | |||
25 | diff --git a/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm b/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm | ||
26 | index b572312..2255c51 100644 | ||
27 | --- a/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm | ||
28 | +++ b/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Base.pm | ||
29 | @@ -40,11 +40,13 @@ sub new { | ||
30 | $self->{config}{$k} = $v unless exists $self->{config}{$k}; | ||
31 | } | ||
32 | $self->{config}{cc} = $ENV{CC} if defined $ENV{CC}; | ||
33 | - $self->{config}{ccflags} = $ENV{CFLAGS} if defined $ENV{CFLAGS}; | ||
34 | + $self->{config}{ccflags} = join(" ", $self->{config}{ccflags}, $ENV{CFLAGS}) | ||
35 | + if defined $ENV{CFLAGS}; | ||
36 | $self->{config}{cxx} = $ENV{CXX} if defined $ENV{CXX}; | ||
37 | $self->{config}{cxxflags} = $ENV{CXXFLAGS} if defined $ENV{CXXFLAGS}; | ||
38 | $self->{config}{ld} = $ENV{LD} if defined $ENV{LD}; | ||
39 | - $self->{config}{ldflags} = $ENV{LDFLAGS} if defined $ENV{LDFLAGS}; | ||
40 | + $self->{config}{ldflags} = join(" ", $self->{config}{ldflags}, $ENV{LDFLAGS}) | ||
41 | + if defined $ENV{LDFLAGS}; | ||
42 | |||
43 | unless ( exists $self->{config}{cxx} ) { | ||
44 | my ($ccpath, $ccbase, $ccsfx ) = fileparse($self->{config}{cc}, qr/\.[^.]*/); | ||
45 | diff --git a/dist/ExtUtils-CBuilder/t/04-base.t b/dist/ExtUtils-CBuilder/t/04-base.t | ||
46 | index db0ef98..49819a1 100644 | ||
47 | --- a/dist/ExtUtils-CBuilder/t/04-base.t | ||
48 | +++ b/dist/ExtUtils-CBuilder/t/04-base.t | ||
49 | @@ -1,7 +1,7 @@ | ||
50 | #! perl -w | ||
51 | |||
52 | use strict; | ||
53 | -use Test::More tests => 50; | ||
54 | +use Test::More tests => 64; | ||
55 | use Config; | ||
56 | use Cwd; | ||
57 | use File::Path qw( mkpath ); | ||
58 | @@ -328,6 +328,29 @@ is_deeply( $mksymlists_args, | ||
59 | "_prepare_mksymlists_args(): got expected arguments for Mksymlists", | ||
60 | ); | ||
61 | |||
62 | +my %testvars = ( | ||
63 | + CFLAGS => 'ccflags', | ||
64 | + LDFLAGS => 'ldflags', | ||
65 | +); | ||
66 | + | ||
67 | +while (my ($VAR, $var) = each %testvars) { | ||
68 | + local $ENV{$VAR}; | ||
69 | + $base = ExtUtils::CBuilder::Base->new( quiet => 1 ); | ||
70 | + ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" ); | ||
71 | + isa_ok( $base, 'ExtUtils::CBuilder::Base' ); | ||
72 | + like($base->{config}{$var}, qr/\Q$Config{$var}/, | ||
73 | + "honours $var from Config.pm"); | ||
74 | + | ||
75 | + $ENV{$VAR} = "-foo -bar"; | ||
76 | + $base = ExtUtils::CBuilder::Base->new( quiet => 1 ); | ||
77 | + ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" ); | ||
78 | + isa_ok( $base, 'ExtUtils::CBuilder::Base' ); | ||
79 | + like($base->{config}{$var}, qr/\Q$ENV{$VAR}/, | ||
80 | + "honours $VAR from the environment"); | ||
81 | + like($base->{config}{$var}, qr/\Q$Config{$var}/, | ||
82 | + "doesn't override $var from Config.pm with $VAR from the environment"); | ||
83 | +} | ||
84 | + | ||
85 | ##### | ||
86 | |||
87 | for ($source_file, $object_file, $lib_file) { | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/h2ph-multiarch.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/h2ph-multiarch.diff deleted file mode 100644 index 3b6b4a078c..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/h2ph-multiarch.diff +++ /dev/null | |||
@@ -1,70 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From 37969e249dfc593ebabfcb682893b6c69dc6b313 Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | ||
4 | Date: Wed, 18 May 2011 21:44:06 -0700 | ||
5 | Subject: Make h2ph correctly search gcc include directories | ||
6 | |||
7 | Bug: http://rt.perl.org/rt3/Public/Bug/Display.html?id=90122 | ||
8 | Bug-Debian: http://bugs.debian.org/625808 | ||
9 | Origin: upstream, http://perl5.git.perl.org/perl.git/commit/e7ec705d9b91d35fa99dc50d0a232b6372160a77 | ||
10 | |||
11 | System header conversion with "h2ph -a" is currently broken on Ubuntu | ||
12 | Natty and Oneiric (unless the gcc-multilib package is installed for | ||
13 | backward compatibility), resulting in things like | ||
14 | |||
15 | # perl -e 'require "syscall.ph"' | ||
16 | Can't locate asm/unistd.ph in @INC [...] | ||
17 | |||
18 | This happens because Ubuntu has switched to a 'multiarch' setup, see | ||
19 | <https://wiki.ubuntu.com/MultiarchSpec> for details. | ||
20 | |||
21 | The asm subdirectory isn't in $Config{usrinc} anymore: /usr/include/asm | ||
22 | is now /usr/include/x86_64-linux-gnu/asm. (The third component of the | ||
23 | new path varies with the actual architecture.) | ||
24 | |||
25 | gcc --print-search-dirs doesn't really tell anything about where gcc | ||
26 | looks for the include directories, it was just used to find the gcc | ||
27 | internal directory prefix. | ||
28 | |||
29 | Parse the output of "gcc -v -E" instead, and append $Config{usrinc} | ||
30 | for safety. Duplicates shouldn't matter. | ||
31 | |||
32 | The h2ph "-a" switch isn't currently tested automatically, and that | ||
33 | seems nontrivial to do portably. Manual testing was done with | ||
34 | |||
35 | # mkdir ttt | ||
36 | # ./perl -Ilib ./utils/h2ph -a -d $(pwd)/ttt syscall.h | ||
37 | |||
38 | The gcc invocation has been tested to work with gcc 4.6, 4.1, and 3.3. | ||
39 | |||
40 | http://bugs.debian.org/625808 | ||
41 | https://bugs.launchpad.net/bugs/777903 | ||
42 | |||
43 | Patch-Name: fixes/h2ph-multiarch.diff | ||
44 | --- | ||
45 | utils/h2ph.PL | 12 ++---------- | ||
46 | 1 files changed, 2 insertions(+), 10 deletions(-) | ||
47 | |||
48 | diff --git a/utils/h2ph.PL b/utils/h2ph.PL | ||
49 | index 87f3c7d..4545d6d 100644 | ||
50 | --- a/utils/h2ph.PL | ||
51 | +++ b/utils/h2ph.PL | ||
52 | @@ -761,16 +761,8 @@ sub queue_includes_from | ||
53 | # non-GCC?) C compilers, but gcc uses additional include directories. | ||
54 | sub inc_dirs | ||
55 | { | ||
56 | - my $from_gcc = `LC_ALL=C $Config{cc} -v 2>&1`; | ||
57 | - if( !( $from_gcc =~ s:^Reading specs from (.*?)/specs\b.*:$1/include:s ) ) | ||
58 | - { # gcc-4+ : | ||
59 | - $from_gcc = `LC_ALL=C $Config{cc} -print-search-dirs 2>&1`; | ||
60 | - if ( !($from_gcc =~ s/^install:\s*([^\s]+[^\s\/])([\s\/]*).*$/$1\/include/s) ) | ||
61 | - { | ||
62 | - $from_gcc = ''; | ||
63 | - }; | ||
64 | - }; | ||
65 | - length($from_gcc) ? ($from_gcc, $from_gcc . "-fixed", $Config{usrinc}) : ($Config{usrinc}); | ||
66 | + my $from_gcc = `LC_ALL=C $Config{cc} -v -E - < /dev/null 2>&1 | awk '/^#include/, /^End of search list/' | grep '^ '`; | ||
67 | + length($from_gcc) ? (split(' ', $from_gcc), $Config{usrinc}) : ($Config{usrinc}); | ||
68 | } | ||
69 | |||
70 | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/index-tainting.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/index-tainting.diff deleted file mode 100644 index ee00ca3cdf..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/index-tainting.diff +++ /dev/null | |||
@@ -1,74 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From e25298a339dd6679f1b080f0125ac1b237b87950 Mon Sep 17 00:00:00 2001 | ||
3 | From: David Mitchell <davem@iabyn.com> | ||
4 | Date: Tue, 28 Jun 2011 17:04:40 +0100 | ||
5 | Subject: RT 64804: tainting with index() of a constant | ||
6 | |||
7 | Bug: http://rt.perl.org/rt3/Public/Bug/Display.html?id=64804 | ||
8 | Bug-Debian: http://bugs.debian.org/291450 | ||
9 | Origin: upstream, http://perl5.git.perl.org/perl.git/commit/3b36395d31cf0a2f3a017505cd0ea857a7acb5d1 | ||
10 | |||
11 | At compile time, ck_index with a tainted constant set PL_tainted, | ||
12 | which remained on during the rest of compilation, tainting all other | ||
13 | constants. | ||
14 | |||
15 | Fix this by saving and restoring PL_tainted across the call to | ||
16 | fbm_compile, which is what sets PL_tainted. | ||
17 | |||
18 | Patch-Name: fixes/index-tainting.diff | ||
19 | --- | ||
20 | op.c | 5 ++++- | ||
21 | t/op/taint.t | 16 +++++++++++++++- | ||
22 | 2 files changed, 19 insertions(+), 2 deletions(-) | ||
23 | |||
24 | diff --git a/op.c b/op.c | ||
25 | index e21b9a4..973df13 100644 | ||
26 | --- a/op.c | ||
27 | +++ b/op.c | ||
28 | @@ -7780,8 +7780,11 @@ Perl_ck_index(pTHX_ OP *o) | ||
29 | OP *kid = cLISTOPo->op_first->op_sibling; /* get past pushmark */ | ||
30 | if (kid) | ||
31 | kid = kid->op_sibling; /* get past "big" */ | ||
32 | - if (kid && kid->op_type == OP_CONST) | ||
33 | + if (kid && kid->op_type == OP_CONST) { | ||
34 | + const bool save_taint = PL_tainted; | ||
35 | fbm_compile(((SVOP*)kid)->op_sv, 0); | ||
36 | + PL_tainted = save_taint; | ||
37 | + } | ||
38 | } | ||
39 | return ck_fun(o); | ||
40 | } | ||
41 | diff --git a/t/op/taint.t b/t/op/taint.t | ||
42 | index 9df6fee..a300b9b 100644 | ||
43 | --- a/t/op/taint.t | ||
44 | +++ b/t/op/taint.t | ||
45 | @@ -17,7 +17,7 @@ BEGIN { | ||
46 | use strict; | ||
47 | use Config; | ||
48 | |||
49 | -plan tests => 774; | ||
50 | +plan tests => 778; | ||
51 | |||
52 | $| = 1; | ||
53 | |||
54 | @@ -2144,6 +2144,20 @@ end | ||
55 | is_tainted $dest, "ucfirst(tainted) taints its return value"; | ||
56 | } | ||
57 | |||
58 | + | ||
59 | +# tainted constants and index() | ||
60 | +# RT 64804; http://bugs.debian.org/291450 | ||
61 | +{ | ||
62 | + ok(tainted $old_env_path, "initial taintedness"); | ||
63 | + BEGIN { no strict 'refs'; my $v = $old_env_path; *{"::C"} = sub () { $v }; } | ||
64 | + ok(tainted C, "constant is tainted properly"); | ||
65 | + ok(!tainted "", "tainting not broken yet"); | ||
66 | + index(undef, C); | ||
67 | + ok(!tainted "", "tainting still works after index() of the constant"); | ||
68 | +} | ||
69 | + | ||
70 | + | ||
71 | + | ||
72 | # This may bomb out with the alarm signal so keep it last | ||
73 | SKIP: { | ||
74 | skip "No alarm()" unless $Config{d_alarm}; | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/module-build-home-directory.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/module-build-home-directory.diff deleted file mode 100644 index 998a6a3d81..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/module-build-home-directory.diff +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From 9266292f705f2a3b6e5b97fa50e5f2be31371d5c Mon Sep 17 00:00:00 2001 | ||
3 | From: Dominic Hargreaves <dom@earth.li> | ||
4 | Date: Mon, 2 May 2011 10:35:04 +0100 | ||
5 | Subject: Fix failing tilde test when run under a UID without a passwd entry | ||
6 | |||
7 | Bug: https://rt.cpan.org/Public/Bug/Display.html?id=67893 | ||
8 | Bug-Debian: http://bugs.debian.org/624850 | ||
9 | |||
10 | Patch-Name: fixes/module-build-home-directory.diff | ||
11 | --- | ||
12 | cpan/Module-Build/t/tilde.t | 6 ++++-- | ||
13 | 1 files changed, 4 insertions(+), 2 deletions(-) | ||
14 | |||
15 | diff --git a/cpan/Module-Build/t/tilde.t b/cpan/Module-Build/t/tilde.t | ||
16 | index fac821b..04f0210 100644 | ||
17 | --- a/cpan/Module-Build/t/tilde.t | ||
18 | +++ b/cpan/Module-Build/t/tilde.t | ||
19 | @@ -46,7 +46,8 @@ SKIP: { | ||
20 | |||
21 | unless (defined $home) { | ||
22 | my @info = eval { getpwuid $> }; | ||
23 | - skip "No home directory for tilde-expansion tests", 15 if $@; | ||
24 | + skip "No home directory for tilde-expansion tests", 15 if $@ | ||
25 | + or !defined $info[7]; | ||
26 | $home = $info[7]; | ||
27 | } | ||
28 | |||
29 | @@ -95,7 +96,8 @@ SKIP: { | ||
30 | # Again, with named users | ||
31 | SKIP: { | ||
32 | my @info = eval { getpwuid $> }; | ||
33 | - skip "No home directory for tilde-expansion tests", 1 if $@; | ||
34 | + skip "No home directory for tilde-expansion tests", 1 if $@ | ||
35 | + or !defined $info[7] or !defined $info[0]; | ||
36 | my ($me, $home) = @info[0,7]; | ||
37 | |||
38 | my $expected = "$home/fooxzy"; | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/pod_fixes.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/pod_fixes.diff deleted file mode 100644 index 58e770bc76..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/pod_fixes.diff +++ /dev/null | |||
@@ -1,146 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From c6b1fdd18dab0236458502564e54c180bb0ce341 Mon Sep 17 00:00:00 2001 | ||
3 | From: Keith Thompson <kst@mib.org> | ||
4 | Date: Fri, 29 Jul 2011 17:17:00 -0700 | ||
5 | Subject: Fix typos in several pod/perl*.pod files | ||
6 | |||
7 | Bug-Debian: http://bugs.debian.org/637816 | ||
8 | Origin: http://perl5.git.perl.org/perl.git/commit/7698aede74509727f7bca31c58fc7a53b182315d | ||
9 | Patch-Name: fixes/pod_fixes.diff | ||
10 | --- | ||
11 | pod/perlfunc.pod | 8 ++++---- | ||
12 | pod/perlglossary.pod | 10 +++++----- | ||
13 | pod/perlmod.pod | 4 ++-- | ||
14 | pod/perlretut.pod | 6 +++--- | ||
15 | 4 files changed, 14 insertions(+), 14 deletions(-) | ||
16 | |||
17 | diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod | ||
18 | index 2ee3637..719a740 100644 | ||
19 | --- a/pod/perlfunc.pod | ||
20 | +++ b/pod/perlfunc.pod | ||
21 | @@ -3918,7 +3918,7 @@ count. A numeric repeat count may optionally be enclosed in brackets, as | ||
22 | in C<pack("C[80]", @arr)>. The repeat count gobbles that many values from | ||
23 | the LIST when used with all format types other than C<a>, C<A>, C<Z>, C<b>, | ||
24 | C<B>, C<h>, C<H>, C<@>, C<.>, C<x>, C<X>, and C<P>, where it means | ||
25 | -something else, dscribed below. Supplying a C<*> for the repeat count | ||
26 | +something else, described below. Supplying a C<*> for the repeat count | ||
27 | instead of a number means to use however many items are left, except for: | ||
28 | |||
29 | =over | ||
30 | @@ -5870,7 +5870,7 @@ sometimes saying the opposite, for example) the results are not | ||
31 | well-defined. | ||
32 | |||
33 | Because C<< <=> >> returns C<undef> when either operand is C<NaN> | ||
34 | -(not-a-number), and laso because C<sort> raises an exception unless the | ||
35 | +(not-a-number), and also because C<sort> raises an exception unless the | ||
36 | result of a comparison is defined, be careful when sorting with a | ||
37 | comparison function like C<< $a <=> $b >> any lists that might contain a | ||
38 | C<NaN>. The following example takes advantage that C<NaN != NaN> to | ||
39 | @@ -5958,7 +5958,7 @@ specified. | ||
40 | |||
41 | A pattern matching the empty string (not to be confused with | ||
42 | an empty pattern C<//>, which is just one member of the set of patterns | ||
43 | -matching the epmty string), splits EXPR into individual | ||
44 | +matching the empty string), splits EXPR into individual | ||
45 | characters. For example: | ||
46 | |||
47 | print join(':', split(/ */, 'hi there')), "\n"; | ||
48 | @@ -6222,7 +6222,7 @@ For example: | ||
49 | printf '<%.1e>', 10; # prints "<1.0e+01>" | ||
50 | |||
51 | For "g" and "G", this specifies the maximum number of digits to show, | ||
52 | -including thoe prior to the decimal point and those after it; for | ||
53 | +including those prior to the decimal point and those after it; for | ||
54 | example: | ||
55 | |||
56 | # These examples are subject to system-specific variation. | ||
57 | diff --git a/pod/perlglossary.pod b/pod/perlglossary.pod | ||
58 | index 639ce33..191371c 100644 | ||
59 | --- a/pod/perlglossary.pod | ||
60 | +++ b/pod/perlglossary.pod | ||
61 | @@ -507,7 +507,7 @@ the class (its L<objects|/object>). See also L</inheritance>. | ||
62 | |||
63 | =item class method | ||
64 | |||
65 | -A L</method> whose L</invocand> is a L</package> name, not an | ||
66 | +A L</method> whose L</invocant> is a L</package> name, not an | ||
67 | L</object> reference. A method associated with the class as a whole. | ||
68 | |||
69 | =item client | ||
70 | @@ -1470,7 +1470,7 @@ Perl, C<print STDOUT "$foo\n";> can be understood as "verb | ||
71 | indirect-object object" where L</STDOUT> is the recipient of the | ||
72 | L<print|perlfunc/print> action, and C<"$foo"> is the object being | ||
73 | printed. Similarly, when invoking a L</method>, you might place the | ||
74 | -invocand between the method and its arguments: | ||
75 | +invocant between the method and its arguments: | ||
76 | |||
77 | $gollum = new Pathetic::Creature "Smeagol"; | ||
78 | give $gollum "Fisssssh!"; | ||
79 | @@ -1548,11 +1548,11 @@ of compiler that takes a program and turns it into a more executable | ||
80 | form (L<syntax trees|/syntax tree>) within the I<perl> process itself, | ||
81 | which the Perl L</run time> system then interprets. | ||
82 | |||
83 | -=item invocand | ||
84 | +=item invocant | ||
85 | |||
86 | The agent on whose behalf a L</method> is invoked. In a L</class> | ||
87 | -method, the invocand is a package name. In an L</instance> method, | ||
88 | -the invocand is an object reference. | ||
89 | +method, the invocant is a package name. In an L</instance> method, | ||
90 | +the invocant is an object reference. | ||
91 | |||
92 | =item invocation | ||
93 | |||
94 | diff --git a/pod/perlmod.pod b/pod/perlmod.pod | ||
95 | index 5266f19..17de73e 100644 | ||
96 | --- a/pod/perlmod.pod | ||
97 | +++ b/pod/perlmod.pod | ||
98 | @@ -571,7 +571,7 @@ like for example handle the cloning of non-Perl data, if necessary. | ||
99 | C<CLONE> will be called once as a class method for every package that has it | ||
100 | defined (or inherits it). It will be called in the context of the new thread, | ||
101 | so all modifications are made in the new area. Currently CLONE is called with | ||
102 | -no parameters other than the invocand package name, but code should not assume | ||
103 | +no parameters other than the invocant package name, but code should not assume | ||
104 | that this will remain unchanged, as it is likely that in future extra parameters | ||
105 | will be passed in to give more information about the state of cloning. | ||
106 | |||
107 | @@ -593,7 +593,7 @@ to make use of the objects, then a more sophisticated approach is | ||
108 | needed. | ||
109 | |||
110 | Like C<CLONE>, C<CLONE_SKIP> is currently called with no parameters other | ||
111 | -than the invocand package name, although that may change. Similarly, to | ||
112 | +than the invocant package name, although that may change. Similarly, to | ||
113 | allow for future expansion, the return value should be a single C<0> or | ||
114 | C<1> value. | ||
115 | |||
116 | diff --git a/pod/perlretut.pod b/pod/perlretut.pod | ||
117 | index ea80594..1c65f5b 100644 | ||
118 | --- a/pod/perlretut.pod | ||
119 | +++ b/pod/perlretut.pod | ||
120 | @@ -781,7 +781,7 @@ so may lead to surprising and unsatisfactory results. | ||
121 | =head2 Relative backreferences | ||
122 | |||
123 | Counting the opening parentheses to get the correct number for a | ||
124 | -backreference is errorprone as soon as there is more than one | ||
125 | +backreference is error-prone as soon as there is more than one | ||
126 | capturing group. A more convenient technique became available | ||
127 | with Perl 5.10: relative backreferences. To refer to the immediately | ||
128 | preceding capture group one now may write C<\g{-1}>, the next but | ||
129 | @@ -1537,7 +1537,7 @@ the regexp in the I<last successful match> is used instead. So we have | ||
130 | |||
131 | =head3 Global matching | ||
132 | |||
133 | -The final two modifiers we will disccuss here, | ||
134 | +The final two modifiers we will discuss here, | ||
135 | C<//g> and C<//c>, concern multiple matches. | ||
136 | The modifier C<//g> stands for global matching and allows the | ||
137 | matching operator to match within a string as many times as possible. | ||
138 | @@ -1870,7 +1870,7 @@ substituted. | ||
139 | |||
140 | C<\Q>, C<\L>, C<\l>, C<\U>, C<\u> and C<\E> are actually part of | ||
141 | double-quotish syntax, and not part of regexp syntax proper. They will | ||
142 | -work if they appear in a regular expression embeddded directly in a | ||
143 | +work if they appear in a regular expression embedded directly in a | ||
144 | program, but not when contained in a string that is interpolated in a | ||
145 | pattern. | ||
146 | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/sys-syslog-socket-timeout-kfreebsd.patch b/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/sys-syslog-socket-timeout-kfreebsd.patch deleted file mode 100644 index 632d426baa..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/sys-syslog-socket-timeout-kfreebsd.patch +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From 9ba88d73444c22788b7c2a212e15dbfe3da2a1af Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | ||
4 | Date: Wed, 3 Aug 2011 22:36:24 +0300 | ||
5 | Subject: Use a socket timeout on GNU/kFreeBSD to catch ICMP port unreachable | ||
6 | messages | ||
7 | |||
8 | Bug: http://rt.cpan.org/Ticket/Display.html?id=69997 | ||
9 | Bug-Debian: http://bugs.debian.org/627821 | ||
10 | |||
11 | Without this, openlog() on a UDP socket may succeed on the FreeBSD kernel | ||
12 | even when there's no listener, causing test failures. | ||
13 | |||
14 | It seems probable that all FreeBSD-based systems suffer from the | ||
15 | same issue, but that's for upstream to decide. | ||
16 | |||
17 | Patch-Name: fixes/sys-syslog-socket-timeout-kfreebsd.patch | ||
18 | --- | ||
19 | cpan/Sys-Syslog/Syslog.pm | 5 ++++- | ||
20 | 1 files changed, 4 insertions(+), 1 deletions(-) | ||
21 | |||
22 | diff --git a/cpan/Sys-Syslog/Syslog.pm b/cpan/Sys-Syslog/Syslog.pm | ||
23 | index 002e6e4..b445c66 100644 | ||
24 | --- a/cpan/Sys-Syslog/Syslog.pm | ||
25 | +++ b/cpan/Sys-Syslog/Syslog.pm | ||
26 | @@ -138,7 +138,10 @@ my @fallbackMethods = (); | ||
27 | # happy, the timeout is now zero by default on all systems | ||
28 | # except on OSX where it is set to 250 msec, and can be set | ||
29 | # with the infamous setlogsock() function. | ||
30 | -$sock_timeout = 0.25 if $^O =~ /darwin/; | ||
31 | +# | ||
32 | +# Debian change: include Debian GNU/kFreeBSD, lower to 1ms | ||
33 | +# see [rt.cpan.org #69997] | ||
34 | +$sock_timeout = 0.001 if $^O =~ /darwin|gnukfreebsd/; | ||
35 | |||
36 | # coderef for a nicer handling of errors | ||
37 | my $err_sub = $options{nofatal} ? \&warnings::warnif : \&croak; | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/m68k_thread_stress.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/m68k_thread_stress.diff deleted file mode 100644 index 1c3b6b55f1..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/m68k_thread_stress.diff +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From 55a718425dc4612ac01850ef786f75f072b20b9e Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | ||
4 | Date: Mon, 8 Sep 2008 20:48:14 +0300 | ||
5 | Subject: Disable some threads tests on m68k for now due to missing TLS. | ||
6 | |||
7 | Bug-Debian: http://bugs.debian.org/495826 | ||
8 | Bug-Debian: http://bugs.debian.org/517938 | ||
9 | |||
10 | Patch-Name: debian/m68k_thread_stress.diff | ||
11 | --- | ||
12 | dist/threads-shared/t/stress.t | 4 ++++ | ||
13 | dist/threads-shared/t/waithires.t | 6 ++++++ | ||
14 | 2 files changed, 10 insertions(+), 0 deletions(-) | ||
15 | |||
16 | diff --git a/dist/threads-shared/t/stress.t b/dist/threads-shared/t/stress.t | ||
17 | index 652a3e6..2f1b576 100644 | ||
18 | --- a/dist/threads-shared/t/stress.t | ||
19 | +++ b/dist/threads-shared/t/stress.t | ||
20 | @@ -11,6 +11,10 @@ BEGIN { | ||
21 | print("1..0 # SKIP Broken under HP-UX 10.20\n"); | ||
22 | exit(0); | ||
23 | } | ||
24 | + if ($^O eq 'linux' && $Config{archname} =~ /^m68k/) { | ||
25 | + print("1..0 # Skip: no TLS on m68k yet <http://bugs.debian.org/495826>\n"); | ||
26 | + exit(0); | ||
27 | + } | ||
28 | } | ||
29 | |||
30 | use ExtUtils::testlib; | ||
31 | diff --git a/dist/threads-shared/t/waithires.t b/dist/threads-shared/t/waithires.t | ||
32 | index 3c3e852..349c5b4 100644 | ||
33 | --- a/dist/threads-shared/t/waithires.t | ||
34 | +++ b/dist/threads-shared/t/waithires.t | ||
35 | @@ -16,6 +16,12 @@ BEGIN { | ||
36 | if (! eval 'use Time::HiRes "time"; 1') { | ||
37 | Test::skip_all('Time::HiRes not available'); | ||
38 | } | ||
39 | + | ||
40 | + if ($^O eq 'linux' && $Config{archname} =~ /^m68k/) { | ||
41 | + print("1..0 # Skip: no TLS on m68k yet <http://bugs.debian.org/495826>\n"); | ||
42 | + exit(0); | ||
43 | + } | ||
44 | + | ||
45 | } | ||
46 | |||
47 | use ExtUtils::testlib; | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/patchlevel.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/patchlevel.diff deleted file mode 100644 index 9c25eb710d..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/patchlevel.diff +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From cf928101697efa4a46ada500c2f449caeb854fd4 Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | ||
4 | Date: Sun, 15 May 2011 19:35:58 +0300 | ||
5 | Subject: List packaged patches in patchlevel.h | ||
6 | |||
7 | Origin: vendor | ||
8 | Bug-Debian: http://bugs.debian.org/567489 | ||
9 | |||
10 | The list of packaged patches is in patchlevel-debian.h, which is generated | ||
11 | from the debian/patches/ directory when building the package. | ||
12 | |||
13 | Patch-Name: debian/patchlevel.diff | ||
14 | --- | ||
15 | patchlevel.h | 3 +++ | ||
16 | 1 files changed, 3 insertions(+), 0 deletions(-) | ||
17 | |||
18 | diff --git a/patchlevel.h b/patchlevel.h | ||
19 | index 5dc2a53..1356595 100644 | ||
20 | --- a/patchlevel.h | ||
21 | +++ b/patchlevel.h | ||
22 | @@ -137,6 +137,9 @@ static const char * const local_patches[] = { | ||
23 | ,"uncommitted-changes" | ||
24 | #endif | ||
25 | PERL_GIT_UNPUSHED_COMMITS /* do not remove this line */ | ||
26 | +#ifdef DEBIAN | ||
27 | +#include "patchlevel-debian.h" | ||
28 | +#endif | ||
29 | ,NULL | ||
30 | }; | ||
31 | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/series b/meta/recipes-devtools/perl/perl-5.14.3/debian/series deleted file mode 100644 index 08adca5626..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/series +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | debian/arm_thread_stress_timeout.diff | ||
2 | debian/cpan_definstalldirs.diff | ||
3 | debian/db_file_ver.diff | ||
4 | debian/doc_info.diff | ||
5 | debian/enc2xs_inc.diff | ||
6 | debian/errno_ver.diff | ||
7 | debian/libperl_embed_doc.diff | ||
8 | fixes/respect_umask.diff | ||
9 | debian/writable_site_dirs.diff | ||
10 | debian/extutils_set_libperl_path.diff | ||
11 | debian/no_packlist_perllocal.diff | ||
12 | debian/prefix_changes.diff | ||
13 | debian/fakeroot.diff | ||
14 | debian/instmodsh_doc.diff | ||
15 | debian/ld_run_path.diff | ||
16 | debian/libnet_config_path.diff | ||
17 | debian/m68k_thread_stress.diff | ||
18 | debian/mod_paths.diff | ||
19 | debian/module_build_man_extensions.diff | ||
20 | debian/prune_libs.diff | ||
21 | fixes/net_smtp_docs.diff | ||
22 | debian/perlivp.diff | ||
23 | debian/disable-zlib-bundling.diff | ||
24 | debian/cpanplus_definstalldirs.diff | ||
25 | debian/cpanplus_config_path.diff | ||
26 | debian/deprecate-with-apt.diff | ||
27 | fixes/hurd-ccflags.diff | ||
28 | debian/squelch-locale-warnings.diff | ||
29 | debian/skip-upstream-git-tests.diff | ||
30 | fixes/extutils-cbuilder-cflags.diff | ||
31 | fixes/module-build-home-directory.diff | ||
32 | debian/patchlevel.diff | ||
33 | fixes/h2ph-multiarch.diff | ||
34 | fixes/index-tainting.diff | ||
35 | debian/skip-kfreebsd-crash.diff | ||
36 | fixes/document_makemaker_ccflags.diff | ||
37 | fixes/sys-syslog-socket-timeout-kfreebsd.patch | ||
38 | fixes/hurd-hints.diff | ||
39 | fixes/pod_fixes.diff | ||
40 | debian/find_html2text.diff | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/skip-upstream-git-tests.diff b/meta/recipes-devtools/perl/perl-5.14.3/debian/skip-upstream-git-tests.diff deleted file mode 100644 index 2c30536120..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/skip-upstream-git-tests.diff +++ /dev/null | |||
@@ -1,60 +0,0 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | ||
2 | From 2be2eed9148c38d3e982d3371f379ce77021aeb5 Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | ||
4 | Date: Fri, 22 Apr 2011 11:15:32 +0300 | ||
5 | Subject: Skip tests specific to the upstream Git repository | ||
6 | |||
7 | These tests fail if run from a different git repository than | ||
8 | upstream. This complicates things needlessly for downstream packagers. | ||
9 | |||
10 | Skip the tests altogether even if the .git directory exists. | ||
11 | |||
12 | Patch-Name: debian/skip-upstream-git-tests.diff | ||
13 | --- | ||
14 | t/porting/authors.t | 3 ++- | ||
15 | t/porting/cmp_version.t | 3 ++- | ||
16 | t/porting/manifest.t | 3 ++- | ||
17 | 3 files changed, 6 insertions(+), 3 deletions(-) | ||
18 | |||
19 | diff --git a/t/porting/authors.t b/t/porting/authors.t | ||
20 | index 28ca1ca..3c7f069 100644 | ||
21 | --- a/t/porting/authors.t | ||
22 | +++ b/t/porting/authors.t | ||
23 | @@ -9,7 +9,8 @@ BEGIN { | ||
24 | use strict; | ||
25 | use warnings; | ||
26 | |||
27 | -if (! -d '.git' ) { | ||
28 | +# Debian change: skip as we're probably in a different git repository | ||
29 | +if (1 || ! -d '.git' ) { | ||
30 | print "1..0 # SKIP: not being run from a git checkout\n"; | ||
31 | exit 0; | ||
32 | } | ||
33 | diff --git a/t/porting/cmp_version.t b/t/porting/cmp_version.t | ||
34 | index b3c677c..f89f2a7 100644 | ||
35 | --- a/t/porting/cmp_version.t | ||
36 | +++ b/t/porting/cmp_version.t | ||
37 | @@ -25,7 +25,8 @@ use File::Spec::Functions qw(rel2abs abs2rel catfile catdir curdir); | ||
38 | use Getopt::Std; | ||
39 | use Maintainers; | ||
40 | |||
41 | -if (! -d '.git' ) { | ||
42 | +# Debian change: skip as we're probably in a different git repository | ||
43 | +if (1 || ! -d '.git' ) { | ||
44 | print "1..0 # SKIP: not being run from a git checkout\n"; | ||
45 | exit 0; | ||
46 | } | ||
47 | diff --git a/t/porting/manifest.t b/t/porting/manifest.t | ||
48 | index 48dd3ac..b08126b 100644 | ||
49 | --- a/t/porting/manifest.t | ||
50 | +++ b/t/porting/manifest.t | ||
51 | @@ -59,7 +59,8 @@ SKIP: { | ||
52 | |||
53 | SKIP: { | ||
54 | chdir ".."; | ||
55 | - skip("not under git control", 3) unless -d '.git'; | ||
56 | + # Debian change: skip as we're probably in a different git repository | ||
57 | + skip("not under git control", 3) unless 0 && -d '.git'; | ||
58 | chomp(my @repo= grep { !/\.gitignore$/ } `git ls-files`); | ||
59 | skip("git ls-files didnt work",3) | ||
60 | if !@repo; | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/perl-build-in-t-dir.patch b/meta/recipes-devtools/perl/perl-5.14.3/perl-build-in-t-dir.patch deleted file mode 100644 index 16064ede92..0000000000 --- a/meta/recipes-devtools/perl/perl-5.14.3/perl-build-in-t-dir.patch +++ /dev/null | |||
@@ -1,42 +0,0 @@ | |||
1 | Upstream-Status:Pending | ||
2 | |||
3 | Perl cannot cross build in a path containing a directory that has the | ||
4 | name of "t". As an example, you can make the perl build fail with | ||
5 | "mkdir -p /tmp/build/t", go to the directory, unpack the sources, | ||
6 | configure and cross build. | ||
7 | |||
8 | You get an error like the following: | ||
9 | pod/buildtoc: no pods at pod/buildtoc line 305. | ||
10 | make[1]: *** [pod/perltoc.pod] Error 255 | ||
11 | |||
12 | The fix is to strip off the top directory that you are building in and | ||
13 | then execute all the same logic as before against the path relative to | ||
14 | the build directory. | ||
15 | |||
16 | Signed-off-by: Jason Wessel <jason.wessel@windriver.com> | ||
17 | --- | ||
18 | pod/buildtoc | 4 +++- | ||
19 | 1 file changed, 3 insertions(+), 1 deletion(-) | ||
20 | |||
21 | --- a/pod/buildtoc | ||
22 | +++ b/pod/buildtoc | ||
23 | @@ -274,8 +274,10 @@ if ($Build{toc}) { | ||
24 | find \&getpods => abs_from_top('lib/'); | ||
25 | |||
26 | sub getpods { | ||
27 | + my $Top = $FindBin::Bin; | ||
28 | if (/\.p(od|m)$/) { | ||
29 | my $file = $File::Find::name; | ||
30 | + $file =~ s!^$Top!!; | ||
31 | return if $file =~ qr!/lib/Pod/Functions.pm\z!; # Used only by pod itself | ||
32 | return if $file =~ m!(?:^|/)t/!; | ||
33 | return if $file =~ m!lib/Attribute/Handlers/demo/!; | ||
34 | @@ -283,7 +285,7 @@ if ($Build{toc}) { | ||
35 | return if $file =~ m!lib/Math/BigInt/t/!; | ||
36 | return if $file =~ m!/Devel/PPPort/[Hh]arness|lib/Devel/Harness!i; | ||
37 | return if $file =~ m!XS/(?:APItest|Typemap)!; | ||
38 | - my $pod = $file; | ||
39 | + my $pod = $file = $File::Find::name; | ||
40 | return if $pod =~ s/pm$/pod/ && -e $pod; | ||
41 | unless (open my $f, '<', $_) { | ||
42 | warn "$0: bogus <$file>: $!"; | ||
diff --git a/meta/recipes-devtools/perl/perl-5.20.0/0001-Makefile.SH-fix-do_install-failed.patch b/meta/recipes-devtools/perl/perl-5.20.0/0001-Makefile.SH-fix-do_install-failed.patch new file mode 100644 index 0000000000..b1787ce4df --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.20.0/0001-Makefile.SH-fix-do_install-failed.patch | |||
@@ -0,0 +1,47 @@ | |||
1 | From 2ed4b0c66fe7c7282922798eb3271b8f101359d1 Mon Sep 17 00:00:00 2001 | ||
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | ||
3 | Date: Thu, 19 Jun 2014 19:34:56 +0800 | ||
4 | Subject: [PATCH] Makefile.SH: fix do_install failed | ||
5 | |||
6 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
7 | --- | ||
8 | Makefile.SH | 16 +--------------- | ||
9 | 1 file changed, 1 insertion(+), 15 deletions(-) | ||
10 | |||
11 | diff --git a/Makefile.SH b/Makefile.SH | ||
12 | index f5d2d0f..e468c1b 100755 | ||
13 | --- a/Makefile.SH | ||
14 | +++ b/Makefile.SH | ||
15 | @@ -1074,8 +1074,7 @@ EOT | ||
16 | $spitshell >>$Makefile <<EOT | ||
17 | |||
18 | install_$name install-$name: \$(INSTALL_DEPENDENCE) installperl all installman | ||
19 | - \$(RUN_PERL) installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS) | ||
20 | - \$(RUN_PERL) installman --destdir=\$(DESTDIR) $flags | ||
21 | + ./hostperl -Ifake_config_library -Ilib -MConfig installperl --destdir=\$(DESTDIR) $flags \$(INSTALLFLAGS) \$(STRIPFLAGS) | ||
22 | EOT | ||
23 | fi | ||
24 | |||
25 | @@ -1104,19 +1103,6 @@ else | ||
26 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
27 | install.perl: $(INSTALL_DEPENDENCE) installperl | ||
28 | ./hostperl -Ifake_config_library -Ilib -MConfig installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS) | ||
29 | - | ||
30 | -# XXX Experimental. Hardwired values, but useful for testing. | ||
31 | -# Eventually Configure could ask for some of these values. | ||
32 | -install.html: all installhtml | ||
33 | - -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd .. | ||
34 | - $(RUN_PERL) installhtml \ | ||
35 | - --podroot=. --podpath=. --recurse \ | ||
36 | - --htmldir=$(privlib)/html \ | ||
37 | - --htmlroot=$(privlib)/html \ | ||
38 | - --splithead=pod/perlipc \ | ||
39 | - --splititem=pod/perlfunc \ | ||
40 | - --ignore=Porting/Maintainers.pm,Porting/pumpkin.pod,Porting/repository.pod \ | ||
41 | - --verbose | ||
42 | !NO!SUBS! | ||
43 | fi | ||
44 | |||
45 | -- | ||
46 | 1.8.1.2 | ||
47 | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/Configure-multilib.patch b/meta/recipes-devtools/perl/perl-5.20.0/Configure-multilib.patch index 9625b0b84e..9625b0b84e 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/Configure-multilib.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/Configure-multilib.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/MM_Unix.pm.patch b/meta/recipes-devtools/perl/perl-5.20.0/MM_Unix.pm.patch index eb92ccb678..eb92ccb678 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/MM_Unix.pm.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/MM_Unix.pm.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.20.0/Makefile.SH.patch b/meta/recipes-devtools/perl/perl-5.20.0/Makefile.SH.patch new file mode 100644 index 0000000000..689d394931 --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.20.0/Makefile.SH.patch | |||
@@ -0,0 +1,356 @@ | |||
1 | Upstream-Status:Inappropriate [embedded specific] | ||
2 | |||
3 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
4 | --- | ||
5 | Makefile.SH | 130 ++++++++++++++++++++++++++++++------------------------------ | ||
6 | 1 file changed, 66 insertions(+), 64 deletions(-) | ||
7 | |||
8 | diff --git a/Makefile.SH b/Makefile.SH | ||
9 | --- a/Makefile.SH | ||
10 | +++ b/Makefile.SH | ||
11 | @@ -39,10 +39,10 @@ case "$useshrplib" in | ||
12 | true) | ||
13 | # Prefix all runs of 'miniperl' and 'perl' with | ||
14 | # $ldlibpth so that ./perl finds *this* shared libperl. | ||
15 | - case "$LD_LIBRARY_PATH" in | ||
16 | - '') ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `" ;; | ||
17 | - *) ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `:` quote "$LD_LIBRARY_PATH" `" ;; | ||
18 | - esac | ||
19 | + #case "$LD_LIBRARY_PATH" in | ||
20 | + #'') ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `" ;; | ||
21 | + #*) ldlibpth="LD_LIBRARY_PATH=` quote "$pwd" `:` quote "$LD_LIBRARY_PATH" `" ;; | ||
22 | + #esac | ||
23 | |||
24 | pldlflags="$cccdlflags" | ||
25 | static_ldflags='' | ||
26 | @@ -122,10 +122,11 @@ true) | ||
27 | *) | ||
28 | eval "ldlibpthval=\"\$$ldlibpthname\"" | ||
29 | |||
30 | - case "$ldlibpthval" in | ||
31 | - '') ldlibpth="$ldlibpthname=` quote "$pwd" `" ;; | ||
32 | - *) ldlibpth="$ldlibpthname=` quote "$pwd" `:` quote "$ldlibpthval" `" ;; | ||
33 | - esac | ||
34 | +# We compile in the library path in OE from cross-compile, so lets not do this | ||
35 | +# case "$ldlibpthval" in | ||
36 | +# '') ldlibpth="$ldlibpthname=` quote "$pwd" `" ;; | ||
37 | +# *) ldlibpth="$ldlibpthname=` quote "$pwd" `:` quote "$ldlibpthval" `" ;; | ||
38 | +# esac | ||
39 | |||
40 | ;; | ||
41 | esac | ||
42 | @@ -141,18 +142,7 @@ true) | ||
43 | # INSTALL file, under "Building a shared perl library". | ||
44 | # If there is no pre-existing $libperl, we don't need | ||
45 | # to do anything further. | ||
46 | - if test -f $archlib/CORE/$libperl; then | ||
47 | - rm -f preload | ||
48 | - cat <<'EOT' > preload | ||
49 | -#! /bin/sh | ||
50 | -lib=$1 | ||
51 | -shift | ||
52 | -test -r $lib && export LD_PRELOAD="$lib $LD_PRELOAD" | ||
53 | -exec "$@" | ||
54 | -EOT | ||
55 | - chmod 755 preload | ||
56 | - ldlibpth="$ldlibpth `pwd`/preload `pwd`/$libperl" | ||
57 | - fi | ||
58 | + echo linux libraries overwritten by cross-compile patches | ||
59 | ;; | ||
60 | os390) test -f /bin/env && ldlibpth="/bin/env $ldlibpth" | ||
61 | ;; | ||
62 | @@ -565,9 +555,19 @@ splintfiles = $(c1) | ||
63 | @echo `$(CCCMDSRC)` -S $*.c | ||
64 | @`$(CCCMDSRC)` -S $*.c | ||
65 | |||
66 | -all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make | ||
67 | - @echo " "; | ||
68 | - @echo " Everything is up to date. Type '$(MAKE) test' to run test suite." | ||
69 | +#all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafiles) $(public) $(dynamic_ext) $(nonxs_ext) extras.make | ||
70 | +# @echo " "; | ||
71 | +# @echo " Everything is up to date. Type '$(MAKE) test' to run test suite." | ||
72 | + | ||
73 | +all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) miniperl $(unidatafiles) | ||
74 | + | ||
75 | +more: $(generated_pods) $(private) $(public) | ||
76 | + | ||
77 | +more2: $(dynamic_ext) | ||
78 | + | ||
79 | +more3: $(nonxs_ext) | ||
80 | + | ||
81 | +more4: extras.make | ||
82 | |||
83 | .PHONY: all translators utilities | ||
84 | |||
85 | @@ -575,7 +575,7 @@ all: $(FIRSTMAKEFILE) $(MINIPERL_EXE) $(generated_pods) $(private) $(unidatafile | ||
86 | # by make_patchnum.pl. | ||
87 | git_version.h: lib/Config_git.pl | ||
88 | |||
89 | -lib/Config_git.pl: $(MINIPERL_EXE) make_patchnum.pl | ||
90 | +lib/Config_git.pl: make_patchnum.pl | ||
91 | $(MINIPERL) make_patchnum.pl | ||
92 | |||
93 | # make sure that we recompile perl.c if the git version changes | ||
94 | @@ -588,8 +588,8 @@ perl$(OBJ_EXT): git_version.h | ||
95 | # loading, we need to build perl first. | ||
96 | case "$usedl$static_cwd" in | ||
97 | defineundef) | ||
98 | - util_deps='$(MINIPERL_EXE) $(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE' | ||
99 | - x2p_deps="\$(MINIPERL_EXE) \$(CONFIGPM) \$(dynamic_ext) x2p/$firstmakefile FORCE" | ||
100 | + util_deps='$(CONFIGPM) lib/auto/Cwd/Cwd$(DLSUFFIX) FORCE' | ||
101 | + x2p_deps="\$(CONFIGPM) \$(dynamic_ext) x2p/$firstmakefile FORCE" | ||
102 | ;; | ||
103 | definedefine) | ||
104 | util_deps='$(PERL_EXE) $(CONFIGPM) FORCE' | ||
105 | @@ -613,7 +613,7 @@ x2p/s2p: $x2p_deps | ||
106 | x2p/find2perl: $x2p_deps | ||
107 | cd x2p; \$(LDLIBPTH) \$(MAKE) find2perl | ||
108 | |||
109 | -utils/Makefile: \$(MINIPERL_EXE) \$(CONFIGPM) utils/Makefile.PL | ||
110 | +utils/Makefile: \$(CONFIGPM) utils/Makefile.PL | ||
111 | \$(MINIPERL) -Ilib utils/Makefile.PL | ||
112 | |||
113 | utilities: utils/Makefile $util_deps | ||
114 | @@ -708,7 +708,7 @@ esac | ||
115 | |||
116 | |||
117 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
118 | -perlmain.c: $(MINIPERL_EXE) ext/ExtUtils-Miniperl/pm_to_blib | ||
119 | +perlmain.c: ext/ExtUtils-Miniperl/lib/ExtUtils/Miniperl.pm | ||
120 | $(MINIPERL) -Ilib -MExtUtils::Miniperl -e 'writemain(\"perlmain.c", @ARGV)' DynaLoader $(static_ext) | ||
121 | |||
122 | # The file ext.libs is a list of libraries that must be linked in | ||
123 | @@ -769,7 +769,7 @@ PERLEXPORT = perl.exp | ||
124 | ;; | ||
125 | esac | ||
126 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
127 | -perl.exp: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) | ||
128 | +perl.exp: makedef.pl $(CONFIGPM) $(SYM) $(SYMH) | ||
129 | ./$(MINIPERLEXP) makedef.pl --sort-fold PLATFORM=aix CC_FLAGS="$(OPTIMIZE)" > perl.exp | ||
130 | |||
131 | !NO!SUBS! | ||
132 | @@ -778,7 +778,7 @@ os2) | ||
133 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
134 | MINIPERLEXP = miniperl | ||
135 | |||
136 | -perl5.def: $(MINIPERLEXP) makedef.pl $(CONFIGPM) $(SYM) $(SYMH) miniperl.map | ||
137 | +perl5.def: makedef.pl $(CONFIGPM) $(SYM) $(SYMH) miniperl.map | ||
138 | ./$(MINIPERLEXP) makedef.pl PLATFORM=os2 -DPERL_DLL=$(PERL_DLL) CC_FLAGS="$(OPTIMIZE)" > perl5.def | ||
139 | |||
140 | !NO!SUBS! | ||
141 | @@ -838,7 +838,7 @@ $(LIBPERL): $& $(obj) $(DYNALOADER) $(LIBPERLEXPORT) | ||
142 | true) | ||
143 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
144 | rm -f $@ | ||
145 | - $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs) | ||
146 | + $(LD) -o $@ $(SHRPLDFLAGS) $(obj) $(DYNALOADER) $(libs) -Wl,-soname,libperl.so.5 | ||
147 | !NO!SUBS! | ||
148 | case "$osname" in | ||
149 | aix) | ||
150 | @@ -886,7 +886,9 @@ $(MINIPERL_EXE): lib/buildcustomize.pl | ||
151 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
152 | lib/buildcustomize.pl: $& $(mini_obj) | ||
153 | $(CC) -o $(MINIPERL_EXE) $(CLDFLAGS) $(mini_obj) $(libs) | ||
154 | - $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1' | ||
155 | + mv -f miniperl miniperl-target | ||
156 | + ln -s hostperl miniperl | ||
157 | + #$(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1' | ||
158 | $(MINIPERL) -f write_buildcustomize.pl | ||
159 | !NO!SUBS! | ||
160 | ;; | ||
161 | @@ -894,7 +896,9 @@ lib/buildcustomize.pl: $& $(mini_obj) | ||
162 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
163 | lib/buildcustomize.pl: $& $(mini_obj) write ldcustomize.pl | ||
164 | $(CC) -o $(MINIPERL_EXE) $(mini_obj libs) | ||
165 | - $(LDLIBPTH) ./miniperl$(HOST _EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1' | ||
166 | + mv -f miniperl miniperl-target | ||
167 | + ln -s hostperl miniperl | ||
168 | + #$(LDLIBPTH) ./miniperl$(HOST _EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1' | ||
169 | $(MINIPERL) -f write_buildcustomize.pl | ||
170 | !NO!SUBS! | ||
171 | ;; | ||
172 | @@ -916,7 +920,9 @@ lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl | ||
173 | -@rm -f miniperl.xok | ||
174 | $(CC) $(CLDFLAGS) $(NAMESPACEFLAGS) -o $(MINIPERL_EXE) \ | ||
175 | $(mini_obj) $(libs) | ||
176 | - $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1' | ||
177 | + mv -f miniperl miniperl-target | ||
178 | + ln -s hostperl miniperl | ||
179 | + #$(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1' | ||
180 | $(MINIPERL) -f write_buildcustomize.pl | ||
181 | !NO!SUBS! | ||
182 | ;; | ||
183 | @@ -927,7 +933,9 @@ lib/buildcustomize.pl: \$& \$(mini_obj) write_buildcustomize.pl | ||
184 | -@rm -f miniperl.xok | ||
185 | -@rm \$(MINIPERL_EXE) | ||
186 | \$(LNS) \$(HOST_PERL) \$(MINIPERL_EXE) | ||
187 | - \$(LDLIBPTH) ./miniperl\$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1' | ||
188 | + mv -f miniperl miniperl-target | ||
189 | + ln -s hostperl miniperl | ||
190 | + #\$(LDLIBPTH) ./miniperl\$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1' | ||
191 | \$(MINIPERL) -f write_buildcustomize.pl 'osname' "$osname" | ||
192 | !GROK!THIS! | ||
193 | else | ||
194 | @@ -936,7 +944,9 @@ lib/buildcustomize.pl: $& $(mini_obj) write_buildcustomize.pl | ||
195 | -@rm -f miniperl.xok | ||
196 | $(CC) $(CLDFLAGS) -o $(MINIPERL_EXE) \ | ||
197 | $(mini_obj) $(libs) | ||
198 | - $(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1' | ||
199 | + mv -f miniperl miniperl-target | ||
200 | + ln -s hostperl miniperl | ||
201 | + #$(LDLIBPTH) ./miniperl$(HOST_EXE_EXT) -w -Ilib -Idist/Exporter/lib -MExporter -e '<?>' || sh -c 'echo >&2 Failed to build miniperl. Please run make minitest; exit 1' | ||
202 | $(MINIPERL) -f write_buildcustomize.pl | ||
203 | !NO!SUBS! | ||
204 | fi | ||
205 | @@ -967,7 +977,7 @@ case "${osname}" in | ||
206 | catamount) | ||
207 | $spitshell >>$Makefile <<!GROK!THIS! | ||
208 | .PHONY: makeppport | ||
209 | -makeppport: \$(MINIPERL_EXE) \$(CONFIGPM) | ||
210 | +makeppport: \$(CONFIGPM) | ||
211 | -@for f in Makefile.PL PPPort_pm.PL PPPort_xs.PL ppport_h.PL; do \ | ||
212 | (cd ext/Devel-PPPort && `pwd`/run.sh ../../$(MINIPERL_EXE) -I../../lib \$\$f); \ | ||
213 | done | ||
214 | @@ -977,7 +987,7 @@ makeppport: \$(MINIPERL_EXE) \$(CONFIGPM) | ||
215 | *) | ||
216 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
217 | .PHONY: makeppport | ||
218 | -makeppport: $(MINIPERL_EXE) $(CONFIGPM) $(nonxs_ext) | ||
219 | +makeppport: $(CONFIGPM) $(nonxs_ext) | ||
220 | $(MINIPERL) mkppport | ||
221 | |||
222 | !NO!SUBS! | ||
223 | @@ -987,16 +997,16 @@ esac | ||
224 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
225 | |||
226 | .PHONY: preplibrary | ||
227 | -preplibrary: $(MINIPERL_EXE) $(CONFIGPM) $(PREPLIBRARY_LIBPERL) | ||
228 | +preplibrary: $(CONFIGPM) $(PREPLIBRARY_LIBPERL) | ||
229 | |||
230 | $(CONFIGPM_FROM_CONFIG_SH): $(CONFIGPOD) | ||
231 | |||
232 | -$(CONFIGPOD): config.sh $(MINIPERL_EXE) configpm Porting/Glossary lib/Config_git.pl | ||
233 | +$(CONFIGPOD): config.sh configpm Porting/Glossary lib/Config_git.pl | ||
234 | $(MINIPERL) configpm | ||
235 | |||
236 | unidatafiles $(unidatafiles) pod/perluniprops.pod: uni.data | ||
237 | |||
238 | -uni.data: $(MINIPERL_EXE) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext) | ||
239 | +uni.data: $(CONFIGPM) lib/unicore/mktables $(nonxs_ext) | ||
240 | $(MINIPERL) lib/unicore/mktables -C lib/unicore -P pod -maketest -makelist -p | ||
241 | # Commented out so always runs, mktables looks at far more files than we | ||
242 | # can in this makefile to decide if needs to run or not | ||
243 | @@ -1005,22 +1015,22 @@ uni.data: $(MINIPERL_EXE) $(CONFIGPM) lib/unicore/mktables $(nonxs_ext) | ||
244 | # $(PERL_EXE) and ext because pod_lib.pl needs Digest::MD5 | ||
245 | # But also this ensures that all extensions are built before we try to scan | ||
246 | # them, which picks up Devel::PPPort's documentation. | ||
247 | -pod/perltoc.pod: $(perltoc_pod_prereqs) $(PERL_EXE) $(ext) pod/buildtoc | ||
248 | - $(RUN_PERL) -f pod/buildtoc -q | ||
249 | +pod/perltoc.pod: $(perltoc_pod_prereqs) $(ext) pod/buildtoc | ||
250 | + $(MINIPERL) -f pod/buildtoc -q | ||
251 | |||
252 | pod/perlapi.pod: pod/perlintern.pod | ||
253 | |||
254 | -pod/perlintern.pod: $(MINIPERL_EXE) autodoc.pl embed.fnc | ||
255 | +pod/perlintern.pod: autodoc.pl embed.fnc | ||
256 | $(MINIPERL) autodoc.pl | ||
257 | |||
258 | -pod/perlmodlib.pod: $(MINIPERL_EXE) pod/perlmodlib.PL MANIFEST | ||
259 | +pod/perlmodlib.pod: pod/perlmodlib.PL MANIFEST | ||
260 | $(MINIPERL) pod/perlmodlib.PL -q | ||
261 | |||
262 | pod/perl5200delta.pod: pod/perldelta.pod | ||
263 | $(RMS) pod/perl5200delta.pod | ||
264 | $(LNS) perldelta.pod pod/perl5200delta.pod | ||
265 | |||
266 | -extra.pods: $(MINIPERL_EXE) | ||
267 | +extra.pods: | ||
268 | -@test ! -f extra.pods || rm -f `cat extra.pods` | ||
269 | -@rm -f extra.pods | ||
270 | -@for x in `grep -l '^=[a-z]' README.* | grep -v README.vms` ; do \ | ||
271 | @@ -1075,11 +1085,7 @@ done | ||
272 | if test "X$hostperl" != X; then | ||
273 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
274 | install.perl: $(INSTALL_DEPENDENCE) installperl | ||
275 | - $(HOST_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS) | ||
276 | - -@test ! -s extras.lst || $(MAKE) extras.install | ||
277 | - | ||
278 | -install.man: all installman | ||
279 | - $(HOST_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS) | ||
280 | + ./hostperl -Ifake_config_library -Ilib -MConfig installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS) | ||
281 | |||
282 | # XXX Experimental. Hardwired values, but useful for testing. | ||
283 | # Eventually Configure could ask for some of these values. | ||
284 | @@ -1097,11 +1103,7 @@ install.html: all installhtml | ||
285 | else | ||
286 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
287 | install.perl: $(INSTALL_DEPENDENCE) installperl | ||
288 | - $(RUN_PERL) installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS) | ||
289 | - -@test ! -s extras.lst || PATH="`pwd`:\${PATH}" PERL5LIB="`pwd`/lib" \$(RUN_PERL) -Ilib -MCPAN -e '@ARGV&&install(@ARGV)' `cat extras.lst` | ||
290 | - | ||
291 | -install.man: all installman | ||
292 | - $(RUN_PERL) installman --destdir=$(DESTDIR) $(INSTALLFLAGS) | ||
293 | + ./hostperl -Ifake_config_library -Ilib -MConfig installperl --destdir=$(DESTDIR) $(INSTALLFLAGS) $(STRIPFLAGS) | ||
294 | |||
295 | # XXX Experimental. Hardwired values, but useful for testing. | ||
296 | # Eventually Configure could ask for some of these values. | ||
297 | @@ -1206,16 +1208,16 @@ manicheck: FORCE | ||
298 | # | ||
299 | # DynaLoader may be needed for extensions that use Makefile.PL. | ||
300 | |||
301 | -$(DYNALOADER): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext) | ||
302 | +$(DYNALOADER): lib/buildcustomize.pl preplibrary FORCE $(nonxs_ext) | ||
303 | $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS) | ||
304 | |||
305 | -d_dummy $(dynamic_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) $(LIBPERL) | ||
306 | +d_dummy $(dynamic_ext): lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE $(PERLEXPORT) $(LIBPERL) | ||
307 | $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic | ||
308 | |||
309 | -s_dummy $(static_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE | ||
310 | +s_dummy $(static_ext): lib/buildcustomize.pl preplibrary makeppport $(DYNALOADER) FORCE | ||
311 | $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=static $(STATIC_LDFLAGS) | ||
312 | |||
313 | -n_dummy $(nonxs_ext): $(MINIPERL_EXE) lib/buildcustomize.pl preplibrary FORCE | ||
314 | +n_dummy $(nonxs_ext): lib/buildcustomize.pl preplibrary FORCE | ||
315 | $(MINIPERL) make_ext.pl $@ MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) | ||
316 | !NO!SUBS! | ||
317 | |||
318 | @@ -1409,7 +1411,7 @@ test_prep_pre: preplibrary utilities $(nonxs_ext) | ||
319 | |||
320 | case "$targethost" in | ||
321 | '') $spitshell >>$Makefile <<'!NO!SUBS!' | ||
322 | -test_prep test-prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) \ | ||
323 | +test_prep test-prep: test_prep_pre $(unidatafiles) $(PERL_EXE) \ | ||
324 | $(dynamic_ext) $(TEST_PERL_DLL) runtests x2p/s2p x2p/find2perl \ | ||
325 | $(generated_pods) | ||
326 | cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE)) | ||
327 | @@ -1417,7 +1419,7 @@ test_prep test-prep: test_prep_pre $(MINIPERL_EXE) $(unidatafiles) $(PERL_EXE) \ | ||
328 | !NO!SUBS! | ||
329 | ;; | ||
330 | *) $spitshell >>$Makefile <<!GROK!THIS! | ||
331 | -test_prep test-prep: test_prep_pre \$(MINIPERL_EXE) \$(unidatafiles) \$(PERL_EXE) \ | ||
332 | +test_prep test-prep: test_prep_pre \$(unidatafiles) \$(PERL_EXE) \ | ||
333 | \$(dynamic_ext) \$(TEST_PERL_DLL) runtests x2p/s2p x2p/find2perl \ | ||
334 | \$(generated_pods) | ||
335 | $to libperl.* | ||
336 | @@ -1469,7 +1471,7 @@ test_prep test-prep: test_prep_pre \$(MINIPERL_EXE) \$(unidatafiles) \$(PERL_EXE | ||
337 | esac | ||
338 | |||
339 | $spitshell >>$Makefile <<'!NO!SUBS!' | ||
340 | -test_prep_reonly: $(MINIPERL_EXE) $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL) | ||
341 | +test_prep_reonly: $(PERL_EXE) $(dynamic_ext_re) $(TEST_PERL_DLL) | ||
342 | $(MINIPERL) make_ext.pl $(dynamic_ext_re) MAKE=$(MAKE) LIBPERL_A=$(LIBPERL) LINKTYPE=dynamic | ||
343 | cd t && (rm -f $(PERL_EXE); $(LNS) ../$(PERL_EXE) $(PERL_EXE)) | ||
344 | !NO!SUBS! | ||
345 | @@ -1520,7 +1522,7 @@ $spitshell >>$Makefile <<'!NO!SUBS!' | ||
346 | |||
347 | # Can't depend on lib/Config.pm because that might be where miniperl | ||
348 | # is crashing. | ||
349 | -minitest: $(MINIPERL_EXE) | ||
350 | +minitest: | ||
351 | -@test -f lib/Config.pm || $(MAKE) lib/Config.pm $(unidatafiles) | ||
352 | @echo " " | ||
353 | @echo "You may see some irrelevant test failures if you have been unable" | ||
354 | -- | ||
355 | 1.8.1.2 | ||
356 | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/Makefile.patch b/meta/recipes-devtools/perl/perl-5.20.0/Makefile.patch index 858e2e10fb..858e2e10fb 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/Makefile.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/Makefile.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/config.sh b/meta/recipes-devtools/perl/perl-5.20.0/config.sh index 68dcfa940d..2532c8d413 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/config.sh +++ b/meta/recipes-devtools/perl/perl-5.20.0/config.sh | |||
@@ -8,13 +8,13 @@ | |||
8 | 8 | ||
9 | # Package name : perl5 | 9 | # Package name : perl5 |
10 | # Source directory : . | 10 | # Source directory : . |
11 | # Configuration time: Thu Dec 23 03:57:51 UTC 2010 | 11 | # Configuration time: Tue Jun 24 03:00:02 UTC 2014 |
12 | # Configured by : Open Embedded | 12 | # Configured by : Open Embedded |
13 | # Target system : linux qemux86 2.6.37-rc5-yocto-standard+ #1 preempt mon dec 20 14:21:27 pst 2010 i686 gnulinux | 13 | # Target system : linux qemuarm 3.14.5-yocto-standard #1 preempt mon jun 23 19:42:18 cst 2014 armv5tejl gnulinux |
14 | 14 | ||
15 | : Configure command line arguments. | 15 | : Configure command line arguments. |
16 | config_arg0='Configure' | 16 | config_arg0='Configure' |
17 | config_args='-des -Doptimize=-O2 -Dmyhostname=localhost -Dperladmin=root@localhost -Dcc=gcc -Dcf_by=Open Embedded -Dinstallprefix=@EXECPREFIX@ -Dprefix=@EXECPREFIX@ -Dvendorprefix=@EXECPREFIX@ -Dsiteprefix=@EXECPREFIX@ -Dotherlibdirs=@LIBDIR@/perl/5.14.3 -Duseshrplib -Dusethreads -Duseithreads -Duselargefiles -Ud_dosuid -Dd_semctl_semun -Ui_db -Ui_ndbm -Ui_gdbm -Di_shadow -Di_syslog -Dman3ext=3pm -Duseperlio -Dinstallusrbinperl -Ubincompat5005 -Uversiononly -Dpager=/usr/bin/less -isr' | 17 | config_args='-des -Doptimize=-O2 -Dmyhostname=localhost -Dperladmin=root@localhost -Dcc=gcc -Dcf_by=Open Embedded -Dinstallprefix=@EXECPREFIX@ -Dprefix=@EXECPREFIX@ -Dvendorprefix=@EXECPREFIX@ -Dsiteprefix=@EXECPREFIX@ -Dotherlibdirs=@LIBDIR@/perl/5.20.0 -Duseshrplib -Dusethreads -Duseithreads -Duselargefiles -Ud_dosuid -Dd_semctl_semun -Ui_db -Ui_ndbm -Ui_gdbm -Di_shadow -Di_syslog -Dman3ext=3pm -Duseperlio -Dinstallusrbinperl -Ubincompat5005 -Uversiononly -Dpager=/usr/bin/less -isr' |
18 | config_argc=28 | 18 | config_argc=28 |
19 | config_arg1='-des' | 19 | config_arg1='-des' |
20 | config_arg2='-Doptimize=-O2' | 20 | config_arg2='-Doptimize=-O2' |
@@ -26,7 +26,7 @@ config_arg7='-Dinstallprefix=@EXECPREFIX@' | |||
26 | config_arg8='-Dprefix=@EXECPREFIX@' | 26 | config_arg8='-Dprefix=@EXECPREFIX@' |
27 | config_arg9='-Dvendorprefix=@EXECPREFIX@' | 27 | config_arg9='-Dvendorprefix=@EXECPREFIX@' |
28 | config_arg10='-Dsiteprefix=@EXECPREFIX@' | 28 | config_arg10='-Dsiteprefix=@EXECPREFIX@' |
29 | config_arg11='-Dotherlibdirs=@LIBDIR@/perl/5.14.3' | 29 | config_arg11='-Dotherlibdirs=@LIBDIR@/perl/5.20.0' |
30 | config_arg12='-Duseshrplib' | 30 | config_arg12='-Duseshrplib' |
31 | config_arg13='-Dusethreads' | 31 | config_arg13='-Dusethreads' |
32 | config_arg14='-Duseithreads' | 32 | config_arg14='-Duseithreads' |
@@ -67,9 +67,9 @@ api_subversion='0' | |||
67 | api_version='14' | 67 | api_version='14' |
68 | api_versionstring='5.14.0' | 68 | api_versionstring='5.14.0' |
69 | ar='ar' | 69 | ar='ar' |
70 | archlib='@LIBDIR@/perl/5.14.3/@ARCH@-thread-multi' | 70 | archlib='@LIBDIR@/perl/5.20.0/@ARCH@-thread-multi' |
71 | archlibexp='@STAGINGDIR@@LIBDIR@/perl/5.14.3/@ARCH@-thread-multi' | 71 | archlibexp='@STAGINGDIR@@LIBDIR@/perl/5.20.0/@ARCH@-thread-multi' |
72 | archlib_exp='@LIBDIR@/perl/5.14.3/@ARCH@-thread-multi' | 72 | archlib_exp='@LIBDIR@/perl/5.20.0/@ARCH@-thread-multi' |
73 | archname64='' | 73 | archname64='' |
74 | archname='@ARCH@-thread-multi' | 74 | archname='@ARCH@-thread-multi' |
75 | archobjs='' | 75 | archobjs='' |
@@ -87,7 +87,7 @@ castflags='0' | |||
87 | cat='cat' | 87 | cat='cat' |
88 | cc='gcc' | 88 | cc='gcc' |
89 | cccdlflags='-fPIC' | 89 | cccdlflags='-fPIC' |
90 | ccdlflags='-Wl,-E -Wl,-rpath,@LIBDIR@/perl/5.14.3/@ARCH@-thread-multi/CORE' | 90 | ccdlflags='-Wl,-E -Wl,-rpath,@LIBDIR@/perl/5.20.0/@ARCH@-thread-multi/CORE' |
91 | ccflags='-D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -fstack-protector -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64' | 91 | ccflags='-D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -fstack-protector -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64' |
92 | ccflags_uselargefiles='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64' | 92 | ccflags_uselargefiles='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64' |
93 | ccname='gcc' | 93 | ccname='gcc' |
@@ -576,7 +576,7 @@ doublesize='8' | |||
576 | drand01='drand48()' | 576 | drand01='drand48()' |
577 | drand48_r_proto='REENTRANT_PROTO_I_ST' | 577 | drand48_r_proto='REENTRANT_PROTO_I_ST' |
578 | dtrace='' | 578 | dtrace='' |
579 | dynamic_ext='B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper Devel/DProf Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl File/Glob Filter/Util/Call Hash/Util Hash/Util/FieldHash I18N/Langinfo IO IPC/SysV List/Util MIME/Base64 Math/BigInt/FastCalc Opcode POSIX PerlIO/encoding PerlIO/scalar PerlIO/via GDBM_File SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex Time/HiRes Time/Piece Unicode/Normalize XS/APItest XS/APItest/KeywordRPN XS/Typemap attributes mro re threads threads/shared' | 579 | dynamic_ext='B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl File/DosGlob File/Glob Filter/Util/Call Hash/Util Hash/Util/FieldHash I18N/Langinfo IO IPC/SysV List/Util MIME/Base64 Math/BigInt/FastCalc Opcode POSIX PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via SDBM_File Socket Storable Sys/Hostname Sys/Syslog Tie/Hash/NamedCapture Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize XS/APItest XS/Typemap arybase attributes mro re threads threads/shared' |
580 | eagain='EAGAIN' | 580 | eagain='EAGAIN' |
581 | ebcdic='undef' | 581 | ebcdic='undef' |
582 | echo='echo' | 582 | echo='echo' |
@@ -591,7 +591,7 @@ endservent_r_proto='0' | |||
591 | eunicefix=':' | 591 | eunicefix=':' |
592 | exe_ext='' | 592 | exe_ext='' |
593 | expr='expr' | 593 | expr='expr' |
594 | extensions='B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper Devel/DProf Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl File/Glob Filter/Util/Call Hash/Util Hash/Util/FieldHash I18N/Langinfo IO IPC/SysV List/Util MIME/Base64 Math/BigInt/FastCalc Opcode POSIX PerlIO/encoding PerlIO/scalar PerlIO/via GDBM_File SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex Time/HiRes Time/Piece Unicode/Normalize XS/APItest XS/APItest/KeywordRPN XS/Typemap attributes mro re threads threads/shared Archive/Extract Archive/Tar Attribute/Handlers AutoLoader B/Debug B/Deparse B/Lint CGI CPAN CPANPLUS CPANPLUS/Dist/Build Class/ISA Devel/SelfStubber Digest Errno ExtUtils/CBuilder ExtUtils/Command ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/ParseXS File/Fetch File/Path File/Temp FileCache Filter/Simple Getopt/Long I18N/LangTags IO/Compress IO/Zlib IPC/Cmd IPC/Open2 IPC/Open3 Locale/Codes Locale/Maketext Locale/Maketext/Simple Log/Message Log/Message/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/Build Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Pluggable NEXT Net/Ping Object/Accessor Package/Constants Params/Check Parse/CPAN/Meta PerlIO/via/QuotedPrint Pod/Escapes Pod/LaTeX Pod/Parser Pod/Perldoc Pod/Plainer Pod/Simple Safe SelfLoader Shell Switch Term/ANSIColor Term/Cap Term/UI Test Test/Harness Test/Simple Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Memoize Tie/RefHash Time/Local Unicode/Collate XSLoader autodie autouse base bignum constant encoding/warnings if lib libnet parent podlators' | 594 | extensions='B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd Data/Dumper Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl File/DosGlob File/Glob Filter/Util/Call Hash/Util Hash/Util/FieldHash I18N/Langinfo IO IPC/SysV List/Util MIME/Base64 Math/BigInt/FastCalc Opcode POSIX PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via SDBM_File Socket Storable Sys/Hostname Sys/Syslog Tie/Hash/NamedCapture Time/HiRes Time/Piece Unicode/Collate Unicode/Normalize XS/APItest XS/Typemap arybase attributes mro re threads threads/shared Archive/Tar Attribute/Handlers AutoLoader B/Debug CGI CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Config/Perl/V Devel/SelfStubber Digest Dumpvalue Env Errno Exporter ExtUtils/CBuilder ExtUtils/Command ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS File/Fetch File/Find File/Path File/Temp FileCache Filter/Simple Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP Locale/Codes Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/Build Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NEXT Net/Ping Package/Constants Params/Check Parse/CPAN/Meta Perl/OSType PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Parser Pod/Perldoc Pod/Simple Pod/Usage Safe Search/Dict SelfLoader Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Memoize Tie/RefHash Time/Local XSLoader autodie autouse base bignum constant encoding/warnings experimental if lib libnet parent perlfaq podlators version' |
595 | extern_C='extern' | 595 | extern_C='extern' |
596 | extras='' | 596 | extras='' |
597 | fflushNULL='define' | 597 | fflushNULL='define' |
@@ -608,7 +608,7 @@ full_csh='csh' | |||
608 | full_sed='sed' | 608 | full_sed='sed' |
609 | gccansipedantic='' | 609 | gccansipedantic='' |
610 | gccosandvers='' | 610 | gccosandvers='' |
611 | gccversion='4.5.1' | 611 | gccversion='4.9.0' |
612 | getgrent_r_proto='REENTRANT_PROTO_I_SBWR' | 612 | getgrent_r_proto='REENTRANT_PROTO_I_SBWR' |
613 | getgrgid_r_proto='REENTRANT_PROTO_I_TSBWR' | 613 | getgrgid_r_proto='REENTRANT_PROTO_I_TSBWR' |
614 | getgrnam_r_proto='REENTRANT_PROTO_I_CSBWR' | 614 | getgrnam_r_proto='REENTRANT_PROTO_I_CSBWR' |
@@ -635,7 +635,7 @@ gidtype='gid_t' | |||
635 | glibpth='@EXECPREFIX@/shlib @BASELIBDIR@ @LIBDIR@ @LIBDIR@/386 @BASELIBDIR@/386 @EXECPREFIX@/ccs/lib @EXECPREFIX@/ucblib @EXECPREFIX@/local/lib ' | 635 | glibpth='@EXECPREFIX@/shlib @BASELIBDIR@ @LIBDIR@ @LIBDIR@/386 @BASELIBDIR@/386 @EXECPREFIX@/ccs/lib @EXECPREFIX@/ucblib @EXECPREFIX@/local/lib ' |
636 | gmake='gmake' | 636 | gmake='gmake' |
637 | gmtime_r_proto='REENTRANT_PROTO_S_TS' | 637 | gmtime_r_proto='REENTRANT_PROTO_S_TS' |
638 | gnulibc_version='2.12.1' | 638 | gnulibc_version='2.19' |
639 | grep='grep' | 639 | grep='grep' |
640 | groupcat='cat /etc/group' | 640 | groupcat='cat /etc/group' |
641 | groupstype='gid_t' | 641 | groupstype='gid_t' |
@@ -747,7 +747,7 @@ inc_version_list_init='0' | |||
747 | incpath='' | 747 | incpath='' |
748 | inews='' | 748 | inews='' |
749 | initialinstalllocation='@USRBIN@' | 749 | initialinstalllocation='@USRBIN@' |
750 | installarchlib='@LIBDIR@/perl/5.14.3/@ARCH@-thread-multi' | 750 | installarchlib='@LIBDIR@/perl/5.20.0/@ARCH@-thread-multi' |
751 | installbin='@USRBIN@' | 751 | installbin='@USRBIN@' |
752 | installhtml1dir='' | 752 | installhtml1dir='' |
753 | installhtml3dir='' | 753 | installhtml3dir='' |
@@ -755,23 +755,23 @@ installman1dir='' | |||
755 | installman3dir='' | 755 | installman3dir='' |
756 | installprefix='@EXECPREFIX@' | 756 | installprefix='@EXECPREFIX@' |
757 | installprefixexp='@EXECPREFIX@' | 757 | installprefixexp='@EXECPREFIX@' |
758 | installprivlib='@LIBDIR@/perl/5.14.3' | 758 | installprivlib='@LIBDIR@/perl/5.20.0' |
759 | installscript='@USRBIN@' | 759 | installscript='@USRBIN@' |
760 | installsitearch='@LIBDIR@/perl/site_perl/5.14.3/@ARCH@-thread-multi' | 760 | installsitearch='@LIBDIR@/perl/site_perl/5.20.0/@ARCH@-thread-multi' |
761 | installsitebin='@USRBIN@' | 761 | installsitebin='@USRBIN@' |
762 | installsitehtml1dir='' | 762 | installsitehtml1dir='' |
763 | installsitehtml3dir='' | 763 | installsitehtml3dir='' |
764 | installsitelib='@LIBDIR@/perl/site_perl/5.14.3' | 764 | installsitelib='@LIBDIR@/perl/site_perl/5.20.0' |
765 | installsiteman1dir='' | 765 | installsiteman1dir='' |
766 | installsiteman3dir='' | 766 | installsiteman3dir='' |
767 | installsitescript='@USRBIN@' | 767 | installsitescript='@USRBIN@' |
768 | installstyle='lib/perl' | 768 | installstyle='lib/perl' |
769 | installusrbinperl='define' | 769 | installusrbinperl='define' |
770 | installvendorarch='@LIBDIR@/perl/vendor_perl/5.14.3/@ARCH@-thread-multi' | 770 | installvendorarch='@LIBDIR@/perl/vendor_perl/5.20.0/@ARCH@-thread-multi' |
771 | installvendorbin='@USRBIN@' | 771 | installvendorbin='@USRBIN@' |
772 | installvendorhtml1dir='' | 772 | installvendorhtml1dir='' |
773 | installvendorhtml3dir='' | 773 | installvendorhtml3dir='' |
774 | installvendorlib='@LIBDIR@/perl/vendor_perl/5.14.3' | 774 | installvendorlib='@LIBDIR@/perl/vendor_perl/5.20.0' |
775 | installvendorman1dir='' | 775 | installvendorman1dir='' |
776 | installvendorman3dir='' | 776 | installvendorman3dir='' |
777 | installvendorscript='@USRBIN@' | 777 | installvendorscript='@USRBIN@' |
@@ -779,7 +779,7 @@ intsize='4' | |||
779 | issymlink='test -h' | 779 | issymlink='test -h' |
780 | ivdformat='"ld"' | 780 | ivdformat='"ld"' |
781 | ivtype='long' | 781 | ivtype='long' |
782 | known_extensions='B Compress/Raw/Bzip2 Compress/Raw/Zlib Cwd DB_File Data/Dumper Devel/DProf Devel/PPPort Devel/Peek Digest/MD5 Digest/SHA Encode Fcntl File/Glob Filter/Util/Call GDBM_File Hash/Util Hash/Util/FieldHash I18N/Langinfo IO IPC/SysV List/Util MIME/Base64 Math/BigInt/FastCalc NDBM_File ODBM_File Opcode POSIX PerlIO/encoding PerlIO/scalar PerlIO/via SDBM_File Socket Storable Sys/Hostname Sys/Syslog Text/Soundex Time/HiRes Time/Piece Unicode/Normalize VMS/DCLsym VMS/Stdio Win32 Win32API/File Win32CORE XS/APItest XS/APItest/KeywordRPN XS/Typemap attributes mro re threads threads/shared ' | 782 | known_extensions='Archive/Tar Attribute/Handlers AutoLoader B B/Debug CGI CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Compress/Raw/Bzip2 Compress/Raw/Zlib Config/Perl/V Cwd DB_File Data/Dumper Devel/PPPort Devel/Peek Devel/SelfStubber Digest Digest/MD5 Digest/SHA Dumpvalue Encode Env Errno Exporter ExtUtils/CBuilder ExtUtils/Command ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS Fcntl File/DosGlob File/Fetch File/Find File/Glob File/Path File/Temp FileCache Filter/Simple Filter/Util/Call GDBM_File Getopt/Long HTTP/Tiny Hash/Util Hash/Util/FieldHash I18N/Collate I18N/LangTags I18N/Langinfo IO IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 IPC/SysV JSON/PP List/Util Locale/Codes Locale/Maketext Locale/Maketext/Simple MIME/Base64 Math/BigInt Math/BigInt/FastCalc Math/BigRat Math/Complex Memoize Module/Build Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NDBM_File NEXT Net/Ping ODBM_File Opcode POSIX Package/Constants Params/Check Parse/CPAN/Meta Perl/OSType PerlIO/encoding PerlIO/mmap PerlIO/scalar PerlIO/via PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Parser Pod/Perldoc Pod/Simple Pod/Usage SDBM_File Safe Search/Dict SelfLoader Socket Storable Sys/Hostname Sys/Syslog Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Hash/NamedCapture Tie/Memoize Tie/RefHash Time/HiRes Time/Local Time/Piece Unicode/Collate Unicode/Normalize VMS/DCLsym VMS/Filespec VMS/Stdio Win32 Win32API/File Win32CORE XS/APItest XS/Typemap XSLoader arybase attributes autodie autouse base bignum constant encoding/warnings experimental if lib libnet mro parent perlfaq podlators re threads threads/shared version ' |
783 | ksh='' | 783 | ksh='' |
784 | ld='gcc' | 784 | ld='gcc' |
785 | lddlflags='-shared -O2 -fstack-protector' | 785 | lddlflags='-shared -O2 -fstack-protector' |
@@ -788,7 +788,7 @@ ldflags_uselargefiles='' | |||
788 | ldlibpthname='LD_LIBRARY_PATH' | 788 | ldlibpthname='LD_LIBRARY_PATH' |
789 | less='less' | 789 | less='less' |
790 | lib_ext='.a' | 790 | lib_ext='.a' |
791 | libc='@BASELIBDIR@/libc-2.12.1.so' | 791 | libc='@BASELIBDIR@/libc-2.19.so' |
792 | libperl='libperl.so' | 792 | libperl='libperl.so' |
793 | libpth='@BASELIBDIR@ @LIBDIR@' | 793 | libpth='@BASELIBDIR@ @LIBDIR@' |
794 | libs='-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lpthread -lc' | 794 | libs='-lnsl -lgdbm -ldb -ldl -lm -lcrypt -lutil -lpthread -lc' |
@@ -847,23 +847,7 @@ netdb_net_type='in_addr_t' | |||
847 | nm='nm' | 847 | nm='nm' |
848 | nm_opt='' | 848 | nm_opt='' |
849 | nm_so_opt='--dynamic' | 849 | nm_so_opt='--dynamic' |
850 | nonxs_ext='Archive/Extract Archive/Tar Attribute/Handlers AutoLoader B/Debug \ | 850 | nonxs_ext='Archive/Tar Attribute/Handlers AutoLoader B/Debug CGI CPAN CPAN/Meta CPAN/Meta/Requirements CPAN/Meta/YAML Carp Config/Perl/V Devel/SelfStubber Digest Dumpvalue Env Errno Exporter ExtUtils/CBuilder ExtUtils/Command ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker ExtUtils/Manifest ExtUtils/Miniperl ExtUtils/ParseXS File/Fetch File/Find File/Path File/Temp FileCache Filter/Simple Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags IO/Compress IO/Socket/IP IO/Zlib IPC/Cmd IPC/Open3 JSON/PP Locale/Codes Locale/Maketext Locale/Maketext/Simple Math/BigInt Math/BigRat Math/Complex Memoize Module/Build Module/CoreList Module/Load Module/Load/Conditional Module/Loaded Module/Metadata NEXT Net/Ping Package/Constants Params/Check Parse/CPAN/Meta Perl/OSType PerlIO/via/QuotedPrint Pod/Checker Pod/Escapes Pod/Functions Pod/Html Pod/Parser Pod/Perldoc Pod/Simple Pod/Usage Safe Search/Dict SelfLoader Term/ANSIColor Term/Cap Term/Complete Term/ReadLine Test Test/Harness Test/Simple Text/Abbrev Text/Balanced Text/ParseWords Text/Tabs Thread/Queue Thread/Semaphore Tie/File Tie/Memoize Tie/RefHash Time/Local XSLoader autodie autouse base bignum constant encoding/warnings experimental if lib libnet parent perlfaq podlators version' |
851 | B/Deparse B/Lint CGI CPAN CPAN/Meta CPAN/Meta/YAML CPANPLUS CPANPLUS/Dist/Build \ | ||
852 | Class/ISA Devel/SelfStubber Digest Dumpvalue Env Errno ExtUtils/CBuilder \ | ||
853 | ExtUtils/Command ExtUtils/Constant ExtUtils/Install ExtUtils/MakeMaker \ | ||
854 | ExtUtils/Manifest ExtUtils/ParseXS File/CheckTree File/Fetch File/Path File/Temp \ | ||
855 | FileCache Filter/Simple Getopt/Long HTTP/Tiny I18N/Collate I18N/LangTags \ | ||
856 | IO/Compress IO/Zlib IPC/Cmd IPC/Open2 IPC/Open3 JSON/PP Locale/Codes \ | ||
857 | Locale/Maketext Locale/Maketext/Simple Log/Message Log/Message/Simple \ | ||
858 | Math/BigInt Math/BigRat Math/Complex Memoize Module/Build Module/CoreList \ | ||
859 | Module/Load Module/Load/Conditional Module/Loaded Module/Metadata Module/Pluggable NEXT Net/Ping \ | ||
860 | Object/Accessor Package/Constants Params/Check Parse/CPAN/Meta Perl/OSType \ | ||
861 | PerlIO/via/QuotedPrint Pod/Escapes Pod/Html Pod/LaTeX Pod/Parser Pod/Perldoc \ | ||
862 | Pod/Plainer Pod/Simple Safe SelfLoader Shell Switch Term/ANSIColor Term/Cap \ | ||
863 | Term/UI Test Test/Harness Test/Simple Text/Balanced Text/ParseWords Text/Tabs \ | ||
864 | Thread/Queue Thread/Semaphore Tie/File Tie/Hash/NamedCapture Tie/Memoize \ | ||
865 | Tie/RefHash Time/Local Unicode/Collate Version/Requirements XSLoader autodie \ | ||
866 | autouse base bignum constant encoding/warnings if lib libnet parent podlators' | ||
867 | nroff='nroff' | 851 | nroff='nroff' |
868 | nvEUformat='"E"' | 852 | nvEUformat='"E"' |
869 | nvFUformat='"F"' | 853 | nvFUformat='"F"' |
@@ -880,12 +864,12 @@ old_pthread_create_joinable='' | |||
880 | optimize='-O2' | 864 | optimize='-O2' |
881 | orderlib='false' | 865 | orderlib='false' |
882 | osname='linux' | 866 | osname='linux' |
883 | osvers='2.6.37-rc5-yocto-standard+' | 867 | osvers='3.14.5-yocto-standard' |
884 | otherlibdirs='@LIBDIR@/perl/5.14.3' | 868 | otherlibdirs='@LIBDIR@/perl/5.20.0' |
885 | package='perl5' | 869 | package='perl5' |
886 | pager='/usr/bin/less -isr' | 870 | pager='/usr/bin/less -isr' |
887 | passcat='cat /etc/passwd' | 871 | passcat='cat /etc/passwd' |
888 | patchlevel='14' | 872 | patchlevel='20' |
889 | path_sep=':' | 873 | path_sep=':' |
890 | perl5='@USRBIN@/perl' | 874 | perl5='@USRBIN@/perl' |
891 | perl='' | 875 | perl='' |
@@ -901,8 +885,8 @@ pmake='' | |||
901 | pr='' | 885 | pr='' |
902 | prefix='@EXECPREFIX@' | 886 | prefix='@EXECPREFIX@' |
903 | prefixexp='@EXECPREFIX@' | 887 | prefixexp='@EXECPREFIX@' |
904 | privlib='@LIBDIR@/perl/5.14.3' | 888 | privlib='@LIBDIR@/perl/5.20.0' |
905 | privlibexp='@LIBDIR@/perl/5.14.3' | 889 | privlibexp='@LIBDIR@/perl/5.20.0' |
906 | procselfexe='"/proc/self/exe"' | 890 | procselfexe='"/proc/self/exe"' |
907 | prototype='define' | 891 | prototype='define' |
908 | randbits='48' | 892 | randbits='48' |
@@ -954,17 +938,17 @@ sig_num='0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | |||
954 | sig_num_init='0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 6, 17, 29, 31, 0' | 938 | sig_num_init='0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 6, 17, 29, 31, 0' |
955 | sig_size='69' | 939 | sig_size='69' |
956 | signal_t='void' | 940 | signal_t='void' |
957 | sitearch='@LIBDIR@/perl/site_perl/5.14.3/@ARCH@-thread-multi' | 941 | sitearch='@LIBDIR@/perl/site_perl/5.20.0/@ARCH@-thread-multi' |
958 | sitearchexp='@LIBDIR@/perl/site_perl/5.14.3/@ARCH@-thread-multi' | 942 | sitearchexp='@LIBDIR@/perl/site_perl/5.20.0/@ARCH@-thread-multi' |
959 | sitebin='@USRBIN@' | 943 | sitebin='@USRBIN@' |
960 | sitebinexp='@USRBIN@' | 944 | sitebinexp='@USRBIN@' |
961 | sitehtml1dir='' | 945 | sitehtml1dir='' |
962 | sitehtml1direxp='' | 946 | sitehtml1direxp='' |
963 | sitehtml3dir='' | 947 | sitehtml3dir='' |
964 | sitehtml3direxp='' | 948 | sitehtml3direxp='' |
965 | sitelib='@LIBDIR@/perl/site_perl/5.14.3' | 949 | sitelib='@LIBDIR@/perl/site_perl/5.20.0' |
966 | sitelib_stem='@LIBDIR@/perl/site_perl' | 950 | sitelib_stem='@LIBDIR@/perl/site_perl' |
967 | sitelibexp='@LIBDIR@/perl/site_perl/5.14.3' | 951 | sitelibexp='@LIBDIR@/perl/site_perl/5.20.0' |
968 | siteman1dir='' | 952 | siteman1dir='' |
969 | siteman1direxp='' | 953 | siteman1direxp='' |
970 | siteman3dir='' | 954 | siteman3dir='' |
@@ -1029,7 +1013,7 @@ uidtype='uid_t' | |||
1029 | uname='uname' | 1013 | uname='uname' |
1030 | uniq='uniq' | 1014 | uniq='uniq' |
1031 | use5005threads='undef' | 1015 | use5005threads='undef' |
1032 | usecrosscompile='undef' | 1016 | usecrosscompile='define' |
1033 | usedevel='undef' | 1017 | usedevel='undef' |
1034 | usedl='define' | 1018 | usedl='define' |
1035 | usedtrace='undef' | 1019 | usedtrace='undef' |
@@ -1062,17 +1046,17 @@ uvtype='unsigned long' | |||
1062 | uvuformat='"lu"' | 1046 | uvuformat='"lu"' |
1063 | uvxformat='"lx"' | 1047 | uvxformat='"lx"' |
1064 | vaproto='define' | 1048 | vaproto='define' |
1065 | vendorarch='@LIBDIR@/perl/vendor_perl/5.14.3/@ARCH@-thread-multi' | 1049 | vendorarch='@LIBDIR@/perl/vendor_perl/5.20.0/@ARCH@-thread-multi' |
1066 | vendorarchexp='@LIBDIR@/perl/vendor_perl/5.14.3/@ARCH@-thread-multi' | 1050 | vendorarchexp='@LIBDIR@/perl/vendor_perl/5.20.0/@ARCH@-thread-multi' |
1067 | vendorbin='@USRBIN@' | 1051 | vendorbin='@USRBIN@' |
1068 | vendorbinexp='@USRBIN@' | 1052 | vendorbinexp='@USRBIN@' |
1069 | vendorhtml1dir=' ' | 1053 | vendorhtml1dir=' ' |
1070 | vendorhtml1direxp='' | 1054 | vendorhtml1direxp='' |
1071 | vendorhtml3dir=' ' | 1055 | vendorhtml3dir=' ' |
1072 | vendorhtml3direxp='' | 1056 | vendorhtml3direxp='' |
1073 | vendorlib='@LIBDIR@/perl/vendor_perl/5.14.3' | 1057 | vendorlib='@LIBDIR@/perl/vendor_perl/5.20.0' |
1074 | vendorlib_stem='@LIBDIR@/perl/vendor_perl' | 1058 | vendorlib_stem='@LIBDIR@/perl/vendor_perl' |
1075 | vendorlibexp='@LIBDIR@/perl/vendor_perl/5.14.3' | 1059 | vendorlibexp='@LIBDIR@/perl/vendor_perl/5.20.0' |
1076 | vendorman1dir=' ' | 1060 | vendorman1dir=' ' |
1077 | vendorman1direxp='' | 1061 | vendorman1direxp='' |
1078 | vendorman3dir=' ' | 1062 | vendorman3dir=' ' |
@@ -1081,7 +1065,7 @@ vendorprefix='/usr' | |||
1081 | vendorprefixexp='/usr' | 1065 | vendorprefixexp='/usr' |
1082 | vendorscript='@USRBIN@' | 1066 | vendorscript='@USRBIN@' |
1083 | vendorscriptexp='@USRBIN@' | 1067 | vendorscriptexp='@USRBIN@' |
1084 | version='5.14.3' | 1068 | version='5.20.0' |
1085 | version_patchlevel_string='version 14 subversion 2' | 1069 | version_patchlevel_string='version 14 subversion 2' |
1086 | versiononly='undef' | 1070 | versiononly='undef' |
1087 | vi='' | 1071 | vi='' |
@@ -1092,10 +1076,10 @@ yaccflags='' | |||
1092 | zcat='' | 1076 | zcat='' |
1093 | zip='zip' | 1077 | zip='zip' |
1094 | PERL_REVISION=5 | 1078 | PERL_REVISION=5 |
1095 | PERL_VERSION=14 | 1079 | PERL_VERSION=20 |
1096 | PERL_SUBVERSION=2 | 1080 | PERL_SUBVERSION=0 |
1097 | PERL_API_REVISION=5 | 1081 | PERL_API_REVISION=5 |
1098 | PERL_API_VERSION=14 | 1082 | PERL_API_VERSION=20 |
1099 | PERL_API_SUBVERSION=0 | 1083 | PERL_API_SUBVERSION=0 |
1100 | PERL_PATCHLEVEL='' | 1084 | PERL_PATCHLEVEL='' |
1101 | PERL_CONFIG_SH=true | 1085 | PERL_CONFIG_SH=true |
@@ -1108,3 +1092,15 @@ d_sin6_scope_id='define' | |||
1108 | d_prctl='define' | 1092 | d_prctl='define' |
1109 | d_prctl_set_name='define' | 1093 | d_prctl_set_name='define' |
1110 | perl_static_inline='static __inline__' | 1094 | perl_static_inline='static __inline__' |
1095 | d_sockaddr_in6='undef' | ||
1096 | d_ip_mreq='undef' | ||
1097 | d_ip_mreq_source='undef' | ||
1098 | d_ipv6_mreq='undef' | ||
1099 | d_ipv6_mreq_source='undef' | ||
1100 | bootstrap_charset='undef' | ||
1101 | d_isblank='define' | ||
1102 | i_stdbool='undef' | ||
1103 | usekernprocpathname='undef' | ||
1104 | usensgetexecutablepath='undef' | ||
1105 | st_ino_sign='1' | ||
1106 | st_ino_size='4' | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/config.sh-32 b/meta/recipes-devtools/perl/perl-5.20.0/config.sh-32 index 7259a0c6ae..7259a0c6ae 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/config.sh-32 +++ b/meta/recipes-devtools/perl/perl-5.20.0/config.sh-32 | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/config.sh-32-be b/meta/recipes-devtools/perl/perl-5.20.0/config.sh-32-be index a59a9abb5e..a59a9abb5e 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/config.sh-32-be +++ b/meta/recipes-devtools/perl/perl-5.20.0/config.sh-32-be | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/config.sh-32-le b/meta/recipes-devtools/perl/perl-5.20.0/config.sh-32-le index 10e4226567..10e4226567 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/config.sh-32-le +++ b/meta/recipes-devtools/perl/perl-5.20.0/config.sh-32-le | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/config.sh-64 b/meta/recipes-devtools/perl/perl-5.20.0/config.sh-64 index 6929d3a09d..6929d3a09d 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/config.sh-64 +++ b/meta/recipes-devtools/perl/perl-5.20.0/config.sh-64 | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/config.sh-64-be b/meta/recipes-devtools/perl/perl-5.20.0/config.sh-64-be index c08ce3c431..c08ce3c431 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/config.sh-64-be +++ b/meta/recipes-devtools/perl/perl-5.20.0/config.sh-64-be | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/config.sh-64-le b/meta/recipes-devtools/perl/perl-5.20.0/config.sh-64-le index 277d2a9bee..277d2a9bee 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/config.sh-64-le +++ b/meta/recipes-devtools/perl/perl-5.20.0/config.sh-64-le | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/cross-generate_uudmap.patch b/meta/recipes-devtools/perl/perl-5.20.0/cross-generate_uudmap.patch index a00ad61d90..a00ad61d90 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/cross-generate_uudmap.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/cross-generate_uudmap.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.20.0/debian/cpan-missing-site-dirs.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/cpan-missing-site-dirs.diff new file mode 100644 index 0000000000..a5eb71e153 --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/cpan-missing-site-dirs.diff | |||
@@ -0,0 +1,62 @@ | |||
1 | From 25994ac1124566398adee13806ef9a73d2cae150 Mon Sep 17 00:00:00 2001 | ||
2 | From: Niko Tyni <ntyni@debian.org> | ||
3 | Date: Tue, 16 Oct 2012 23:07:56 +0300 | ||
4 | Subject: Fix CPAN::FirstTime defaults with nonexisting site dirs if a parent | ||
5 | is writable | ||
6 | |||
7 | The site directories do not exist on a typical Debian system. The build | ||
8 | systems will create them when necessary, so there's no need for a prompt | ||
9 | suggesting local::lib if the first existing parent directory is writable. | ||
10 | |||
11 | Also, writability of the core directories is not interesting as we | ||
12 | explicitly tell CPAN not to touch those with INSTALLDIRS=site. | ||
13 | |||
14 | Bug-Debian: http://bugs.debian.org/688842 | ||
15 | Patch-Name: debian/cpan-missing-site-dirs.diff | ||
16 | --- | ||
17 | cpan/CPAN/lib/CPAN/FirstTime.pm | 31 +++++++++++++++++++++++++++---- | ||
18 | 1 file changed, 27 insertions(+), 4 deletions(-) | ||
19 | |||
20 | diff --git a/cpan/CPAN/lib/CPAN/FirstTime.pm b/cpan/CPAN/lib/CPAN/FirstTime.pm | ||
21 | index 4416072..187f5c4 100644 | ||
22 | --- a/cpan/CPAN/lib/CPAN/FirstTime.pm | ||
23 | +++ b/cpan/CPAN/lib/CPAN/FirstTime.pm | ||
24 | @@ -2045,11 +2045,34 @@ sub _print_urllist { | ||
25 | }; | ||
26 | } | ||
27 | |||
28 | +# Debian modification: return true if this directory | ||
29 | +# or the first existing one upwards is writable | ||
30 | +sub _can_write_to_this_or_parent { | ||
31 | + my ($dir) = @_; | ||
32 | + my @parts = File::Spec->splitdir($dir); | ||
33 | + while (@parts) { | ||
34 | + my $cur = File::Spec->catdir(@parts); | ||
35 | + return 1 if -w $cur; | ||
36 | + return 0 if -e _; | ||
37 | + pop @parts; | ||
38 | + } | ||
39 | + return 0; | ||
40 | +} | ||
41 | + | ||
42 | +# Debian specific modification: the site directories don't necessarily | ||
43 | +# exist on the system, but the build systems create them when necessary, | ||
44 | +# so return true if the first existing directory upwards is writable | ||
45 | +# | ||
46 | +# Furthermore, on Debian, only test the site directories | ||
47 | +# (installsite*, expanded to /usr/local/{share,lib}/perl), | ||
48 | +# not the core ones | ||
49 | +# (install*lib, expanded to /usr/{share,lib}/perl). | ||
50 | +# We pass INSTALLDIRS=site by default to keep CPAN from touching | ||
51 | +# the core directories. | ||
52 | + | ||
53 | sub _can_write_to_libdirs { | ||
54 | - return -w $Config{installprivlib} | ||
55 | - && -w $Config{installarchlib} | ||
56 | - && -w $Config{installsitelib} | ||
57 | - && -w $Config{installsitearch} | ||
58 | + return _can_write_to_this_or_parent($Config{installsitelib}) | ||
59 | + && _can_write_to_this_or_parent($Config{installsitearch}) | ||
60 | } | ||
61 | |||
62 | sub _using_installbase { | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/cpan_definstalldirs.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/cpan_definstalldirs.diff index 57e7636be3..77a2ee9940 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/cpan_definstalldirs.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/cpan_definstalldirs.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 64c9ad40c26f051a275a8b963cc849ca0ddd3cbb Mon Sep 17 00:00:00 2001 |
2 | From 4b63b9a433661cd13cfb1448dbfb90c5f53a53be Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Tue, 8 Mar 2005 19:30:38 +1100 | 3 | Date: Tue, 8 Mar 2005 19:30:38 +1100 |
5 | Subject: Provide a sensible INSTALLDIRS default for modules installed from | 4 | Subject: Provide a sensible INSTALLDIRS default for modules installed from |
@@ -11,14 +10,14 @@ ordering, but not ours. | |||
11 | 10 | ||
12 | Patch-Name: debian/cpan_definstalldirs.diff | 11 | Patch-Name: debian/cpan_definstalldirs.diff |
13 | --- | 12 | --- |
14 | cpan/CPAN/lib/CPAN/FirstTime.pm | 4 ++-- | 13 | cpan/CPAN/lib/CPAN/FirstTime.pm | 4 ++-- |
15 | 1 files changed, 2 insertions(+), 2 deletions(-) | 14 | 1 file changed, 2 insertions(+), 2 deletions(-) |
16 | 15 | ||
17 | diff --git a/cpan/CPAN/lib/CPAN/FirstTime.pm b/cpan/CPAN/lib/CPAN/FirstTime.pm | 16 | diff --git a/cpan/CPAN/lib/CPAN/FirstTime.pm b/cpan/CPAN/lib/CPAN/FirstTime.pm |
18 | index 667bdca..c38c890 100644 | 17 | index d1a8eef..4416072 100644 |
19 | --- a/cpan/CPAN/lib/CPAN/FirstTime.pm | 18 | --- a/cpan/CPAN/lib/CPAN/FirstTime.pm |
20 | +++ b/cpan/CPAN/lib/CPAN/FirstTime.pm | 19 | +++ b/cpan/CPAN/lib/CPAN/FirstTime.pm |
21 | @@ -990,7 +990,7 @@ sub init { | 20 | @@ -1023,7 +1023,7 @@ sub init { |
22 | my_prompt_loop(prefer_installer => 'MB', $matcher, 'MB|EUMM|RAND'); | 21 | my_prompt_loop(prefer_installer => 'MB', $matcher, 'MB|EUMM|RAND'); |
23 | 22 | ||
24 | if (!$matcher or 'makepl_arg make_arg' =~ /$matcher/) { | 23 | if (!$matcher or 'makepl_arg make_arg' =~ /$matcher/) { |
@@ -26,8 +25,8 @@ index 667bdca..c38c890 100644 | |||
26 | + my_dflt_prompt(makepl_arg => "INSTALLDIRS=site", $matcher); | 25 | + my_dflt_prompt(makepl_arg => "INSTALLDIRS=site", $matcher); |
27 | my_dflt_prompt(make_arg => "", $matcher); | 26 | my_dflt_prompt(make_arg => "", $matcher); |
28 | if ( $CPAN::Config->{makepl_arg} =~ /LIBS=|INC=/ ) { | 27 | if ( $CPAN::Config->{makepl_arg} =~ /LIBS=|INC=/ ) { |
29 | $CPAN::Frontend->mywarn( | 28 | $CPAN::Frontend->mywarn( |
30 | @@ -1022,7 +1022,7 @@ sub init { | 29 | @@ -1055,7 +1055,7 @@ sub init { |
31 | my_dflt_prompt(make_install_arg => $CPAN::Config->{make_arg} || "", | 30 | my_dflt_prompt(make_install_arg => $CPAN::Config->{make_arg} || "", |
32 | $matcher); | 31 | $matcher); |
33 | 32 | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/db_file_ver.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/db_file_ver.diff index 8726056eaa..9557560a1c 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/db_file_ver.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/db_file_ver.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 4da39e2ce6c5a510409c2da1c7b24e0e7ff87f31 Mon Sep 17 00:00:00 2001 |
2 | From 0d1acf7af6da3a3f933faba8459ad9ff03fe3e5b Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Fri, 16 Dec 2005 01:32:14 +1100 | 3 | Date: Fri, 16 Dec 2005 01:32:14 +1100 |
5 | Subject: Remove overly restrictive DB_File version check. | 4 | Subject: Remove overly restrictive DB_File version check. |
@@ -10,8 +9,8 @@ Package dependencies ensure the correct library is linked at run-time. | |||
10 | 9 | ||
11 | Patch-Name: debian/db_file_ver.diff | 10 | Patch-Name: debian/db_file_ver.diff |
12 | --- | 11 | --- |
13 | cpan/DB_File/version.c | 2 ++ | 12 | cpan/DB_File/version.c | 2 ++ |
14 | 1 files changed, 2 insertions(+), 0 deletions(-) | 13 | 1 file changed, 2 insertions(+) |
15 | 14 | ||
16 | diff --git a/cpan/DB_File/version.c b/cpan/DB_File/version.c | 15 | diff --git a/cpan/DB_File/version.c b/cpan/DB_File/version.c |
17 | index e01f6f6..544e6ee 100644 | 16 | index e01f6f6..544e6ee 100644 |
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/doc_info.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/doc_info.diff index 889024a358..7643759667 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/doc_info.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/doc_info.diff | |||
@@ -1,24 +1,22 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 2f3e4b35da039600de403083b5a0c7391751d02e Mon Sep 17 00:00:00 2001 |
2 | From 16ebe1f5232621d8894aa6c6210fdf2fc9b54a84 Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Fri, 18 Mar 2005 22:22:25 +1100 | 3 | Date: Fri, 18 Mar 2005 22:22:25 +1100 |
5 | Subject: Replace generic man(1) instructions with Debian-specific | 4 | Subject: Replace generic man(1) instructions with Debian-specific information. |
6 | information. | ||
7 | 5 | ||
8 | Indicate that the user needs to install the perl-doc package. | 6 | Indicate that the user needs to install the perl-doc package. |
9 | 7 | ||
10 | Patch-Name: debian/doc_info.diff | 8 | Patch-Name: debian/doc_info.diff |
11 | --- | 9 | --- |
12 | pod/perl.pod | 12 ++++++++++-- | 10 | pod/perl.pod | 12 ++++++++++-- |
13 | 1 files changed, 10 insertions(+), 2 deletions(-) | 11 | 1 file changed, 10 insertions(+), 2 deletions(-) |
14 | 12 | ||
15 | diff --git a/pod/perl.pod b/pod/perl.pod | 13 | diff --git a/pod/perl.pod b/pod/perl.pod |
16 | index 29cabf1..529ad6f 100644 | 14 | index 2e8d0d8..8810769 100644 |
17 | --- a/pod/perl.pod | 15 | --- a/pod/perl.pod |
18 | +++ b/pod/perl.pod | 16 | +++ b/pod/perl.pod |
19 | @@ -261,8 +261,16 @@ For ease of access, the Perl manual has been split up into several sections. | 17 | @@ -274,8 +274,16 @@ aux a2p c2ph h2ph h2xs perlbug pl2pm pod2html pod2man s2p splain xsubpp |
20 | perlwin32 Perl notes for Windows | ||
21 | 18 | ||
19 | =for buildtoc __END__ | ||
22 | 20 | ||
23 | -On a Unix-like system, these documentation files will usually also be | 21 | -On a Unix-like system, these documentation files will usually also be |
24 | -available as manpages for use with the F<man> program. | 22 | -available as manpages for use with the F<man> program. |
@@ -33,5 +31,5 @@ index 29cabf1..529ad6f 100644 | |||
33 | +You should be able to view Perl's documentation with your man(1) | 31 | +You should be able to view Perl's documentation with your man(1) |
34 | +program or perldoc(1). | 32 | +program or perldoc(1). |
35 | 33 | ||
36 | In general, if something strange has gone wrong with your program and you're | 34 | Some documentation is not available as man pages, so if a |
37 | not sure where you should look for help, try the B<-w> switch first. It will | 35 | cross-reference is not found by man, try it with L<perldoc>. Perldoc can |
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/enc2xs_inc.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/enc2xs_inc.diff index 9440348355..4650b0bef8 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/enc2xs_inc.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/enc2xs_inc.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 98e7248580af353d781b24715b42af5b6a4caf35 Mon Sep 17 00:00:00 2001 |
2 | From e9fd6e7729b9ebd9bc74b8cf295cd3a7f5aa5472 Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Tue, 8 Mar 2005 19:30:38 +1100 | 3 | Date: Tue, 8 Mar 2005 19:30:38 +1100 |
5 | Subject: Tweak enc2xs to follow symlinks and ignore missing @INC directories. | 4 | Subject: Tweak enc2xs to follow symlinks and ignore missing @INC directories. |
@@ -13,14 +12,15 @@ Bug-Debian: http://bugs.debian.org/290336 | |||
13 | 12 | ||
14 | Patch-Name: debian/enc2xs_inc.diff | 13 | Patch-Name: debian/enc2xs_inc.diff |
15 | --- | 14 | --- |
16 | cpan/Encode/bin/enc2xs | 8 ++++---- | 15 | cpan/Encode/bin/enc2xs | 8 ++++---- |
17 | 1 files changed, 4 insertions(+), 4 deletions(-) | 16 | t/porting/customized.t | 3 +++ |
17 | 2 files changed, 7 insertions(+), 4 deletions(-) | ||
18 | 18 | ||
19 | diff --git a/cpan/Encode/bin/enc2xs b/cpan/Encode/bin/enc2xs | 19 | diff --git a/cpan/Encode/bin/enc2xs b/cpan/Encode/bin/enc2xs |
20 | index 773c0a0..bc1ae1b 100644 | 20 | index c44487d..a9af54f 100644 |
21 | --- a/cpan/Encode/bin/enc2xs | 21 | --- a/cpan/Encode/bin/enc2xs |
22 | +++ b/cpan/Encode/bin/enc2xs | 22 | +++ b/cpan/Encode/bin/enc2xs |
23 | @@ -924,11 +924,11 @@ use vars qw( | 23 | @@ -929,11 +929,11 @@ use vars qw( |
24 | sub find_e2x{ | 24 | sub find_e2x{ |
25 | eval { require File::Find; }; | 25 | eval { require File::Find; }; |
26 | my (@inc, %e2x_dir); | 26 | my (@inc, %e2x_dir); |
@@ -34,7 +34,7 @@ index 773c0a0..bc1ae1b 100644 | |||
34 | my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size, | 34 | my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size, |
35 | $atime,$mtime,$ctime,$blksize,$blocks) | 35 | $atime,$mtime,$ctime,$blksize,$blocks) |
36 | = lstat($_) or return; | 36 | = lstat($_) or return; |
37 | @@ -938,7 +938,7 @@ sub find_e2x{ | 37 | @@ -943,7 +943,7 @@ sub find_e2x{ |
38 | $e2x_dir{$File::Find::dir} ||= $mtime; | 38 | $e2x_dir{$File::Find::dir} ||= $mtime; |
39 | } | 39 | } |
40 | return; | 40 | return; |
@@ -43,7 +43,7 @@ index 773c0a0..bc1ae1b 100644 | |||
43 | warn join("\n", keys %e2x_dir), "\n"; | 43 | warn join("\n", keys %e2x_dir), "\n"; |
44 | for my $d (sort {$e2x_dir{$a} <=> $e2x_dir{$b}} keys %e2x_dir){ | 44 | for my $d (sort {$e2x_dir{$a} <=> $e2x_dir{$b}} keys %e2x_dir){ |
45 | $_E2X = $d; | 45 | $_E2X = $d; |
46 | @@ -1005,7 +1005,7 @@ sub make_configlocal_pm { | 46 | @@ -1010,7 +1010,7 @@ sub make_configlocal_pm { |
47 | $LocalMod{$enc} ||= $mod; | 47 | $LocalMod{$enc} ||= $mod; |
48 | } | 48 | } |
49 | }; | 49 | }; |
@@ -52,3 +52,19 @@ index 773c0a0..bc1ae1b 100644 | |||
52 | $_ModLines = ""; | 52 | $_ModLines = ""; |
53 | for my $enc ( sort keys %LocalMod ) { | 53 | for my $enc ( sort keys %LocalMod ) { |
54 | $_ModLines .= | 54 | $_ModLines .= |
55 | diff --git a/t/porting/customized.t b/t/porting/customized.t | ||
56 | index a769c58..6b9977f 100644 | ||
57 | --- a/t/porting/customized.t | ||
58 | +++ b/t/porting/customized.t | ||
59 | @@ -99,8 +99,11 @@ foreach my $module ( sort keys %Modules ) { | ||
60 | print $data_fh join(' ', $module, $file, $id), "\n"; | ||
61 | next; | ||
62 | } | ||
63 | +SKIP: { | ||
64 | + skip("$file modified for Debian", 1) if $file eq 'cpan/Encode/bin/enc2xs'; | ||
65 | my $should_be = $customised{ $module }->{ $file }; | ||
66 | is( $id, $should_be, "SHA for $file matches stashed SHA" ); | ||
67 | +} | ||
68 | } | ||
69 | } | ||
70 | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/errno_ver.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/errno_ver.diff index c7b0531fb8..d8885a70b1 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/errno_ver.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/errno_ver.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 81255b67014bda2ec127e0856436acfa554a068c Mon Sep 17 00:00:00 2001 |
2 | From 973bed42db538804179f39d66dab37c82c6ade24 Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Fri, 16 Dec 2005 01:32:14 +1100 | 3 | Date: Fri, 16 Dec 2005 01:32:14 +1100 |
5 | Subject: Remove Errno version check due to upgrade problems with long-running | 4 | Subject: Remove Errno version check due to upgrade problems with long-running |
@@ -13,14 +12,14 @@ compatible, but built on a different machine. | |||
13 | 12 | ||
14 | Patch-Name: debian/errno_ver.diff | 13 | Patch-Name: debian/errno_ver.diff |
15 | --- | 14 | --- |
16 | ext/Errno/Errno_pm.PL | 5 ----- | 15 | ext/Errno/Errno_pm.PL | 5 ----- |
17 | 1 files changed, 0 insertions(+), 5 deletions(-) | 16 | 1 file changed, 5 deletions(-) |
18 | 17 | ||
19 | diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL | 18 | diff --git a/ext/Errno/Errno_pm.PL b/ext/Errno/Errno_pm.PL |
20 | index 56bc815..01f510a 100644 | 19 | index 55ad01a..e4a31ef 100644 |
21 | --- a/ext/Errno/Errno_pm.PL | 20 | --- a/ext/Errno/Errno_pm.PL |
22 | +++ b/ext/Errno/Errno_pm.PL | 21 | +++ b/ext/Errno/Errno_pm.PL |
23 | @@ -332,13 +332,8 @@ EOF | 22 | @@ -277,13 +277,8 @@ sub write_errno_pm { |
24 | 23 | ||
25 | package Errno; | 24 | package Errno; |
26 | require Exporter; | 25 | require Exporter; |
@@ -28,8 +27,8 @@ index 56bc815..01f510a 100644 | |||
28 | use strict; | 27 | use strict; |
29 | 28 | ||
30 | -"\$Config{'archname'}-\$Config{'osvers'}" eq | 29 | -"\$Config{'archname'}-\$Config{'osvers'}" eq |
31 | -"$Config{'archname'}-$Config{'osvers'}" or | 30 | -"$archname-$Config{'osvers'}" or |
32 | - die "Errno architecture ($Config{'archname'}-$Config{'osvers'}) does not match executable architecture (\$Config{'archname'}-\$Config{'osvers'})"; | 31 | - die "Errno architecture ($archname-$Config{'osvers'}) does not match executable architecture (\$Config{'archname'}-\$Config{'osvers'})"; |
33 | - | 32 | - |
34 | our \$VERSION = "$VERSION"; | 33 | our \$VERSION = "$VERSION"; |
35 | \$VERSION = eval \$VERSION; | 34 | \$VERSION = eval \$VERSION; |
diff --git a/meta/recipes-devtools/perl/perl-5.20.0/debian/extutils_set_libperl_path.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/extutils_set_libperl_path.diff new file mode 100644 index 0000000000..53fd1f616e --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/extutils_set_libperl_path.diff | |||
@@ -0,0 +1,37 @@ | |||
1 | From 2870b992e4b5e8bb0b9c44c9aff81adaaf9de439 Mon Sep 17 00:00:00 2001 | ||
2 | From: Niko Tyni <ntyni@debian.org> | ||
3 | Date: Sat, 10 May 2014 23:34:14 +0300 | ||
4 | Subject: EU:MM: set location of libperl.a under /usr/lib | ||
5 | |||
6 | The Debian packaging moves libperl.a a couple of levels up from the | ||
7 | CORE directory to match other static libraries. | ||
8 | |||
9 | Patch-Name: debian/extutils_set_libperl_path.diff | ||
10 | --- | ||
11 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 2 +- | ||
12 | pp.c | 2 +- | ||
13 | 2 files changed, 2 insertions(+), 2 deletions(-) | ||
14 | |||
15 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | ||
16 | index 8b86a24..f977476 100644 | ||
17 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | ||
18 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | ||
19 | @@ -2462,7 +2462,7 @@ MAP_PRELIBS = $Config{perllibs} $Config{cryptlib} | ||
20 | ($lperl = $libperl) =~ s/\$\(A\)/$self->{LIB_EXT}/; | ||
21 | } | ||
22 | unless ($libperl && -f $lperl) { # Ilya's code... | ||
23 | - my $dir = $self->{PERL_SRC} || "$self->{PERL_ARCHLIB}/CORE"; | ||
24 | + my $dir = $self->{PERL_SRC} || "$self->{PERL_ARCHLIB}/../.."; | ||
25 | $dir = "$self->{PERL_ARCHLIB}/.." if $self->{UNINSTALLED_PERL}; | ||
26 | $libperl ||= "libperl$self->{LIB_EXT}"; | ||
27 | $libperl = "$dir/$libperl"; | ||
28 | diff --git a/pp.c b/pp.c | ||
29 | index 4ec6887..a44c137 100644 | ||
30 | --- a/pp.c | ||
31 | +++ b/pp.c | ||
32 | @@ -1,4 +1,4 @@ | ||
33 | -/* pp.c | ||
34 | + /* pp.c | ||
35 | * | ||
36 | * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, | ||
37 | * 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by Larry Wall and others | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/find_html2text.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/find_html2text.diff index 29dc576c1c..c0e1949f5f 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/find_html2text.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/find_html2text.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 8deb14b24ee17694a2f23a78e8782b24c116daae Mon Sep 17 00:00:00 2001 |
2 | From ca66b95be369b47a6d372c3653be57cd737f7f21 Mon Sep 17 00:00:00 2001 | ||
3 | From: Andreas Marschke <andreas.marschke@googlemail.com> | 2 | From: Andreas Marschke <andreas.marschke@googlemail.com> |
4 | Date: Sat, 17 Sep 2011 11:38:42 +0100 | 3 | Date: Sat, 17 Sep 2011 11:38:42 +0100 |
5 | Subject: Configure CPAN::Distribution with correct name of html2text | 4 | Subject: Configure CPAN::Distribution with correct name of html2text |
@@ -18,14 +17,14 @@ Please see the attached patch for a quick fix of this issue. | |||
18 | as the html2text.pl which is expected, but should provide similar | 17 | as the html2text.pl which is expected, but should provide similar |
19 | functionality]. | 18 | functionality]. |
20 | --- | 19 | --- |
21 | cpan/CPAN/lib/CPAN/Distribution.pm | 2 +- | 20 | cpan/CPAN/lib/CPAN/Distribution.pm | 2 +- |
22 | 1 files changed, 1 insertions(+), 1 deletions(-) | 21 | 1 file changed, 1 insertion(+), 1 deletion(-) |
23 | 22 | ||
24 | diff --git a/cpan/CPAN/lib/CPAN/Distribution.pm b/cpan/CPAN/lib/CPAN/Distribution.pm | 23 | diff --git a/cpan/CPAN/lib/CPAN/Distribution.pm b/cpan/CPAN/lib/CPAN/Distribution.pm |
25 | index 637ab27..a8193d9 100644 | 24 | index 9a08707..332a627 100644 |
26 | --- a/cpan/CPAN/lib/CPAN/Distribution.pm | 25 | --- a/cpan/CPAN/lib/CPAN/Distribution.pm |
27 | +++ b/cpan/CPAN/lib/CPAN/Distribution.pm | 26 | +++ b/cpan/CPAN/lib/CPAN/Distribution.pm |
28 | @@ -3715,7 +3715,7 @@ sub _display_url { | 27 | @@ -4031,7 +4031,7 @@ sub _display_url { |
29 | if $CPAN::DEBUG; | 28 | if $CPAN::DEBUG; |
30 | 29 | ||
31 | # should we define it in the config instead? | 30 | # should we define it in the config instead? |
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/document_makemaker_ccflags.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/fixes/document_makemaker_ccflags.diff index 3f2c3dc646..f4050c01f4 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/document_makemaker_ccflags.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/fixes/document_makemaker_ccflags.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From c7ffe0cc3105cb627fbbb7d0c7dbb53f1f236a17 Mon Sep 17 00:00:00 2001 |
2 | From f0e3a51bd7286788e410510af86a6c07edac4445 Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | 2 | From: Niko Tyni <ntyni@debian.org> |
4 | Date: Mon, 30 May 2011 22:54:24 +0300 | 3 | Date: Mon, 30 May 2011 22:54:24 +0300 |
5 | Subject: Document that CCFLAGS should include $Config{ccflags} | 4 | Subject: Document that CCFLAGS should include $Config{ccflags} |
@@ -12,14 +11,14 @@ binary interface on some platforms. | |||
12 | 11 | ||
13 | Patch-Name: fixes/document_makemaker_ccflags.diff | 12 | Patch-Name: fixes/document_makemaker_ccflags.diff |
14 | --- | 13 | --- |
15 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm | 4 ++++ | 14 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm | 4 ++++ |
16 | 1 files changed, 4 insertions(+), 0 deletions(-) | 15 | 1 file changed, 4 insertions(+) |
17 | 16 | ||
18 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm | 17 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm |
19 | index be9624e..c56ca8f 100644 | 18 | index d2fabf6..fabb021 100644 |
20 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm | 19 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm |
21 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm | 20 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker.pm |
22 | @@ -1524,6 +1524,10 @@ currently used by MakeMaker but may be handy in Makefile.PLs. | 21 | @@ -1716,6 +1716,10 @@ currently used by MakeMaker but may be handy in Makefile.PLs. |
23 | String that will be included in the compiler call command line between | 22 | String that will be included in the compiler call command line between |
24 | the arguments INC and OPTIMIZE. | 23 | the arguments INC and OPTIMIZE. |
25 | 24 | ||
diff --git a/meta/recipes-devtools/perl/perl-5.20.0/debian/fixes/memoize_storable_nstore.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/fixes/memoize_storable_nstore.diff new file mode 100644 index 0000000000..b9d61c713e --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/fixes/memoize_storable_nstore.diff | |||
@@ -0,0 +1,110 @@ | |||
1 | From 8b7b31d6b2368717514a05dc0e968c1357511733 Mon Sep 17 00:00:00 2001 | ||
2 | From: Jonathan Nieder <jrnieder@gmail.com> | ||
3 | Date: Fri, 27 Jul 2012 10:35:07 -0500 | ||
4 | Subject: Memoize::Storable: respect 'nstore' option not respected | ||
5 | MIME-Version: 1.0 | ||
6 | Content-Type: text/plain; charset=UTF-8 | ||
7 | Content-Transfer-Encoding: 8bit | ||
8 | |||
9 | Memoize(3perl) says: | ||
10 | |||
11 | tie my %cache => 'Memoize::Storable', $filename, 'nstore'; | ||
12 | memoize 'function', SCALAR_CACHE => [HASH => \%cache]; | ||
13 | |||
14 | Include the ‘nstore’ option to have the "Storable" database | ||
15 | written in ‘network order’. (See Storable for more details | ||
16 | about this.) | ||
17 | |||
18 | In fact the "nstore" option does no such thing. Option parsing looks | ||
19 | like this: | ||
20 | |||
21 | @options{@_} = (); | ||
22 | |||
23 | $self->{OPTIONS}{'nstore'} is accordingly set to undef. Later | ||
24 | Memoize::Storable checks if the option is true, and since undef is | ||
25 | not true, the "else" branch is always taken. | ||
26 | |||
27 | if ($self->{OPTIONS}{'nstore'}) { | ||
28 | Storable::nstore($self->{H}, $self->{FILENAME}); | ||
29 | } else { | ||
30 | Storable::store($self->{H}, $self->{FILENAME}); | ||
31 | } | ||
32 | |||
33 | Correcting the condition to (exists $self->{OPTIONS}{'nstore'}) fixes | ||
34 | it. | ||
35 | |||
36 | Noticed because git-svn, which uses the 'nstore' option for its | ||
37 | on-disk caches, was producing | ||
38 | |||
39 | Byte order is not compatible at ../../lib/Storable.pm | ||
40 | |||
41 | when run using a perl with a different integer size (and hence | ||
42 | byteorder). | ||
43 | |||
44 | Reported by Tim Retout (RT#77790) | ||
45 | |||
46 | Bug-Debian: http://bugs.debian.org/587650 | ||
47 | Bug: https://rt.cpan.org/Public/Bug/Display.html?id=77790 | ||
48 | Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=77790 | ||
49 | Patch-Name: fixes/memoize_storable_nstore.diff | ||
50 | --- | ||
51 | cpan/Memoize/Memoize/Storable.pm | 2 +- | ||
52 | cpan/Memoize/t/tie_storable.t | 24 ++++++++++++++++++++---- | ||
53 | 2 files changed, 21 insertions(+), 5 deletions(-) | ||
54 | |||
55 | diff --git a/cpan/Memoize/Memoize/Storable.pm b/cpan/Memoize/Memoize/Storable.pm | ||
56 | index 1314797..87876f2 100644 | ||
57 | --- a/cpan/Memoize/Memoize/Storable.pm | ||
58 | +++ b/cpan/Memoize/Memoize/Storable.pm | ||
59 | @@ -55,7 +55,7 @@ sub DESTROY { | ||
60 | require Carp if $Verbose; | ||
61 | my $self= shift; | ||
62 | print STDERR "Memoize::Storable::DESTROY(@_)\n" if $Verbose; | ||
63 | - if ($self->{OPTIONS}{'nstore'}) { | ||
64 | + if (exists $self->{OPTIONS}{'nstore'}) { | ||
65 | Storable::nstore($self->{H}, $self->{FILENAME}); | ||
66 | } else { | ||
67 | Storable::store($self->{H}, $self->{FILENAME}); | ||
68 | diff --git a/cpan/Memoize/t/tie_storable.t b/cpan/Memoize/t/tie_storable.t | ||
69 | index de3b8dc..a624238 100644 | ||
70 | --- a/cpan/Memoize/t/tie_storable.t | ||
71 | +++ b/cpan/Memoize/t/tie_storable.t | ||
72 | @@ -31,18 +31,34 @@ if ($@) { | ||
73 | exit 0; | ||
74 | } | ||
75 | |||
76 | -print "1..4\n"; | ||
77 | +print "1..9\n"; | ||
78 | |||
79 | $file = "storable$$"; | ||
80 | 1 while unlink $file; | ||
81 | tryout('Memoize::Storable', $file, 1); # Test 1..4 | ||
82 | 1 while unlink $file; | ||
83 | +tryout('Memoize::Storable', $file, 5, 'nstore'); # Test 5..8 | ||
84 | +assert_netorder($file, 9); # Test 9 | ||
85 | +1 while unlink $file; | ||
86 | + | ||
87 | + | ||
88 | +sub assert_netorder { | ||
89 | + my ($file, $testno) = @_; | ||
90 | + | ||
91 | + my $netorder = Storable::file_magic($file)->{'netorder'}; | ||
92 | + print ($netorder ? "ok $testno\n" : "not ok $testno\n"); | ||
93 | +} | ||
94 | |||
95 | sub tryout { | ||
96 | - my ($tiepack, $file, $testno) = @_; | ||
97 | + my ($tiepack, $file, $testno, $option) = @_; | ||
98 | |||
99 | - tie my %cache => $tiepack, $file | ||
100 | - or die $!; | ||
101 | + if (defined $option) { | ||
102 | + tie my %cache => $tiepack, $file, $option | ||
103 | + or die $!; | ||
104 | + } else { | ||
105 | + tie my %cache => $tiepack, $file | ||
106 | + or die $!; | ||
107 | + } | ||
108 | |||
109 | memoize 'c5', | ||
110 | SCALAR_CACHE => [HASH => \%cache], | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/net_smtp_docs.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/fixes/net_smtp_docs.diff index f68c352985..b7ccc5757c 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/net_smtp_docs.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/fixes/net_smtp_docs.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From e2e1127a521d942bd9aea4c1290cdf46c15c35fd Mon Sep 17 00:00:00 2001 |
2 | From ab32eba7fcc45d864c22e8f4ee02e0a6712070e0 Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Thu, 20 Sep 2007 19:47:14 +1000 | 3 | Date: Thu, 20 Sep 2007 19:47:14 +1000 |
5 | Subject: Document the Net::SMTP 'Port' option | 4 | Subject: Document the Net::SMTP 'Port' option |
@@ -9,14 +8,14 @@ Bug: http://rt.cpan.org/Public/Bug/Display.html?id=36038 | |||
9 | 8 | ||
10 | Patch-Name: fixes/net_smtp_docs.diff | 9 | Patch-Name: fixes/net_smtp_docs.diff |
11 | --- | 10 | --- |
12 | cpan/libnet/Net/SMTP.pm | 1 + | 11 | cpan/libnet/Net/SMTP.pm | 1 + |
13 | 1 files changed, 1 insertions(+), 0 deletions(-) | 12 | 1 file changed, 1 insertion(+) |
14 | 13 | ||
15 | diff --git a/cpan/libnet/Net/SMTP.pm b/cpan/libnet/Net/SMTP.pm | 14 | diff --git a/cpan/libnet/Net/SMTP.pm b/cpan/libnet/Net/SMTP.pm |
16 | index a28496d..07b2498 100644 | 15 | index 705b5c5..17c1d21 100644 |
17 | --- a/cpan/libnet/Net/SMTP.pm | 16 | --- a/cpan/libnet/Net/SMTP.pm |
18 | +++ b/cpan/libnet/Net/SMTP.pm | 17 | +++ b/cpan/libnet/Net/SMTP.pm |
19 | @@ -625,6 +625,7 @@ Net::SMTP will attempt to extract the address from the value passed. | 18 | @@ -637,6 +637,7 @@ Net::SMTP will attempt to extract the address from the value passed. |
20 | 19 | ||
21 | B<Debug> - Enable debugging information | 20 | B<Debug> - Enable debugging information |
22 | 21 | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/respect_umask.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/fixes/respect_umask.diff index aa9307fc8a..e5f116abd4 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/fixes/respect_umask.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/fixes/respect_umask.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From f290a5ebd91e89d63b2a1958420f53e22d20c4ee Mon Sep 17 00:00:00 2001 |
2 | From 0d1ab4f799eb14d5488fcc959f4a6bdec548b370 Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Tue, 8 Mar 2005 19:30:38 +1100 | 3 | Date: Tue, 8 Mar 2005 19:30:38 +1100 |
5 | Subject: Respect umask during installation | 4 | Subject: Respect umask during installation |
@@ -9,43 +8,43 @@ site directories. | |||
9 | 8 | ||
10 | Patch-Name: fixes/respect_umask.diff | 9 | Patch-Name: fixes/respect_umask.diff |
11 | --- | 10 | --- |
12 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 18 +++++++++--------- | 11 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 18 +++++++++--------- |
13 | dist/ExtUtils-Install/lib/ExtUtils/Install.pm | 18 +++++++++--------- | 12 | dist/ExtUtils-Install/lib/ExtUtils/Install.pm | 18 +++++++++--------- |
14 | 2 files changed, 18 insertions(+), 18 deletions(-) | 13 | 2 files changed, 18 insertions(+), 18 deletions(-) |
15 | 14 | ||
16 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 15 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm |
17 | index 6964eea..865d36d 100644 | 16 | index 4140432..8fdb67c 100644 |
18 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 17 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm |
19 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 18 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm |
20 | @@ -2053,7 +2053,7 @@ doc__install : doc_site_install | 19 | @@ -2075,7 +2075,7 @@ doc__install : doc_site_install |
21 | $(NOECHO) $(ECHO) INSTALLDIRS not defined, defaulting to INSTALLDIRS=site | 20 | $(NOECHO) $(ECHO) INSTALLDIRS not defined, defaulting to INSTALLDIRS=site |
22 | 21 | ||
23 | pure_perl_install :: all | 22 | pure_perl_install :: all |
24 | - $(NOECHO) $(MOD_INSTALL) \ | 23 | - $(NOECHO) $(MOD_INSTALL) \ |
25 | + $(NOECHO) umask 022; $(MOD_INSTALL) \ | 24 | + $(NOECHO) umask 022; $(MOD_INSTALL) \ |
26 | read }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \ | 25 | }; |
27 | write }.$self->catfile('$(DESTINSTALLARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \ | 26 | |
28 | $(INST_LIB) $(DESTINSTALLPRIVLIB) \ | 27 | push @m, |
29 | @@ -2067,7 +2067,7 @@ pure_perl_install :: all | 28 | @@ -2095,7 +2095,7 @@ q{ $(INST_LIB) $(DESTINSTALLPRIVLIB) \ |
30 | 29 | ||
31 | 30 | ||
32 | pure_site_install :: all | 31 | pure_site_install :: all |
33 | - $(NOECHO) $(MOD_INSTALL) \ | 32 | - $(NOECHO) $(MOD_INSTALL) \ |
34 | + $(NOECHO) umask 022; $(MOD_INSTALL) \ | 33 | + $(NOECHO) umask 022; $(MOD_INSTALL) \ |
35 | read }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \ | 34 | }; |
36 | write }.$self->catfile('$(DESTINSTALLSITEARCH)','auto','$(FULLEXT)','.packlist').q{ \ | 35 | push @m, |
37 | $(INST_LIB) $(DESTINSTALLSITELIB) \ | 36 | q{ read }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \ |
38 | @@ -2080,7 +2080,7 @@ pure_site_install :: all | 37 | @@ -2113,7 +2113,7 @@ q{ $(INST_LIB) $(DESTINSTALLSITELIB) \ |
39 | }.$self->catdir('$(PERL_ARCHLIB)','auto','$(FULLEXT)').q{ | 38 | }.$self->catdir('$(PERL_ARCHLIB)','auto','$(FULLEXT)').q{ |
40 | 39 | ||
41 | pure_vendor_install :: all | 40 | pure_vendor_install :: all |
42 | - $(NOECHO) $(MOD_INSTALL) \ | 41 | - $(NOECHO) $(MOD_INSTALL) \ |
43 | + $(NOECHO) umask 022; $(MOD_INSTALL) \ | 42 | + $(NOECHO) umask 022; $(MOD_INSTALL) \ |
44 | read }.$self->catfile('$(VENDORARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \ | 43 | }; |
45 | write }.$self->catfile('$(DESTINSTALLVENDORARCH)','auto','$(FULLEXT)','.packlist').q{ \ | 44 | push @m, |
46 | $(INST_LIB) $(DESTINSTALLVENDORLIB) \ | 45 | q{ read }.$self->catfile('$(VENDORARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \ |
47 | @@ -2092,8 +2092,8 @@ pure_vendor_install :: all | 46 | @@ -2145,8 +2145,8 @@ doc_vendor_install :: all |
48 | 47 | push @m, q{ | |
49 | doc_perl_install :: all | 48 | doc_perl_install :: all |
50 | $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod | 49 | $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod |
51 | - -$(NOECHO) $(MKPATH) $(DESTINSTALLARCHLIB) | 50 | - -$(NOECHO) $(MKPATH) $(DESTINSTALLARCHLIB) |
@@ -55,7 +54,7 @@ index 6964eea..865d36d 100644 | |||
55 | "Module" "$(NAME)" \ | 54 | "Module" "$(NAME)" \ |
56 | "installed into" "$(INSTALLPRIVLIB)" \ | 55 | "installed into" "$(INSTALLPRIVLIB)" \ |
57 | LINKTYPE "$(LINKTYPE)" \ | 56 | LINKTYPE "$(LINKTYPE)" \ |
58 | @@ -2103,8 +2103,8 @@ doc_perl_install :: all | 57 | @@ -2156,8 +2156,8 @@ doc_perl_install :: all |
59 | 58 | ||
60 | doc_site_install :: all | 59 | doc_site_install :: all |
61 | $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod | 60 | $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod |
@@ -66,7 +65,7 @@ index 6964eea..865d36d 100644 | |||
66 | "Module" "$(NAME)" \ | 65 | "Module" "$(NAME)" \ |
67 | "installed into" "$(INSTALLSITELIB)" \ | 66 | "installed into" "$(INSTALLSITELIB)" \ |
68 | LINKTYPE "$(LINKTYPE)" \ | 67 | LINKTYPE "$(LINKTYPE)" \ |
69 | @@ -2114,8 +2114,8 @@ doc_site_install :: all | 68 | @@ -2167,8 +2167,8 @@ doc_site_install :: all |
70 | 69 | ||
71 | doc_vendor_install :: all | 70 | doc_vendor_install :: all |
72 | $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod | 71 | $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod |
@@ -78,10 +77,10 @@ index 6964eea..865d36d 100644 | |||
78 | "installed into" "$(INSTALLVENDORLIB)" \ | 77 | "installed into" "$(INSTALLVENDORLIB)" \ |
79 | LINKTYPE "$(LINKTYPE)" \ | 78 | LINKTYPE "$(LINKTYPE)" \ |
80 | diff --git a/dist/ExtUtils-Install/lib/ExtUtils/Install.pm b/dist/ExtUtils-Install/lib/ExtUtils/Install.pm | 79 | diff --git a/dist/ExtUtils-Install/lib/ExtUtils/Install.pm b/dist/ExtUtils-Install/lib/ExtUtils/Install.pm |
81 | index 3b030a5..cb0e9e0 100644 | 80 | index eec57aa..06cc530 100644 |
82 | --- a/dist/ExtUtils-Install/lib/ExtUtils/Install.pm | 81 | --- a/dist/ExtUtils-Install/lib/ExtUtils/Install.pm |
83 | +++ b/dist/ExtUtils-Install/lib/ExtUtils/Install.pm | 82 | +++ b/dist/ExtUtils-Install/lib/ExtUtils/Install.pm |
84 | @@ -468,7 +468,7 @@ sub _can_write_dir { | 83 | @@ -450,7 +450,7 @@ sub _can_write_dir { |
85 | 84 | ||
86 | =pod | 85 | =pod |
87 | 86 | ||
@@ -90,7 +89,7 @@ index 3b030a5..cb0e9e0 100644 | |||
90 | 89 | ||
91 | Wrapper around File::Path::mkpath() to handle errors. | 90 | Wrapper around File::Path::mkpath() to handle errors. |
92 | 91 | ||
93 | @@ -485,13 +485,13 @@ writable. | 92 | @@ -467,13 +467,13 @@ writable. |
94 | =cut | 93 | =cut |
95 | 94 | ||
96 | sub _mkpath { | 95 | sub _mkpath { |
@@ -107,7 +106,7 @@ index 3b030a5..cb0e9e0 100644 | |||
107 | _choke("Can't create '$dir'","$@"); | 106 | _choke("Can't create '$dir'","$@"); |
108 | } | 107 | } |
109 | 108 | ||
110 | @@ -796,7 +796,7 @@ sub install { #XXX OS-SPECIFIC | 109 | @@ -782,7 +782,7 @@ sub install { #XXX OS-SPECIFIC |
111 | _chdir($cwd); | 110 | _chdir($cwd); |
112 | } | 111 | } |
113 | foreach my $targetdir (sort keys %check_dirs) { | 112 | foreach my $targetdir (sort keys %check_dirs) { |
@@ -116,7 +115,7 @@ index 3b030a5..cb0e9e0 100644 | |||
116 | } | 115 | } |
117 | foreach my $found (@found_files) { | 116 | foreach my $found (@found_files) { |
118 | my ($diff, $ffd, $origfile, $mode, $size, $atime, $mtime, | 117 | my ($diff, $ffd, $origfile, $mode, $size, $atime, $mtime, |
119 | @@ -810,7 +810,7 @@ sub install { #XXX OS-SPECIFIC | 118 | @@ -796,7 +796,7 @@ sub install { #XXX OS-SPECIFIC |
120 | $targetfile= _unlink_or_rename( $targetfile, 'tryhard', 'install' ) | 119 | $targetfile= _unlink_or_rename( $targetfile, 'tryhard', 'install' ) |
121 | unless $dry_run; | 120 | unless $dry_run; |
122 | } elsif ( ! -d $targetdir ) { | 121 | } elsif ( ! -d $targetdir ) { |
@@ -125,7 +124,7 @@ index 3b030a5..cb0e9e0 100644 | |||
125 | } | 124 | } |
126 | print "Installing $targetfile\n"; | 125 | print "Installing $targetfile\n"; |
127 | 126 | ||
128 | @@ -850,7 +850,7 @@ sub install { #XXX OS-SPECIFIC | 127 | @@ -836,7 +836,7 @@ sub install { #XXX OS-SPECIFIC |
129 | 128 | ||
130 | if ($pack{'write'}) { | 129 | if ($pack{'write'}) { |
131 | $dir = install_rooted_dir(dirname($pack{'write'})); | 130 | $dir = install_rooted_dir(dirname($pack{'write'})); |
@@ -134,7 +133,7 @@ index 3b030a5..cb0e9e0 100644 | |||
134 | print "Writing $pack{'write'}\n" if $verbose; | 133 | print "Writing $pack{'write'}\n" if $verbose; |
135 | $packlist->write(install_rooted_file($pack{'write'})) unless $dry_run; | 134 | $packlist->write(install_rooted_file($pack{'write'})) unless $dry_run; |
136 | } | 135 | } |
137 | @@ -1190,7 +1190,7 @@ be prepended as a directory to each installed file (and directory). | 136 | @@ -1176,7 +1176,7 @@ be prepended as a directory to each installed file (and directory). |
138 | sub pm_to_blib { | 137 | sub pm_to_blib { |
139 | my($fromto,$autodir,$pm_filter) = @_; | 138 | my($fromto,$autodir,$pm_filter) = @_; |
140 | 139 | ||
@@ -143,7 +142,7 @@ index 3b030a5..cb0e9e0 100644 | |||
143 | while(my($from, $to) = each %$fromto) { | 142 | while(my($from, $to) = each %$fromto) { |
144 | if( -f $to && -s $from == -s $to && -M $to < -M $from ) { | 143 | if( -f $to && -s $from == -s $to && -M $to < -M $from ) { |
145 | print "Skip $to (unchanged)\n"; | 144 | print "Skip $to (unchanged)\n"; |
146 | @@ -1213,7 +1213,7 @@ sub pm_to_blib { | 145 | @@ -1199,7 +1199,7 @@ sub pm_to_blib { |
147 | # we wont try hard here. its too likely to mess things up. | 146 | # we wont try hard here. its too likely to mess things up. |
148 | forceunlink($to); | 147 | forceunlink($to); |
149 | } else { | 148 | } else { |
diff --git a/meta/recipes-devtools/perl/perl-5.20.0/debian/hurd_test_skip_stack.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/hurd_test_skip_stack.diff new file mode 100644 index 0000000000..66208a2661 --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/hurd_test_skip_stack.diff | |||
@@ -0,0 +1,32 @@ | |||
1 | From 651aaac47361c03d15681b6cfdba0056a348fbb7 Mon Sep 17 00:00:00 2001 | ||
2 | From: Dominic Hargreaves <dom@earth.li> | ||
3 | Date: Sun, 27 Nov 2011 16:27:07 +0000 | ||
4 | Subject: Disable failing GNU/Hurd tests dist/threads/t/stack.t | ||
5 | |||
6 | These tests fail on GNU/Hurd owing to libpthread using fixed-size stacks. | ||
7 | This is a known limitation that should get fixed in the future. | ||
8 | |||
9 | For now, disable the tests. | ||
10 | |||
11 | Bug-Debian: http://bugs.debian.org/650175 | ||
12 | |||
13 | Patch-Name: debian/hurd_test_skip_stack.diff | ||
14 | --- | ||
15 | dist/threads/t/stack.t | 4 ++++ | ||
16 | 1 file changed, 4 insertions(+) | ||
17 | |||
18 | diff --git a/dist/threads/t/stack.t b/dist/threads/t/stack.t | ||
19 | index cfd6cf7..84cc527 100644 | ||
20 | --- a/dist/threads/t/stack.t | ||
21 | +++ b/dist/threads/t/stack.t | ||
22 | @@ -7,6 +7,10 @@ BEGIN { | ||
23 | print("1..0 # SKIP Perl not compiled with 'useithreads'\n"); | ||
24 | exit(0); | ||
25 | } | ||
26 | + if ($^O eq 'gnu') { | ||
27 | + print("1..0 # SKIP fails on GNU/Hurd (Debian #650175)\n"); | ||
28 | + exit(0); | ||
29 | + } | ||
30 | } | ||
31 | |||
32 | use ExtUtils::testlib; | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/instmodsh_doc.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/instmodsh_doc.diff index ae13178151..569acb8a23 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/instmodsh_doc.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/instmodsh_doc.diff | |||
@@ -1,16 +1,15 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 035ae97a9c2bf8ed73031e8879a0f860797544c1 Mon Sep 17 00:00:00 2001 |
2 | From ab89a31d1f46388a61953349c3546e4082cd38de Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Tue, 8 Mar 2005 19:30:38 +1100 | 3 | Date: Tue, 8 Mar 2005 19:30:38 +1100 |
5 | Subject: Debian policy doesn't install .packlist files for core or vendor. | 4 | Subject: Debian policy doesn't install .packlist files for core or vendor. |
6 | 5 | ||
7 | Patch-Name: debian/instmodsh_doc.diff | 6 | Patch-Name: debian/instmodsh_doc.diff |
8 | --- | 7 | --- |
9 | cpan/ExtUtils-MakeMaker/bin/instmodsh | 4 +++- | 8 | cpan/ExtUtils-MakeMaker/bin/instmodsh | 4 +++- |
10 | 1 files changed, 3 insertions(+), 1 deletions(-) | 9 | 1 file changed, 3 insertions(+), 1 deletion(-) |
11 | 10 | ||
12 | diff --git a/cpan/ExtUtils-MakeMaker/bin/instmodsh b/cpan/ExtUtils-MakeMaker/bin/instmodsh | 11 | diff --git a/cpan/ExtUtils-MakeMaker/bin/instmodsh b/cpan/ExtUtils-MakeMaker/bin/instmodsh |
13 | index 5874aa6..6a2f03e 100644 | 12 | index 8b9aa95..e551434 100644 |
14 | --- a/cpan/ExtUtils-MakeMaker/bin/instmodsh | 13 | --- a/cpan/ExtUtils-MakeMaker/bin/instmodsh |
15 | +++ b/cpan/ExtUtils-MakeMaker/bin/instmodsh | 14 | +++ b/cpan/ExtUtils-MakeMaker/bin/instmodsh |
16 | @@ -18,9 +18,11 @@ instmodsh - A shell to examine installed modules | 15 | @@ -18,9 +18,11 @@ instmodsh - A shell to examine installed modules |
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/ld_run_path.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/ld_run_path.diff index 929328b0ca..fa0039f27a 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/ld_run_path.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/ld_run_path.diff | |||
@@ -1,25 +1,24 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From c089c8eb475a2018e8028e23b07defb5789a5633 Mon Sep 17 00:00:00 2001 |
2 | From 704f6017119ce0301a9105944512120a38a43a02 Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Fri, 18 Mar 2005 22:22:25 +1100 | 3 | Date: Fri, 18 Mar 2005 22:22:25 +1100 |
5 | Subject: Remove standard libs from LD_RUN_PATH as per Debian policy. | 4 | Subject: Remove standard libs from LD_RUN_PATH as per Debian policy. |
6 | 5 | ||
7 | Patch-Name: debian/ld_run_path.diff | 6 | Patch-Name: debian/ld_run_path.diff |
8 | --- | 7 | --- |
9 | .../ExtUtils-MakeMaker/lib/ExtUtils/Liblist/Kid.pm | 3 +++ | 8 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/Kid.pm | 3 +++ |
10 | 1 files changed, 3 insertions(+), 0 deletions(-) | 9 | 1 file changed, 3 insertions(+) |
11 | 10 | ||
12 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/Kid.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/Kid.pm | 11 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/Kid.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/Kid.pm |
13 | index cf4826f..eb212b5 100644 | 12 | index e39c8b2..0b933ce 100644 |
14 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/Kid.pm | 13 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/Kid.pm |
15 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/Kid.pm | 14 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/Kid.pm |
16 | @@ -54,6 +54,9 @@ sub _unix_os2_ext { | 15 | @@ -56,6 +56,9 @@ sub _unix_os2_ext { |
17 | my($pwd) = cwd(); # from Cwd.pm | 16 | my ( $pwd ) = cwd(); # from Cwd.pm |
18 | my($found) = 0; | 17 | my ( $found ) = 0; |
19 | 18 | ||
20 | + # Debian-specific: don't use LD_RUN_PATH for standard dirs | 19 | + # Debian-specific: don't use LD_RUN_PATH for standard dirs |
21 | + $ld_run_path_seen{$_}++ for @libpath; | 20 | + $ld_run_path_seen{$_}++ for @libpath; |
22 | + | 21 | + |
23 | foreach my $thislib (split ' ', $potential_libs) { | 22 | foreach my $thislib ( split ' ', $potential_libs ) { |
24 | 23 | ||
25 | # Handle possible linker path arguments. | 24 | # Handle possible linker path arguments. |
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/libnet_config_path.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/libnet_config_path.diff index 454cb9e31a..0a11cd7ae8 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/libnet_config_path.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/libnet_config_path.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 54e202518f081aa42d5ff733d56c4d42395bcba4 Mon Sep 17 00:00:00 2001 |
2 | From 7465b6d008187580eabe655b9c8e75351d3d24b4 Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Tue, 8 Mar 2005 19:30:38 +1100 | 3 | Date: Tue, 8 Mar 2005 19:30:38 +1100 |
5 | Subject: Set location of libnet.cfg to /etc/perl/Net as /usr may not be | 4 | Subject: Set location of libnet.cfg to /etc/perl/Net as /usr may not be |
@@ -7,11 +6,11 @@ Subject: Set location of libnet.cfg to /etc/perl/Net as /usr may not be | |||
7 | 6 | ||
8 | Patch-Name: debian/libnet_config_path.diff | 7 | Patch-Name: debian/libnet_config_path.diff |
9 | --- | 8 | --- |
10 | cpan/libnet/Net/Config.pm | 7 +++---- | 9 | cpan/libnet/Net/Config.pm | 7 +++---- |
11 | 1 files changed, 3 insertions(+), 4 deletions(-) | 10 | 1 file changed, 3 insertions(+), 4 deletions(-) |
12 | 11 | ||
13 | diff --git a/cpan/libnet/Net/Config.pm b/cpan/libnet/Net/Config.pm | 12 | diff --git a/cpan/libnet/Net/Config.pm b/cpan/libnet/Net/Config.pm |
14 | index db51c1f..8404593 100644 | 13 | index ba16332..4b1ea19 100644 |
15 | --- a/cpan/libnet/Net/Config.pm | 14 | --- a/cpan/libnet/Net/Config.pm |
16 | +++ b/cpan/libnet/Net/Config.pm | 15 | +++ b/cpan/libnet/Net/Config.pm |
17 | @@ -57,9 +57,8 @@ my %nc = ( | 16 | @@ -57,9 +57,8 @@ my %nc = ( |
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/libperl_embed_doc.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/libperl_embed_doc.diff index d1bf8bda7b..7b9bd75e6c 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/libperl_embed_doc.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/libperl_embed_doc.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 967a87e268bd348423f72dec993eda444ce9f53d Mon Sep 17 00:00:00 2001 |
2 | From d70e88badfcc6edd05e884597f19fbbdcf2cf6a7 Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Tue, 8 Mar 2005 19:30:38 +1100 | 3 | Date: Tue, 8 Mar 2005 19:30:38 +1100 |
5 | Subject: Note that libperl-dev package is required for embedded linking | 4 | Subject: Note that libperl-dev package is required for embedded linking |
@@ -8,15 +7,15 @@ Bug-Debian: http://bugs.debian.org/186778 | |||
8 | 7 | ||
9 | Patch-Name: debian/libperl_embed_doc.diff | 8 | Patch-Name: debian/libperl_embed_doc.diff |
10 | --- | 9 | --- |
11 | lib/ExtUtils/Embed.pm | 3 +++ | 10 | lib/ExtUtils/Embed.pm | 3 +++ |
12 | 1 files changed, 3 insertions(+), 0 deletions(-) | 11 | 1 file changed, 3 insertions(+) |
13 | 12 | ||
14 | diff --git a/lib/ExtUtils/Embed.pm b/lib/ExtUtils/Embed.pm | 13 | diff --git a/lib/ExtUtils/Embed.pm b/lib/ExtUtils/Embed.pm |
15 | index 9710630..86f13b5 100644 | 14 | index 3f983c1..0ec8a67 100644 |
16 | --- a/lib/ExtUtils/Embed.pm | 15 | --- a/lib/ExtUtils/Embed.pm |
17 | +++ b/lib/ExtUtils/Embed.pm | 16 | +++ b/lib/ExtUtils/Embed.pm |
18 | @@ -305,6 +305,9 @@ and extensions in your C/C++ applications. | 17 | @@ -296,6 +296,9 @@ and extensions in your C/C++ applications. |
19 | Typically, an application B<Makefile> will invoke ExtUtils::Embed | 18 | Typically, an application F<Makefile> will invoke C<ExtUtils::Embed> |
20 | functions while building your application. | 19 | functions while building your application. |
21 | 20 | ||
22 | +Note that on Debian systems the B<libperl-dev> package is required for | 21 | +Note that on Debian systems the B<libperl-dev> package is required for |
@@ -24,4 +23,4 @@ index 9710630..86f13b5 100644 | |||
24 | + | 23 | + |
25 | =head1 @EXPORT | 24 | =head1 @EXPORT |
26 | 25 | ||
27 | ExtUtils::Embed exports the following functions: | 26 | C<ExtUtils::Embed> exports the following functions: |
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/mod_paths.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/mod_paths.diff index ceac541fd4..49805a015f 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/mod_paths.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/mod_paths.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From f994a741e51287494ed62b10738be6856aadce71 Mon Sep 17 00:00:00 2001 |
2 | From 11633e598640b02e19329f323623af254fbac451 Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Fri, 18 Mar 2005 22:22:25 +1100 | 3 | Date: Fri, 18 Mar 2005 22:22:25 +1100 |
5 | Subject: Tweak @INC ordering for Debian | 4 | Subject: Tweak @INC ordering for Debian |
@@ -19,14 +18,14 @@ version than is included in core. | |||
19 | 18 | ||
20 | Patch-Name: debian/mod_paths.diff | 19 | Patch-Name: debian/mod_paths.diff |
21 | --- | 20 | --- |
22 | perl.c | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ | 21 | perl.c | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
23 | 1 files changed, 58 insertions(+), 0 deletions(-) | 22 | 1 file changed, 58 insertions(+) |
24 | 23 | ||
25 | diff --git a/perl.c b/perl.c | 24 | diff --git a/perl.c b/perl.c |
26 | index f756e02..d26dcb0 100644 | 25 | index 27d0d9e..1fe2f1c 100644 |
27 | --- a/perl.c | 26 | --- a/perl.c |
28 | +++ b/perl.c | 27 | +++ b/perl.c |
29 | @@ -4219,6 +4219,11 @@ S_init_perllib(pTHX) | 28 | @@ -4367,6 +4367,11 @@ S_init_perllib(pTHX) |
30 | INCPUSH_ADD_SUB_DIRS|INCPUSH_CAN_RELOCATE); | 29 | INCPUSH_ADD_SUB_DIRS|INCPUSH_CAN_RELOCATE); |
31 | #endif | 30 | #endif |
32 | 31 | ||
@@ -38,7 +37,7 @@ index f756e02..d26dcb0 100644 | |||
38 | #ifdef SITEARCH_EXP | 37 | #ifdef SITEARCH_EXP |
39 | /* sitearch is always relative to sitelib on Windows for | 38 | /* sitearch is always relative to sitelib on Windows for |
40 | * DLL-based path intuition to work correctly */ | 39 | * DLL-based path intuition to work correctly */ |
41 | @@ -4336,6 +4341,59 @@ S_init_perllib(pTHX) | 40 | @@ -4484,6 +4489,59 @@ S_init_perllib(pTHX) |
42 | INCPUSH_ADD_OLD_VERS|INCPUSH_CAN_RELOCATE); | 41 | INCPUSH_ADD_OLD_VERS|INCPUSH_CAN_RELOCATE); |
43 | #endif | 42 | #endif |
44 | 43 | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/module_build_man_extensions.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/module_build_man_extensions.diff index 64401d9123..894e9533fc 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/module_build_man_extensions.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/module_build_man_extensions.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 333efa7c9da43d94272a872a59a6cd28da8ca245 Mon Sep 17 00:00:00 2001 |
2 | From fbb5f07872d45bac76b5c3c83b50a19aa5da10b0 Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | 2 | From: Niko Tyni <ntyni@debian.org> |
4 | Date: Thu, 8 May 2008 14:32:33 +0300 | 3 | Date: Thu, 8 May 2008 14:32:33 +0300 |
5 | Subject: Adjust Module::Build manual page extensions for the Debian Perl | 4 | Subject: Adjust Module::Build manual page extensions for the Debian Perl |
@@ -9,28 +8,28 @@ Bug-Debian: http://bugs.debian.org/479460 | |||
9 | 8 | ||
10 | Patch-Name: debian/module_build_man_extensions.diff | 9 | Patch-Name: debian/module_build_man_extensions.diff |
11 | --- | 10 | --- |
12 | cpan/Module-Build/lib/Module/Build/Base.pm | 4 ++-- | 11 | cpan/Module-Build/lib/Module/Build/Base.pm | 4 ++-- |
13 | 1 files changed, 2 insertions(+), 2 deletions(-) | 12 | 1 file changed, 2 insertions(+), 2 deletions(-) |
14 | 13 | ||
15 | diff --git a/cpan/Module-Build/lib/Module/Build/Base.pm b/cpan/Module-Build/lib/Module/Build/Base.pm | 14 | diff --git a/cpan/Module-Build/lib/Module/Build/Base.pm b/cpan/Module-Build/lib/Module/Build/Base.pm |
16 | index fba916a..82df4cc 100644 | 15 | index 84e137f..4422cd4 100644 |
17 | --- a/cpan/Module-Build/lib/Module/Build/Base.pm | 16 | --- a/cpan/Module-Build/lib/Module/Build/Base.pm |
18 | +++ b/cpan/Module-Build/lib/Module/Build/Base.pm | 17 | +++ b/cpan/Module-Build/lib/Module/Build/Base.pm |
19 | @@ -3246,7 +3246,7 @@ sub manify_bin_pods { | 18 | @@ -3226,7 +3226,7 @@ sub manify_bin_pods { |
20 | foreach my $file (keys %$files) { | 19 | foreach my $file (keys %$files) { |
21 | # Pod::Simple based parsers only support one document per instance. | 20 | # Pod::Simple based parsers only support one document per instance. |
22 | # This is expected to change in a future version (Pod::Simple > 3.03). | 21 | # This is expected to change in a future version (Pod::Simple > 3.03). |
23 | - my $parser = Pod::Man->new( section => 1 ); # binaries go in section 1 | 22 | - my $parser = Pod::Man->new( %podman_args ); |
24 | + my $parser = Pod::Man->new( section => '1p' ); # binaries go in section 1p | 23 | + my $parser = Pod::Man->new( %podman_args, section => '1p' ); # binaries go in section 1p |
25 | my $manpage = $self->man1page_name( $file ) . '.' . | 24 | my $manpage = $self->man1page_name( $file ) . '.' . |
26 | $self->config( 'man1ext' ); | 25 | $self->config( 'man1ext' ); |
27 | my $outfile = File::Spec->catfile($mandir, $manpage); | 26 | my $outfile = File::Spec->catfile($mandir, $manpage); |
28 | @@ -3271,7 +3271,7 @@ sub manify_lib_pods { | 27 | @@ -3252,7 +3252,7 @@ sub manify_lib_pods { |
29 | while (my ($file, $relfile) = each %$files) { | 28 | while (my ($file, $relfile) = each %$files) { |
30 | # Pod::Simple based parsers only support one document per instance. | 29 | # Pod::Simple based parsers only support one document per instance. |
31 | # This is expected to change in a future version (Pod::Simple > 3.03). | 30 | # This is expected to change in a future version (Pod::Simple > 3.03). |
32 | - my $parser = Pod::Man->new( section => 3 ); # libraries go in section 3 | 31 | - my $parser = Pod::Man->new( %podman_args ); |
33 | + my $parser = Pod::Man->new( section => '3pm' ); # libraries go in section 3pm | 32 | + my $parser = Pod::Man->new( %podman_args, section => '3pm' ); # libraries go in section 3pm |
34 | my $manpage = $self->man3page_name( $relfile ) . '.' . | 33 | my $manpage = $self->man3page_name( $relfile ) . '.' . |
35 | $self->config( 'man3ext' ); | 34 | $self->config( 'man3ext' ); |
36 | my $outfile = File::Spec->catfile( $mandir, $manpage); | 35 | my $outfile = File::Spec->catfile( $mandir, $manpage); |
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/no_packlist_perllocal.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/no_packlist_perllocal.diff index 00633e3cb2..09fe1a965e 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/no_packlist_perllocal.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/no_packlist_perllocal.diff | |||
@@ -1,39 +1,43 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 127c026bbb63907b196febf3558842d8f01e52ef Mon Sep 17 00:00:00 2001 |
2 | From 44c7521619dd0e637920393184affcb26a27d5b7 Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Tue, 8 Mar 2005 19:30:38 +1100 | 3 | Date: Tue, 8 Mar 2005 19:30:38 +1100 |
5 | Subject: Don't install .packlist or perllocal.pod for perl or vendor | 4 | Subject: Don't install .packlist or perllocal.pod for perl or vendor |
6 | 5 | ||
7 | Patch-Name: debian/no_packlist_perllocal.diff | 6 | Patch-Name: debian/no_packlist_perllocal.diff |
8 | --- | 7 | --- |
9 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 31 +++-------------------- | 8 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 36 +++---------------------- |
10 | 1 files changed, 4 insertions(+), 27 deletions(-) | 9 | 1 file changed, 4 insertions(+), 32 deletions(-) |
11 | 10 | ||
12 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 11 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm |
13 | index 42bbb83..a16e2d0 100644 | 12 | index f977476..0a6797f 100644 |
14 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 13 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm |
15 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 14 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm |
16 | @@ -2054,8 +2054,6 @@ doc__install : doc_site_install | 15 | @@ -2079,11 +2079,6 @@ pure_perl_install :: all |
16 | }; | ||
17 | 17 | ||
18 | pure_perl_install :: all | 18 | push @m, |
19 | $(NOECHO) umask 022; $(MOD_INSTALL) \ | 19 | -q{ read }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \ |
20 | - read }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \ | ||
21 | - write }.$self->catfile('$(DESTINSTALLARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \ | 20 | - write }.$self->catfile('$(DESTINSTALLARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \ |
22 | $(INST_LIB) $(DESTINSTALLPRIVLIB) \ | 21 | -} unless $self->{NO_PACKLIST}; |
22 | - | ||
23 | - push @m, | ||
24 | q{ $(INST_LIB) $(DESTINSTALLPRIVLIB) \ | ||
23 | $(INST_ARCHLIB) $(DESTINSTALLARCHLIB) \ | 25 | $(INST_ARCHLIB) $(DESTINSTALLARCHLIB) \ |
24 | $(INST_BIN) $(DESTINSTALLBIN) \ | 26 | $(INST_BIN) $(DESTINSTALLBIN) \ |
25 | @@ -2081,8 +2079,6 @@ pure_site_install :: all | 27 | @@ -2115,10 +2110,6 @@ q{ $(INST_LIB) $(DESTINSTALLSITELIB) \ |
26 | |||
27 | pure_vendor_install :: all | 28 | pure_vendor_install :: all |
28 | $(NOECHO) umask 022; $(MOD_INSTALL) \ | 29 | $(NOECHO) umask 022; $(MOD_INSTALL) \ |
29 | - read }.$self->catfile('$(VENDORARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \ | 30 | }; |
31 | - push @m, | ||
32 | -q{ read }.$self->catfile('$(VENDORARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \ | ||
30 | - write }.$self->catfile('$(DESTINSTALLVENDORARCH)','auto','$(FULLEXT)','.packlist').q{ \ | 33 | - write }.$self->catfile('$(DESTINSTALLVENDORARCH)','auto','$(FULLEXT)','.packlist').q{ \ |
31 | $(INST_LIB) $(DESTINSTALLVENDORLIB) \ | 34 | -} unless $self->{NO_PACKLIST}; |
32 | $(INST_ARCHLIB) $(DESTINSTALLVENDORARCH) \ | 35 | |
33 | $(INST_BIN) $(DESTINSTALLVENDORBIN) \ | 36 | push @m, |
34 | @@ -2091,37 +2087,19 @@ pure_vendor_install :: all | 37 | q{ $(INST_LIB) $(DESTINSTALLVENDORLIB) \ |
35 | $(INST_MAN3DIR) $(DESTINSTALLVENDORMAN3DIR) | 38 | @@ -2144,37 +2135,19 @@ doc_vendor_install :: all |
36 | 39 | ||
40 | push @m, q{ | ||
37 | doc_perl_install :: all | 41 | doc_perl_install :: all |
38 | - $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod | 42 | - $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod |
39 | - -$(NOECHO) umask 022; $(MKPATH) $(DESTINSTALLARCHLIB) | 43 | - -$(NOECHO) umask 022; $(MKPATH) $(DESTINSTALLARCHLIB) |
@@ -70,9 +74,9 @@ index 42bbb83..a16e2d0 100644 | |||
70 | - EXE_FILES "$(EXE_FILES)" \ | 74 | - EXE_FILES "$(EXE_FILES)" \ |
71 | - >> }.$self->catfile('$(DESTINSTALLARCHLIB)','perllocal.pod').q{ | 75 | - >> }.$self->catfile('$(DESTINSTALLARCHLIB)','perllocal.pod').q{ |
72 | 76 | ||
73 | }; | 77 | } unless $self->{NO_PERLLOCAL}; |
74 | 78 | ||
75 | @@ -2130,13 +2108,12 @@ uninstall :: uninstall_from_$(INSTALLDIRS)dirs | 79 | @@ -2183,13 +2156,12 @@ uninstall :: uninstall_from_$(INSTALLDIRS)dirs |
76 | $(NOECHO) $(NOOP) | 80 | $(NOECHO) $(NOOP) |
77 | 81 | ||
78 | uninstall_from_perldirs :: | 82 | uninstall_from_perldirs :: |
diff --git a/meta/recipes-devtools/perl/perl-5.20.0/debian/perl5db-x-terminal-emulator.patch b/meta/recipes-devtools/perl/perl-5.20.0/debian/perl5db-x-terminal-emulator.patch new file mode 100644 index 0000000000..82a9f1a400 --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/perl5db-x-terminal-emulator.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | From dc495a233b95d7e3e6900845847035da8f01aa59 Mon Sep 17 00:00:00 2001 | ||
2 | From: Dominic Hargreaves <dom@earth.li> | ||
3 | Date: Sat, 14 Apr 2012 11:34:05 +0100 | ||
4 | Subject: Invoke x-terminal-emulator rather than xterm in perl5db.pl | ||
5 | |||
6 | In Debian systems, xterm might not exist or might not be the preferred | ||
7 | terminal emulator. Use x-terminal-emulator instead | ||
8 | |||
9 | Bug-Debian: http://bugs.debian.org/668490 | ||
10 | Forwarded: not-needed | ||
11 | |||
12 | Patch-Name: debian/perl5db-x-terminal-emulator.patch | ||
13 | --- | ||
14 | lib/perl5db.pl | 2 +- | ||
15 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
16 | |||
17 | diff --git a/lib/perl5db.pl b/lib/perl5db.pl | ||
18 | index 707d04d..6ac4d36 100644 | ||
19 | --- a/lib/perl5db.pl | ||
20 | +++ b/lib/perl5db.pl | ||
21 | @@ -6945,7 +6945,7 @@ properly set up. | ||
22 | sub xterm_get_fork_TTY { | ||
23 | ( my $name = $0 ) =~ s,^.*[/\\],,s; | ||
24 | open XT, | ||
25 | -qq[3>&1 xterm -title "Daughter Perl debugger $pids $name" -e sh -c 'tty 1>&3;\ | ||
26 | +qq[3>&1 x-terminal-emulator -T "Daughter Perl debugger $pids $name" -e sh -c 'tty 1>&3;\ | ||
27 | sleep 10000000' |]; | ||
28 | |||
29 | # Get the output from 'tty' and clean it up a little. | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/perlivp.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/perlivp.diff index 21711e88ed..60a714f8bb 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/perlivp.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/perlivp.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 70eb3e56e884e62bcf837c1f8cd32e35e5552889 Mon Sep 17 00:00:00 2001 |
2 | From 4c7e04f75c9513451d1622e5a6dd58c2c8377d81 Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | 2 | From: Niko Tyni <ntyni@debian.org> |
4 | Date: Fri, 9 Jan 2009 18:54:47 +0200 | 3 | Date: Fri, 9 Jan 2009 18:54:47 +0200 |
5 | Subject: Make perlivp skip include directories in /usr/local | 4 | Subject: Make perlivp skip include directories in /usr/local |
@@ -23,18 +22,18 @@ Signed-off-by: Niko Tyni <ntyni@debian.org> | |||
23 | 22 | ||
24 | Patch-Name: debian/perlivp.diff | 23 | Patch-Name: debian/perlivp.diff |
25 | --- | 24 | --- |
26 | utils/perlivp.PL | 1 + | 25 | utils/perlivp.PL | 1 + |
27 | 1 files changed, 1 insertions(+), 0 deletions(-) | 26 | 1 file changed, 1 insertion(+) |
28 | 27 | ||
29 | diff --git a/utils/perlivp.PL b/utils/perlivp.PL | 28 | diff --git a/utils/perlivp.PL b/utils/perlivp.PL |
30 | index 6fcb670..1401cac 100644 | 29 | index c2f0a11..cc49f96 100644 |
31 | --- a/utils/perlivp.PL | 30 | --- a/utils/perlivp.PL |
32 | +++ b/utils/perlivp.PL | 31 | +++ b/utils/perlivp.PL |
33 | @@ -142,6 +142,7 @@ my $INC_total = 0; | 32 | @@ -153,6 +153,7 @@ my $INC_total = 0; |
34 | my $INC_there = 0; | 33 | my $INC_there = 0; |
35 | foreach (@INC) { | 34 | foreach (@INC) { |
36 | next if $_ eq '.'; # skip -d test here | 35 | next if $_ eq '.'; # skip -d test here |
37 | + next if m|/usr/local|; # not shipped on Debian | 36 | + next if m|/usr/local|; # not shipped on Debian |
38 | if (-d $_) { | 37 | if (-d $_) { |
39 | print "## Perl \@INC directory `$_' exists.\n" if $opt{'v'}; | 38 | print "## Perl \@INC directory '$_' exists.\n" if $opt{'v'}; |
40 | $INC_there++; | 39 | $INC_there++; |
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/prefix_changes.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/prefix_changes.diff index 5a1ad99e0b..535a90d5e2 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/prefix_changes.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/prefix_changes.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 9ff12f918da84dc355b75fbaa5374a8e276f76d7 Mon Sep 17 00:00:00 2001 |
2 | From 148e2717682ce8c65475ffdeea84b3cdd1ab1649 Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Tue, 8 Mar 2005 19:30:38 +1100 | 3 | Date: Tue, 8 Mar 2005 19:30:38 +1100 |
5 | Subject: Fiddle with *PREFIX and variables written to the makefile | 4 | Subject: Fiddle with *PREFIX and variables written to the makefile |
@@ -11,17 +10,17 @@ modules). | |||
11 | 10 | ||
12 | Patch-Name: debian/prefix_changes.diff | 11 | Patch-Name: debian/prefix_changes.diff |
13 | --- | 12 | --- |
14 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm | 12 ++++++------ | 13 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm | 12 ++++++------ |
15 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 3 +-- | 14 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 3 +-- |
16 | cpan/ExtUtils-MakeMaker/t/INST.t | 4 +--- | 15 | cpan/ExtUtils-MakeMaker/t/INST.t | 4 +--- |
17 | cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t | 10 +++++----- | 16 | cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t | 10 +++++----- |
18 | 4 files changed, 13 insertions(+), 16 deletions(-) | 17 | 4 files changed, 13 insertions(+), 16 deletions(-) |
19 | 18 | ||
20 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm | 19 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm |
21 | index a38f274..93d3fe9 100644 | 20 | index 2066311..0a1fb49 100644 |
22 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm | 21 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm |
23 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm | 22 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm |
24 | @@ -701,8 +701,6 @@ all POD files in MAN1PODS and MAN3PODS. | 23 | @@ -765,8 +765,6 @@ all POD files in MAN1PODS and MAN3PODS. |
25 | sub manifypods_target { | 24 | sub manifypods_target { |
26 | my($self) = shift; | 25 | my($self) = shift; |
27 | 26 | ||
@@ -30,16 +29,16 @@ index a38f274..93d3fe9 100644 | |||
30 | my $dependencies = ''; | 29 | my $dependencies = ''; |
31 | 30 | ||
32 | # populate manXpods & dependencies: | 31 | # populate manXpods & dependencies: |
33 | @@ -718,7 +716,7 @@ END | 32 | @@ -782,7 +780,7 @@ END |
34 | foreach my $section (qw(1 3)) { | 33 | foreach my $section (qw(1 3)) { |
35 | my $pods = $self->{"MAN${section}PODS"}; | 34 | my $pods = $self->{"MAN${section}PODS"}; |
36 | push @man_cmds, $self->split_command(<<CMD, %$pods); | 35 | push @man_cmds, $self->split_command(<<CMD, map {($_,$pods->{$_})} sort keys %$pods); |
37 | - \$(NOECHO) \$(POD2MAN) --section=$section --perm_rw=\$(PERM_RW) | 36 | - \$(NOECHO) \$(POD2MAN) --section=$section --perm_rw=\$(PERM_RW) |
38 | + \$(NOECHO) \$(POD2MAN) --section=\$(MAN${section}EXT) --perm_rw=\$(PERM_RW) | 37 | + \$(NOECHO) \$(POD2MAN) --section=\$(MAN${section}EXT) --perm_rw=\$(PERM_RW) |
39 | CMD | 38 | CMD |
40 | } | 39 | } |
41 | 40 | ||
42 | @@ -1521,9 +1519,11 @@ sub init_INSTALL_from_PREFIX { | 41 | @@ -1748,9 +1746,11 @@ sub init_INSTALL_from_PREFIX { |
43 | $self->{SITEPREFIX} ||= $sprefix; | 42 | $self->{SITEPREFIX} ||= $sprefix; |
44 | $self->{VENDORPREFIX} ||= $vprefix; | 43 | $self->{VENDORPREFIX} ||= $vprefix; |
45 | 44 | ||
@@ -55,24 +54,24 @@ index a38f274..93d3fe9 100644 | |||
55 | 54 | ||
56 | my $arch = $Config{archname}; | 55 | my $arch = $Config{archname}; |
57 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 56 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm |
58 | index a16e2d0..c308c49 100644 | 57 | index 0a6797f..c19a5f9 100644 |
59 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 58 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm |
60 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 59 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm |
61 | @@ -2981,8 +2981,7 @@ sub prefixify { | 60 | @@ -3029,8 +3029,7 @@ sub prefixify { |
62 | print STDERR " prefixify $var => $path\n" if $Verbose >= 2; | 61 | warn " prefixify $var => $path\n" if $Verbose >= 2; |
63 | print STDERR " from $sprefix to $rprefix\n" if $Verbose >= 2; | 62 | warn " from $sprefix to $rprefix\n" if $Verbose >= 2; |
64 | 63 | ||
65 | - if( $self->{ARGS}{PREFIX} && | 64 | - if( $self->{ARGS}{PREFIX} && |
66 | - $path !~ s{^\Q$sprefix\E\b}{$rprefix}s ) | 65 | - $path !~ s{^\Q$sprefix\E\b}{$rprefix}s ) |
67 | + if( $path !~ s{^\Q$sprefix\E\b}{$rprefix}s && $self->{ARGS}{PREFIX} ) | 66 | + if( $path !~ s{^\Q$sprefix\E\b}{$rprefix}s && $self->{ARGS}{PREFIX} ) |
68 | { | 67 | { |
69 | 68 | ||
70 | print STDERR " cannot prefix, using default.\n" if $Verbose >= 2; | 69 | warn " cannot prefix, using default.\n" if $Verbose >= 2; |
71 | diff --git a/cpan/ExtUtils-MakeMaker/t/INST.t b/cpan/ExtUtils-MakeMaker/t/INST.t | 70 | diff --git a/cpan/ExtUtils-MakeMaker/t/INST.t b/cpan/ExtUtils-MakeMaker/t/INST.t |
72 | index 6aac294..28294f2 100644 | 71 | index 91058bb..e399ced 100644 |
73 | --- a/cpan/ExtUtils-MakeMaker/t/INST.t | 72 | --- a/cpan/ExtUtils-MakeMaker/t/INST.t |
74 | +++ b/cpan/ExtUtils-MakeMaker/t/INST.t | 73 | +++ b/cpan/ExtUtils-MakeMaker/t/INST.t |
75 | @@ -61,9 +61,7 @@ isa_ok( $mm, 'ExtUtils::MakeMaker' ); | 74 | @@ -65,9 +65,7 @@ isa_ok( $mm, 'ExtUtils::MakeMaker' ); |
76 | is( $mm->{NAME}, 'Big::Dummy', 'NAME' ); | 75 | is( $mm->{NAME}, 'Big::Dummy', 'NAME' ); |
77 | is( $mm->{VERSION}, 0.01, 'VERSION' ); | 76 | is( $mm->{VERSION}, 0.01, 'VERSION' ); |
78 | 77 | ||
@@ -84,7 +83,7 @@ index 6aac294..28294f2 100644 | |||
84 | is( !!$mm->{PERL_CORE}, !!$ENV{PERL_CORE}, 'PERL_CORE' ); | 83 | is( !!$mm->{PERL_CORE}, !!$ENV{PERL_CORE}, 'PERL_CORE' ); |
85 | 84 | ||
86 | diff --git a/cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t b/cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t | 85 | diff --git a/cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t b/cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t |
87 | index fbb18a3..8987569 100644 | 86 | index e8de7c6..3fb3f12 100644 |
88 | --- a/cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t | 87 | --- a/cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t |
89 | +++ b/cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t | 88 | +++ b/cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t |
90 | @@ -10,7 +10,7 @@ BEGIN { | 89 | @@ -10,7 +10,7 @@ BEGIN { |
@@ -96,8 +95,8 @@ index fbb18a3..8987569 100644 | |||
96 | use MakeMaker::Test::Utils; | 95 | use MakeMaker::Test::Utils; |
97 | use MakeMaker::Test::Setup::BFD; | 96 | use MakeMaker::Test::Setup::BFD; |
98 | use ExtUtils::MakeMaker; | 97 | use ExtUtils::MakeMaker; |
99 | @@ -58,16 +58,16 @@ like( $stdout->read, qr{ | 98 | @@ -62,16 +62,16 @@ like( $stdout->read, qr{ |
100 | Writing\ MYMETA.yml\n | 99 | (?:Writing\ MYMETA.yml\ and\ MYMETA.json\n)? |
101 | }x ); | 100 | }x ); |
102 | 101 | ||
103 | -is( $mm->{PREFIX}, '$(SITEPREFIX)', 'PREFIX set based on INSTALLDIRS' ); | 102 | -is( $mm->{PREFIX}, '$(SITEPREFIX)', 'PREFIX set based on INSTALLDIRS' ); |
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/prune_libs.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/prune_libs.diff index e3c320ebe1..50bcc47ccd 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/prune_libs.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/prune_libs.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From f2d2ddd656999f51148c66a3efce76bda8d2f9ca Mon Sep 17 00:00:00 2001 |
2 | From 063566907896ff32bea27897fa73cebbbd7bacce Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Fri, 18 Mar 2005 22:22:25 +1100 | 3 | Date: Fri, 18 Mar 2005 22:22:25 +1100 |
5 | Subject: Prune the list of libraries wanted to what we actually need. | 4 | Subject: Prune the list of libraries wanted to what we actually need. |
@@ -11,29 +10,29 @@ and some of the original list may be present on buildds (see Bug#128355). | |||
11 | 10 | ||
12 | Patch-Name: debian/prune_libs.diff | 11 | Patch-Name: debian/prune_libs.diff |
13 | --- | 12 | --- |
14 | Configure | 5 ++--- | 13 | Configure | 5 ++--- |
15 | 1 files changed, 2 insertions(+), 3 deletions(-) | 14 | 1 file changed, 2 insertions(+), 3 deletions(-) |
16 | 15 | ||
17 | diff --git a/Configure b/Configure | 16 | diff --git a/Configure b/Configure |
18 | index d9911f9..f59f75c 100755 | 17 | index 293ef61..3f80a76 100755 |
19 | --- a/Configure | 18 | --- a/Configure |
20 | +++ b/Configure | 19 | +++ b/Configure |
21 | @@ -1367,8 +1367,7 @@ libswanted_uselargefiles='' | 20 | @@ -1387,8 +1387,7 @@ libswanted_uselargefiles='' |
22 | : set usesocks on the Configure command line to enable socks. | 21 | : set usesocks on the Configure command line to enable socks. |
23 | : List of libraries we want. | 22 | : List of libraries we want. |
24 | : If anyone needs extra -lxxx, put those in a hint file. | 23 | : If anyone needs extra -lxxx, put those in a hint file. |
25 | -libswanted="sfio socket bind inet nsl nm ndbm gdbm dbm db malloc dl dld ld sun" | 24 | -libswanted="socket bind inet nsl nm ndbm gdbm dbm db malloc dl ld sun" |
26 | -libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD" | 25 | -libswanted="$libswanted m crypt sec util c cposix posix ucb bsd BSD" |
27 | +libswanted='gdbm gdbm_compat db dl m c crypt' | 26 | +libswanted='gdbm gdbm_compat db dl m c crypt' |
28 | : We probably want to search /usr/shlib before most other libraries. | 27 | : We probably want to search /usr/shlib before most other libraries. |
29 | : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist. | 28 | : This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist. |
30 | glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'` | 29 | glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'` |
31 | @@ -22308,7 +22307,7 @@ sunos*X4*) | 30 | @@ -22796,7 +22795,7 @@ sunos*X4*) |
32 | ;; | 31 | ;; |
33 | *) case "$usedl" in | 32 | *) case "$usedl" in |
34 | $define|true|[yY]*) | 33 | $define|true|[yY]*) |
35 | - set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -lgdbm_compat @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` | 34 | - set X `echo " $libs " | sed -e 's@ -lndbm @ @' -e 's@ -lgdbm @ @' -e 's@ -lgdbm_compat @ @' -e 's@ -ldbm @ @' -e 's@ -ldb @ @'` |
36 | + set X `echo " $libs " | sed -e 's@ -lgdbm @ @' -e 's@ -lgdbm_compat @ @' -e 's@ -ldb @ @'` | 35 | + set X `echo " $libs " | sed -e 's@ -lgdbm @ @' -e 's@ -lgdbm_compat @ @' -e 's@ -ldb @ @'` |
37 | shift | 36 | shift |
38 | perllibs="$*" | 37 | perllibs="$*" |
39 | ;; | 38 | ;; |
diff --git a/meta/recipes-devtools/perl/perl-5.20.0/debian/regen-skip.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/regen-skip.diff new file mode 100644 index 0000000000..50bc97c94b --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/regen-skip.diff | |||
@@ -0,0 +1,27 @@ | |||
1 | From 55a3d4b004595a9f171d79329c9d218f0b850bd8 Mon Sep 17 00:00:00 2001 | ||
2 | From: Niko Tyni <ntyni@debian.org> | ||
3 | Date: Sat, 17 May 2014 14:57:01 +0300 | ||
4 | Subject: Skip a regeneration check in unrelated git repositories | ||
5 | |||
6 | If the test is run in a git repository without lib/.gitignore, | ||
7 | for instance because the repository only imported the Perl tarball, | ||
8 | the regeneration check is broken because lib/.gitignore is missing. | ||
9 | |||
10 | Patch-Name: debian/regen-skip.diff | ||
11 | --- | ||
12 | regen/lib_cleanup.pl | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/regen/lib_cleanup.pl b/regen/lib_cleanup.pl | ||
16 | index c9d6e43..fece1ed 100644 | ||
17 | --- a/regen/lib_cleanup.pl | ||
18 | +++ b/regen/lib_cleanup.pl | ||
19 | @@ -159,7 +159,7 @@ foreach ('win32/Makefile', 'win32/makefile.mk') { | ||
20 | } | ||
21 | |||
22 | # This must come last as it can exit early: | ||
23 | -if ($TAP && !-d '.git' && !-f 'lib/.gitignore') { | ||
24 | +if ($TAP && !-d '.git' || !-f 'lib/.gitignore') { | ||
25 | print "ok # skip not being run from a git checkout, hence no lib/.gitignore\n"; | ||
26 | exit 0; | ||
27 | } | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/skip-kfreebsd-crash.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/skip-kfreebsd-crash.diff index cdade88664..f7cc55570b 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/skip-kfreebsd-crash.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/skip-kfreebsd-crash.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 21747cdd5381a9466fc75ead783980ced8b184a3 Mon Sep 17 00:00:00 2001 |
2 | From ff2815399ad94915da2e63cb3c4bbd2d02dac4b2 Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | 2 | From: Niko Tyni <ntyni@debian.org> |
4 | Date: Fri, 5 Aug 2011 10:50:18 +0300 | 3 | Date: Fri, 5 Aug 2011 10:50:18 +0300 |
5 | Subject: Skip a crashing test case in t/op/threads.t on GNU/kFreeBSD | 4 | Subject: Skip a crashing test case in t/op/threads.t on GNU/kFreeBSD |
@@ -14,27 +13,28 @@ Skip the test until the culprit is found. | |||
14 | 13 | ||
15 | Patch-Name: debian/skip-kfreebsd-crash.diff | 14 | Patch-Name: debian/skip-kfreebsd-crash.diff |
16 | --- | 15 | --- |
17 | t/op/threads.t | 4 ++++ | 16 | t/op/threads.t | 4 ++++ |
18 | 1 files changed, 4 insertions(+), 0 deletions(-) | 17 | 1 file changed, 4 insertions(+) |
19 | 18 | ||
20 | diff --git a/t/op/threads.t b/t/op/threads.t | 19 | diff --git a/t/op/threads.t b/t/op/threads.t |
21 | index 24e84e4..6a91366 100644 | 20 | index 6fb2410..67b5f4a 100644 |
22 | --- a/t/op/threads.t | 21 | --- a/t/op/threads.t |
23 | +++ b/t/op/threads.t | 22 | +++ b/t/op/threads.t |
24 | @@ -342,6 +342,9 @@ threads->create( | 23 | @@ -376,6 +376,9 @@ EOF |
24 | } | ||
25 | 25 | ||
26 | EOI | ||
27 | 26 | ||
28 | +SKIP: { | 27 | +SKIP: { |
29 | + skip "[perl #96272] avoid crash on GNU/kFreeBSD", 1 | 28 | + skip "[perl #96272] avoid crash on GNU/kFreeBSD", 1 |
30 | + if $^O eq 'gnukfreebsd'; | 29 | + if $^O eq 'gnukfreebsd'; |
31 | # [perl #78494] Pipes shared between threads block when closed | 30 | # [perl #78494] Pipes shared between threads block when closed |
32 | watchdog 10; | ||
33 | { | 31 | { |
34 | @@ -351,5 +354,6 @@ watchdog 10; | 32 | my $perl = which_perl; |
33 | @@ -384,6 +387,7 @@ EOF | ||
35 | threads->create(sub { })->join; | 34 | threads->create(sub { })->join; |
36 | ok(1, "Pipes shared between threads do not block when closed"); | 35 | ok(1, "Pipes shared between threads do not block when closed"); |
37 | } | 36 | } |
38 | +} | 37 | +} |
39 | 38 | ||
40 | # EOF | 39 | # [perl #105208] Typeglob clones should not be cloned again during a join |
40 | { | ||
diff --git a/meta/recipes-devtools/perl/perl-5.20.0/debian/skip-upstream-git-tests.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/skip-upstream-git-tests.diff new file mode 100644 index 0000000000..7110298f04 --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/skip-upstream-git-tests.diff | |||
@@ -0,0 +1,28 @@ | |||
1 | From 4d1b20bcec1610d22b718ffae154427a7a218632 Mon Sep 17 00:00:00 2001 | ||
2 | From: Niko Tyni <ntyni@debian.org> | ||
3 | Date: Fri, 22 Apr 2011 11:15:32 +0300 | ||
4 | Subject: Skip tests specific to the upstream Git repository | ||
5 | |||
6 | These tests fail if run from a different git repository than | ||
7 | upstream. This complicates things needlessly for downstream packagers. | ||
8 | |||
9 | Skip the tests altogether even if the .git directory exists. | ||
10 | |||
11 | Patch-Name: debian/skip-upstream-git-tests.diff | ||
12 | --- | ||
13 | t/test.pl | 2 +- | ||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/t/test.pl b/t/test.pl | ||
17 | index 30db88c..0fdc4f4 100644 | ||
18 | --- a/t/test.pl | ||
19 | +++ b/t/test.pl | ||
20 | @@ -159,7 +159,7 @@ sub skip_all_without_config { | ||
21 | |||
22 | sub find_git_or_skip { | ||
23 | my ($source_dir, $reason); | ||
24 | - if (-d '.git') { | ||
25 | + if (-d '.git' && ! -d 'debian') { | ||
26 | $source_dir = '.'; | ||
27 | } elsif (-l 'MANIFEST' && -l 'AUTHORS') { | ||
28 | my $where = readlink 'MANIFEST'; | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/squelch-locale-warnings.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/squelch-locale-warnings.diff index f0a6924499..5c1900498b 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/squelch-locale-warnings.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/squelch-locale-warnings.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From 2f332eeedbf63f72f6b1b157a912282a31a25d3b Mon Sep 17 00:00:00 2001 |
2 | From 718e9cbd59f0739fc9104af111e42fff66f927a7 Mon Sep 17 00:00:00 2001 | ||
3 | From: Niko Tyni <ntyni@debian.org> | 2 | From: Niko Tyni <ntyni@debian.org> |
4 | Date: Sun, 3 Oct 2010 21:36:17 +0300 | 3 | Date: Sun, 3 Oct 2010 21:36:17 +0300 |
5 | Subject: Squelch locale warnings in Debian package maintainer scripts | 4 | Subject: Squelch locale warnings in Debian package maintainer scripts |
@@ -16,30 +15,30 @@ the warning will be triggered normally again at that point. | |||
16 | 15 | ||
17 | Patch-Name: debian/squelch-locale-warnings.diff | 16 | Patch-Name: debian/squelch-locale-warnings.diff |
18 | --- | 17 | --- |
19 | locale.c | 4 ++++ | 18 | locale.c | 4 ++++ |
20 | pod/perllocale.pod | 8 ++++++++ | 19 | pod/perllocale.pod | 8 ++++++++ |
21 | 2 files changed, 12 insertions(+), 0 deletions(-) | 20 | 2 files changed, 12 insertions(+) |
22 | 21 | ||
23 | diff --git a/locale.c b/locale.c | 22 | diff --git a/locale.c b/locale.c |
24 | index 4631b86..94a0962 100644 | 23 | index 6e8728c..f55c4b2 100644 |
25 | --- a/locale.c | 24 | --- a/locale.c |
26 | +++ b/locale.c | 25 | +++ b/locale.c |
27 | @@ -359,6 +359,10 @@ Perl_init_i18nl10n(pTHX_ int printwarn) | 26 | @@ -512,6 +512,10 @@ Perl_init_i18nl10n(pTHX_ int printwarn) |
28 | char *p; | 27 | char *p; |
29 | const bool locwarn = (printwarn > 1 || | 28 | const bool locwarn = (printwarn > 1 || |
30 | (printwarn && | 29 | (printwarn && |
31 | + | 30 | + |
32 | + /* Debian specific change - see http://bugs.debian.org/508764 */ | 31 | + /* Debian specific change - see http://bugs.debian.org/508764 */ |
33 | + (!PerlEnv_getenv("DPKG_RUNNING_VERSION")) && | 32 | + (!PerlEnv_getenv("DPKG_RUNNING_VERSION")) && |
34 | + | 33 | + |
35 | (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)))); | 34 | (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)))); |
36 | 35 | bool done = FALSE; | |
37 | if (locwarn) { | 36 | const char *system_default_locale = NULL; |
38 | diff --git a/pod/perllocale.pod b/pod/perllocale.pod | 37 | diff --git a/pod/perllocale.pod b/pod/perllocale.pod |
39 | index 8926d8b..6c55889 100644 | 38 | index 914281f..15de0d4 100644 |
40 | --- a/pod/perllocale.pod | 39 | --- a/pod/perllocale.pod |
41 | +++ b/pod/perllocale.pod | 40 | +++ b/pod/perllocale.pod |
42 | @@ -861,6 +861,14 @@ B<NOTE>: PERL_BADLANG only gives you a way to hide the warning message. | 41 | @@ -1151,6 +1151,14 @@ B<NOTE>: PERL_BADLANG only gives you a way to hide the warning message. |
43 | The message tells about some problem in your system's locale support, | 42 | The message tells about some problem in your system's locale support, |
44 | and you should investigate what the problem is. | 43 | and you should investigate what the problem is. |
45 | 44 | ||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/debian/writable_site_dirs.diff b/meta/recipes-devtools/perl/perl-5.20.0/debian/writable_site_dirs.diff index a4a9adf52e..f73f8bbabe 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/debian/writable_site_dirs.diff +++ b/meta/recipes-devtools/perl/perl-5.20.0/debian/writable_site_dirs.diff | |||
@@ -1,5 +1,4 @@ | |||
1 | Upstream-Status:Inappropriate [debian patches] | 1 | From f33f120f0fdf7cd100066390fe0bc426d45b1929 Mon Sep 17 00:00:00 2001 |
2 | From 492e0d6b4e3e0d786fb88b9058d581f6466c4a3e Mon Sep 17 00:00:00 2001 | ||
3 | From: Brendan O'Dea <bod@debian.org> | 2 | From: Brendan O'Dea <bod@debian.org> |
4 | Date: Tue, 8 Mar 2005 19:30:38 +1100 | 3 | Date: Tue, 8 Mar 2005 19:30:38 +1100 |
5 | Subject: Set umask approproately for site install directories | 4 | Subject: Set umask approproately for site install directories |
@@ -8,23 +7,23 @@ Policy requires group writable site directories | |||
8 | 7 | ||
9 | Patch-Name: debian/writable_site_dirs.diff | 8 | Patch-Name: debian/writable_site_dirs.diff |
10 | --- | 9 | --- |
11 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 6 +++--- | 10 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 6 +++--- |
12 | 1 files changed, 3 insertions(+), 3 deletions(-) | 11 | 1 file changed, 3 insertions(+), 3 deletions(-) |
13 | 12 | ||
14 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 13 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm |
15 | index 865d36d..4ee6b3f 100644 | 14 | index 8fdb67c..8b86a24 100644 |
16 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 15 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm |
17 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 16 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm |
18 | @@ -2067,7 +2067,7 @@ pure_perl_install :: all | 17 | @@ -2095,7 +2095,7 @@ q{ $(INST_LIB) $(DESTINSTALLPRIVLIB) \ |
19 | 18 | ||
20 | 19 | ||
21 | pure_site_install :: all | 20 | pure_site_install :: all |
22 | - $(NOECHO) umask 022; $(MOD_INSTALL) \ | 21 | - $(NOECHO) umask 022; $(MOD_INSTALL) \ |
23 | + $(NOECHO) umask 02; $(MOD_INSTALL) \ | 22 | + $(NOECHO) umask 02; $(MOD_INSTALL) \ |
24 | read }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \ | 23 | }; |
25 | write }.$self->catfile('$(DESTINSTALLSITEARCH)','auto','$(FULLEXT)','.packlist').q{ \ | 24 | push @m, |
26 | $(INST_LIB) $(DESTINSTALLSITELIB) \ | 25 | q{ read }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \ |
27 | @@ -2103,8 +2103,8 @@ doc_perl_install :: all | 26 | @@ -2156,8 +2156,8 @@ doc_perl_install :: all |
28 | 27 | ||
29 | doc_site_install :: all | 28 | doc_site_install :: all |
30 | $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod | 29 | $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod |
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/dynaloaderhack.patch b/meta/recipes-devtools/perl/perl-5.20.0/dynaloaderhack.patch index 3df593346c..3df593346c 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/dynaloaderhack.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/dynaloaderhack.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/fix_bad_rpath.patch b/meta/recipes-devtools/perl/perl-5.20.0/fix_bad_rpath.patch index 69ac434779..69ac434779 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/fix_bad_rpath.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/fix_bad_rpath.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/generate-sh.patch b/meta/recipes-devtools/perl/perl-5.20.0/generate-sh.patch index 27f6e691c0..27f6e691c0 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/generate-sh.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/generate-sh.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/installperl.patch b/meta/recipes-devtools/perl/perl-5.20.0/installperl.patch index 456012376e..456012376e 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/installperl.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/installperl.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/letgcc-find-errno.patch b/meta/recipes-devtools/perl/perl-5.20.0/letgcc-find-errno.patch index 5161e4c8b6..5161e4c8b6 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/letgcc-find-errno.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/letgcc-find-errno.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/native-nopacklist.patch b/meta/recipes-devtools/perl/perl-5.20.0/native-nopacklist.patch index 389c3342fb..aafe0e24db 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/native-nopacklist.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/native-nopacklist.patch | |||
@@ -2,31 +2,40 @@ Upstream-Status:Inappropriate [debian patch] | |||
2 | 2 | ||
3 | Part of 52_debian_extutils_hacks.patch just to exclude the installation of .packlist files | 3 | Part of 52_debian_extutils_hacks.patch just to exclude the installation of .packlist files |
4 | 4 | ||
5 | Index: perl-5.12.3/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 5 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> |
6 | =================================================================== | 6 | --- |
7 | --- perl-5.12.3.orig/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 7 | cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 36 +++---------------------- |
8 | +++ perl-5.12.3/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | 8 | 1 file changed, 4 insertions(+), 32 deletions(-) |
9 | @@ -2047,8 +2047,6 @@ doc__install : doc_site_install | 9 | |
10 | diff --git a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | ||
11 | --- a/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | ||
12 | +++ b/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | ||
13 | @@ -2079,11 +2079,6 @@ pure_perl_install :: all | ||
14 | }; | ||
10 | 15 | ||
11 | pure_perl_install :: all | 16 | push @m, |
12 | $(NOECHO) $(MOD_INSTALL) \ | 17 | -q{ read }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \ |
13 | - read }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \ | ||
14 | - write }.$self->catfile('$(DESTINSTALLARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \ | 18 | - write }.$self->catfile('$(DESTINSTALLARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \ |
15 | $(INST_LIB) $(DESTINSTALLPRIVLIB) \ | 19 | -} unless $self->{NO_PACKLIST}; |
20 | - | ||
21 | - push @m, | ||
22 | q{ $(INST_LIB) $(DESTINSTALLPRIVLIB) \ | ||
16 | $(INST_ARCHLIB) $(DESTINSTALLARCHLIB) \ | 23 | $(INST_ARCHLIB) $(DESTINSTALLARCHLIB) \ |
17 | $(INST_BIN) $(DESTINSTALLBIN) \ | 24 | $(INST_BIN) $(DESTINSTALLBIN) \ |
18 | @@ -2074,8 +2072,6 @@ pure_site_install :: all | 25 | @@ -2115,10 +2110,6 @@ q{ $(INST_LIB) $(DESTINSTALLSITELIB) \ |
19 | |||
20 | pure_vendor_install :: all | 26 | pure_vendor_install :: all |
21 | $(NOECHO) $(MOD_INSTALL) \ | 27 | $(NOECHO) $(MOD_INSTALL) \ |
22 | - read }.$self->catfile('$(VENDORARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \ | 28 | }; |
29 | - push @m, | ||
30 | -q{ read }.$self->catfile('$(VENDORARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \ | ||
23 | - write }.$self->catfile('$(DESTINSTALLVENDORARCH)','auto','$(FULLEXT)','.packlist').q{ \ | 31 | - write }.$self->catfile('$(DESTINSTALLVENDORARCH)','auto','$(FULLEXT)','.packlist').q{ \ |
24 | $(INST_LIB) $(DESTINSTALLVENDORLIB) \ | 32 | -} unless $self->{NO_PACKLIST}; |
25 | $(INST_ARCHLIB) $(DESTINSTALLVENDORARCH) \ | 33 | |
26 | $(INST_BIN) $(DESTINSTALLVENDORBIN) \ | 34 | push @m, |
27 | @@ -2084,37 +2080,19 @@ pure_vendor_install :: all | 35 | q{ $(INST_LIB) $(DESTINSTALLVENDORLIB) \ |
28 | $(INST_MAN3DIR) $(DESTINSTALLVENDORMAN3DIR) | 36 | @@ -2144,37 +2135,19 @@ doc_vendor_install :: all |
29 | 37 | ||
38 | push @m, q{ | ||
30 | doc_perl_install :: all | 39 | doc_perl_install :: all |
31 | - $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod | 40 | - $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod |
32 | - -$(NOECHO) $(MKPATH) $(DESTINSTALLARCHLIB) | 41 | - -$(NOECHO) $(MKPATH) $(DESTINSTALLARCHLIB) |
@@ -63,9 +72,9 @@ Index: perl-5.12.3/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | |||
63 | - EXE_FILES "$(EXE_FILES)" \ | 72 | - EXE_FILES "$(EXE_FILES)" \ |
64 | - >> }.$self->catfile('$(DESTINSTALLARCHLIB)','perllocal.pod').q{ | 73 | - >> }.$self->catfile('$(DESTINSTALLARCHLIB)','perllocal.pod').q{ |
65 | 74 | ||
66 | }; | 75 | } unless $self->{NO_PERLLOCAL}; |
67 | 76 | ||
68 | @@ -2123,13 +2101,12 @@ uninstall :: uninstall_from_$(INSTALLDIR | 77 | @@ -2183,13 +2156,12 @@ uninstall :: uninstall_from_$(INSTALLDIRS)dirs |
69 | $(NOECHO) $(NOOP) | 78 | $(NOECHO) $(NOOP) |
70 | 79 | ||
71 | uninstall_from_perldirs :: | 80 | uninstall_from_perldirs :: |
@@ -80,3 +89,6 @@ Index: perl-5.12.3/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Unix.pm | |||
80 | }; | 89 | }; |
81 | 90 | ||
82 | join("",@m); | 91 | join("",@m); |
92 | -- | ||
93 | 1.8.1.2 | ||
94 | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/native-perlinc.patch b/meta/recipes-devtools/perl/perl-5.20.0/native-perlinc.patch index f0bb1f6596..f0bb1f6596 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/native-perlinc.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/native-perlinc.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/perl-5.14.3-fix-CVE-2010-4777.patch b/meta/recipes-devtools/perl/perl-5.20.0/perl-5.14.3-fix-CVE-2010-4777.patch index e0dcf412bb..e0dcf412bb 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/perl-5.14.3-fix-CVE-2010-4777.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/perl-5.14.3-fix-CVE-2010-4777.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/perl-archlib-exp.patch b/meta/recipes-devtools/perl/perl-5.20.0/perl-archlib-exp.patch index d912d0031e..d912d0031e 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/perl-archlib-exp.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/perl-archlib-exp.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/perl-configpm-switch.patch b/meta/recipes-devtools/perl/perl-5.20.0/perl-configpm-switch.patch index c6cc15c93f..c6cc15c93f 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/perl-configpm-switch.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/perl-configpm-switch.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/perl-configure.sh b/meta/recipes-devtools/perl/perl-5.20.0/perl-configure.sh index e72ce49f99..e72ce49f99 100755 --- a/meta/recipes-devtools/perl/perl-5.14.3/perl-configure.sh +++ b/meta/recipes-devtools/perl/perl-5.20.0/perl-configure.sh | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/perl-dynloader.patch b/meta/recipes-devtools/perl/perl-5.20.0/perl-dynloader.patch index 035beba66a..035beba66a 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/perl-dynloader.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/perl-dynloader.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/perl-enable-gdbm.patch b/meta/recipes-devtools/perl/perl-5.20.0/perl-enable-gdbm.patch index aa83fca5ae..aa83fca5ae 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/perl-enable-gdbm.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/perl-enable-gdbm.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/perl-moreconfig.patch b/meta/recipes-devtools/perl/perl-5.20.0/perl-moreconfig.patch index 59ce85a7a3..59ce85a7a3 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/perl-moreconfig.patch +++ b/meta/recipes-devtools/perl/perl-5.20.0/perl-moreconfig.patch | |||
diff --git a/meta/recipes-devtools/perl/perl-5.14.3/run-ptest b/meta/recipes-devtools/perl/perl-5.20.0/run-ptest index ed59b4b145..ed59b4b145 100644 --- a/meta/recipes-devtools/perl/perl-5.14.3/run-ptest +++ b/meta/recipes-devtools/perl/perl-5.20.0/run-ptest | |||
diff --git a/meta/recipes-devtools/perl/perl-5.20.0/test/dist-threads-t-join.t-adjust-ps-option.patch b/meta/recipes-devtools/perl/perl-5.20.0/test/dist-threads-t-join.t-adjust-ps-option.patch new file mode 100644 index 0000000000..08a6b0a5fd --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.20.0/test/dist-threads-t-join.t-adjust-ps-option.patch | |||
@@ -0,0 +1,38 @@ | |||
1 | dist/threads/t/join.t: adjust ps option | ||
2 | |||
3 | The ps's option '-f' is not supported by busybox in oe. | ||
4 | |||
5 | Upstream-Status: [oe specific] | ||
6 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
7 | --- | ||
8 | dist/threads/t/join.t | 6 +++--- | ||
9 | 1 file changed, 3 insertions(+), 3 deletions(-) | ||
10 | |||
11 | diff --git a/dist/threads/t/join.t b/dist/threads/t/join.t | ||
12 | --- a/dist/threads/t/join.t | ||
13 | +++ b/dist/threads/t/join.t | ||
14 | @@ -118,7 +118,7 @@ if ($^O eq 'linux') { | ||
15 | })->join; | ||
16 | #print "# mainthread: \$0 = $0\n"; | ||
17 | #print "# pid = $$\n"; | ||
18 | - if (open PS, "ps -f |") { # Note: must work in (all) systems. | ||
19 | + if (open PS, "ps |") { # Note: must work in (all) systems. | ||
20 | my ($sawpid, $sawexe); | ||
21 | while (<PS>) { | ||
22 | chomp; | ||
23 | @@ -135,10 +135,10 @@ if ($^O eq 'linux') { | ||
24 | if ($sawpid) { | ||
25 | ok($sawpid && $sawexe, 'altering $0 is effective'); | ||
26 | } else { | ||
27 | - skip("\$0 check: did not see pid $$ in 'ps -f |'"); | ||
28 | + skip("\$0 check: did not see pid $$ in 'ps |'"); | ||
29 | } | ||
30 | } else { | ||
31 | - skip("\$0 check: opening 'ps -f |' failed: $!"); | ||
32 | + skip("\$0 check: opening 'ps |' failed: $!"); | ||
33 | } | ||
34 | } else { | ||
35 | skip("\$0 check: only on Linux"); | ||
36 | -- | ||
37 | 1.8.1.2 | ||
38 | |||
diff --git a/meta/recipes-devtools/perl/perl-5.20.0/test/ext-DynaLoader-t-DynaLoader.t-fix-calling-dl_findfil.patch b/meta/recipes-devtools/perl/perl-5.20.0/test/ext-DynaLoader-t-DynaLoader.t-fix-calling-dl_findfil.patch new file mode 100644 index 0000000000..1ee818c27b --- /dev/null +++ b/meta/recipes-devtools/perl/perl-5.20.0/test/ext-DynaLoader-t-DynaLoader.t-fix-calling-dl_findfil.patch | |||
@@ -0,0 +1,26 @@ | |||
1 | ext/DynaLoader/t/DynaLoader.t: fix calling dl_findfile() failed | ||
2 | |||
3 | Use '$Config{libc}' as the libc file name | ||
4 | |||
5 | Upstream-Status: oe specific | ||
6 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
7 | --- | ||
8 | ext/DynaLoader/t/DynaLoader.t | 2 +- | ||
9 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
10 | |||
11 | diff --git a/ext/DynaLoader/t/DynaLoader.t b/ext/DynaLoader/t/DynaLoader.t | ||
12 | index ade1f8e..3567afe 100644 | ||
13 | --- a/ext/DynaLoader/t/DynaLoader.t | ||
14 | +++ b/ext/DynaLoader/t/DynaLoader.t | ||
15 | @@ -106,7 +106,7 @@ ok( defined $dlerr, "dl_error() returning an error message: '$dlerr'" ); | ||
16 | # ... dl_findfile() | ||
17 | SKIP: { | ||
18 | my @files = (); | ||
19 | - eval { @files = DynaLoader::dl_findfile("c") }; | ||
20 | + eval { @files = DynaLoader::dl_findfile($Config{libc}) }; | ||
21 | is( $@, '', "calling dl_findfile()" ); | ||
22 | # Some platforms are known to not have a "libc" | ||
23 | # (not at least by that name) that the dl_findfile() | ||
24 | -- | ||
25 | 1.8.1.2 | ||
26 | |||
diff --git a/meta/recipes-devtools/perl/perl-native_5.14.3.bb b/meta/recipes-devtools/perl/perl-native_5.20.0.bb index c38be41d49..4364d41b35 100644 --- a/meta/recipes-devtools/perl/perl-native_5.14.3.bb +++ b/meta/recipes-devtools/perl/perl-native_5.20.0.bb | |||
@@ -3,8 +3,8 @@ HOMEPAGE = "http://www.perl.org/" | |||
3 | SECTION = "libs" | 3 | SECTION = "libs" |
4 | LICENSE = "Artistic-1.0 | GPL-1.0" | 4 | LICENSE = "Artistic-1.0 | GPL-1.0" |
5 | 5 | ||
6 | LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \ | 6 | LIC_FILES_CHKSUM = "file://Copying;md5=5b122a36d0f6dc55279a0ebc69f3c60b \ |
7 | file://Artistic;md5=f921793d03cc6d63ec4b15e9be8fd3f8" | 7 | file://Artistic;md5=2e6fd2475335af892494fe1f7327baf3" |
8 | 8 | ||
9 | # 5.10.1 has Module::Build built-in | 9 | # 5.10.1 has Module::Build built-in |
10 | PROVIDES += "libmodule-build-perl-native" | 10 | PROVIDES += "libmodule-build-perl-native" |
@@ -17,11 +17,10 @@ SRC_URI = "http://www.cpan.org/src/5.0/perl-${PV}.tar.gz \ | |||
17 | file://MM_Unix.pm.patch \ | 17 | file://MM_Unix.pm.patch \ |
18 | file://debian/errno_ver.diff \ | 18 | file://debian/errno_ver.diff \ |
19 | file://dynaloaderhack.patch \ | 19 | file://dynaloaderhack.patch \ |
20 | file://perl-build-in-t-dir.patch \ | ||
21 | file://perl-5.14.3-fix-CVE-2010-4777.patch " | 20 | file://perl-5.14.3-fix-CVE-2010-4777.patch " |
22 | 21 | ||
23 | SRC_URI[md5sum] = "f6a3d878c688d111b495c87db56c5be5" | 22 | SRC_URI[md5sum] = "406ec049ebe3afcc80d9c76ec78ca4f8" |
24 | SRC_URI[sha256sum] = "03638a4f01bc26b81231233671524b4163849a3a9ea5cc2397293080c4ea339f" | 23 | SRC_URI[sha256sum] = "4e8c28ad6ecc89902f9cb2e76f2815bb1a8287ded278e15f7a36ca45f8bbcd02" |
25 | 24 | ||
26 | S = "${WORKDIR}/perl-${PV}" | 25 | S = "${WORKDIR}/perl-${PV}" |
27 | 26 | ||
@@ -87,16 +86,19 @@ do_install () { | |||
87 | install lib/ExtUtils/typemap ${D}${libdir}/perl/${PV}/ExtUtils/ | 86 | install lib/ExtUtils/typemap ${D}${libdir}/perl/${PV}/ExtUtils/ |
88 | 87 | ||
89 | # perl shared library headers | 88 | # perl shared library headers |
90 | for i in av.h bitcount.h config.h cop.h cv.h dosish.h embed.h embedvar.h \ | 89 | # reference perl 5.20.0-1 in debian: |
91 | EXTERN.h fakesdio.h fakethr.h form.h gv.h handy.h hv.h INTERN.h \ | 90 | # https://packages.debian.org/experimental/i386/perl/filelist |
92 | intrpvar.h iperlsys.h keywords.h l1_char_class_tab.h malloc_ctl.h \ | 91 | for i in av.h bitcount.h charclass_invlists.h config.h cop.h cv.h dosish.h \ |
93 | metaconfig.h mg.h mydtrace.h nostdio.h opcode.h op.h opnames.h \ | 92 | embed.h embedvar.h EXTERN.h fakesdio.h feature.h form.h git_version.h \ |
94 | op_reg_common.h overload.h pad.h parser.h patchlevel.h perlapi.h \ | 93 | gv.h handy.h hv_func.h hv.h inline.h INTERN.h intrpvar.h iperlsys.h \ |
95 | perl.h perlio.h perliol.h perlsdio.h perlsfio.h perlvars.h \ | 94 | keywords.h l1_char_class_tab.h malloc_ctl.h metaconfig.h mg_data.h \ |
96 | perly.h pp.h pp_proto.h proto.h reentr.h regcharclass.h regcomp.h \ | 95 | mg.h mg_raw.h mg_vtable.h mydtrace.h nostdio.h opcode.h op.h \ |
97 | regexp.h regnodes.h scope.h sv.h thread.h time64_config.h \ | 96 | opnames.h op_reg_common.h overload.h pad.h parser.h patchlevel.h \ |
98 | time64.h uconfig.h unixish.h utf8.h utfebcdic.h util.h \ | 97 | perlapi.h perl.h perlio.h perliol.h perlsdio.h perlvars.h perly.h \ |
99 | uudmap.h warnings.h XSUB.h | 98 | pp.h pp_proto.h proto.h reentr.h regcharclass.h regcomp.h regexp.h \ |
99 | regnodes.h scope.h sv.h thread.h time64_config.h time64.h uconfig.h \ | ||
100 | unicode_constants.h unixish.h utf8.h utfebcdic.h util.h uudmap.h \ | ||
101 | vutil.h warnings.h XSUB.h | ||
100 | do | 102 | do |
101 | install $i ${D}${libdir}/perl/${PV}/CORE | 103 | install $i ${D}${libdir}/perl/${PV}/CORE |
102 | done | 104 | done |
diff --git a/meta/recipes-devtools/perl/perl-ptest.inc b/meta/recipes-devtools/perl/perl-ptest.inc index b1f1cb9d20..6a9df4ad4a 100644 --- a/meta/recipes-devtools/perl/perl-ptest.inc +++ b/meta/recipes-devtools/perl/perl-ptest.inc | |||
@@ -5,37 +5,24 @@ SRC_URI += "file://run-ptest \ | |||
5 | 5 | ||
6 | do_install_ptest () { | 6 | do_install_ptest () { |
7 | mkdir -p ${D}${PTEST_PATH} | 7 | mkdir -p ${D}${PTEST_PATH} |
8 | cp -pv TestInit.pm MANIFEST config.sh ${D}${PTEST_PATH}/ | 8 | sed -e "s:\/opt:\/usr:" -i Porting/add-package.pl |
9 | sed -e "s:\/local\/gnu\/:\/:" -i hints/cxux.sh | ||
10 | tar -cf - * --exclude \*.o --exclude libperl.so --exclude Makefile --exclude makefile --exclude hostperl \ | ||
11 | --exclude miniperl --exclude generate_uudmap | ( cd ${D}${PTEST_PATH} && tar -xf - ) | ||
12 | |||
13 | sed -i -e "s,${D},,g" \ | ||
14 | -e "s,--sysroot=${STAGING_DIR_HOST},,g" \ | ||
15 | -e "s,-isystem${STAGING_INCDIR} ,,g" \ | ||
16 | -e "s,${STAGING_LIBDIR},${libdir},g" \ | ||
17 | -e "s,${STAGING_BINDIR},${bindir},g" \ | ||
18 | -e "s,${STAGING_INCDIR},${includedir},g" \ | ||
19 | -e "s,${STAGING_BINDIR_NATIVE}/perl-native/,${bindir}/,g" \ | ||
20 | -e "s,${STAGING_BINDIR_NATIVE}/,,g" \ | ||
21 | -e "s,${STAGING_BINDIR_TOOLCHAIN}/${TARGET_PREFIX},${bindir},g" \ | ||
22 | ${D}${PTEST_PATH}/lib/Config.pm | ||
23 | |||
24 | ln -sf ${bindir}/perl ${D}${PTEST_PATH}/t/perl | ||
9 | 25 | ||
10 | tar -cf - t/ | ( cd ${D}${PTEST_PATH} && tar -xf - ) | ||
11 | ln -sf ${bindir}/perl ${D}${PTEST_PATH}/t/ | ||
12 | ln -sf ${libdir}/perl/${PV} ${D}${PTEST_PATH}/lib | ||
13 | |||
14 | for dir in `find ext/ dist/ cpan/ -maxdepth 2 -type d -name t ` ; do | ||
15 | tar -cf - $dir | ( cd ${D}${PTEST_PATH} && tar -xf - ) | ||
16 | done | ||
17 | for file in `find ext dist cpan -name \*.t -o -name \test.pl`; do | ||
18 | tar -cf - $file | ( cd ${D}${PTEST_PATH} && tar -xf - ) | ||
19 | done | ||
20 | |||
21 | # Tweaks to make tests pass | ||
22 | cp -pv lib/unicore/TestProp.pl ${D}${libdir}/perl/${PV}/unicore/ | ||
23 | # Put all *.t files from the lib dir in the ptest package | ||
24 | cd lib | ||
25 | for file in `find -name \*.t`; do | ||
26 | tar -cf - $file | ( cd ${D}${libdir}/perl/${PV} && tar -xf - ) | ||
27 | done | ||
28 | cd .. | ||
29 | |||
30 | mkdir -p ${D}${libdir}/perl/${PV}/XS | ||
31 | cp -pv lib/XS/APItest.pm ${D}${libdir}/perl/${PV}/XS/ | ||
32 | cp -pv lib/XS/Typemap.pm ${D}${libdir}/perl/${PV}/XS/ | ||
33 | mkdir -p ${D}${libdir}/perl/${PV}/auto/XS/APItest | ||
34 | cp -pv lib/auto/XS/APItest/APItest.so ${D}${libdir}/perl/${PV}/auto/XS/APItest/ | ||
35 | mkdir -p ${D}${libdir}/perl/${PV}/auto/XS/Typemap | ||
36 | cp -pv lib/auto/XS/Typemap/Typemap.so ${D}${libdir}/perl/${PV}/auto/XS/Typemap/ | ||
37 | cp -pv cpan/Digest-MD5/README ${D}${PTEST_PATH}/cpan/Digest-MD5/ | ||
38 | cp -pv cpan/Digest-MD5/MD5.xs ${D}${PTEST_PATH}/cpan/Digest-MD5/ | ||
39 | } | 26 | } |
40 | 27 | ||
41 | python populate_packages_prepend() { | 28 | python populate_packages_prepend() { |
diff --git a/meta/recipes-devtools/perl/perl-rdepends_5.14.3.inc b/meta/recipes-devtools/perl/perl-rdepends_5.20.0.inc index 8b2a040287..47a7548de4 100644 --- a/meta/recipes-devtools/perl/perl-rdepends_5.14.3.inc +++ b/meta/recipes-devtools/perl/perl-rdepends_5.20.0.inc | |||
@@ -1,8 +1,7 @@ | |||
1 | # To create/update the perl-rdepends_${PV}.inc use this piece of ugly script (modified for your arch/paths etc): | 1 | # To create/update the perl-rdepends_${PV}.inc use this piece of ugly script (modified for your arch/paths etc): |
2 | 2 | ||
3 | #[nitin@buildbox packages-split]$ pwd | 3 | #jiahongxu:5.20.0-r1$ pwd |
4 | #/home/nitin/build/build3/tmp/work/i586-poky-linux/perl-5.8.8-r21/packages-split | 4 | #/home/jiahongxu/yocto/build-20140618-perl/tmp/work/i586-poky-linux/perl/5.20.0-r1 |
5 | #/home/nitin/poky.git/build/tmp/work/x86_64-poky-linux/perl-5.12.2-r0/packages-split | ||
6 | 5 | ||
7 | #1 cp -r packages-split packages-split.new && cd packages-split.new | 6 | #1 cp -r packages-split packages-split.new && cd packages-split.new |
8 | #2 find . -name \*.pm | xargs sed -i '/^=head/,/^=cut/d' | 7 | #2 find . -name \*.pm | xargs sed -i '/^=head/,/^=cut/d' |
@@ -22,7 +21,10 @@ RDEPENDS_${PN}-module-thread-queue += "${PN}-module-attributes" | |||
22 | 21 | ||
23 | # Depends list | 22 | # Depends list |
24 | # copy contents of /tmp/1 in this file | 23 | # copy contents of /tmp/1 in this file |
24 | RDEPENDS_${PN}-module-anydbm-file += "${PN}-module-strict" | ||
25 | RDEPENDS_${PN}-module-anydbm-file += "${PN}-module-warnings" | ||
25 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-carp" | 26 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-carp" |
27 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-config" | ||
26 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-constant" | 28 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-constant" |
27 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-cpan" | 29 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-cpan" |
28 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-cwd" | 30 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-cwd" |
@@ -31,66 +33,42 @@ RDEPENDS_${PN}-module-app-cpan += "${PN}-module-file-basename" | |||
31 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-file-find" | 33 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-file-find" |
32 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-file-spec-functions" | 34 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-file-spec-functions" |
33 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-getopt-std" | 35 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-getopt-std" |
36 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-if" | ||
37 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-net-ping" | ||
34 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-strict" | 38 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-strict" |
39 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-user-pwent" | ||
35 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-vars" | 40 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-vars" |
36 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-warnings" | 41 | RDEPENDS_${PN}-module-app-cpan += "${PN}-module-warnings" |
37 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-app-prove-state" | 42 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-app-prove-state" |
43 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-base" | ||
38 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-carp" | 44 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-carp" |
39 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-constant" | 45 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-constant" |
40 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-file-spec" | 46 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-file-spec" |
41 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-getopt-long" | 47 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-getopt-long" |
42 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-strict" | 48 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-strict" |
43 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-tap-harness" | 49 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-tap-harness" |
44 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-tap-object" | 50 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-text-parsewords" |
45 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-tap-parser-utils" | 51 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-warnings" |
46 | RDEPENDS_${PN}-module-app-prove += "${PN}-module-vars" | ||
47 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-app-prove-state-result" | 52 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-app-prove-state-result" |
53 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-base" | ||
48 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-carp" | 54 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-carp" |
49 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-constant" | 55 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-constant" |
50 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-file-find" | 56 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-file-find" |
51 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-file-spec" | 57 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-file-spec" |
52 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-strict" | 58 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-strict" |
53 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-tap-base" | ||
54 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-tap-parser-yamlish-reader" | 59 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-tap-parser-yamlish-reader" |
55 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-tap-parser-yamlish-writer" | 60 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-tap-parser-yamlish-writer" |
56 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-vars" | 61 | RDEPENDS_${PN}-module-app-prove-state += "${PN}-module-warnings" |
57 | RDEPENDS_${PN}-module-app-prove-state-result += "${PN}-module-app-prove-state-result-test" | 62 | RDEPENDS_${PN}-module-app-prove-state-result += "${PN}-module-app-prove-state-result-test" |
58 | RDEPENDS_${PN}-module-app-prove-state-result += "${PN}-module-carp" | 63 | RDEPENDS_${PN}-module-app-prove-state-result += "${PN}-module-carp" |
59 | RDEPENDS_${PN}-module-app-prove-state-result += "${PN}-module-constant" | 64 | RDEPENDS_${PN}-module-app-prove-state-result += "${PN}-module-constant" |
60 | RDEPENDS_${PN}-module-app-prove-state-result += "${PN}-module-strict" | 65 | RDEPENDS_${PN}-module-app-prove-state-result += "${PN}-module-strict" |
61 | RDEPENDS_${PN}-module-app-prove-state-result += "${PN}-module-vars" | 66 | RDEPENDS_${PN}-module-app-prove-state-result += "${PN}-module-warnings" |
62 | RDEPENDS_${PN}-module-app-prove-state-result-test += "${PN}-module-strict" | 67 | RDEPENDS_${PN}-module-app-prove-state-result-test += "${PN}-module-strict" |
63 | RDEPENDS_${PN}-module-app-prove-state-result-test += "${PN}-module-vars" | 68 | RDEPENDS_${PN}-module-app-prove-state-result-test += "${PN}-module-warnings" |
64 | RDEPENDS_${PN}-module-archive-extract += "${PN}-module-carp" | ||
65 | RDEPENDS_${PN}-module-archive-extract += "${PN}-module-constant" | ||
66 | RDEPENDS_${PN}-module-archive-extract += "${PN}-module-cwd" | ||
67 | RDEPENDS_${PN}-module-archive-extract += "${PN}-module-file-basename" | ||
68 | RDEPENDS_${PN}-module-archive-extract += "${PN}-module-file-path" | ||
69 | RDEPENDS_${PN}-module-archive-extract += "${PN}-module-file-spec" | ||
70 | RDEPENDS_${PN}-module-archive-extract += "${PN}-module-filehandle" | ||
71 | RDEPENDS_${PN}-module-archive-extract += "${PN}-module-ipc-cmd" | ||
72 | RDEPENDS_${PN}-module-archive-extract += "${PN}-module-locale-maketext-simple" | ||
73 | RDEPENDS_${PN}-module-archive-extract += "${PN}-module-load" | ||
74 | RDEPENDS_${PN}-module-archive-extract += "${PN}-module-params-check" | ||
75 | RDEPENDS_${PN}-module-archive-extract += "${PN}-module-strict" | ||
76 | RDEPENDS_${PN}-module-archive-extract += "${PN}-module-vars" | ||
77 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-archive-tar-constant" | ||
78 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-archive-tar-file" | ||
79 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-carp" | ||
80 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-config" | ||
81 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-cwd" | ||
82 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-exporter" | ||
83 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-file-path" | ||
84 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-file-spec" | ||
85 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-file-spec-unix" | ||
86 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-io-file" | ||
87 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-io-zlib" | ||
88 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-strict" | ||
89 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-vars" | ||
90 | RDEPENDS_${PN}-module-archive-tar-constant += "${PN}-module-constant" | 69 | RDEPENDS_${PN}-module-archive-tar-constant += "${PN}-module-constant" |
91 | RDEPENDS_${PN}-module-archive-tar-constant += "${PN}-module-exporter" | 70 | RDEPENDS_${PN}-module-archive-tar-constant += "${PN}-module-exporter" |
92 | RDEPENDS_${PN}-module-archive-tar-constant += "${PN}-module-io-compress-bzip2" | 71 | RDEPENDS_${PN}-module-archive-tar-constant += "${PN}-module-io-compress-bzip2" |
93 | RDEPENDS_${PN}-module-archive-tar-constant += "${PN}-module-package-constants" | ||
94 | RDEPENDS_${PN}-module-archive-tar-constant += "${PN}-module-time-local" | 72 | RDEPENDS_${PN}-module-archive-tar-constant += "${PN}-module-time-local" |
95 | RDEPENDS_${PN}-module-archive-tar-file += "${PN}-module-archive-tar" | 73 | RDEPENDS_${PN}-module-archive-tar-file += "${PN}-module-archive-tar" |
96 | RDEPENDS_${PN}-module-archive-tar-file += "${PN}-module-archive-tar-constant" | 74 | RDEPENDS_${PN}-module-archive-tar-file += "${PN}-module-archive-tar-constant" |
@@ -101,6 +79,20 @@ RDEPENDS_${PN}-module-archive-tar-file += "${PN}-module-file-spec-unix" | |||
101 | RDEPENDS_${PN}-module-archive-tar-file += "${PN}-module-io-file" | 79 | RDEPENDS_${PN}-module-archive-tar-file += "${PN}-module-io-file" |
102 | RDEPENDS_${PN}-module-archive-tar-file += "${PN}-module-strict" | 80 | RDEPENDS_${PN}-module-archive-tar-file += "${PN}-module-strict" |
103 | RDEPENDS_${PN}-module-archive-tar-file += "${PN}-module-vars" | 81 | RDEPENDS_${PN}-module-archive-tar-file += "${PN}-module-vars" |
82 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-archive-tar-constant" | ||
83 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-archive-tar-file" | ||
84 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-carp" | ||
85 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-config" | ||
86 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-cwd" | ||
87 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-exporter" | ||
88 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-file-path" | ||
89 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-file-spec" | ||
90 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-file-spec-unix" | ||
91 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-io-file" | ||
92 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-io-zlib" | ||
93 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-strict" | ||
94 | RDEPENDS_${PN}-module-archive-tar += "${PN}-module-vars" | ||
95 | RDEPENDS_${PN}-module-arybase += "${PN}-module-xsloader" | ||
104 | RDEPENDS_${PN}-module-attribute-handlers += "${PN}-module-carp" | 96 | RDEPENDS_${PN}-module-attribute-handlers += "${PN}-module-carp" |
105 | RDEPENDS_${PN}-module-attribute-handlers += "${PN}-module-strict" | 97 | RDEPENDS_${PN}-module-attribute-handlers += "${PN}-module-strict" |
106 | RDEPENDS_${PN}-module-attribute-handlers += "${PN}-module-vars" | 98 | RDEPENDS_${PN}-module-attribute-handlers += "${PN}-module-vars" |
@@ -110,12 +102,6 @@ RDEPENDS_${PN}-module-attributes += "${PN}-module-exporter" | |||
110 | RDEPENDS_${PN}-module-attributes += "${PN}-module-strict" | 102 | RDEPENDS_${PN}-module-attributes += "${PN}-module-strict" |
111 | RDEPENDS_${PN}-module-attributes += "${PN}-module-warnings" | 103 | RDEPENDS_${PN}-module-attributes += "${PN}-module-warnings" |
112 | RDEPENDS_${PN}-module-attributes += "${PN}-module-xsloader" | 104 | RDEPENDS_${PN}-module-attributes += "${PN}-module-xsloader" |
113 | RDEPENDS_${PN}-module-autodie += "${PN}-module-carp" | ||
114 | RDEPENDS_${PN}-module-autodie += "${PN}-module-constant" | ||
115 | RDEPENDS_${PN}-module-autodie += "${PN}-module-fatal" | ||
116 | RDEPENDS_${PN}-module-autodie += "${PN}-module-lib" | ||
117 | RDEPENDS_${PN}-module-autodie += "${PN}-module-strict" | ||
118 | RDEPENDS_${PN}-module-autodie += "${PN}-module-warnings" | ||
119 | RDEPENDS_${PN}-module-autodie-exception += "${PN}-module-carp" | 105 | RDEPENDS_${PN}-module-autodie-exception += "${PN}-module-carp" |
120 | RDEPENDS_${PN}-module-autodie-exception += "${PN}-module-constant" | 106 | RDEPENDS_${PN}-module-autodie-exception += "${PN}-module-constant" |
121 | RDEPENDS_${PN}-module-autodie-exception += "${PN}-module-fatal" | 107 | RDEPENDS_${PN}-module-autodie-exception += "${PN}-module-fatal" |
@@ -134,6 +120,14 @@ RDEPENDS_${PN}-module-autodie-hints += "${PN}-module-carp" | |||
134 | RDEPENDS_${PN}-module-autodie-hints += "${PN}-module-constant" | 120 | RDEPENDS_${PN}-module-autodie-hints += "${PN}-module-constant" |
135 | RDEPENDS_${PN}-module-autodie-hints += "${PN}-module-strict" | 121 | RDEPENDS_${PN}-module-autodie-hints += "${PN}-module-strict" |
136 | RDEPENDS_${PN}-module-autodie-hints += "${PN}-module-warnings" | 122 | RDEPENDS_${PN}-module-autodie-hints += "${PN}-module-warnings" |
123 | RDEPENDS_${PN}-module-autodie += "${PN}-module-carp" | ||
124 | RDEPENDS_${PN}-module-autodie += "${PN}-module-constant" | ||
125 | RDEPENDS_${PN}-module-autodie += "${PN}-module-fatal" | ||
126 | RDEPENDS_${PN}-module-autodie += "${PN}-module-lib" | ||
127 | RDEPENDS_${PN}-module-autodie += "${PN}-module-strict" | ||
128 | RDEPENDS_${PN}-module-autodie += "${PN}-module-warnings" | ||
129 | RDEPENDS_${PN}-module-autodie-skip += "${PN}-module-strict" | ||
130 | RDEPENDS_${PN}-module-autodie-skip += "${PN}-module-warnings" | ||
137 | RDEPENDS_${PN}-module-autoloader += "${PN}-module-carp" | 131 | RDEPENDS_${PN}-module-autoloader += "${PN}-module-carp" |
138 | RDEPENDS_${PN}-module-autoloader += "${PN}-module-strict" | 132 | RDEPENDS_${PN}-module-autoloader += "${PN}-module-strict" |
139 | RDEPENDS_${PN}-module-autosplit += "${PN}-module-carp" | 133 | RDEPENDS_${PN}-module-autosplit += "${PN}-module-carp" |
@@ -144,9 +138,9 @@ RDEPENDS_${PN}-module-autosplit += "${PN}-module-file-path" | |||
144 | RDEPENDS_${PN}-module-autosplit += "${PN}-module-file-spec-functions" | 138 | RDEPENDS_${PN}-module-autosplit += "${PN}-module-file-spec-functions" |
145 | RDEPENDS_${PN}-module-autosplit += "${PN}-module-strict" | 139 | RDEPENDS_${PN}-module-autosplit += "${PN}-module-strict" |
146 | RDEPENDS_${PN}-module-autouse += "${PN}-module-carp" | 140 | RDEPENDS_${PN}-module-autouse += "${PN}-module-carp" |
147 | RDEPENDS_${PN}-module-b += "${PN}-module-exporter" | 141 | RDEPENDS_${PN}-module-base += "${PN}-module-carp" |
148 | RDEPENDS_${PN}-module-b += "${PN}-module-strict" | 142 | RDEPENDS_${PN}-module-base += "${PN}-module-strict" |
149 | RDEPENDS_${PN}-module-b += "${PN}-module-xsloader" | 143 | RDEPENDS_${PN}-module-base += "${PN}-module-vars" |
150 | RDEPENDS_${PN}-module-b-concise += "${PN}-module-b" | 144 | RDEPENDS_${PN}-module-b-concise += "${PN}-module-b" |
151 | RDEPENDS_${PN}-module-b-concise += "${PN}-module-config" | 145 | RDEPENDS_${PN}-module-b-concise += "${PN}-module-config" |
152 | RDEPENDS_${PN}-module-b-concise += "${PN}-module-exporter" | 146 | RDEPENDS_${PN}-module-b-concise += "${PN}-module-exporter" |
@@ -158,34 +152,17 @@ RDEPENDS_${PN}-module-b-debug += "${PN}-module-strict" | |||
158 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-b" | 152 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-b" |
159 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-carp" | 153 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-carp" |
160 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-data-dumper" | 154 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-data-dumper" |
155 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-feature" | ||
156 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-overloading" | ||
161 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-re" | 157 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-re" |
162 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-strict" | 158 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-strict" |
163 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-vars" | 159 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-vars" |
164 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-warnings" | 160 | RDEPENDS_${PN}-module-b-deparse += "${PN}-module-warnings" |
165 | RDEPENDS_${PN}-module-b-lint += "${PN}-module-b" | ||
166 | RDEPENDS_${PN}-module-b-lint += "${PN}-module-carp" | ||
167 | RDEPENDS_${PN}-module-b-lint += "${PN}-module-constant" | ||
168 | RDEPENDS_${PN}-module-b-lint += "${PN}-module-list-util" | ||
169 | RDEPENDS_${PN}-module-b-lint += "${PN}-module-strict" | ||
170 | RDEPENDS_${PN}-module-b-lint-debug += "${PN}-module-overload" | ||
171 | RDEPENDS_${PN}-module-b-showlex += "${PN}-module-b" | ||
172 | RDEPENDS_${PN}-module-b-showlex += "${PN}-module-b-concise" | ||
173 | RDEPENDS_${PN}-module-b-showlex += "${PN}-module-b-terse" | ||
174 | RDEPENDS_${PN}-module-b-showlex += "${PN}-module-strict" | ||
175 | RDEPENDS_${PN}-module-b-terse += "${PN}-module-b" | ||
176 | RDEPENDS_${PN}-module-b-terse += "${PN}-module-b-concise" | ||
177 | RDEPENDS_${PN}-module-b-terse += "${PN}-module-carp" | ||
178 | RDEPENDS_${PN}-module-b-terse += "${PN}-module-strict" | ||
179 | RDEPENDS_${PN}-module-b-xref += "${PN}-module-b" | ||
180 | RDEPENDS_${PN}-module-b-xref += "${PN}-module-config" | ||
181 | RDEPENDS_${PN}-module-b-xref += "${PN}-module-strict" | ||
182 | RDEPENDS_${PN}-module-base += "${PN}-module-carp" | ||
183 | RDEPENDS_${PN}-module-base += "${PN}-module-strict" | ||
184 | RDEPENDS_${PN}-module-base += "${PN}-module-vars" | ||
185 | RDEPENDS_${PN}-module-benchmark += "${PN}-module-carp" | 161 | RDEPENDS_${PN}-module-benchmark += "${PN}-module-carp" |
186 | RDEPENDS_${PN}-module-benchmark += "${PN}-module-exporter" | 162 | RDEPENDS_${PN}-module-benchmark += "${PN}-module-exporter" |
187 | RDEPENDS_${PN}-module-benchmark += "${PN}-module-strict" | 163 | RDEPENDS_${PN}-module-benchmark += "${PN}-module-strict" |
188 | RDEPENDS_${PN}-module-bigint += "${PN}-module-carp" | 164 | RDEPENDS_${PN}-module-bigint += "${PN}-module-carp" |
165 | RDEPENDS_${PN}-module-bigint += "${PN}-module-constant" | ||
189 | RDEPENDS_${PN}-module-bigint += "${PN}-module-exporter" | 166 | RDEPENDS_${PN}-module-bigint += "${PN}-module-exporter" |
190 | RDEPENDS_${PN}-module-bigint += "${PN}-module-math-bigint" | 167 | RDEPENDS_${PN}-module-bigint += "${PN}-module-math-bigint" |
191 | RDEPENDS_${PN}-module-bigint += "${PN}-module-math-bigint-trace" | 168 | RDEPENDS_${PN}-module-bigint += "${PN}-module-math-bigint-trace" |
@@ -215,12 +192,24 @@ RDEPENDS_${PN}-module-bigrat += "${PN}-module-vars" | |||
215 | RDEPENDS_${PN}-module-blib += "${PN}-module-cwd" | 192 | RDEPENDS_${PN}-module-blib += "${PN}-module-cwd" |
216 | RDEPENDS_${PN}-module-blib += "${PN}-module-file-spec" | 193 | RDEPENDS_${PN}-module-blib += "${PN}-module-file-spec" |
217 | RDEPENDS_${PN}-module-blib += "${PN}-module-vars" | 194 | RDEPENDS_${PN}-module-blib += "${PN}-module-vars" |
195 | RDEPENDS_${PN}-module-b += "${PN}-module-exporter" | ||
196 | RDEPENDS_${PN}-module-b += "${PN}-module-strict" | ||
197 | RDEPENDS_${PN}-module-b += "${PN}-module-xsloader" | ||
198 | RDEPENDS_${PN}-module-b-showlex += "${PN}-module-b" | ||
199 | RDEPENDS_${PN}-module-b-showlex += "${PN}-module-b-concise" | ||
200 | RDEPENDS_${PN}-module-b-showlex += "${PN}-module-b-terse" | ||
201 | RDEPENDS_${PN}-module-b-showlex += "${PN}-module-strict" | ||
202 | RDEPENDS_${PN}-module-b-terse += "${PN}-module-b" | ||
203 | RDEPENDS_${PN}-module-b-terse += "${PN}-module-b-concise" | ||
204 | RDEPENDS_${PN}-module-b-terse += "${PN}-module-carp" | ||
205 | RDEPENDS_${PN}-module-b-terse += "${PN}-module-strict" | ||
218 | RDEPENDS_${PN}-module-build += "${PN}-module-autosplit" | 206 | RDEPENDS_${PN}-module-build += "${PN}-module-autosplit" |
219 | RDEPENDS_${PN}-module-build += "${PN}-module-carp" | 207 | RDEPENDS_${PN}-module-build += "${PN}-module-carp" |
220 | RDEPENDS_${PN}-module-build += "${PN}-module-config" | 208 | RDEPENDS_${PN}-module-build += "${PN}-module-config" |
221 | RDEPENDS_${PN}-module-build += "${PN}-module-cpan" | 209 | RDEPENDS_${PN}-module-build += "${PN}-module-cpan" |
222 | RDEPENDS_${PN}-module-build += "${PN}-module-cwd" | 210 | RDEPENDS_${PN}-module-build += "${PN}-module-cwd" |
223 | RDEPENDS_${PN}-module-build += "${PN}-module-data-dumper" | 211 | RDEPENDS_${PN}-module-build += "${PN}-module-data-dumper" |
212 | RDEPENDS_${PN}-module-build += "${PN}-module-dynaloader" | ||
224 | RDEPENDS_${PN}-module-build += "${PN}-module-extutils-cbuilder" | 213 | RDEPENDS_${PN}-module-build += "${PN}-module-extutils-cbuilder" |
225 | RDEPENDS_${PN}-module-build += "${PN}-module-extutils-install" | 214 | RDEPENDS_${PN}-module-build += "${PN}-module-extutils-install" |
226 | RDEPENDS_${PN}-module-build += "${PN}-module-extutils-installed" | 215 | RDEPENDS_${PN}-module-build += "${PN}-module-extutils-installed" |
@@ -234,10 +223,9 @@ RDEPENDS_${PN}-module-build += "${PN}-module-file-find" | |||
234 | RDEPENDS_${PN}-module-build += "${PN}-module-file-path" | 223 | RDEPENDS_${PN}-module-build += "${PN}-module-file-path" |
235 | RDEPENDS_${PN}-module-build += "${PN}-module-file-spec" | 224 | RDEPENDS_${PN}-module-build += "${PN}-module-file-spec" |
236 | RDEPENDS_${PN}-module-build += "${PN}-module-getopt-long" | 225 | RDEPENDS_${PN}-module-build += "${PN}-module-getopt-long" |
226 | RDEPENDS_${PN}-module-build += "${PN}-module-if" | ||
237 | RDEPENDS_${PN}-module-build += "${PN}-module-inc-latest" | 227 | RDEPENDS_${PN}-module-build += "${PN}-module-inc-latest" |
238 | RDEPENDS_${PN}-module-build += "${PN}-module-io-file" | ||
239 | RDEPENDS_${PN}-module-build += "${PN}-module-build" | 228 | RDEPENDS_${PN}-module-build += "${PN}-module-build" |
240 | RDEPENDS_${PN}-module-build += "${PN}-module-metadata" | ||
241 | RDEPENDS_${PN}-module-build += "${PN}-module-pod-man" | 229 | RDEPENDS_${PN}-module-build += "${PN}-module-pod-man" |
242 | RDEPENDS_${PN}-module-build += "${PN}-module-strict" | 230 | RDEPENDS_${PN}-module-build += "${PN}-module-strict" |
243 | RDEPENDS_${PN}-module-build += "${PN}-module-tap-harness" | 231 | RDEPENDS_${PN}-module-build += "${PN}-module-tap-harness" |
@@ -245,52 +233,70 @@ RDEPENDS_${PN}-module-build += "${PN}-module-test-harness" | |||
245 | RDEPENDS_${PN}-module-build += "${PN}-module-text-parsewords" | 233 | RDEPENDS_${PN}-module-build += "${PN}-module-text-parsewords" |
246 | RDEPENDS_${PN}-module-build += "${PN}-module-vars" | 234 | RDEPENDS_${PN}-module-build += "${PN}-module-vars" |
247 | RDEPENDS_${PN}-module-build += "${PN}-module-version" | 235 | RDEPENDS_${PN}-module-build += "${PN}-module-version" |
236 | RDEPENDS_${PN}-module-build += "${PN}-module-warnings" | ||
237 | RDEPENDS_${PN}-module-b-xref += "${PN}-module-b" | ||
238 | RDEPENDS_${PN}-module-b-xref += "${PN}-module-config" | ||
239 | RDEPENDS_${PN}-module-b-xref += "${PN}-module-strict" | ||
248 | RDEPENDS_${PN}-module-bytes += "${PN}-module-bytes-heavy" | 240 | RDEPENDS_${PN}-module-bytes += "${PN}-module-bytes-heavy" |
249 | RDEPENDS_${PN}-module-bytes += "${PN}-module-carp" | 241 | RDEPENDS_${PN}-module-bytes += "${PN}-module-carp" |
242 | RDEPENDS_${PN}-module-carp-heavy += "${PN}-module-carp" | ||
250 | RDEPENDS_${PN}-module-carp += "${PN}-module-exporter" | 243 | RDEPENDS_${PN}-module-carp += "${PN}-module-exporter" |
251 | RDEPENDS_${PN}-module-carp += "${PN}-module-strict" | 244 | RDEPENDS_${PN}-module-carp += "${PN}-module-strict" |
252 | RDEPENDS_${PN}-module-carp += "${PN}-module-warnings" | 245 | RDEPENDS_${PN}-module-carp += "${PN}-module-warnings" |
253 | RDEPENDS_${PN}-module-carp-heavy += "${PN}-module-carp" | ||
254 | RDEPENDS_${PN}-module-cgi += "${PN}-module-carp" | ||
255 | RDEPENDS_${PN}-module-cgi += "${PN}-module-cgi-cookie" | ||
256 | RDEPENDS_${PN}-module-cgi += "${PN}-module-cgi-util" | ||
257 | RDEPENDS_${PN}-module-cgi += "${PN}-module-config" | ||
258 | RDEPENDS_${PN}-module-cgi += "${PN}-module-constant" | ||
259 | RDEPENDS_${PN}-module-cgi += "${PN}-module-fcntl" | ||
260 | RDEPENDS_${PN}-module-cgi += "${PN}-module-overload " | ||
261 | RDEPENDS_${PN}-module-cgi += "${PN}-module-shellwords" | ||
262 | RDEPENDS_${PN}-module-cgi-apache += "${PN}-module-cgi" | 246 | RDEPENDS_${PN}-module-cgi-apache += "${PN}-module-cgi" |
247 | RDEPENDS_${PN}-module-cgi-apache += "${PN}-module-if" | ||
263 | RDEPENDS_${PN}-module-cgi-carp += "${PN}-module-carp" | 248 | RDEPENDS_${PN}-module-cgi-carp += "${PN}-module-carp" |
264 | RDEPENDS_${PN}-module-cgi-carp += "${PN}-module-exporter" | 249 | RDEPENDS_${PN}-module-cgi-carp += "${PN}-module-exporter" |
265 | RDEPENDS_${PN}-module-cgi-carp += "${PN}-module-file-spec" | 250 | RDEPENDS_${PN}-module-cgi-carp += "${PN}-module-file-spec" |
251 | RDEPENDS_${PN}-module-cgi-carp += "${PN}-module-if" | ||
266 | RDEPENDS_${PN}-module-cgi-cookie += "${PN}-module-cgi" | 252 | RDEPENDS_${PN}-module-cgi-cookie += "${PN}-module-cgi" |
267 | RDEPENDS_${PN}-module-cgi-cookie += "${PN}-module-cgi-util" | 253 | RDEPENDS_${PN}-module-cgi-cookie += "${PN}-module-cgi-util" |
254 | RDEPENDS_${PN}-module-cgi-cookie += "${PN}-module-if" | ||
268 | RDEPENDS_${PN}-module-cgi-cookie += "${PN}-module-overload" | 255 | RDEPENDS_${PN}-module-cgi-cookie += "${PN}-module-overload" |
269 | RDEPENDS_${PN}-module-cgi-cookie += "${PN}-module-strict" | 256 | RDEPENDS_${PN}-module-cgi-cookie += "${PN}-module-strict" |
270 | RDEPENDS_${PN}-module-cgi-cookie += "${PN}-module-warnings" | 257 | RDEPENDS_${PN}-module-cgi-cookie += "${PN}-module-warnings" |
271 | RDEPENDS_${PN}-module-cgi-fast += "${PN}-module-cgi" | 258 | RDEPENDS_${PN}-module-cgi-fast += "${PN}-module-cgi" |
259 | RDEPENDS_${PN}-module-cgi-fast += "${PN}-module-if" | ||
272 | RDEPENDS_${PN}-module-cgi-fast += "${PN}-module-strict" | 260 | RDEPENDS_${PN}-module-cgi-fast += "${PN}-module-strict" |
273 | RDEPENDS_${PN}-module-cgi-fast += "${PN}-module-vars" | 261 | RDEPENDS_${PN}-module-cgi-fast += "${PN}-module-vars" |
262 | RDEPENDS_${PN}-module-cgi += "${PN}-module-carp" | ||
263 | RDEPENDS_${PN}-module-cgi += "${PN}-module-cgi-cookie" | ||
264 | RDEPENDS_${PN}-module-cgi += "${PN}-module-cgi-util" | ||
265 | RDEPENDS_${PN}-module-cgi += "${PN}-module-config" | ||
266 | RDEPENDS_${PN}-module-cgi += "${PN}-module-constant" | ||
267 | RDEPENDS_${PN}-module-cgi += "${PN}-module-fcntl" | ||
268 | RDEPENDS_${PN}-module-cgi += "${PN}-module-if" | ||
269 | RDEPENDS_${PN}-module-cgi += "${PN}-module-overload " | ||
270 | RDEPENDS_${PN}-module-cgi += "${PN}-module-text-parsewords" | ||
274 | RDEPENDS_${PN}-module-cgi-pretty += "${PN}-module-cgi" | 271 | RDEPENDS_${PN}-module-cgi-pretty += "${PN}-module-cgi" |
272 | RDEPENDS_${PN}-module-cgi-pretty += "${PN}-module-if" | ||
275 | RDEPENDS_${PN}-module-cgi-pretty += "${PN}-module-strict" | 273 | RDEPENDS_${PN}-module-cgi-pretty += "${PN}-module-strict" |
276 | RDEPENDS_${PN}-module-cgi-push += "${PN}-module-cgi" | 274 | RDEPENDS_${PN}-module-cgi-push += "${PN}-module-cgi" |
277 | RDEPENDS_${PN}-module-cgi-push += "${PN}-module-cgi-util" | 275 | RDEPENDS_${PN}-module-cgi-push += "${PN}-module-cgi-util" |
276 | RDEPENDS_${PN}-module-cgi-push += "${PN}-module-if" | ||
278 | RDEPENDS_${PN}-module-cgi-switch += "${PN}-module-cgi" | 277 | RDEPENDS_${PN}-module-cgi-switch += "${PN}-module-cgi" |
278 | RDEPENDS_${PN}-module-cgi-switch += "${PN}-module-if" | ||
279 | RDEPENDS_${PN}-module-cgi-util += "${PN}-module-base" | ||
279 | RDEPENDS_${PN}-module-cgi-util += "${PN}-module-constant" | 280 | RDEPENDS_${PN}-module-cgi-util += "${PN}-module-constant" |
280 | RDEPENDS_${PN}-module-cgi-util += "${PN}-module-exporter" | 281 | RDEPENDS_${PN}-module-cgi-util += "${PN}-module-if" |
281 | RDEPENDS_${PN}-module-cgi-util += "${PN}-module-strict" | 282 | RDEPENDS_${PN}-module-cgi-util += "${PN}-module-strict" |
282 | RDEPENDS_${PN}-module-cgi-util += "${PN}-module-utf8" | 283 | RDEPENDS_${PN}-module--charnames += "${PN}-module-bytes" |
283 | RDEPENDS_${PN}-module-cgi-util += "${PN}-module-vars" | ||
284 | RDEPENDS_${PN}-module-charnames += "${PN}-module-bytes" | 284 | RDEPENDS_${PN}-module-charnames += "${PN}-module-bytes" |
285 | RDEPENDS_${PN}-module-charnames += "${PN}-module-carp" | 285 | RDEPENDS_${PN}-module--charnames += "${PN}-module-carp" |
286 | RDEPENDS_${PN}-module-charnames += "${PN}-module-file-spec" | 286 | RDEPENDS_${PN}-module-charnames += "${PN}-module--charnames" |
287 | RDEPENDS_${PN}-module--charnames += "${PN}-module-file-spec" | ||
288 | RDEPENDS_${PN}-module--charnames += "${PN}-module-re" | ||
289 | RDEPENDS_${PN}-module-charnames += "${PN}-module-re" | ||
290 | RDEPENDS_${PN}-module--charnames += "${PN}-module-strict" | ||
287 | RDEPENDS_${PN}-module-charnames += "${PN}-module-strict" | 291 | RDEPENDS_${PN}-module-charnames += "${PN}-module-strict" |
292 | RDEPENDS_${PN}-module--charnames += "${PN}-module-unicore" | ||
293 | RDEPENDS_${PN}-module-charnames += "${PN}-module-unicore" | ||
294 | RDEPENDS_${PN}-module--charnames += "${PN}-module-warnings" | ||
288 | RDEPENDS_${PN}-module-charnames += "${PN}-module-warnings" | 295 | RDEPENDS_${PN}-module-charnames += "${PN}-module-warnings" |
289 | RDEPENDS_${PN}-module-class-struct += "${PN}-module-carp" | 296 | RDEPENDS_${PN}-module-class-struct += "${PN}-module-carp" |
290 | RDEPENDS_${PN}-module-class-struct += "${PN}-module-exporter" | 297 | RDEPENDS_${PN}-module-class-struct += "${PN}-module-exporter" |
291 | RDEPENDS_${PN}-module-class-struct += "${PN}-module-strict" | 298 | RDEPENDS_${PN}-module-class-struct += "${PN}-module-strict" |
292 | RDEPENDS_${PN}-module-class-struct += "${PN}-module-warnings-register" | 299 | RDEPENDS_${PN}-module-class-struct += "${PN}-module-warnings-register" |
293 | RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-autoloader" | ||
294 | RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-bytes " | 300 | RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-bytes " |
295 | RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-carp " | 301 | RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-carp " |
296 | RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-constant" | 302 | RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-constant" |
@@ -299,7 +305,6 @@ RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-exporter" | |||
299 | RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-strict " | 305 | RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-strict " |
300 | RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-warnings " | 306 | RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-warnings " |
301 | RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-xsloader" | 307 | RDEPENDS_${PN}-module-compress-raw-bzip2 += "${PN}-module-xsloader" |
302 | RDEPENDS_${PN}-module-compress-raw-zlib += "${PN}-module-autoloader" | ||
303 | RDEPENDS_${PN}-module-compress-raw-zlib += "${PN}-module-bytes " | 308 | RDEPENDS_${PN}-module-compress-raw-zlib += "${PN}-module-bytes " |
304 | RDEPENDS_${PN}-module-compress-raw-zlib += "${PN}-module-carp " | 309 | RDEPENDS_${PN}-module-compress-raw-zlib += "${PN}-module-carp " |
305 | RDEPENDS_${PN}-module-compress-raw-zlib += "${PN}-module-constant" | 310 | RDEPENDS_${PN}-module-compress-raw-zlib += "${PN}-module-constant" |
@@ -325,13 +330,22 @@ RDEPENDS_${PN}-module-config-extensions += "${PN}-module-config" | |||
325 | RDEPENDS_${PN}-module-config-extensions += "${PN}-module-exporter" | 330 | RDEPENDS_${PN}-module-config-extensions += "${PN}-module-exporter" |
326 | RDEPENDS_${PN}-module-config-extensions += "${PN}-module-strict" | 331 | RDEPENDS_${PN}-module-config-extensions += "${PN}-module-strict" |
327 | RDEPENDS_${PN}-module-config-extensions += "${PN}-module-vars" | 332 | RDEPENDS_${PN}-module-config-extensions += "${PN}-module-vars" |
333 | RDEPENDS_${PN}-module-config-perl-v += "${PN}-module-config" | ||
334 | RDEPENDS_${PN}-module-config-perl-v += "${PN}-module-exporter" | ||
335 | RDEPENDS_${PN}-module-config-perl-v += "${PN}-module-strict" | ||
336 | RDEPENDS_${PN}-module-config-perl-v += "${PN}-module-vars" | ||
337 | RDEPENDS_${PN}-module-config-perl-v += "${PN}-module-warnings" | ||
328 | RDEPENDS_${PN}-module-constant += "${PN}-module-carp" | 338 | RDEPENDS_${PN}-module-constant += "${PN}-module-carp" |
329 | RDEPENDS_${PN}-module-constant += "${PN}-module-strict" | 339 | RDEPENDS_${PN}-module-constant += "${PN}-module-strict" |
330 | RDEPENDS_${PN}-module-constant += "${PN}-module-vars" | 340 | RDEPENDS_${PN}-module-constant += "${PN}-module-vars" |
331 | RDEPENDS_${PN}-module-constant += "${PN}-module-warnings-register" | 341 | RDEPENDS_${PN}-module-constant += "${PN}-module-warnings-register" |
342 | RDEPENDS_${PN}-module-corelist += "${PN}-module-list-util" | ||
343 | RDEPENDS_${PN}-module-corelist += "${PN}-module-corelist" | ||
332 | RDEPENDS_${PN}-module-corelist += "${PN}-module-strict" | 344 | RDEPENDS_${PN}-module-corelist += "${PN}-module-strict" |
333 | RDEPENDS_${PN}-module-corelist += "${PN}-module-vars" | 345 | RDEPENDS_${PN}-module-corelist += "${PN}-module-vars" |
334 | RDEPENDS_${PN}-module-cpan += "${PN}-module-base" | 346 | RDEPENDS_${PN}-module-corelist += "${PN}-module-version" |
347 | RDEPENDS_${PN}-module-corelist += "${PN}-module-warnings" | ||
348 | RDEPENDS_${PN}-module-cpan += "${PN}-module-b" | ||
335 | RDEPENDS_${PN}-module-cpan += "${PN}-module-carp" | 349 | RDEPENDS_${PN}-module-cpan += "${PN}-module-carp" |
336 | RDEPENDS_${PN}-module-cpan += "${PN}-module-config" | 350 | RDEPENDS_${PN}-module-cpan += "${PN}-module-config" |
337 | RDEPENDS_${PN}-module-cpan += "${PN}-module-cpan" | 351 | RDEPENDS_${PN}-module-cpan += "${PN}-module-cpan" |
@@ -345,13 +359,16 @@ RDEPENDS_${PN}-module-cpan += "${PN}-module-fcntl" | |||
345 | RDEPENDS_${PN}-module-cpan += "${PN}-module-file-basename" | 359 | RDEPENDS_${PN}-module-cpan += "${PN}-module-file-basename" |
346 | RDEPENDS_${PN}-module-cpan += "${PN}-module-file-copy" | 360 | RDEPENDS_${PN}-module-cpan += "${PN}-module-file-copy" |
347 | RDEPENDS_${PN}-module-cpan += "${PN}-module-file-find" | 361 | RDEPENDS_${PN}-module-cpan += "${PN}-module-file-find" |
362 | RDEPENDS_${PN}-module-cpan += "${PN}-module-filehandle" | ||
348 | RDEPENDS_${PN}-module-cpan += "${PN}-module-file-path" | 363 | RDEPENDS_${PN}-module-cpan += "${PN}-module-file-path" |
349 | RDEPENDS_${PN}-module-cpan += "${PN}-module-file-spec" | 364 | RDEPENDS_${PN}-module-cpan += "${PN}-module-file-spec" |
350 | RDEPENDS_${PN}-module-cpan += "${PN}-module-filehandle" | ||
351 | RDEPENDS_${PN}-module-cpan += "${PN}-module-lib" | 365 | RDEPENDS_${PN}-module-cpan += "${PN}-module-lib" |
366 | RDEPENDS_${PN}-module-cpan += "${PN}-module-list-util" | ||
352 | RDEPENDS_${PN}-module-cpan += "${PN}-module-net-ping" | 367 | RDEPENDS_${PN}-module-cpan += "${PN}-module-net-ping" |
353 | RDEPENDS_${PN}-module-cpan += "${PN}-module-overload" | 368 | RDEPENDS_${PN}-module-cpan += "${PN}-module-overload" |
369 | RDEPENDS_${PN}-module-cpan += "${PN}-module-posix" | ||
354 | RDEPENDS_${PN}-module-cpan += "${PN}-module-safe" | 370 | RDEPENDS_${PN}-module-cpan += "${PN}-module-safe" |
371 | RDEPENDS_${PN}-module-cpan += "${PN}-module-scalar-util" | ||
355 | RDEPENDS_${PN}-module-cpan += "${PN}-module-strict" | 372 | RDEPENDS_${PN}-module-cpan += "${PN}-module-strict" |
356 | RDEPENDS_${PN}-module-cpan += "${PN}-module-sys-hostname" | 373 | RDEPENDS_${PN}-module-cpan += "${PN}-module-sys-hostname" |
357 | RDEPENDS_${PN}-module-cpan += "${PN}-module-term-readline" | 374 | RDEPENDS_${PN}-module-cpan += "${PN}-module-term-readline" |
@@ -359,46 +376,8 @@ RDEPENDS_${PN}-module-cpan += "${PN}-module-text-parsewords" | |||
359 | RDEPENDS_${PN}-module-cpan += "${PN}-module-text-wrap" | 376 | RDEPENDS_${PN}-module-cpan += "${PN}-module-text-wrap" |
360 | RDEPENDS_${PN}-module-cpan += "${PN}-module-time-local" | 377 | RDEPENDS_${PN}-module-cpan += "${PN}-module-time-local" |
361 | RDEPENDS_${PN}-module-cpan += "${PN}-module-vars" | 378 | RDEPENDS_${PN}-module-cpan += "${PN}-module-vars" |
362 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-archive-extract" | 379 | RDEPENDS_${PN}-module-cpan += "${PN}-module-version" |
363 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-base" | 380 | RDEPENDS_${PN}-module-cpan += "${PN}-module-warnings" |
364 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-carp" | ||
365 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-config" | ||
366 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-constant" | ||
367 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-cpanplus" | ||
368 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-cwd" | ||
369 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-data-dumper" | ||
370 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-exporter" | ||
371 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-extutils-makemaker" | ||
372 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-file-basename" | ||
373 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-file-copy" | ||
374 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-file-fetch" | ||
375 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-file-find" | ||
376 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-file-spec" | ||
377 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-file-spec-unix" | ||
378 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-file-stat" | ||
379 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-file-temp" | ||
380 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-filehandle" | ||
381 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-ipc-cmd" | ||
382 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-locale-maketext-simple" | ||
383 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-log-message" | ||
384 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-build" | ||
385 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-corelist" | ||
386 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-load" | ||
387 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-loaded" | ||
388 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-pluggable" | ||
389 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-object-accessor" | ||
390 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-overload" | ||
391 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-package-constants" | ||
392 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-params-check" | ||
393 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-strict" | ||
394 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-term-readline" | ||
395 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-term-ui" | ||
396 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-test" | ||
397 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-tie-hash" | ||
398 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-time-local" | ||
399 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-vars" | ||
400 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-version" | ||
401 | RDEPENDS_${PN}-module-cpanplus += "${PN}-module-warnings" | ||
402 | RDEPENDS_${PN}-module-cwd += "${PN}-module-dynaloader" | 381 | RDEPENDS_${PN}-module-cwd += "${PN}-module-dynaloader" |
403 | RDEPENDS_${PN}-module-cwd += "${PN}-module-exporter" | 382 | RDEPENDS_${PN}-module-cwd += "${PN}-module-exporter" |
404 | RDEPENDS_${PN}-module-cwd += "${PN}-module-file-spec" | 383 | RDEPENDS_${PN}-module-cwd += "${PN}-module-file-spec" |
@@ -408,14 +387,11 @@ RDEPENDS_${PN}-module-cwd += "${PN}-module-xsloader" | |||
408 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-b-deparse" | 387 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-b-deparse" |
409 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-carp" | 388 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-carp" |
410 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-config" | 389 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-config" |
390 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-constant" | ||
411 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-exporter" | 391 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-exporter" |
412 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-overload" | 392 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-overload" |
413 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-scalar-util" | 393 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-scalar-util" |
414 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-xsloader" | 394 | RDEPENDS_${PN}-module-data-dumper += "${PN}-module-xsloader" |
415 | RDEPENDS_${PN}-module-db += "${PN}-module-strict" | ||
416 | RDEPENDS_${PN}-module-dbm-filter += "${PN}-module-carp" | ||
417 | RDEPENDS_${PN}-module-dbm-filter += "${PN}-module-strict" | ||
418 | RDEPENDS_${PN}-module-dbm-filter += "${PN}-module-warnings" | ||
419 | RDEPENDS_${PN}-module-dbm-filter-compress += "${PN}-module-carp" | 395 | RDEPENDS_${PN}-module-dbm-filter-compress += "${PN}-module-carp" |
420 | RDEPENDS_${PN}-module-dbm-filter-compress += "${PN}-module-strict" | 396 | RDEPENDS_${PN}-module-dbm-filter-compress += "${PN}-module-strict" |
421 | RDEPENDS_${PN}-module-dbm-filter-compress += "${PN}-module-warnings" | 397 | RDEPENDS_${PN}-module-dbm-filter-compress += "${PN}-module-warnings" |
@@ -426,17 +402,16 @@ RDEPENDS_${PN}-module-dbm-filter-int32 += "${PN}-module-strict" | |||
426 | RDEPENDS_${PN}-module-dbm-filter-int32 += "${PN}-module-warnings" | 402 | RDEPENDS_${PN}-module-dbm-filter-int32 += "${PN}-module-warnings" |
427 | RDEPENDS_${PN}-module-dbm-filter-null += "${PN}-module-strict" | 403 | RDEPENDS_${PN}-module-dbm-filter-null += "${PN}-module-strict" |
428 | RDEPENDS_${PN}-module-dbm-filter-null += "${PN}-module-warnings" | 404 | RDEPENDS_${PN}-module-dbm-filter-null += "${PN}-module-warnings" |
405 | RDEPENDS_${PN}-module-dbm-filter += "${PN}-module-carp" | ||
406 | RDEPENDS_${PN}-module-dbm-filter += "${PN}-module-strict" | ||
407 | RDEPENDS_${PN}-module-dbm-filter += "${PN}-module-warnings" | ||
429 | RDEPENDS_${PN}-module-dbm-filter-utf8 += "${PN}-module-carp" | 408 | RDEPENDS_${PN}-module-dbm-filter-utf8 += "${PN}-module-carp" |
430 | RDEPENDS_${PN}-module-dbm-filter-utf8 += "${PN}-module-strict" | 409 | RDEPENDS_${PN}-module-dbm-filter-utf8 += "${PN}-module-strict" |
431 | RDEPENDS_${PN}-module-dbm-filter-utf8 += "${PN}-module-warnings" | 410 | RDEPENDS_${PN}-module-dbm-filter-utf8 += "${PN}-module-warnings" |
411 | RDEPENDS_${PN}-module-db += "${PN}-module-strict" | ||
432 | RDEPENDS_${PN}-module-deprecate += "${PN}-module-carp" | 412 | RDEPENDS_${PN}-module-deprecate += "${PN}-module-carp" |
433 | RDEPENDS_${PN}-module-deprecate += "${PN}-module-strict" | 413 | RDEPENDS_${PN}-module-deprecate += "${PN}-module-strict" |
434 | RDEPENDS_${PN}-module-deprecate += "${PN}-module-warnings" | 414 | RDEPENDS_${PN}-module-deprecate += "${PN}-module-warnings" |
435 | RDEPENDS_${PN}-module-devel-dprof += "${PN}-module-if" | ||
436 | RDEPENDS_${PN}-module-devel-dprof += "${PN}-module-xsloader" | ||
437 | RDEPENDS_${PN}-module-devel-innerpackage += "${PN}-module-base" | ||
438 | RDEPENDS_${PN}-module-devel-innerpackage += "${PN}-module-strict" | ||
439 | RDEPENDS_${PN}-module-devel-innerpackage += "${PN}-module-vars" | ||
440 | RDEPENDS_${PN}-module-devel-peek += "${PN}-module-exporter" | 415 | RDEPENDS_${PN}-module-devel-peek += "${PN}-module-exporter" |
441 | RDEPENDS_${PN}-module-devel-peek += "${PN}-module-xsloader" | 416 | RDEPENDS_${PN}-module-devel-peek += "${PN}-module-xsloader" |
442 | RDEPENDS_${PN}-module-devel-ppport += "${PN}-module-file-find" | 417 | RDEPENDS_${PN}-module-devel-ppport += "${PN}-module-file-find" |
@@ -449,8 +424,7 @@ RDEPENDS_${PN}-module-diagnostics += "${PN}-module-carp" | |||
449 | RDEPENDS_${PN}-module-diagnostics += "${PN}-module-config" | 424 | RDEPENDS_${PN}-module-diagnostics += "${PN}-module-config" |
450 | RDEPENDS_${PN}-module-diagnostics += "${PN}-module-getopt-std" | 425 | RDEPENDS_${PN}-module-diagnostics += "${PN}-module-getopt-std" |
451 | RDEPENDS_${PN}-module-diagnostics += "${PN}-module-strict" | 426 | RDEPENDS_${PN}-module-diagnostics += "${PN}-module-strict" |
452 | RDEPENDS_${PN}-module-digest += "${PN}-module-strict" | 427 | RDEPENDS_${PN}-module-diagnostics += "${PN}-module-text-tabs" |
453 | RDEPENDS_${PN}-module-digest += "${PN}-module-vars" | ||
454 | RDEPENDS_${PN}-module-digest-base += "${PN}-module-carp" | 428 | RDEPENDS_${PN}-module-digest-base += "${PN}-module-carp" |
455 | RDEPENDS_${PN}-module-digest-base += "${PN}-module-mime-base64" | 429 | RDEPENDS_${PN}-module-digest-base += "${PN}-module-mime-base64" |
456 | RDEPENDS_${PN}-module-digest-base += "${PN}-module-strict" | 430 | RDEPENDS_${PN}-module-digest-base += "${PN}-module-strict" |
@@ -465,32 +439,23 @@ RDEPENDS_${PN}-module-digest-md5 += "${PN}-module-exporter" | |||
465 | RDEPENDS_${PN}-module-digest-md5 += "${PN}-module-strict" | 439 | RDEPENDS_${PN}-module-digest-md5 += "${PN}-module-strict" |
466 | RDEPENDS_${PN}-module-digest-md5 += "${PN}-module-vars" | 440 | RDEPENDS_${PN}-module-digest-md5 += "${PN}-module-vars" |
467 | RDEPENDS_${PN}-module-digest-md5 += "${PN}-module-xsloader" | 441 | RDEPENDS_${PN}-module-digest-md5 += "${PN}-module-xsloader" |
442 | RDEPENDS_${PN}-module-digest += "${PN}-module-strict" | ||
443 | RDEPENDS_${PN}-module-digest += "${PN}-module-vars" | ||
468 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-carp" | 444 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-carp" |
469 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-digest-base" | 445 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-digest-base" |
470 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-dynaloader" | 446 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-dynaloader" |
471 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-exporter" | 447 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-exporter" |
472 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-fcntl" | 448 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-fcntl" |
473 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-integer" | 449 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-integer" |
474 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-mime-base64" | ||
475 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-strict" | 450 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-strict" |
476 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-vars" | 451 | RDEPENDS_${PN}-module-digest-sha += "${PN}-module-vars" |
477 | RDEPENDS_${PN}-module-dirhandle += "${PN}-module-carp" | 452 | RDEPENDS_${PN}-module-dirhandle += "${PN}-module-carp" |
478 | RDEPENDS_${PN}-module-dirhandle += "${PN}-module-symbol" | 453 | RDEPENDS_${PN}-module-dirhandle += "${PN}-module-symbol" |
479 | RDEPENDS_${PN}-module-dynaloader += "${PN}-module-carp" | 454 | RDEPENDS_${PN}-module-dynaloader += "${PN}-module-carp" |
480 | RDEPENDS_${PN}-module-dynaloader += "${PN}-module-config" | 455 | RDEPENDS_${PN}-module-dynaloader += "${PN}-module-config" |
481 | RDEPENDS_${PN}-module-encode += "${PN}-module-base" | 456 | RDEPENDS_${PN}-module-encode-alias += "${PN}-module-constant" |
482 | RDEPENDS_${PN}-module-encode += "${PN}-module-bytes" | ||
483 | RDEPENDS_${PN}-module-encode += "${PN}-module-carp" | ||
484 | RDEPENDS_${PN}-module-encode += "${PN}-module-encode-alias" | ||
485 | RDEPENDS_${PN}-module-encode += "${PN}-module-encode-config" | ||
486 | RDEPENDS_${PN}-module-encode += "${PN}-module-encode-configlocal-pm" | ||
487 | RDEPENDS_${PN}-module-encode += "${PN}-module-encode-encoding" | ||
488 | RDEPENDS_${PN}-module-encode += "${PN}-module-exporter" | ||
489 | RDEPENDS_${PN}-module-encode += "${PN}-module-strict" | ||
490 | RDEPENDS_${PN}-module-encode += "${PN}-module-warnings" | ||
491 | RDEPENDS_${PN}-module-encode += "${PN}-module-xsloader" | ||
492 | RDEPENDS_${PN}-module-encode-alias += "${PN}-module-base" | ||
493 | RDEPENDS_${PN}-module-encode-alias += "${PN}-module-encode" | 457 | RDEPENDS_${PN}-module-encode-alias += "${PN}-module-encode" |
458 | RDEPENDS_${PN}-module-encode-alias += "${PN}-module-exporter" | ||
494 | RDEPENDS_${PN}-module-encode-alias += "${PN}-module-strict" | 459 | RDEPENDS_${PN}-module-encode-alias += "${PN}-module-strict" |
495 | RDEPENDS_${PN}-module-encode-alias += "${PN}-module-warnings" | 460 | RDEPENDS_${PN}-module-encode-alias += "${PN}-module-warnings" |
496 | RDEPENDS_${PN}-module-encode-byte += "${PN}-module-encode" | 461 | RDEPENDS_${PN}-module-encode-byte += "${PN}-module-encode" |
@@ -501,17 +466,17 @@ RDEPENDS_${PN}-module-encode-cjkconstants += "${PN}-module-carp" | |||
501 | RDEPENDS_${PN}-module-encode-cjkconstants += "${PN}-module-exporter" | 466 | RDEPENDS_${PN}-module-encode-cjkconstants += "${PN}-module-exporter" |
502 | RDEPENDS_${PN}-module-encode-cjkconstants += "${PN}-module-strict" | 467 | RDEPENDS_${PN}-module-encode-cjkconstants += "${PN}-module-strict" |
503 | RDEPENDS_${PN}-module-encode-cjkconstants += "${PN}-module-warnings" | 468 | RDEPENDS_${PN}-module-encode-cjkconstants += "${PN}-module-warnings" |
504 | RDEPENDS_${PN}-module-encode-cn += "${PN}-module-encode" | ||
505 | RDEPENDS_${PN}-module-encode-cn += "${PN}-module-encode-cn-hz" | ||
506 | RDEPENDS_${PN}-module-encode-cn += "${PN}-module-strict" | ||
507 | RDEPENDS_${PN}-module-encode-cn += "${PN}-module-warnings" | ||
508 | RDEPENDS_${PN}-module-encode-cn += "${PN}-module-xsloader" | ||
509 | RDEPENDS_${PN}-module-encode-cn-hz += "${PN}-module-base" | ||
510 | RDEPENDS_${PN}-module-encode-cn-hz += "${PN}-module-encode" | 469 | RDEPENDS_${PN}-module-encode-cn-hz += "${PN}-module-encode" |
470 | RDEPENDS_${PN}-module-encode-cn-hz += "${PN}-module-parent" | ||
511 | RDEPENDS_${PN}-module-encode-cn-hz += "${PN}-module-strict" | 471 | RDEPENDS_${PN}-module-encode-cn-hz += "${PN}-module-strict" |
512 | RDEPENDS_${PN}-module-encode-cn-hz += "${PN}-module-utf8" | 472 | RDEPENDS_${PN}-module-encode-cn-hz += "${PN}-module-utf8" |
513 | RDEPENDS_${PN}-module-encode-cn-hz += "${PN}-module-vars" | 473 | RDEPENDS_${PN}-module-encode-cn-hz += "${PN}-module-vars" |
514 | RDEPENDS_${PN}-module-encode-cn-hz += "${PN}-module-warnings" | 474 | RDEPENDS_${PN}-module-encode-cn-hz += "${PN}-module-warnings" |
475 | RDEPENDS_${PN}-module-encode-cn += "${PN}-module-encode" | ||
476 | RDEPENDS_${PN}-module-encode-cn += "${PN}-module-encode-cn-hz" | ||
477 | RDEPENDS_${PN}-module-encode-cn += "${PN}-module-strict" | ||
478 | RDEPENDS_${PN}-module-encode-cn += "${PN}-module-warnings" | ||
479 | RDEPENDS_${PN}-module-encode-cn += "${PN}-module-xsloader" | ||
515 | RDEPENDS_${PN}-module-encode-config += "${PN}-module-strict" | 480 | RDEPENDS_${PN}-module-encode-config += "${PN}-module-strict" |
516 | RDEPENDS_${PN}-module-encode-config += "${PN}-module-warnings" | 481 | RDEPENDS_${PN}-module-encode-config += "${PN}-module-warnings" |
517 | RDEPENDS_${PN}-module-encode-ebcdic += "${PN}-module-encode" | 482 | RDEPENDS_${PN}-module-encode-ebcdic += "${PN}-module-encode" |
@@ -519,6 +484,7 @@ RDEPENDS_${PN}-module-encode-ebcdic += "${PN}-module-strict" | |||
519 | RDEPENDS_${PN}-module-encode-ebcdic += "${PN}-module-warnings" | 484 | RDEPENDS_${PN}-module-encode-ebcdic += "${PN}-module-warnings" |
520 | RDEPENDS_${PN}-module-encode-ebcdic += "${PN}-module-xsloader" | 485 | RDEPENDS_${PN}-module-encode-ebcdic += "${PN}-module-xsloader" |
521 | RDEPENDS_${PN}-module-encode-encoder += "${PN}-module-carp" | 486 | RDEPENDS_${PN}-module-encode-encoder += "${PN}-module-carp" |
487 | RDEPENDS_${PN}-module-encode-encoder += "${PN}-module-constant" | ||
522 | RDEPENDS_${PN}-module-encode-encoder += "${PN}-module-encode" | 488 | RDEPENDS_${PN}-module-encode-encoder += "${PN}-module-encode" |
523 | RDEPENDS_${PN}-module-encode-encoder += "${PN}-module-exporter" | 489 | RDEPENDS_${PN}-module-encode-encoder += "${PN}-module-exporter" |
524 | RDEPENDS_${PN}-module-encode-encoder += "${PN}-module-overload" | 490 | RDEPENDS_${PN}-module-encode-encoder += "${PN}-module-overload" |
@@ -529,62 +495,74 @@ RDEPENDS_${PN}-module-encode-encoding += "${PN}-module-encode" | |||
529 | RDEPENDS_${PN}-module-encode-encoding += "${PN}-module-encode-mime-name" | 495 | RDEPENDS_${PN}-module-encode-encoding += "${PN}-module-encode-mime-name" |
530 | RDEPENDS_${PN}-module-encode-encoding += "${PN}-module-strict" | 496 | RDEPENDS_${PN}-module-encode-encoding += "${PN}-module-strict" |
531 | RDEPENDS_${PN}-module-encode-encoding += "${PN}-module-warnings" | 497 | RDEPENDS_${PN}-module-encode-encoding += "${PN}-module-warnings" |
532 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-base" | ||
533 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-carp" | 498 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-carp" |
534 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-encode" | 499 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-encode" |
500 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-parent" | ||
535 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-strict" | 501 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-strict" |
536 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-utf8" | 502 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-utf8" |
537 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-vars" | 503 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-vars" |
538 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-warnings" | 504 | RDEPENDS_${PN}-module-encode-gsm0338 += "${PN}-module-warnings" |
539 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-base" | ||
540 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-bytes" | 505 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-bytes" |
541 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-carp" | 506 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-carp" |
507 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-constant" | ||
542 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-encode" | 508 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-encode" |
543 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-encode-unicode" | 509 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-encode-unicode" |
510 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-parent" | ||
544 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-strict" | 511 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-strict" |
545 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-warnings" | 512 | RDEPENDS_${PN}-module-encode-guess += "${PN}-module-warnings" |
546 | RDEPENDS_${PN}-module-encode-jp += "${PN}-module-encode" | ||
547 | RDEPENDS_${PN}-module-encode-jp += "${PN}-module-encode-jp-jis7" | ||
548 | RDEPENDS_${PN}-module-encode-jp += "${PN}-module-strict" | ||
549 | RDEPENDS_${PN}-module-encode-jp += "${PN}-module-warnings" | ||
550 | RDEPENDS_${PN}-module-encode-jp += "${PN}-module-xsloader" | ||
551 | RDEPENDS_${PN}-module-encode-jp-h2z += "${PN}-module-encode-cjkconstants" | 513 | RDEPENDS_${PN}-module-encode-jp-h2z += "${PN}-module-encode-cjkconstants" |
552 | RDEPENDS_${PN}-module-encode-jp-h2z += "${PN}-module-strict" | 514 | RDEPENDS_${PN}-module-encode-jp-h2z += "${PN}-module-strict" |
553 | RDEPENDS_${PN}-module-encode-jp-h2z += "${PN}-module-vars" | 515 | RDEPENDS_${PN}-module-encode-jp-h2z += "${PN}-module-vars" |
554 | RDEPENDS_${PN}-module-encode-jp-h2z += "${PN}-module-warnings" | 516 | RDEPENDS_${PN}-module-encode-jp-h2z += "${PN}-module-warnings" |
555 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-base" | ||
556 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-bytes" | 517 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-bytes" |
557 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-encode" | 518 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-encode" |
558 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-encode-cjkconstants" | 519 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-encode-cjkconstants" |
559 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-encode-jp-h2z" | 520 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-encode-jp-h2z" |
521 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-parent" | ||
560 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-strict" | 522 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-strict" |
561 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-warnings" | 523 | RDEPENDS_${PN}-module-encode-jp-jis7 += "${PN}-module-warnings" |
524 | RDEPENDS_${PN}-module-encode-jp += "${PN}-module-encode" | ||
525 | RDEPENDS_${PN}-module-encode-jp += "${PN}-module-encode-jp-jis7" | ||
526 | RDEPENDS_${PN}-module-encode-jp += "${PN}-module-strict" | ||
527 | RDEPENDS_${PN}-module-encode-jp += "${PN}-module-warnings" | ||
528 | RDEPENDS_${PN}-module-encode-jp += "${PN}-module-xsloader" | ||
529 | RDEPENDS_${PN}-module-encode-kr-2022-kr += "${PN}-module-encode" | ||
530 | RDEPENDS_${PN}-module-encode-kr-2022-kr += "${PN}-module-encode-cjkconstants" | ||
531 | RDEPENDS_${PN}-module-encode-kr-2022-kr += "${PN}-module-parent" | ||
532 | RDEPENDS_${PN}-module-encode-kr-2022-kr += "${PN}-module-strict" | ||
533 | RDEPENDS_${PN}-module-encode-kr-2022-kr += "${PN}-module-warnings" | ||
562 | RDEPENDS_${PN}-module-encode-kr += "${PN}-module-encode" | 534 | RDEPENDS_${PN}-module-encode-kr += "${PN}-module-encode" |
563 | RDEPENDS_${PN}-module-encode-kr += "${PN}-module-encode-kr-2022-kr" | 535 | RDEPENDS_${PN}-module-encode-kr += "${PN}-module-encode-kr-2022-kr" |
564 | RDEPENDS_${PN}-module-encode-kr += "${PN}-module-strict" | 536 | RDEPENDS_${PN}-module-encode-kr += "${PN}-module-strict" |
565 | RDEPENDS_${PN}-module-encode-kr += "${PN}-module-warnings" | 537 | RDEPENDS_${PN}-module-encode-kr += "${PN}-module-warnings" |
566 | RDEPENDS_${PN}-module-encode-kr += "${PN}-module-xsloader" | 538 | RDEPENDS_${PN}-module-encode-kr += "${PN}-module-xsloader" |
567 | RDEPENDS_${PN}-module-encode-kr-2022-kr += "${PN}-module-base" | 539 | RDEPENDS_${PN}-module-encode-mime-header-iso-2022-jp += "${PN}-module-constant" |
568 | RDEPENDS_${PN}-module-encode-kr-2022-kr += "${PN}-module-encode" | 540 | RDEPENDS_${PN}-module-encode-mime-header-iso-2022-jp += "${PN}-module-encode-cjkconstants" |
569 | RDEPENDS_${PN}-module-encode-kr-2022-kr += "${PN}-module-encode-cjkconstants" | 541 | RDEPENDS_${PN}-module-encode-mime-header-iso-2022-jp += "${PN}-module-parent" |
570 | RDEPENDS_${PN}-module-encode-kr-2022-kr += "${PN}-module-strict" | 542 | RDEPENDS_${PN}-module-encode-mime-header-iso-2022-jp += "${PN}-module-strict" |
571 | RDEPENDS_${PN}-module-encode-kr-2022-kr += "${PN}-module-warnings" | 543 | RDEPENDS_${PN}-module-encode-mime-header-iso-2022-jp += "${PN}-module-warnings" |
572 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-base" | ||
573 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-bytes" | 544 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-bytes" |
574 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-carp" | 545 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-carp" |
575 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-constant" | 546 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-constant" |
576 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-encode" | 547 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-encode" |
577 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-mime-base64" | 548 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-mime-base64" |
549 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-parent" | ||
578 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-strict" | 550 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-strict" |
579 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-utf8" | 551 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-utf8" |
580 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-warnings" | 552 | RDEPENDS_${PN}-module-encode-mime-header += "${PN}-module-warnings" |
581 | RDEPENDS_${PN}-module-encode-mime-header-iso-2022-jp += "${PN}-module-base" | ||
582 | RDEPENDS_${PN}-module-encode-mime-header-iso-2022-jp += "${PN}-module-constant" | ||
583 | RDEPENDS_${PN}-module-encode-mime-header-iso-2022-jp += "${PN}-module-encode-cjkconstants" | ||
584 | RDEPENDS_${PN}-module-encode-mime-header-iso-2022-jp += "${PN}-module-strict" | ||
585 | RDEPENDS_${PN}-module-encode-mime-header-iso-2022-jp += "${PN}-module-warnings" | ||
586 | RDEPENDS_${PN}-module-encode-mime-name += "${PN}-module-strict" | 553 | RDEPENDS_${PN}-module-encode-mime-name += "${PN}-module-strict" |
587 | RDEPENDS_${PN}-module-encode-mime-name += "${PN}-module-warnings" | 554 | RDEPENDS_${PN}-module-encode-mime-name += "${PN}-module-warnings" |
555 | RDEPENDS_${PN}-module-encode += "${PN}-module-bytes" | ||
556 | RDEPENDS_${PN}-module-encode += "${PN}-module-carp" | ||
557 | RDEPENDS_${PN}-module-encode += "${PN}-module-constant" | ||
558 | RDEPENDS_${PN}-module-encode += "${PN}-module-encode-alias" | ||
559 | RDEPENDS_${PN}-module-encode += "${PN}-module-encode-config" | ||
560 | RDEPENDS_${PN}-module-encode += "${PN}-module-encode-configlocal-pm" | ||
561 | RDEPENDS_${PN}-module-encode += "${PN}-module-encode-encoding" | ||
562 | RDEPENDS_${PN}-module-encode += "${PN}-module-exporter" | ||
563 | RDEPENDS_${PN}-module-encode += "${PN}-module-strict" | ||
564 | RDEPENDS_${PN}-module-encode += "${PN}-module-warnings" | ||
565 | RDEPENDS_${PN}-module-encode += "${PN}-module-xsloader" | ||
588 | RDEPENDS_${PN}-module-encode-symbol += "${PN}-module-encode" | 566 | RDEPENDS_${PN}-module-encode-symbol += "${PN}-module-encode" |
589 | RDEPENDS_${PN}-module-encode-symbol += "${PN}-module-strict" | 567 | RDEPENDS_${PN}-module-encode-symbol += "${PN}-module-strict" |
590 | RDEPENDS_${PN}-module-encode-symbol += "${PN}-module-warnings" | 568 | RDEPENDS_${PN}-module-encode-symbol += "${PN}-module-warnings" |
@@ -593,18 +571,20 @@ RDEPENDS_${PN}-module-encode-tw += "${PN}-module-encode" | |||
593 | RDEPENDS_${PN}-module-encode-tw += "${PN}-module-strict" | 571 | RDEPENDS_${PN}-module-encode-tw += "${PN}-module-strict" |
594 | RDEPENDS_${PN}-module-encode-tw += "${PN}-module-warnings" | 572 | RDEPENDS_${PN}-module-encode-tw += "${PN}-module-warnings" |
595 | RDEPENDS_${PN}-module-encode-tw += "${PN}-module-xsloader" | 573 | RDEPENDS_${PN}-module-encode-tw += "${PN}-module-xsloader" |
596 | RDEPENDS_${PN}-module-encode-unicode += "${PN}-module-base" | ||
597 | RDEPENDS_${PN}-module-encode-unicode += "${PN}-module-encode" | 574 | RDEPENDS_${PN}-module-encode-unicode += "${PN}-module-encode" |
575 | RDEPENDS_${PN}-module-encode-unicode += "${PN}-module-parent" | ||
598 | RDEPENDS_${PN}-module-encode-unicode += "${PN}-module-strict" | 576 | RDEPENDS_${PN}-module-encode-unicode += "${PN}-module-strict" |
599 | RDEPENDS_${PN}-module-encode-unicode += "${PN}-module-warnings" | 577 | RDEPENDS_${PN}-module-encode-unicode += "${PN}-module-warnings" |
600 | RDEPENDS_${PN}-module-encode-unicode += "${PN}-module-xsloader" | 578 | RDEPENDS_${PN}-module-encode-unicode += "${PN}-module-xsloader" |
601 | RDEPENDS_${PN}-module-encode-unicode-utf7 += "${PN}-module-base" | ||
602 | RDEPENDS_${PN}-module-encode-unicode-utf7 += "${PN}-module-encode" | 579 | RDEPENDS_${PN}-module-encode-unicode-utf7 += "${PN}-module-encode" |
603 | RDEPENDS_${PN}-module-encode-unicode-utf7 += "${PN}-module-mime-base64" | 580 | RDEPENDS_${PN}-module-encode-unicode-utf7 += "${PN}-module-mime-base64" |
581 | RDEPENDS_${PN}-module-encode-unicode-utf7 += "${PN}-module-parent" | ||
582 | RDEPENDS_${PN}-module-encode-unicode-utf7 += "${PN}-module-re" | ||
604 | RDEPENDS_${PN}-module-encode-unicode-utf7 += "${PN}-module-strict" | 583 | RDEPENDS_${PN}-module-encode-unicode-utf7 += "${PN}-module-strict" |
605 | RDEPENDS_${PN}-module-encode-unicode-utf7 += "${PN}-module-warnings" | 584 | RDEPENDS_${PN}-module-encode-unicode-utf7 += "${PN}-module-warnings" |
606 | RDEPENDS_${PN}-module-encoding += "${PN}-module-carp" | 585 | RDEPENDS_${PN}-module-encoding += "${PN}-module-carp" |
607 | RDEPENDS_${PN}-module-encoding += "${PN}-module-config" | 586 | RDEPENDS_${PN}-module-encoding += "${PN}-module-config" |
587 | RDEPENDS_${PN}-module-encoding += "${PN}-module-constant" | ||
608 | RDEPENDS_${PN}-module-encoding += "${PN}-module-encode" | 588 | RDEPENDS_${PN}-module-encoding += "${PN}-module-encode" |
609 | RDEPENDS_${PN}-module-encoding += "${PN}-module-filter-util-call" | 589 | RDEPENDS_${PN}-module-encoding += "${PN}-module-filter-util-call" |
610 | RDEPENDS_${PN}-module-encoding += "${PN}-module-i18n-langinfo" | 590 | RDEPENDS_${PN}-module-encoding += "${PN}-module-i18n-langinfo" |
@@ -615,33 +595,42 @@ RDEPENDS_${PN}-module-encoding-warnings += "${PN}-module-carp" | |||
615 | RDEPENDS_${PN}-module-encoding-warnings += "${PN}-module-strict" | 595 | RDEPENDS_${PN}-module-encoding-warnings += "${PN}-module-strict" |
616 | RDEPENDS_${PN}-module-english += "${PN}-module-carp " | 596 | RDEPENDS_${PN}-module-english += "${PN}-module-carp " |
617 | RDEPENDS_${PN}-module-english += "${PN}-module-exporter" | 597 | RDEPENDS_${PN}-module-english += "${PN}-module-exporter" |
598 | RDEPENDS_${PN}-module-env += "${PN}-module-config" | ||
599 | RDEPENDS_${PN}-module-env += "${PN}-module-tie-array" | ||
618 | RDEPENDS_${PN}-module-errno += "${PN}-module-carp" | 600 | RDEPENDS_${PN}-module-errno += "${PN}-module-carp" |
619 | RDEPENDS_${PN}-module-errno += "${PN}-module-exporter" | 601 | RDEPENDS_${PN}-module-errno += "${PN}-module-exporter" |
620 | RDEPENDS_${PN}-module-errno += "${PN}-module-strict" | 602 | RDEPENDS_${PN}-module-errno += "${PN}-module-strict" |
621 | RDEPENDS_${PN}-module-exporter += "${PN}-module-exporter-heavy" | 603 | RDEPENDS_${PN}-module-experimental += "${PN}-module-carp" |
604 | RDEPENDS_${PN}-module-experimental += "${PN}-module-feature" | ||
605 | RDEPENDS_${PN}-module-experimental += "${PN}-module-strict" | ||
606 | RDEPENDS_${PN}-module-experimental += "${PN}-module-warnings" | ||
622 | RDEPENDS_${PN}-module-exporter-heavy += "${PN}-module-carp" | 607 | RDEPENDS_${PN}-module-exporter-heavy += "${PN}-module-carp" |
623 | RDEPENDS_${PN}-module-exporter-heavy += "${PN}-module-exporter" | 608 | RDEPENDS_${PN}-module-exporter-heavy += "${PN}-module-exporter" |
624 | RDEPENDS_${PN}-module-exporter-heavy += "${PN}-module-strict" | 609 | RDEPENDS_${PN}-module-exporter-heavy += "${PN}-module-strict" |
625 | RDEPENDS_${PN}-module-extutils-cbuilder += "${PN}-module-file-basename" | 610 | RDEPENDS_${PN}-module-exporter += "${PN}-module-exporter-heavy" |
626 | RDEPENDS_${PN}-module-extutils-cbuilder += "${PN}-module-file-path" | ||
627 | RDEPENDS_${PN}-module-extutils-cbuilder += "${PN}-module-file-spec" | ||
628 | RDEPENDS_${PN}-module-extutils-cbuilder += "${PN}-module-vars" | ||
629 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-config" | 611 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-config" |
630 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-cwd" | 612 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-cwd" |
631 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-data-dumper" | 613 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-dynaloader" |
632 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-extutils-mksymlists" | 614 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-extutils-mksymlists" |
633 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-file-basename" | 615 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-file-basename" |
634 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-file-spec" | 616 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-file-spec" |
635 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-file-temp" | 617 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-file-temp" |
636 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-io-file" | ||
637 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-ipc-cmd" | 618 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-ipc-cmd" |
638 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-strict" | 619 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-strict" |
639 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-text-parsewords" | 620 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-text-parsewords" |
640 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-vars" | 621 | RDEPENDS_${PN}-module-extutils-cbuilder-base += "${PN}-module-vars" |
622 | RDEPENDS_${PN}-module-extutils-cbuilder += "${PN}-module-file-basename" | ||
623 | RDEPENDS_${PN}-module-extutils-cbuilder += "${PN}-module-file-path" | ||
624 | RDEPENDS_${PN}-module-extutils-cbuilder += "${PN}-module-file-spec" | ||
625 | RDEPENDS_${PN}-module-extutils-cbuilder += "${PN}-module-vars" | ||
641 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-aix += "${PN}-module-extutils-cbuilder-platform-unix" | 626 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-aix += "${PN}-module-extutils-cbuilder-platform-unix" |
642 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-aix += "${PN}-module-file-spec" | 627 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-aix += "${PN}-module-file-spec" |
643 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-aix += "${PN}-module-strict" | 628 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-aix += "${PN}-module-strict" |
644 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-aix += "${PN}-module-vars" | 629 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-aix += "${PN}-module-vars" |
630 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-android += "${PN}-module-extutils-cbuilder-platform-unix" | ||
631 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-android += "${PN}-module-file-spec" | ||
632 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-android += "${PN}-module-strict" | ||
633 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-android += "${PN}-module-vars" | ||
645 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-cygwin += "${PN}-module-extutils-cbuilder-platform-unix" | 634 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-cygwin += "${PN}-module-extutils-cbuilder-platform-unix" |
646 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-cygwin += "${PN}-module-file-spec" | 635 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-cygwin += "${PN}-module-file-spec" |
647 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-cygwin += "${PN}-module-strict" | 636 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-cygwin += "${PN}-module-strict" |
@@ -664,6 +653,9 @@ RDEPENDS_${PN}-module-extutils-cbuilder-platform-vms += "${PN}-module-extutils-c | |||
664 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-vms += "${PN}-module-file-spec-functions" | 653 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-vms += "${PN}-module-file-spec-functions" |
665 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-vms += "${PN}-module-strict" | 654 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-vms += "${PN}-module-strict" |
666 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-vms += "${PN}-module-vars" | 655 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-vms += "${PN}-module-vars" |
656 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows-bcc += "${PN}-module-vars" | ||
657 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows-gcc += "${PN}-module-vars" | ||
658 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows-msvc += "${PN}-module-vars" | ||
667 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows += "${PN}-module-extutils-cbuilder-base" | 659 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows += "${PN}-module-extutils-cbuilder-base" |
668 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows += "${PN}-module-file-basename" | 660 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows += "${PN}-module-file-basename" |
669 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows += "${PN}-module-file-spec" | 661 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows += "${PN}-module-file-spec" |
@@ -671,9 +663,14 @@ RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows += "${PN}-module-io-fil | |||
671 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows += "${PN}-module-strict" | 663 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows += "${PN}-module-strict" |
672 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows += "${PN}-module-vars" | 664 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows += "${PN}-module-vars" |
673 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows += "${PN}-module-warnings" | 665 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows += "${PN}-module-warnings" |
674 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows-bcc += "${PN}-module-vars" | 666 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-exporter" |
675 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows-gcc += "${PN}-module-vars" | 667 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-extutils-command" |
676 | RDEPENDS_${PN}-module-extutils-cbuilder-platform-windows-msvc += "${PN}-module-vars" | 668 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-extutils-install" |
669 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-file-spec" | ||
670 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-getopt-long" | ||
671 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-strict" | ||
672 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-test-harness" | ||
673 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-warnings" | ||
677 | RDEPENDS_${PN}-module-extutils-command += "${PN}-module-carp" | 674 | RDEPENDS_${PN}-module-extutils-command += "${PN}-module-carp" |
678 | RDEPENDS_${PN}-module-extutils-command += "${PN}-module-exporter" | 675 | RDEPENDS_${PN}-module-extutils-command += "${PN}-module-exporter" |
679 | RDEPENDS_${PN}-module-extutils-command += "${PN}-module-file-basename" | 676 | RDEPENDS_${PN}-module-extutils-command += "${PN}-module-file-basename" |
@@ -683,14 +680,12 @@ RDEPENDS_${PN}-module-extutils-command += "${PN}-module-file-find" | |||
683 | RDEPENDS_${PN}-module-extutils-command += "${PN}-module-file-path" | 680 | RDEPENDS_${PN}-module-extutils-command += "${PN}-module-file-path" |
684 | RDEPENDS_${PN}-module-extutils-command += "${PN}-module-strict" | 681 | RDEPENDS_${PN}-module-extutils-command += "${PN}-module-strict" |
685 | RDEPENDS_${PN}-module-extutils-command += "${PN}-module-vars" | 682 | RDEPENDS_${PN}-module-extutils-command += "${PN}-module-vars" |
686 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-exporter" | 683 | RDEPENDS_${PN}-module-extutils-constant-base += "${PN}-module-carp" |
687 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-extutils-command" | 684 | RDEPENDS_${PN}-module-extutils-constant-base += "${PN}-module-constant" |
688 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-extutils-install" | 685 | RDEPENDS_${PN}-module-extutils-constant-base += "${PN}-module-extutils-constant-utils" |
689 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-file-spec" | 686 | RDEPENDS_${PN}-module-extutils-constant-base += "${PN}-module-strict" |
690 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-getopt-long" | 687 | RDEPENDS_${PN}-module-extutils-constant-base += "${PN}-module-text-wrap" |
691 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-strict" | 688 | RDEPENDS_${PN}-module-extutils-constant-base += "${PN}-module-vars" |
692 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-test-harness" | ||
693 | RDEPENDS_${PN}-module-extutils-command-mm += "${PN}-module-warnings" | ||
694 | RDEPENDS_${PN}-module-extutils-constant += "${PN}-module-carp" | 689 | RDEPENDS_${PN}-module-extutils-constant += "${PN}-module-carp" |
695 | RDEPENDS_${PN}-module-extutils-constant += "${PN}-module-exporter" | 690 | RDEPENDS_${PN}-module-extutils-constant += "${PN}-module-exporter" |
696 | RDEPENDS_${PN}-module-extutils-constant += "${PN}-module-extutils-constant-proxysubs" | 691 | RDEPENDS_${PN}-module-extutils-constant += "${PN}-module-extutils-constant-proxysubs" |
@@ -699,12 +694,6 @@ RDEPENDS_${PN}-module-extutils-constant += "${PN}-module-extutils-constant-xs" | |||
699 | RDEPENDS_${PN}-module-extutils-constant += "${PN}-module-filehandle" | 694 | RDEPENDS_${PN}-module-extutils-constant += "${PN}-module-filehandle" |
700 | RDEPENDS_${PN}-module-extutils-constant += "${PN}-module-strict" | 695 | RDEPENDS_${PN}-module-extutils-constant += "${PN}-module-strict" |
701 | RDEPENDS_${PN}-module-extutils-constant += "${PN}-module-vars" | 696 | RDEPENDS_${PN}-module-extutils-constant += "${PN}-module-vars" |
702 | RDEPENDS_${PN}-module-extutils-constant-base += "${PN}-module-carp" | ||
703 | RDEPENDS_${PN}-module-extutils-constant-base += "${PN}-module-constant" | ||
704 | RDEPENDS_${PN}-module-extutils-constant-base += "${PN}-module-extutils-constant-utils" | ||
705 | RDEPENDS_${PN}-module-extutils-constant-base += "${PN}-module-strict" | ||
706 | RDEPENDS_${PN}-module-extutils-constant-base += "${PN}-module-text-wrap" | ||
707 | RDEPENDS_${PN}-module-extutils-constant-base += "${PN}-module-vars" | ||
708 | RDEPENDS_${PN}-module-extutils-constant-proxysubs += "${PN}-module-carp" | 697 | RDEPENDS_${PN}-module-extutils-constant-proxysubs += "${PN}-module-carp" |
709 | RDEPENDS_${PN}-module-extutils-constant-proxysubs += "${PN}-module-extutils-constant-utils" | 698 | RDEPENDS_${PN}-module-extutils-constant-proxysubs += "${PN}-module-extutils-constant-utils" |
710 | RDEPENDS_${PN}-module-extutils-constant-proxysubs += "${PN}-module-extutils-constant-xs" | 699 | RDEPENDS_${PN}-module-extutils-constant-proxysubs += "${PN}-module-extutils-constant-xs" |
@@ -727,10 +716,19 @@ RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-exporter" | |||
727 | RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-extutils-liblist" | 716 | RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-extutils-liblist" |
728 | RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-extutils-makemaker" | 717 | RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-extutils-makemaker" |
729 | RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-file-spec" | 718 | RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-file-spec" |
730 | RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-filehandle" | ||
731 | RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-getopt-std" | 719 | RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-getopt-std" |
732 | RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-strict" | 720 | RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-strict" |
733 | RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-vars" | 721 | RDEPENDS_${PN}-module-extutils-embed += "${PN}-module-vars" |
722 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-carp" | ||
723 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-config" | ||
724 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-data-dumper" | ||
725 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-extutils-makemaker" | ||
726 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-extutils-packlist" | ||
727 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-file-basename" | ||
728 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-file-find" | ||
729 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-file-spec" | ||
730 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-strict" | ||
731 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-vars" | ||
734 | RDEPENDS_${PN}-module-extutils-install += "${PN}-module-autosplit" | 732 | RDEPENDS_${PN}-module-extutils-install += "${PN}-module-autosplit" |
735 | RDEPENDS_${PN}-module-extutils-install += "${PN}-module-carp" | 733 | RDEPENDS_${PN}-module-extutils-install += "${PN}-module-carp" |
736 | RDEPENDS_${PN}-module-extutils-install += "${PN}-module-config" | 734 | RDEPENDS_${PN}-module-extutils-install += "${PN}-module-config" |
@@ -745,25 +743,18 @@ RDEPENDS_${PN}-module-extutils-install += "${PN}-module-file-path" | |||
745 | RDEPENDS_${PN}-module-extutils-install += "${PN}-module-file-spec" | 743 | RDEPENDS_${PN}-module-extutils-install += "${PN}-module-file-spec" |
746 | RDEPENDS_${PN}-module-extutils-install += "${PN}-module-strict" | 744 | RDEPENDS_${PN}-module-extutils-install += "${PN}-module-strict" |
747 | RDEPENDS_${PN}-module-extutils-install += "${PN}-module-vars" | 745 | RDEPENDS_${PN}-module-extutils-install += "${PN}-module-vars" |
748 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-carp" | ||
749 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-config" | ||
750 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-data-dumper" | ||
751 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-extutils-makemaker" | ||
752 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-extutils-packlist" | ||
753 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-file-basename" | ||
754 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-file-find" | ||
755 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-file-spec" | ||
756 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-strict" | ||
757 | RDEPENDS_${PN}-module-extutils-installed += "${PN}-module-vars" | ||
758 | RDEPENDS_${PN}-module-extutils-liblist += "${PN}-module-extutils-liblist-kid" | ||
759 | RDEPENDS_${PN}-module-extutils-liblist += "${PN}-module-file-spec" | ||
760 | RDEPENDS_${PN}-module-extutils-liblist += "${PN}-module-strict" | ||
761 | RDEPENDS_${PN}-module-extutils-liblist-kid += "${PN}-module-config" | ||
762 | RDEPENDS_${PN}-module-extutils-liblist-kid += "${PN}-module-cwd" | 746 | RDEPENDS_${PN}-module-extutils-liblist-kid += "${PN}-module-cwd" |
747 | RDEPENDS_${PN}-module-extutils-liblist-kid += "${PN}-module-extutils-makemaker-config" | ||
763 | RDEPENDS_${PN}-module-extutils-liblist-kid += "${PN}-module-file-basename" | 748 | RDEPENDS_${PN}-module-extutils-liblist-kid += "${PN}-module-file-basename" |
764 | RDEPENDS_${PN}-module-extutils-liblist-kid += "${PN}-module-file-spec" | 749 | RDEPENDS_${PN}-module-extutils-liblist-kid += "${PN}-module-file-spec" |
765 | RDEPENDS_${PN}-module-extutils-liblist-kid += "${PN}-module-strict" | 750 | RDEPENDS_${PN}-module-extutils-liblist-kid += "${PN}-module-strict" |
766 | RDEPENDS_${PN}-module-extutils-liblist-kid += "${PN}-module-text-parsewords" | 751 | RDEPENDS_${PN}-module-extutils-liblist-kid += "${PN}-module-text-parsewords" |
752 | RDEPENDS_${PN}-module-extutils-liblist-kid += "${PN}-module-warnings" | ||
753 | RDEPENDS_${PN}-module-extutils-liblist += "${PN}-module-extutils-liblist-kid" | ||
754 | RDEPENDS_${PN}-module-extutils-liblist += "${PN}-module-file-spec" | ||
755 | RDEPENDS_${PN}-module-extutils-liblist += "${PN}-module-strict" | ||
756 | RDEPENDS_${PN}-module-extutils-makemaker-config += "${PN}-module-config" | ||
757 | RDEPENDS_${PN}-module-extutils-makemaker-config += "${PN}-module-strict" | ||
767 | RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-carp" | 758 | RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-carp" |
768 | RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-cwd" | 759 | RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-cwd" |
769 | RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-exporter" | 760 | RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-exporter" |
@@ -774,12 +765,7 @@ RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-extutils-my" | |||
774 | RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-file-path" | 765 | RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-file-path" |
775 | RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-file-spec" | 766 | RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-file-spec" |
776 | RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-strict" | 767 | RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-strict" |
777 | RDEPENDS_${PN}-module-extutils-makemaker-config += "${PN}-module-config" | 768 | RDEPENDS_${PN}-module-extutils-makemaker += "${PN}-module-version" |
778 | RDEPENDS_${PN}-module-extutils-makemaker-config += "${PN}-module-strict" | ||
779 | RDEPENDS_${PN}-module-extutils-makemaker-yaml += "${PN}-module-carp" | ||
780 | RDEPENDS_${PN}-module-extutils-makemaker-yaml += "${PN}-module-exporter" | ||
781 | RDEPENDS_${PN}-module-extutils-makemaker-yaml += "${PN}-module-scalar-util" | ||
782 | RDEPENDS_${PN}-module-extutils-makemaker-yaml += "${PN}-module-strict" | ||
783 | RDEPENDS_${PN}-module-extutils-manifest += "${PN}-module-carp" | 769 | RDEPENDS_${PN}-module-extutils-manifest += "${PN}-module-carp" |
784 | RDEPENDS_${PN}-module-extutils-manifest += "${PN}-module-config" | 770 | RDEPENDS_${PN}-module-extutils-manifest += "${PN}-module-config" |
785 | RDEPENDS_${PN}-module-extutils-manifest += "${PN}-module-exporter" | 771 | RDEPENDS_${PN}-module-extutils-manifest += "${PN}-module-exporter" |
@@ -791,6 +777,9 @@ RDEPENDS_${PN}-module-extutils-manifest += "${PN}-module-file-spec" | |||
791 | RDEPENDS_${PN}-module-extutils-manifest += "${PN}-module-strict" | 777 | RDEPENDS_${PN}-module-extutils-manifest += "${PN}-module-strict" |
792 | RDEPENDS_${PN}-module-extutils-manifest += "${PN}-module-vars" | 778 | RDEPENDS_${PN}-module-extutils-manifest += "${PN}-module-vars" |
793 | RDEPENDS_${PN}-module-extutils-miniperl += "${PN}-module-exporter" | 779 | RDEPENDS_${PN}-module-extutils-miniperl += "${PN}-module-exporter" |
780 | RDEPENDS_${PN}-module-extutils-miniperl += "${PN}-module-extutils-embed" | ||
781 | RDEPENDS_${PN}-module-extutils-miniperl += "${PN}-module-strict" | ||
782 | RDEPENDS_${PN}-module-extutils-miniperl += "${PN}-module-vars" | ||
794 | RDEPENDS_${PN}-module-extutils-mkbootstrap += "${PN}-module-config" | 783 | RDEPENDS_${PN}-module-extutils-mkbootstrap += "${PN}-module-config" |
795 | RDEPENDS_${PN}-module-extutils-mkbootstrap += "${PN}-module-dynaloader" | 784 | RDEPENDS_${PN}-module-extutils-mkbootstrap += "${PN}-module-dynaloader" |
796 | RDEPENDS_${PN}-module-extutils-mkbootstrap += "${PN}-module-exporter" | 785 | RDEPENDS_${PN}-module-extutils-mkbootstrap += "${PN}-module-exporter" |
@@ -799,27 +788,26 @@ RDEPENDS_${PN}-module-extutils-mksymlists += "${PN}-module-carp" | |||
799 | RDEPENDS_${PN}-module-extutils-mksymlists += "${PN}-module-config" | 788 | RDEPENDS_${PN}-module-extutils-mksymlists += "${PN}-module-config" |
800 | RDEPENDS_${PN}-module-extutils-mksymlists += "${PN}-module-exporter" | 789 | RDEPENDS_${PN}-module-extutils-mksymlists += "${PN}-module-exporter" |
801 | RDEPENDS_${PN}-module-extutils-mksymlists += "${PN}-module-strict" | 790 | RDEPENDS_${PN}-module-extutils-mksymlists += "${PN}-module-strict" |
802 | RDEPENDS_${PN}-module-extutils-mm += "${PN}-module-extutils-liblist" | ||
803 | RDEPENDS_${PN}-module-extutils-mm += "${PN}-module-extutils-makemaker" | ||
804 | RDEPENDS_${PN}-module-extutils-mm += "${PN}-module-extutils-makemaker-config" | ||
805 | RDEPENDS_${PN}-module-extutils-mm += "${PN}-module-strict" | ||
806 | RDEPENDS_${PN}-module-extutils-mm-aix += "${PN}-module-extutils-makemaker" | 791 | RDEPENDS_${PN}-module-extutils-mm-aix += "${PN}-module-extutils-makemaker" |
807 | RDEPENDS_${PN}-module-extutils-mm-aix += "${PN}-module-extutils-mm-unix" | 792 | RDEPENDS_${PN}-module-extutils-mm-aix += "${PN}-module-extutils-mm-unix" |
808 | RDEPENDS_${PN}-module-extutils-mm-aix += "${PN}-module-strict" | 793 | RDEPENDS_${PN}-module-extutils-mm-aix += "${PN}-module-strict" |
809 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-autosplit" | 794 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-autosplit" |
810 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-carp" | 795 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-carp" |
796 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-cpan" | ||
811 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-data-dumper" | 797 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-data-dumper" |
812 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-extutils-makemaker" | 798 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-extutils-makemaker" |
813 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-extutils-makemaker-config" | 799 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-extutils-makemaker-config" |
814 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-extutils-makemaker-yaml" | ||
815 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-file-basename" | 800 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-file-basename" |
801 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-file-find" | ||
816 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-file-spec" | 802 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-file-spec" |
817 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-strict" | 803 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-strict" |
804 | RDEPENDS_${PN}-module-extutils-mm-any += "${PN}-module-version" | ||
818 | RDEPENDS_${PN}-module-extutils-mm-beos += "${PN}-module-extutils-makemaker-config" | 805 | RDEPENDS_${PN}-module-extutils-mm-beos += "${PN}-module-extutils-makemaker-config" |
819 | RDEPENDS_${PN}-module-extutils-mm-beos += "${PN}-module-extutils-mm-any" | 806 | RDEPENDS_${PN}-module-extutils-mm-beos += "${PN}-module-extutils-mm-any" |
820 | RDEPENDS_${PN}-module-extutils-mm-beos += "${PN}-module-extutils-mm-unix" | 807 | RDEPENDS_${PN}-module-extutils-mm-beos += "${PN}-module-extutils-mm-unix" |
821 | RDEPENDS_${PN}-module-extutils-mm-beos += "${PN}-module-file-spec" | 808 | RDEPENDS_${PN}-module-extutils-mm-beos += "${PN}-module-file-spec" |
822 | RDEPENDS_${PN}-module-extutils-mm-beos += "${PN}-module-strict" | 809 | RDEPENDS_${PN}-module-extutils-mm-beos += "${PN}-module-strict" |
810 | RDEPENDS_${PN}-module-extutils-mm-cygwin += "${PN}-module-extutils-mm-unix" | ||
823 | RDEPENDS_${PN}-module-extutils-mm-cygwin += "${PN}-module-extutils-makemaker-config" | 811 | RDEPENDS_${PN}-module-extutils-mm-cygwin += "${PN}-module-extutils-makemaker-config" |
824 | RDEPENDS_${PN}-module-extutils-mm-cygwin += "${PN}-module-extutils-mm-unix" | 812 | RDEPENDS_${PN}-module-extutils-mm-cygwin += "${PN}-module-extutils-mm-unix" |
825 | RDEPENDS_${PN}-module-extutils-mm-cygwin += "${PN}-module-extutils-mm-win32" | 813 | RDEPENDS_${PN}-module-extutils-mm-cygwin += "${PN}-module-extutils-mm-win32" |
@@ -841,6 +829,10 @@ RDEPENDS_${PN}-module-extutils-mm-os2 += "${PN}-module-extutils-mm-any" | |||
841 | RDEPENDS_${PN}-module-extutils-mm-os2 += "${PN}-module-extutils-mm-unix" | 829 | RDEPENDS_${PN}-module-extutils-mm-os2 += "${PN}-module-extutils-mm-unix" |
842 | RDEPENDS_${PN}-module-extutils-mm-os2 += "${PN}-module-file-spec" | 830 | RDEPENDS_${PN}-module-extutils-mm-os2 += "${PN}-module-file-spec" |
843 | RDEPENDS_${PN}-module-extutils-mm-os2 += "${PN}-module-strict" | 831 | RDEPENDS_${PN}-module-extutils-mm-os2 += "${PN}-module-strict" |
832 | RDEPENDS_${PN}-module-extutils-mm += "${PN}-module-extutils-liblist" | ||
833 | RDEPENDS_${PN}-module-extutils-mm += "${PN}-module-extutils-makemaker" | ||
834 | RDEPENDS_${PN}-module-extutils-mm += "${PN}-module-extutils-makemaker-config" | ||
835 | RDEPENDS_${PN}-module-extutils-mm += "${PN}-module-strict" | ||
844 | RDEPENDS_${PN}-module-extutils-mm-qnx += "${PN}-module-extutils-mm-unix" | 836 | RDEPENDS_${PN}-module-extutils-mm-qnx += "${PN}-module-extutils-mm-unix" |
845 | RDEPENDS_${PN}-module-extutils-mm-qnx += "${PN}-module-strict" | 837 | RDEPENDS_${PN}-module-extutils-mm-qnx += "${PN}-module-strict" |
846 | RDEPENDS_${PN}-module-extutils-mm-unix += "${PN}-module-carp" | 838 | RDEPENDS_${PN}-module-extutils-mm-unix += "${PN}-module-carp" |
@@ -886,20 +878,55 @@ RDEPENDS_${PN}-module-extutils-packlist += "${PN}-module-cwd" | |||
886 | RDEPENDS_${PN}-module-extutils-packlist += "${PN}-module-file-spec" | 878 | RDEPENDS_${PN}-module-extutils-packlist += "${PN}-module-file-spec" |
887 | RDEPENDS_${PN}-module-extutils-packlist += "${PN}-module-strict" | 879 | RDEPENDS_${PN}-module-extutils-packlist += "${PN}-module-strict" |
888 | RDEPENDS_${PN}-module-extutils-packlist += "${PN}-module-vars" | 880 | RDEPENDS_${PN}-module-extutils-packlist += "${PN}-module-vars" |
881 | RDEPENDS_${PN}-module-extutils-parsexs-constants += "${PN}-module-strict" | ||
882 | RDEPENDS_${PN}-module-extutils-parsexs-constants += "${PN}-module-symbol" | ||
883 | RDEPENDS_${PN}-module-extutils-parsexs-constants += "${PN}-module-warnings" | ||
884 | RDEPENDS_${PN}-module-extutils-parsexs-countlines += "${PN}-module-strict" | ||
885 | RDEPENDS_${PN}-module-extutils-parsexs-eval += "${PN}-module-strict" | ||
886 | RDEPENDS_${PN}-module-extutils-parsexs-eval += "${PN}-module-warnings" | ||
889 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-config" | 887 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-config" |
890 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-cwd" | 888 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-cwd" |
891 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-exporter" | 889 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-exporter" |
890 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-extutils-parsexs-constants" | ||
891 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-extutils-parsexs-countlines" | ||
892 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-extutils-parsexs-eval" | ||
893 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-extutils-parsexs-utilities" | ||
892 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-file-basename" | 894 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-file-basename" |
893 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-file-spec" | 895 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-file-spec" |
894 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-re" | 896 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-re" |
895 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-strict" | 897 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-strict" |
896 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-symbol" | 898 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-symbol" |
897 | RDEPENDS_${PN}-module-extutils-parsexs += "${PN}-module-vars" | 899 | RDEPENDS_${PN}-module-extutils-parsexs-utilities += "${PN}-module-exporter" |
900 | RDEPENDS_${PN}-module-extutils-parsexs-utilities += "${PN}-module-extutils-parsexs-constants" | ||
901 | RDEPENDS_${PN}-module-extutils-parsexs-utilities += "${PN}-module-extutils-typemaps" | ||
902 | RDEPENDS_${PN}-module-extutils-parsexs-utilities += "${PN}-module-file-spec" | ||
903 | RDEPENDS_${PN}-module-extutils-parsexs-utilities += "${PN}-module-lib" | ||
904 | RDEPENDS_${PN}-module-extutils-parsexs-utilities += "${PN}-module-strict" | ||
905 | RDEPENDS_${PN}-module-extutils-parsexs-utilities += "${PN}-module-warnings" | ||
898 | RDEPENDS_${PN}-module-extutils-testlib += "${PN}-module-cwd" | 906 | RDEPENDS_${PN}-module-extutils-testlib += "${PN}-module-cwd" |
899 | RDEPENDS_${PN}-module-extutils-testlib += "${PN}-module-file-spec" | 907 | RDEPENDS_${PN}-module-extutils-testlib += "${PN}-module-file-spec" |
900 | RDEPENDS_${PN}-module-extutils-testlib += "${PN}-module-lib" | 908 | RDEPENDS_${PN}-module-extutils-testlib += "${PN}-module-lib" |
901 | RDEPENDS_${PN}-module-extutils-testlib += "${PN}-module-strict" | 909 | RDEPENDS_${PN}-module-extutils-testlib += "${PN}-module-strict" |
902 | RDEPENDS_${PN}-module-extutils-testlib += "${PN}-module-warnings" | 910 | RDEPENDS_${PN}-module-extutils-testlib += "${PN}-module-warnings" |
911 | RDEPENDS_${PN}-module-extutils-typemaps-cmd += "${PN}-module-exporter" | ||
912 | RDEPENDS_${PN}-module-extutils-typemaps-cmd += "${PN}-module-extutils-typemaps" | ||
913 | RDEPENDS_${PN}-module-extutils-typemaps-cmd += "${PN}-module-strict" | ||
914 | RDEPENDS_${PN}-module-extutils-typemaps-cmd += "${PN}-module-warnings" | ||
915 | RDEPENDS_${PN}-module-extutils-typemaps-inputmap += "${PN}-module-strict" | ||
916 | RDEPENDS_${PN}-module-extutils-typemaps-inputmap += "${PN}-module-warnings" | ||
917 | RDEPENDS_${PN}-module-extutils-typemaps-outputmap += "${PN}-module-re" | ||
918 | RDEPENDS_${PN}-module-extutils-typemaps-outputmap += "${PN}-module-strict" | ||
919 | RDEPENDS_${PN}-module-extutils-typemaps-outputmap += "${PN}-module-warnings" | ||
920 | RDEPENDS_${PN}-module-extutils-typemaps += "${PN}-module-extutils-parsexs" | ||
921 | RDEPENDS_${PN}-module-extutils-typemaps += "${PN}-module-extutils-parsexs-constants" | ||
922 | RDEPENDS_${PN}-module-extutils-typemaps += "${PN}-module-extutils-typemaps-inputmap" | ||
923 | RDEPENDS_${PN}-module-extutils-typemaps += "${PN}-module-extutils-typemaps-outputmap" | ||
924 | RDEPENDS_${PN}-module-extutils-typemaps += "${PN}-module-extutils-typemaps-type" | ||
925 | RDEPENDS_${PN}-module-extutils-typemaps += "${PN}-module-strict" | ||
926 | RDEPENDS_${PN}-module-extutils-typemaps += "${PN}-module-warnings" | ||
927 | RDEPENDS_${PN}-module-extutils-typemaps-type += "${PN}-module-extutils-typemaps" | ||
928 | RDEPENDS_${PN}-module-extutils-typemaps-type += "${PN}-module-strict" | ||
929 | RDEPENDS_${PN}-module-extutils-typemaps-type += "${PN}-module-warnings" | ||
903 | RDEPENDS_${PN}-module-fatal += "${PN}-module-autodie-exception-system" | 930 | RDEPENDS_${PN}-module-fatal += "${PN}-module-autodie-exception-system" |
904 | RDEPENDS_${PN}-module-fatal += "${PN}-module-autodie-hints" | 931 | RDEPENDS_${PN}-module-fatal += "${PN}-module-autodie-hints" |
905 | RDEPENDS_${PN}-module-fatal += "${PN}-module-carp" | 932 | RDEPENDS_${PN}-module-fatal += "${PN}-module-carp" |
@@ -908,6 +935,7 @@ RDEPENDS_${PN}-module-fatal += "${PN}-module-constant" | |||
908 | RDEPENDS_${PN}-module-fatal += "${PN}-module-fatal" | 935 | RDEPENDS_${PN}-module-fatal += "${PN}-module-fatal" |
909 | RDEPENDS_${PN}-module-fatal += "${PN}-module-fcntl" | 936 | RDEPENDS_${PN}-module-fatal += "${PN}-module-fcntl" |
910 | RDEPENDS_${PN}-module-fatal += "${PN}-module-posix" | 937 | RDEPENDS_${PN}-module-fatal += "${PN}-module-posix" |
938 | RDEPENDS_${PN}-module-fatal += "${PN}-module-scalar-util" | ||
911 | RDEPENDS_${PN}-module-fatal += "${PN}-module-strict" | 939 | RDEPENDS_${PN}-module-fatal += "${PN}-module-strict" |
912 | RDEPENDS_${PN}-module-fatal += "${PN}-module-tie-refhash" | 940 | RDEPENDS_${PN}-module-fatal += "${PN}-module-tie-refhash" |
913 | RDEPENDS_${PN}-module-fatal += "${PN}-module-warnings" | 941 | RDEPENDS_${PN}-module-fatal += "${PN}-module-warnings" |
@@ -925,6 +953,10 @@ RDEPENDS_${PN}-module-file-basename += "${PN}-module-exporter" | |||
925 | RDEPENDS_${PN}-module-file-basename += "${PN}-module-re" | 953 | RDEPENDS_${PN}-module-file-basename += "${PN}-module-re" |
926 | RDEPENDS_${PN}-module-file-basename += "${PN}-module-strict" | 954 | RDEPENDS_${PN}-module-file-basename += "${PN}-module-strict" |
927 | RDEPENDS_${PN}-module-file-basename += "${PN}-module-warnings" | 955 | RDEPENDS_${PN}-module-file-basename += "${PN}-module-warnings" |
956 | RDEPENDS_${PN}-module-filecache += "${PN}-module-carp" | ||
957 | RDEPENDS_${PN}-module-filecache += "${PN}-module-parent" | ||
958 | RDEPENDS_${PN}-module-filecache += "${PN}-module-strict" | ||
959 | RDEPENDS_${PN}-module-filecache += "${PN}-module-vars" | ||
928 | RDEPENDS_${PN}-module-file-compare += "${PN}-module-carp" | 960 | RDEPENDS_${PN}-module-file-compare += "${PN}-module-carp" |
929 | RDEPENDS_${PN}-module-file-compare += "${PN}-module-exporter" | 961 | RDEPENDS_${PN}-module-file-compare += "${PN}-module-exporter" |
930 | RDEPENDS_${PN}-module-file-compare += "${PN}-module-strict" | 962 | RDEPENDS_${PN}-module-file-compare += "${PN}-module-strict" |
@@ -939,16 +971,17 @@ RDEPENDS_${PN}-module-file-copy += "${PN}-module-warnings" | |||
939 | RDEPENDS_${PN}-module-file-dosglob += "${PN}-module-strict" | 971 | RDEPENDS_${PN}-module-file-dosglob += "${PN}-module-strict" |
940 | RDEPENDS_${PN}-module-file-dosglob += "${PN}-module-text-parsewords" | 972 | RDEPENDS_${PN}-module-file-dosglob += "${PN}-module-text-parsewords" |
941 | RDEPENDS_${PN}-module-file-dosglob += "${PN}-module-warnings" | 973 | RDEPENDS_${PN}-module-file-dosglob += "${PN}-module-warnings" |
974 | RDEPENDS_${PN}-module-file-dosglob += "${PN}-module-xsloader" | ||
942 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-carp" | 975 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-carp" |
943 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-constant" | 976 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-constant" |
944 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-cwd" | 977 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-cwd" |
945 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-file-basename" | 978 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-file-basename" |
946 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-file-copy" | 979 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-file-copy" |
980 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-filehandle" | ||
947 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-file-path" | 981 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-file-path" |
948 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-file-spec" | 982 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-file-spec" |
949 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-file-spec-unix" | 983 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-file-spec-unix" |
950 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-file-temp" | 984 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-file-temp" |
951 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-filehandle" | ||
952 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-ipc-cmd" | 985 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-ipc-cmd" |
953 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-locale-maketext-simple" | 986 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-locale-maketext-simple" |
954 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-load" | 987 | RDEPENDS_${PN}-module-file-fetch += "${PN}-module-load" |
@@ -963,15 +996,17 @@ RDEPENDS_${PN}-module-file-find += "${PN}-module-file-spec" | |||
963 | RDEPENDS_${PN}-module-file-find += "${PN}-module-strict" | 996 | RDEPENDS_${PN}-module-file-find += "${PN}-module-strict" |
964 | RDEPENDS_${PN}-module-file-find += "${PN}-module-warnings" | 997 | RDEPENDS_${PN}-module-file-find += "${PN}-module-warnings" |
965 | RDEPENDS_${PN}-module-file-find += "${PN}-module-warnings-register" | 998 | RDEPENDS_${PN}-module-file-find += "${PN}-module-warnings-register" |
966 | RDEPENDS_${PN}-module-file-glob += "${PN}-module-exporter" | ||
967 | RDEPENDS_${PN}-module-file-glob += "${PN}-module-feature" | ||
968 | RDEPENDS_${PN}-module-file-glob += "${PN}-module-strict" | ||
969 | RDEPENDS_${PN}-module-file-glob += "${PN}-module-text-parsewords" | ||
970 | RDEPENDS_${PN}-module-file-glob += "${PN}-module-xsloader" | ||
971 | RDEPENDS_${PN}-module-file-globmapper += "${PN}-module-carp" | 999 | RDEPENDS_${PN}-module-file-globmapper += "${PN}-module-carp" |
972 | RDEPENDS_${PN}-module-file-globmapper += "${PN}-module-file-glob" | 1000 | RDEPENDS_${PN}-module-file-globmapper += "${PN}-module-file-glob" |
973 | RDEPENDS_${PN}-module-file-globmapper += "${PN}-module-strict" | 1001 | RDEPENDS_${PN}-module-file-globmapper += "${PN}-module-strict" |
974 | RDEPENDS_${PN}-module-file-globmapper += "${PN}-module-warnings" | 1002 | RDEPENDS_${PN}-module-file-globmapper += "${PN}-module-warnings" |
1003 | RDEPENDS_${PN}-module-file-glob += "${PN}-module-exporter" | ||
1004 | RDEPENDS_${PN}-module-file-glob += "${PN}-module-strict" | ||
1005 | RDEPENDS_${PN}-module-file-glob += "${PN}-module-xsloader" | ||
1006 | RDEPENDS_${PN}-module-filehandle += "${PN}-module-exporter" | ||
1007 | RDEPENDS_${PN}-module-filehandle += "${PN}-module-fcntl" | ||
1008 | RDEPENDS_${PN}-module-filehandle += "${PN}-module-io-file" | ||
1009 | RDEPENDS_${PN}-module-filehandle += "${PN}-module-strict" | ||
975 | RDEPENDS_${PN}-module-file-path += "${PN}-module-carp" | 1010 | RDEPENDS_${PN}-module-file-path += "${PN}-module-carp" |
976 | RDEPENDS_${PN}-module-file-path += "${PN}-module-cwd" | 1011 | RDEPENDS_${PN}-module-file-path += "${PN}-module-cwd" |
977 | RDEPENDS_${PN}-module-file-path += "${PN}-module-exporter" | 1012 | RDEPENDS_${PN}-module-file-path += "${PN}-module-exporter" |
@@ -979,8 +1014,6 @@ RDEPENDS_${PN}-module-file-path += "${PN}-module-file-basename" | |||
979 | RDEPENDS_${PN}-module-file-path += "${PN}-module-file-spec" | 1014 | RDEPENDS_${PN}-module-file-path += "${PN}-module-file-spec" |
980 | RDEPENDS_${PN}-module-file-path += "${PN}-module-strict" | 1015 | RDEPENDS_${PN}-module-file-path += "${PN}-module-strict" |
981 | RDEPENDS_${PN}-module-file-path += "${PN}-module-vars" | 1016 | RDEPENDS_${PN}-module-file-path += "${PN}-module-vars" |
982 | RDEPENDS_${PN}-module-file-spec += "${PN}-module-strict" | ||
983 | RDEPENDS_${PN}-module-file-spec += "${PN}-module-vars" | ||
984 | RDEPENDS_${PN}-module-file-spec-cygwin += "${PN}-module-file-spec-unix" | 1017 | RDEPENDS_${PN}-module-file-spec-cygwin += "${PN}-module-file-spec-unix" |
985 | RDEPENDS_${PN}-module-file-spec-cygwin += "${PN}-module-strict" | 1018 | RDEPENDS_${PN}-module-file-spec-cygwin += "${PN}-module-strict" |
986 | RDEPENDS_${PN}-module-file-spec-cygwin += "${PN}-module-vars" | 1019 | RDEPENDS_${PN}-module-file-spec-cygwin += "${PN}-module-vars" |
@@ -989,6 +1022,7 @@ RDEPENDS_${PN}-module-file-spec-epoc += "${PN}-module-strict" | |||
989 | RDEPENDS_${PN}-module-file-spec-epoc += "${PN}-module-vars" | 1022 | RDEPENDS_${PN}-module-file-spec-epoc += "${PN}-module-vars" |
990 | RDEPENDS_${PN}-module-file-spec-functions += "${PN}-module-exporter" | 1023 | RDEPENDS_${PN}-module-file-spec-functions += "${PN}-module-exporter" |
991 | RDEPENDS_${PN}-module-file-spec-functions += "${PN}-module-file-spec" | 1024 | RDEPENDS_${PN}-module-file-spec-functions += "${PN}-module-file-spec" |
1025 | RDEPENDS_${PN}-module-file-spec-functions += "${PN}-module-file-spec-unix" | ||
992 | RDEPENDS_${PN}-module-file-spec-functions += "${PN}-module-strict" | 1026 | RDEPENDS_${PN}-module-file-spec-functions += "${PN}-module-strict" |
993 | RDEPENDS_${PN}-module-file-spec-functions += "${PN}-module-vars" | 1027 | RDEPENDS_${PN}-module-file-spec-functions += "${PN}-module-vars" |
994 | RDEPENDS_${PN}-module-file-spec-mac += "${PN}-module-file-spec-unix" | 1028 | RDEPENDS_${PN}-module-file-spec-mac += "${PN}-module-file-spec-unix" |
@@ -997,10 +1031,14 @@ RDEPENDS_${PN}-module-file-spec-mac += "${PN}-module-vars" | |||
997 | RDEPENDS_${PN}-module-file-spec-os2 += "${PN}-module-file-spec-unix" | 1031 | RDEPENDS_${PN}-module-file-spec-os2 += "${PN}-module-file-spec-unix" |
998 | RDEPENDS_${PN}-module-file-spec-os2 += "${PN}-module-strict" | 1032 | RDEPENDS_${PN}-module-file-spec-os2 += "${PN}-module-strict" |
999 | RDEPENDS_${PN}-module-file-spec-os2 += "${PN}-module-vars" | 1033 | RDEPENDS_${PN}-module-file-spec-os2 += "${PN}-module-vars" |
1034 | RDEPENDS_${PN}-module-file-spec += "${PN}-module-strict" | ||
1035 | RDEPENDS_${PN}-module-file-spec += "${PN}-module-vars" | ||
1036 | RDEPENDS_${PN}-module-file-spec-unix += "${PN}-module-constant" | ||
1000 | RDEPENDS_${PN}-module-file-spec-unix += "${PN}-module-cwd" | 1037 | RDEPENDS_${PN}-module-file-spec-unix += "${PN}-module-cwd" |
1001 | RDEPENDS_${PN}-module-file-spec-unix += "${PN}-module-scalar-util" | 1038 | RDEPENDS_${PN}-module-file-spec-unix += "${PN}-module-scalar-util" |
1002 | RDEPENDS_${PN}-module-file-spec-unix += "${PN}-module-strict" | 1039 | RDEPENDS_${PN}-module-file-spec-unix += "${PN}-module-strict" |
1003 | RDEPENDS_${PN}-module-file-spec-unix += "${PN}-module-vars" | 1040 | RDEPENDS_${PN}-module-file-spec-unix += "${PN}-module-vars" |
1041 | RDEPENDS_${PN}-module-file-spec-unix += "${PN}-module-xsloader" | ||
1004 | RDEPENDS_${PN}-module-file-spec-vms += "${PN}-module-file-basename" | 1042 | RDEPENDS_${PN}-module-file-spec-vms += "${PN}-module-file-basename" |
1005 | RDEPENDS_${PN}-module-file-spec-vms += "${PN}-module-file-spec-unix" | 1043 | RDEPENDS_${PN}-module-file-spec-vms += "${PN}-module-file-spec-unix" |
1006 | RDEPENDS_${PN}-module-file-spec-vms += "${PN}-module-strict" | 1044 | RDEPENDS_${PN}-module-file-spec-vms += "${PN}-module-strict" |
@@ -1020,27 +1058,22 @@ RDEPENDS_${PN}-module-file-stat += "${PN}-module-symbol" | |||
1020 | RDEPENDS_${PN}-module-file-stat += "${PN}-module-vars" | 1058 | RDEPENDS_${PN}-module-file-stat += "${PN}-module-vars" |
1021 | RDEPENDS_${PN}-module-file-stat += "${PN}-module-warnings" | 1059 | RDEPENDS_${PN}-module-file-stat += "${PN}-module-warnings" |
1022 | RDEPENDS_${PN}-module-file-stat += "${PN}-module-warnings-register" | 1060 | RDEPENDS_${PN}-module-file-stat += "${PN}-module-warnings-register" |
1023 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-base" | ||
1024 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-carp" | 1061 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-carp" |
1025 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-constant" | 1062 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-constant" |
1063 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-cwd" | ||
1026 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-errno" | 1064 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-errno" |
1065 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-exporter" | ||
1027 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-fcntl" | 1066 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-fcntl" |
1028 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-file-path" | 1067 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-file-path" |
1029 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-file-spec" | 1068 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-file-spec" |
1030 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-io-seekable" | 1069 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-io-seekable" |
1031 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-overload" | 1070 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-overload" |
1071 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-parent" | ||
1032 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-posix" | 1072 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-posix" |
1073 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-scalar-util" | ||
1033 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-strict" | 1074 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-strict" |
1034 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-symbol" | 1075 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-symbol" |
1035 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-vars" | 1076 | RDEPENDS_${PN}-module-file-temp += "${PN}-module-vars" |
1036 | RDEPENDS_${PN}-module-filecache += "${PN}-module-base" | ||
1037 | RDEPENDS_${PN}-module-filecache += "${PN}-module-carp" | ||
1038 | RDEPENDS_${PN}-module-filecache += "${PN}-module-strict" | ||
1039 | RDEPENDS_${PN}-module-filecache += "${PN}-module-vars" | ||
1040 | RDEPENDS_${PN}-module-filehandle += "${PN}-module-exporter" | ||
1041 | RDEPENDS_${PN}-module-filehandle += "${PN}-module-fcntl" | ||
1042 | RDEPENDS_${PN}-module-filehandle += "${PN}-module-io-file" | ||
1043 | RDEPENDS_${PN}-module-filehandle += "${PN}-module-strict" | ||
1044 | RDEPENDS_${PN}-module-filter-simple += "${PN}-module-carp" | 1077 | RDEPENDS_${PN}-module-filter-simple += "${PN}-module-carp" |
1045 | RDEPENDS_${PN}-module-filter-simple += "${PN}-module-filter-util-call" | 1078 | RDEPENDS_${PN}-module-filter-simple += "${PN}-module-filter-util-call" |
1046 | RDEPENDS_${PN}-module-filter-simple += "${PN}-module-text-balanced" | 1079 | RDEPENDS_${PN}-module-filter-simple += "${PN}-module-text-balanced" |
@@ -1056,12 +1089,6 @@ RDEPENDS_${PN}-module-findbin += "${PN}-module-cwd" | |||
1056 | RDEPENDS_${PN}-module-findbin += "${PN}-module-exporter" | 1089 | RDEPENDS_${PN}-module-findbin += "${PN}-module-exporter" |
1057 | RDEPENDS_${PN}-module-findbin += "${PN}-module-file-basename" | 1090 | RDEPENDS_${PN}-module-findbin += "${PN}-module-file-basename" |
1058 | RDEPENDS_${PN}-module-findbin += "${PN}-module-file-spec" | 1091 | RDEPENDS_${PN}-module-findbin += "${PN}-module-file-spec" |
1059 | RDEPENDS_${PN}-module-gdbm-file += "${PN}-module-carp" | ||
1060 | RDEPENDS_${PN}-module-gdbm-file += "${PN}-module-exporter" | ||
1061 | RDEPENDS_${PN}-module-gdbm-file += "${PN}-module-strict" | ||
1062 | RDEPENDS_${PN}-module-gdbm-file += "${PN}-module-tie-hash" | ||
1063 | RDEPENDS_${PN}-module-gdbm-file += "${PN}-module-warnings" | ||
1064 | RDEPENDS_${PN}-module-gdbm-file += "${PN}-module-xsloader" | ||
1065 | RDEPENDS_${PN}-module-getopt-long += "${PN}-module-constant" | 1092 | RDEPENDS_${PN}-module-getopt-long += "${PN}-module-constant" |
1066 | RDEPENDS_${PN}-module-getopt-long += "${PN}-module-exporter" | 1093 | RDEPENDS_${PN}-module-getopt-long += "${PN}-module-exporter" |
1067 | RDEPENDS_${PN}-module-getopt-long += "${PN}-module-overload" | 1094 | RDEPENDS_${PN}-module-getopt-long += "${PN}-module-overload" |
@@ -1070,6 +1097,11 @@ RDEPENDS_${PN}-module-getopt-long += "${PN}-module-strict" | |||
1070 | RDEPENDS_${PN}-module-getopt-long += "${PN}-module-text-parsewords" | 1097 | RDEPENDS_${PN}-module-getopt-long += "${PN}-module-text-parsewords" |
1071 | RDEPENDS_${PN}-module-getopt-long += "${PN}-module-vars" | 1098 | RDEPENDS_${PN}-module-getopt-long += "${PN}-module-vars" |
1072 | RDEPENDS_${PN}-module-getopt-std += "${PN}-module-exporter" | 1099 | RDEPENDS_${PN}-module-getopt-std += "${PN}-module-exporter" |
1100 | RDEPENDS_${PN}-module-hash-util-fieldhash += "${PN}-module-exporter" | ||
1101 | RDEPENDS_${PN}-module-hash-util-fieldhash += "${PN}-module-scalar-util" | ||
1102 | RDEPENDS_${PN}-module-hash-util-fieldhash += "${PN}-module-strict" | ||
1103 | RDEPENDS_${PN}-module-hash-util-fieldhash += "${PN}-module-warnings" | ||
1104 | RDEPENDS_${PN}-module-hash-util-fieldhash += "${PN}-module-xsloader" | ||
1073 | RDEPENDS_${PN}-module-hash-util += "${PN}-module-carp" | 1105 | RDEPENDS_${PN}-module-hash-util += "${PN}-module-carp" |
1074 | RDEPENDS_${PN}-module-hash-util += "${PN}-module-exporter" | 1106 | RDEPENDS_${PN}-module-hash-util += "${PN}-module-exporter" |
1075 | RDEPENDS_${PN}-module-hash-util += "${PN}-module-hash-util-fieldhash" | 1107 | RDEPENDS_${PN}-module-hash-util += "${PN}-module-hash-util-fieldhash" |
@@ -1078,44 +1110,40 @@ RDEPENDS_${PN}-module-hash-util += "${PN}-module-strict" | |||
1078 | RDEPENDS_${PN}-module-hash-util += "${PN}-module-warnings" | 1110 | RDEPENDS_${PN}-module-hash-util += "${PN}-module-warnings" |
1079 | RDEPENDS_${PN}-module-hash-util += "${PN}-module-warnings-register" | 1111 | RDEPENDS_${PN}-module-hash-util += "${PN}-module-warnings-register" |
1080 | RDEPENDS_${PN}-module-hash-util += "${PN}-module-xsloader" | 1112 | RDEPENDS_${PN}-module-hash-util += "${PN}-module-xsloader" |
1081 | RDEPENDS_${PN}-module-hash-util-fieldhash += "${PN}-module-exporter" | 1113 | RDEPENDS_${PN}-module-i18n-collate += "${PN}-module-exporter" |
1082 | RDEPENDS_${PN}-module-hash-util-fieldhash += "${PN}-module-scalar-util" | 1114 | RDEPENDS_${PN}-module-i18n-collate += "${PN}-module-overload" |
1083 | RDEPENDS_${PN}-module-hash-util-fieldhash += "${PN}-module-strict" | 1115 | RDEPENDS_${PN}-module-i18n-collate += "${PN}-module-posix" |
1084 | RDEPENDS_${PN}-module-hash-util-fieldhash += "${PN}-module-warnings" | 1116 | RDEPENDS_${PN}-module-i18n-collate += "${PN}-module-strict" |
1085 | RDEPENDS_${PN}-module-hash-util-fieldhash += "${PN}-module-xsloader" | 1117 | RDEPENDS_${PN}-module-i18n-collate += "${PN}-module-warnings-register" |
1086 | RDEPENDS_${PN}-module-i18n-langinfo += "${PN}-module-carp" | 1118 | RDEPENDS_${PN}-module-i18n-langinfo += "${PN}-module-carp" |
1087 | RDEPENDS_${PN}-module-i18n-langinfo += "${PN}-module-exporter" | 1119 | RDEPENDS_${PN}-module-i18n-langinfo += "${PN}-module-exporter" |
1088 | RDEPENDS_${PN}-module-i18n-langinfo += "${PN}-module-strict" | 1120 | RDEPENDS_${PN}-module-i18n-langinfo += "${PN}-module-strict" |
1089 | RDEPENDS_${PN}-module-i18n-langinfo += "${PN}-module-warnings" | 1121 | RDEPENDS_${PN}-module-i18n-langinfo += "${PN}-module-warnings" |
1090 | RDEPENDS_${PN}-module-i18n-langinfo += "${PN}-module-xsloader" | 1122 | RDEPENDS_${PN}-module-i18n-langinfo += "${PN}-module-xsloader" |
1091 | RDEPENDS_${PN}-module-i18n-langtags += "${PN}-module-exporter" | ||
1092 | RDEPENDS_${PN}-module-i18n-langtags += "${PN}-module-i18n-langtags" | ||
1093 | RDEPENDS_${PN}-module-i18n-langtags += "${PN}-module-strict" | ||
1094 | RDEPENDS_${PN}-module-i18n-langtags += "${PN}-module-vars" | ||
1095 | RDEPENDS_${PN}-module-i18n-langtags-detect += "${PN}-module-i18n-langtags" | 1123 | RDEPENDS_${PN}-module-i18n-langtags-detect += "${PN}-module-i18n-langtags" |
1096 | RDEPENDS_${PN}-module-i18n-langtags-detect += "${PN}-module-strict" | 1124 | RDEPENDS_${PN}-module-i18n-langtags-detect += "${PN}-module-strict" |
1097 | RDEPENDS_${PN}-module-i18n-langtags-detect += "${PN}-module-vars" | 1125 | RDEPENDS_${PN}-module-i18n-langtags-detect += "${PN}-module-vars" |
1098 | RDEPENDS_${PN}-module-i18n-langtags-list += "${PN}-module-strict" | 1126 | RDEPENDS_${PN}-module-i18n-langtags-list += "${PN}-module-strict" |
1099 | RDEPENDS_${PN}-module-i18n-langtags-list += "${PN}-module-vars" | 1127 | RDEPENDS_${PN}-module-i18n-langtags-list += "${PN}-module-vars" |
1128 | RDEPENDS_${PN}-module-i18n-langtags += "${PN}-module-exporter" | ||
1129 | RDEPENDS_${PN}-module-i18n-langtags += "${PN}-module-i18n-langtags" | ||
1130 | RDEPENDS_${PN}-module-i18n-langtags += "${PN}-module-strict" | ||
1131 | RDEPENDS_${PN}-module-i18n-langtags += "${PN}-module-vars" | ||
1100 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-carp" | 1132 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-carp" |
1101 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-extutils-installed" | 1133 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-extutils-installed" |
1102 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-file-basename" | 1134 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-file-basename" |
1103 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-file-copy" | 1135 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-file-copy" |
1104 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-file-path" | 1136 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-file-path" |
1105 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-file-spec" | 1137 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-file-spec" |
1138 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-if" | ||
1106 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-inc-latest-private" | 1139 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-inc-latest-private" |
1107 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-io-file" | ||
1108 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-strict" | 1140 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-strict" |
1109 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-vars" | 1141 | RDEPENDS_${PN}-module-inc-latest += "${PN}-module-vars" |
1110 | RDEPENDS_${PN}-module-inc-latest-private += "${PN}-module-extutils-makemaker" | 1142 | RDEPENDS_${PN}-module-inc-latest-private += "${PN}-module-extutils-makemaker" |
1111 | RDEPENDS_${PN}-module-inc-latest-private += "${PN}-module-file-spec" | 1143 | RDEPENDS_${PN}-module-inc-latest-private += "${PN}-module-file-spec" |
1112 | RDEPENDS_${PN}-module-inc-latest-private += "${PN}-module-io-file" | 1144 | RDEPENDS_${PN}-module-inc-latest-private += "${PN}-module-if" |
1113 | RDEPENDS_${PN}-module-inc-latest-private += "${PN}-module-strict" | 1145 | RDEPENDS_${PN}-module-inc-latest-private += "${PN}-module-strict" |
1114 | RDEPENDS_${PN}-module-inc-latest-private += "${PN}-module-vars" | 1146 | RDEPENDS_${PN}-module-inc-latest-private += "${PN}-module-vars" |
1115 | RDEPENDS_${PN}-module-io += "${PN}-module-carp" | ||
1116 | RDEPENDS_${PN}-module-io += "${PN}-module-strict" | ||
1117 | RDEPENDS_${PN}-module-io += "${PN}-module-warnings" | ||
1118 | RDEPENDS_${PN}-module-io += "${PN}-module-xsloader" | ||
1119 | RDEPENDS_${PN}-module-io-compress-adapter-bzip2 += "${PN}-module-bytes" | 1147 | RDEPENDS_${PN}-module-io-compress-adapter-bzip2 += "${PN}-module-bytes" |
1120 | RDEPENDS_${PN}-module-io-compress-adapter-bzip2 += "${PN}-module-compress-raw-bzip2" | 1148 | RDEPENDS_${PN}-module-io-compress-adapter-bzip2 += "${PN}-module-compress-raw-bzip2" |
1121 | RDEPENDS_${PN}-module-io-compress-adapter-bzip2 += "${PN}-module-io-compress-base-common" | 1149 | RDEPENDS_${PN}-module-io-compress-adapter-bzip2 += "${PN}-module-io-compress-base-common" |
@@ -1123,6 +1151,7 @@ RDEPENDS_${PN}-module-io-compress-adapter-bzip2 += "${PN}-module-strict" | |||
1123 | RDEPENDS_${PN}-module-io-compress-adapter-bzip2 += "${PN}-module-warnings" | 1151 | RDEPENDS_${PN}-module-io-compress-adapter-bzip2 += "${PN}-module-warnings" |
1124 | RDEPENDS_${PN}-module-io-compress-adapter-deflate += "${PN}-module-bytes" | 1152 | RDEPENDS_${PN}-module-io-compress-adapter-deflate += "${PN}-module-bytes" |
1125 | RDEPENDS_${PN}-module-io-compress-adapter-deflate += "${PN}-module-compress-raw-zlib" | 1153 | RDEPENDS_${PN}-module-io-compress-adapter-deflate += "${PN}-module-compress-raw-zlib" |
1154 | RDEPENDS_${PN}-module-io-compress-adapter-deflate += "${PN}-module-exporter" | ||
1126 | RDEPENDS_${PN}-module-io-compress-adapter-deflate += "${PN}-module-io-compress-base-common" | 1155 | RDEPENDS_${PN}-module-io-compress-adapter-deflate += "${PN}-module-io-compress-base-common" |
1127 | RDEPENDS_${PN}-module-io-compress-adapter-deflate += "${PN}-module-strict" | 1156 | RDEPENDS_${PN}-module-io-compress-adapter-deflate += "${PN}-module-strict" |
1128 | RDEPENDS_${PN}-module-io-compress-adapter-deflate += "${PN}-module-warnings" | 1157 | RDEPENDS_${PN}-module-io-compress-adapter-deflate += "${PN}-module-warnings" |
@@ -1130,15 +1159,6 @@ RDEPENDS_${PN}-module-io-compress-adapter-identity += "${PN}-module-bytes" | |||
1130 | RDEPENDS_${PN}-module-io-compress-adapter-identity += "${PN}-module-io-compress-base-common" | 1159 | RDEPENDS_${PN}-module-io-compress-adapter-identity += "${PN}-module-io-compress-base-common" |
1131 | RDEPENDS_${PN}-module-io-compress-adapter-identity += "${PN}-module-strict" | 1160 | RDEPENDS_${PN}-module-io-compress-adapter-identity += "${PN}-module-strict" |
1132 | RDEPENDS_${PN}-module-io-compress-adapter-identity += "${PN}-module-warnings" | 1161 | RDEPENDS_${PN}-module-io-compress-adapter-identity += "${PN}-module-warnings" |
1133 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-bytes" | ||
1134 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-carp " | ||
1135 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-io-compress-base-common" | ||
1136 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-io-file " | ||
1137 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-io-handle " | ||
1138 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-scalar-util" | ||
1139 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-strict " | ||
1140 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-symbol" | ||
1141 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-warnings" | ||
1142 | RDEPENDS_${PN}-module-io-compress-base-common += "${PN}-module-bytes" | 1162 | RDEPENDS_${PN}-module-io-compress-base-common += "${PN}-module-bytes" |
1143 | RDEPENDS_${PN}-module-io-compress-base-common += "${PN}-module-carp" | 1163 | RDEPENDS_${PN}-module-io-compress-base-common += "${PN}-module-carp" |
1144 | RDEPENDS_${PN}-module-io-compress-base-common += "${PN}-module-constant" | 1164 | RDEPENDS_${PN}-module-io-compress-base-common += "${PN}-module-constant" |
@@ -1150,6 +1170,14 @@ RDEPENDS_${PN}-module-io-compress-base-common += "${PN}-module-strict " | |||
1150 | RDEPENDS_${PN}-module-io-compress-base-common += "${PN}-module-strict" | 1170 | RDEPENDS_${PN}-module-io-compress-base-common += "${PN}-module-strict" |
1151 | RDEPENDS_${PN}-module-io-compress-base-common += "${PN}-module-utf8" | 1171 | RDEPENDS_${PN}-module-io-compress-base-common += "${PN}-module-utf8" |
1152 | RDEPENDS_${PN}-module-io-compress-base-common += "${PN}-module-warnings" | 1172 | RDEPENDS_${PN}-module-io-compress-base-common += "${PN}-module-warnings" |
1173 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-carp" | ||
1174 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-io-compress-base-common" | ||
1175 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-io-file" | ||
1176 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-io-handle " | ||
1177 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-scalar-util" | ||
1178 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-strict " | ||
1179 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-symbol" | ||
1180 | RDEPENDS_${PN}-module-io-compress-base += "${PN}-module-warnings" | ||
1153 | RDEPENDS_${PN}-module-io-compress-bzip2 += "${PN}-module-bytes" | 1181 | RDEPENDS_${PN}-module-io-compress-bzip2 += "${PN}-module-bytes" |
1154 | RDEPENDS_${PN}-module-io-compress-bzip2 += "${PN}-module-exporter " | 1182 | RDEPENDS_${PN}-module-io-compress-bzip2 += "${PN}-module-exporter " |
1155 | RDEPENDS_${PN}-module-io-compress-bzip2 += "${PN}-module-io-compress-adapter-bzip2" | 1183 | RDEPENDS_${PN}-module-io-compress-bzip2 += "${PN}-module-io-compress-adapter-bzip2" |
@@ -1158,27 +1186,27 @@ RDEPENDS_${PN}-module-io-compress-bzip2 += "${PN}-module-io-compress-base-common | |||
1158 | RDEPENDS_${PN}-module-io-compress-bzip2 += "${PN}-module-strict " | 1186 | RDEPENDS_${PN}-module-io-compress-bzip2 += "${PN}-module-strict " |
1159 | RDEPENDS_${PN}-module-io-compress-bzip2 += "${PN}-module-warnings" | 1187 | RDEPENDS_${PN}-module-io-compress-bzip2 += "${PN}-module-warnings" |
1160 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-bytes" | 1188 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-bytes" |
1161 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-compress-raw-zlib" | ||
1162 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-exporter " | 1189 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-exporter " |
1190 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-io-compress-adapter-deflate" | ||
1163 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-io-compress-base-common" | 1191 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-io-compress-base-common" |
1164 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-io-compress-rawdeflate" | 1192 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-io-compress-rawdeflate" |
1165 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-io-compress-zlib-constants" | 1193 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-io-compress-zlib-constants" |
1166 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-strict " | 1194 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-strict " |
1167 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-warnings" | 1195 | RDEPENDS_${PN}-module-io-compress-deflate += "${PN}-module-warnings" |
1196 | RDEPENDS_${PN}-module-io-compress-gzip-constants += "${PN}-module-bytes" | ||
1197 | RDEPENDS_${PN}-module-io-compress-gzip-constants += "${PN}-module-constant" | ||
1198 | RDEPENDS_${PN}-module-io-compress-gzip-constants += "${PN}-module-exporter" | ||
1199 | RDEPENDS_${PN}-module-io-compress-gzip-constants += "${PN}-module-strict " | ||
1200 | RDEPENDS_${PN}-module-io-compress-gzip-constants += "${PN}-module-warnings" | ||
1168 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-bytes" | 1201 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-bytes" |
1169 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-compress-raw-zlib" | ||
1170 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-exporter " | 1202 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-exporter " |
1203 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-io-compress-adapter-deflate" | ||
1171 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-io-compress-base-common" | 1204 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-io-compress-base-common" |
1172 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-io-compress-gzip-constants" | 1205 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-io-compress-gzip-constants" |
1173 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-io-compress-rawdeflate" | 1206 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-io-compress-rawdeflate" |
1174 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-io-compress-zlib-extra" | 1207 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-io-compress-zlib-extra" |
1175 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-strict " | 1208 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-strict " |
1176 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-warnings" | 1209 | RDEPENDS_${PN}-module-io-compress-gzip += "${PN}-module-warnings" |
1177 | RDEPENDS_${PN}-module-io-compress-gzip-constants += "${PN}-module-bytes" | ||
1178 | RDEPENDS_${PN}-module-io-compress-gzip-constants += "${PN}-module-constant" | ||
1179 | RDEPENDS_${PN}-module-io-compress-gzip-constants += "${PN}-module-exporter" | ||
1180 | RDEPENDS_${PN}-module-io-compress-gzip-constants += "${PN}-module-strict " | ||
1181 | RDEPENDS_${PN}-module-io-compress-gzip-constants += "${PN}-module-warnings" | ||
1182 | RDEPENDS_${PN}-module-io-compress-rawdeflate += "${PN}-module-bytes" | 1210 | RDEPENDS_${PN}-module-io-compress-rawdeflate += "${PN}-module-bytes" |
1183 | RDEPENDS_${PN}-module-io-compress-rawdeflate += "${PN}-module-compress-raw-zlib" | 1211 | RDEPENDS_${PN}-module-io-compress-rawdeflate += "${PN}-module-compress-raw-zlib" |
1184 | RDEPENDS_${PN}-module-io-compress-rawdeflate += "${PN}-module-exporter " | 1212 | RDEPENDS_${PN}-module-io-compress-rawdeflate += "${PN}-module-exporter " |
@@ -1188,9 +1216,16 @@ RDEPENDS_${PN}-module-io-compress-rawdeflate += "${PN}-module-io-compress-base-c | |||
1188 | RDEPENDS_${PN}-module-io-compress-rawdeflate += "${PN}-module-io-seekable" | 1216 | RDEPENDS_${PN}-module-io-compress-rawdeflate += "${PN}-module-io-seekable" |
1189 | RDEPENDS_${PN}-module-io-compress-rawdeflate += "${PN}-module-strict " | 1217 | RDEPENDS_${PN}-module-io-compress-rawdeflate += "${PN}-module-strict " |
1190 | RDEPENDS_${PN}-module-io-compress-rawdeflate += "${PN}-module-warnings" | 1218 | RDEPENDS_${PN}-module-io-compress-rawdeflate += "${PN}-module-warnings" |
1219 | RDEPENDS_${PN}-module-io-compress-zip-constants += "${PN}-module-constant" | ||
1220 | RDEPENDS_${PN}-module-io-compress-zip-constants += "${PN}-module-exporter" | ||
1221 | RDEPENDS_${PN}-module-io-compress-zip-constants += "${PN}-module-strict " | ||
1222 | RDEPENDS_${PN}-module-io-compress-zip-constants += "${PN}-module-warnings" | ||
1191 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-bytes" | 1223 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-bytes" |
1192 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-compress-raw-zlib" | 1224 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-compress-raw-zlib" |
1225 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-config" | ||
1193 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-exporter " | 1226 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-exporter " |
1227 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-fcntl" | ||
1228 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-file-spec" | ||
1194 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-io-compress-adapter-deflate" | 1229 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-io-compress-adapter-deflate" |
1195 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-io-compress-adapter-identity" | 1230 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-io-compress-adapter-identity" |
1196 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-io-compress-base-common" | 1231 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-io-compress-base-common" |
@@ -1200,10 +1235,6 @@ RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-io-compress-zip-constants | |||
1200 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-io-compress-zlib-extra" | 1235 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-io-compress-zlib-extra" |
1201 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-strict " | 1236 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-strict " |
1202 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-warnings" | 1237 | RDEPENDS_${PN}-module-io-compress-zip += "${PN}-module-warnings" |
1203 | RDEPENDS_${PN}-module-io-compress-zip-constants += "${PN}-module-constant" | ||
1204 | RDEPENDS_${PN}-module-io-compress-zip-constants += "${PN}-module-exporter" | ||
1205 | RDEPENDS_${PN}-module-io-compress-zip-constants += "${PN}-module-strict " | ||
1206 | RDEPENDS_${PN}-module-io-compress-zip-constants += "${PN}-module-warnings" | ||
1207 | RDEPENDS_${PN}-module-io-compress-zlib-constants += "${PN}-module-bytes" | 1238 | RDEPENDS_${PN}-module-io-compress-zlib-constants += "${PN}-module-bytes" |
1208 | RDEPENDS_${PN}-module-io-compress-zlib-constants += "${PN}-module-constant" | 1239 | RDEPENDS_${PN}-module-io-compress-zlib-constants += "${PN}-module-constant" |
1209 | RDEPENDS_${PN}-module-io-compress-zlib-constants += "${PN}-module-exporter" | 1240 | RDEPENDS_${PN}-module-io-compress-zlib-constants += "${PN}-module-exporter" |
@@ -1224,7 +1255,6 @@ RDEPENDS_${PN}-module-io-dir += "${PN}-module-tie-hash" | |||
1224 | RDEPENDS_${PN}-module-io-file += "${PN}-module-carp" | 1255 | RDEPENDS_${PN}-module-io-file += "${PN}-module-carp" |
1225 | RDEPENDS_${PN}-module-io-file += "${PN}-module-exporter" | 1256 | RDEPENDS_${PN}-module-io-file += "${PN}-module-exporter" |
1226 | RDEPENDS_${PN}-module-io-file += "${PN}-module-fcntl" | 1257 | RDEPENDS_${PN}-module-io-file += "${PN}-module-fcntl" |
1227 | RDEPENDS_${PN}-module-io-file += "${PN}-module-file-spec" | ||
1228 | RDEPENDS_${PN}-module-io-file += "${PN}-module-io-seekable" | 1258 | RDEPENDS_${PN}-module-io-file += "${PN}-module-io-seekable" |
1229 | RDEPENDS_${PN}-module-io-file += "${PN}-module-selectsaver" | 1259 | RDEPENDS_${PN}-module-io-file += "${PN}-module-selectsaver" |
1230 | RDEPENDS_${PN}-module-io-file += "${PN}-module-strict" | 1260 | RDEPENDS_${PN}-module-io-file += "${PN}-module-strict" |
@@ -1236,6 +1266,10 @@ RDEPENDS_${PN}-module-io-handle += "${PN}-module-io-file" | |||
1236 | RDEPENDS_${PN}-module-io-handle += "${PN}-module-selectsaver" | 1266 | RDEPENDS_${PN}-module-io-handle += "${PN}-module-selectsaver" |
1237 | RDEPENDS_${PN}-module-io-handle += "${PN}-module-strict" | 1267 | RDEPENDS_${PN}-module-io-handle += "${PN}-module-strict" |
1238 | RDEPENDS_${PN}-module-io-handle += "${PN}-module-symbol" | 1268 | RDEPENDS_${PN}-module-io-handle += "${PN}-module-symbol" |
1269 | RDEPENDS_${PN}-module-io += "${PN}-module-carp" | ||
1270 | RDEPENDS_${PN}-module-io += "${PN}-module-strict" | ||
1271 | RDEPENDS_${PN}-module-io += "${PN}-module-warnings" | ||
1272 | RDEPENDS_${PN}-module-io += "${PN}-module-xsloader" | ||
1239 | RDEPENDS_${PN}-module-io-pipe += "${PN}-module-carp" | 1273 | RDEPENDS_${PN}-module-io-pipe += "${PN}-module-carp" |
1240 | RDEPENDS_${PN}-module-io-pipe += "${PN}-module-fcntl" | 1274 | RDEPENDS_${PN}-module-io-pipe += "${PN}-module-fcntl" |
1241 | RDEPENDS_${PN}-module-io-pipe += "${PN}-module-io-handle" | 1275 | RDEPENDS_${PN}-module-io-pipe += "${PN}-module-io-handle" |
@@ -1253,6 +1287,20 @@ RDEPENDS_${PN}-module-io-select += "${PN}-module-exporter" | |||
1253 | RDEPENDS_${PN}-module-io-select += "${PN}-module-strict" | 1287 | RDEPENDS_${PN}-module-io-select += "${PN}-module-strict" |
1254 | RDEPENDS_${PN}-module-io-select += "${PN}-module-vars" | 1288 | RDEPENDS_${PN}-module-io-select += "${PN}-module-vars" |
1255 | RDEPENDS_${PN}-module-io-select += "${PN}-module-warnings-register" | 1289 | RDEPENDS_${PN}-module-io-select += "${PN}-module-warnings-register" |
1290 | RDEPENDS_${PN}-module-io-socket-inet += "${PN}-module-carp" | ||
1291 | RDEPENDS_${PN}-module-io-socket-inet += "${PN}-module-errno" | ||
1292 | RDEPENDS_${PN}-module-io-socket-inet += "${PN}-module-exporter" | ||
1293 | RDEPENDS_${PN}-module-io-socket-inet += "${PN}-module-io-socket" | ||
1294 | RDEPENDS_${PN}-module-io-socket-inet += "${PN}-module-socket" | ||
1295 | RDEPENDS_${PN}-module-io-socket-inet += "${PN}-module-strict" | ||
1296 | RDEPENDS_${PN}-module-io-socket-ip += "${PN}-module-base" | ||
1297 | RDEPENDS_${PN}-module-io-socket-ip += "${PN}-module-carp" | ||
1298 | RDEPENDS_${PN}-module-io-socket-ip += "${PN}-module-constant" | ||
1299 | RDEPENDS_${PN}-module-io-socket-ip += "${PN}-module-errno" | ||
1300 | RDEPENDS_${PN}-module-io-socket-ip += "${PN}-module-posix" | ||
1301 | RDEPENDS_${PN}-module-io-socket-ip += "${PN}-module-socket" | ||
1302 | RDEPENDS_${PN}-module-io-socket-ip += "${PN}-module-strict" | ||
1303 | RDEPENDS_${PN}-module-io-socket-ip += "${PN}-module-warnings" | ||
1256 | RDEPENDS_${PN}-module-io-socket += "${PN}-module-carp" | 1304 | RDEPENDS_${PN}-module-io-socket += "${PN}-module-carp" |
1257 | RDEPENDS_${PN}-module-io-socket += "${PN}-module-errno" | 1305 | RDEPENDS_${PN}-module-io-socket += "${PN}-module-errno" |
1258 | RDEPENDS_${PN}-module-io-socket += "${PN}-module-exporter" | 1306 | RDEPENDS_${PN}-module-io-socket += "${PN}-module-exporter" |
@@ -1262,12 +1310,6 @@ RDEPENDS_${PN}-module-io-socket += "${PN}-module-io-socket-inet" | |||
1262 | RDEPENDS_${PN}-module-io-socket += "${PN}-module-io-socket-unix" | 1310 | RDEPENDS_${PN}-module-io-socket += "${PN}-module-io-socket-unix" |
1263 | RDEPENDS_${PN}-module-io-socket += "${PN}-module-socket" | 1311 | RDEPENDS_${PN}-module-io-socket += "${PN}-module-socket" |
1264 | RDEPENDS_${PN}-module-io-socket += "${PN}-module-strict" | 1312 | RDEPENDS_${PN}-module-io-socket += "${PN}-module-strict" |
1265 | RDEPENDS_${PN}-module-io-socket-inet += "${PN}-module-carp" | ||
1266 | RDEPENDS_${PN}-module-io-socket-inet += "${PN}-module-errno" | ||
1267 | RDEPENDS_${PN}-module-io-socket-inet += "${PN}-module-exporter" | ||
1268 | RDEPENDS_${PN}-module-io-socket-inet += "${PN}-module-io-socket" | ||
1269 | RDEPENDS_${PN}-module-io-socket-inet += "${PN}-module-socket" | ||
1270 | RDEPENDS_${PN}-module-io-socket-inet += "${PN}-module-strict" | ||
1271 | RDEPENDS_${PN}-module-io-socket-unix += "${PN}-module-carp" | 1313 | RDEPENDS_${PN}-module-io-socket-unix += "${PN}-module-carp" |
1272 | RDEPENDS_${PN}-module-io-socket-unix += "${PN}-module-io-socket" | 1314 | RDEPENDS_${PN}-module-io-socket-unix += "${PN}-module-io-socket" |
1273 | RDEPENDS_${PN}-module-io-socket-unix += "${PN}-module-strict" | 1315 | RDEPENDS_${PN}-module-io-socket-unix += "${PN}-module-strict" |
@@ -1279,9 +1321,9 @@ RDEPENDS_${PN}-module-io-uncompress-adapter-bunzip2 += "${PN}-module-warnings" | |||
1279 | RDEPENDS_${PN}-module-io-uncompress-adapter-identity += "${PN}-module-bytes" | 1321 | RDEPENDS_${PN}-module-io-uncompress-adapter-identity += "${PN}-module-bytes" |
1280 | RDEPENDS_${PN}-module-io-uncompress-adapter-identity += "${PN}-module-compress-raw-zlib" | 1322 | RDEPENDS_${PN}-module-io-uncompress-adapter-identity += "${PN}-module-compress-raw-zlib" |
1281 | RDEPENDS_${PN}-module-io-uncompress-adapter-identity += "${PN}-module-io-compress-base-common" | 1323 | RDEPENDS_${PN}-module-io-uncompress-adapter-identity += "${PN}-module-io-compress-base-common" |
1324 | RDEPENDS_${PN}-module-io-uncompress-adapter-identity += "${PN}-module-io-compress-zip-constants " | ||
1282 | RDEPENDS_${PN}-module-io-uncompress-adapter-identity += "${PN}-module-strict" | 1325 | RDEPENDS_${PN}-module-io-uncompress-adapter-identity += "${PN}-module-strict" |
1283 | RDEPENDS_${PN}-module-io-uncompress-adapter-identity += "${PN}-module-warnings" | 1326 | RDEPENDS_${PN}-module-io-uncompress-adapter-identity += "${PN}-module-warnings" |
1284 | RDEPENDS_${PN}-module-io-uncompress-adapter-inflate += "${PN}-module-bytes" | ||
1285 | RDEPENDS_${PN}-module-io-uncompress-adapter-inflate += "${PN}-module-compress-raw-zlib" | 1327 | RDEPENDS_${PN}-module-io-uncompress-adapter-inflate += "${PN}-module-compress-raw-zlib" |
1286 | RDEPENDS_${PN}-module-io-uncompress-adapter-inflate += "${PN}-module-io-compress-base-common" | 1328 | RDEPENDS_${PN}-module-io-uncompress-adapter-inflate += "${PN}-module-io-compress-base-common" |
1287 | RDEPENDS_${PN}-module-io-uncompress-adapter-inflate += "${PN}-module-strict" | 1329 | RDEPENDS_${PN}-module-io-uncompress-adapter-inflate += "${PN}-module-strict" |
@@ -1303,7 +1345,6 @@ RDEPENDS_${PN}-module-io-uncompress-anyuncompress += "${PN}-module-io-compress-b | |||
1303 | RDEPENDS_${PN}-module-io-uncompress-anyuncompress += "${PN}-module-io-uncompress-base" | 1345 | RDEPENDS_${PN}-module-io-uncompress-anyuncompress += "${PN}-module-io-uncompress-base" |
1304 | RDEPENDS_${PN}-module-io-uncompress-anyuncompress += "${PN}-module-strict" | 1346 | RDEPENDS_${PN}-module-io-uncompress-anyuncompress += "${PN}-module-strict" |
1305 | RDEPENDS_${PN}-module-io-uncompress-anyuncompress += "${PN}-module-warnings" | 1347 | RDEPENDS_${PN}-module-io-uncompress-anyuncompress += "${PN}-module-warnings" |
1306 | RDEPENDS_${PN}-module-io-uncompress-base += "${PN}-module-bytes" | ||
1307 | RDEPENDS_${PN}-module-io-uncompress-base += "${PN}-module-carp " | 1348 | RDEPENDS_${PN}-module-io-uncompress-base += "${PN}-module-carp " |
1308 | RDEPENDS_${PN}-module-io-uncompress-base += "${PN}-module-constant" | 1349 | RDEPENDS_${PN}-module-io-uncompress-base += "${PN}-module-constant" |
1309 | RDEPENDS_${PN}-module-io-uncompress-base += "${PN}-module-io-compress-base-common" | 1350 | RDEPENDS_${PN}-module-io-uncompress-base += "${PN}-module-io-compress-base-common" |
@@ -1336,7 +1377,6 @@ RDEPENDS_${PN}-module-io-uncompress-inflate += "${PN}-module-io-compress-zlib-co | |||
1336 | RDEPENDS_${PN}-module-io-uncompress-inflate += "${PN}-module-io-uncompress-rawinflate" | 1377 | RDEPENDS_${PN}-module-io-uncompress-inflate += "${PN}-module-io-uncompress-rawinflate" |
1337 | RDEPENDS_${PN}-module-io-uncompress-inflate += "${PN}-module-strict " | 1378 | RDEPENDS_${PN}-module-io-uncompress-inflate += "${PN}-module-strict " |
1338 | RDEPENDS_${PN}-module-io-uncompress-inflate += "${PN}-module-warnings" | 1379 | RDEPENDS_${PN}-module-io-uncompress-inflate += "${PN}-module-warnings" |
1339 | RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-bytes" | ||
1340 | RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-compress-raw-zlib" | 1380 | RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-compress-raw-zlib" |
1341 | RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-exporter " | 1381 | RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-exporter " |
1342 | RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-io-compress-base-common" | 1382 | RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-io-compress-base-common" |
@@ -1344,12 +1384,14 @@ RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-io-uncompress-ad | |||
1344 | RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-io-uncompress-base" | 1384 | RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-io-uncompress-base" |
1345 | RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-strict " | 1385 | RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-strict " |
1346 | RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-warnings" | 1386 | RDEPENDS_${PN}-module-io-uncompress-rawinflate += "${PN}-module-warnings" |
1347 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-bytes" | ||
1348 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-compress-raw-zlib" | 1387 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-compress-raw-zlib" |
1388 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-constant" | ||
1349 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-exporter " | 1389 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-exporter " |
1390 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-fcntl" | ||
1350 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-io-compress-base-common" | 1391 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-io-compress-base-common" |
1351 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-io-compress-zip-constants" | 1392 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-io-compress-zip-constants" |
1352 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-io-compress-zlib-extra" | 1393 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-io-compress-zlib-extra" |
1394 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-io-file" | ||
1353 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-io-uncompress-adapter-identity" | 1395 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-io-uncompress-adapter-identity" |
1354 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-io-uncompress-adapter-inflate" | 1396 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-io-uncompress-adapter-inflate" |
1355 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-io-uncompress-rawinflate" | 1397 | RDEPENDS_${PN}-module-io-uncompress-unzip += "${PN}-module-io-uncompress-rawinflate" |
@@ -1364,12 +1406,11 @@ RDEPENDS_${PN}-module-io-zlib += "${PN}-module-symbol" | |||
1364 | RDEPENDS_${PN}-module-io-zlib += "${PN}-module-tie-handle" | 1406 | RDEPENDS_${PN}-module-io-zlib += "${PN}-module-tie-handle" |
1365 | RDEPENDS_${PN}-module-io-zlib += "${PN}-module-vars" | 1407 | RDEPENDS_${PN}-module-io-zlib += "${PN}-module-vars" |
1366 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-carp" | 1408 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-carp" |
1367 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-config" | ||
1368 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-constant" | 1409 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-constant" |
1369 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-exporter" | 1410 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-exporter" |
1370 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-extutils-makemaker" | 1411 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-extutils-makemaker" |
1371 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-file-spec" | ||
1372 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-filehandle" | 1412 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-filehandle" |
1413 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-file-spec" | ||
1373 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-io-handle" | 1414 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-io-handle" |
1374 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-io-select" | 1415 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-io-select" |
1375 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-ipc-open3" | 1416 | RDEPENDS_${PN}-module-ipc-cmd += "${PN}-module-ipc-open3" |
@@ -1396,6 +1437,7 @@ RDEPENDS_${PN}-module-ipc-open3 += "${PN}-module-constant" | |||
1396 | RDEPENDS_${PN}-module-ipc-open3 += "${PN}-module-exporter" | 1437 | RDEPENDS_${PN}-module-ipc-open3 += "${PN}-module-exporter" |
1397 | RDEPENDS_${PN}-module-ipc-open3 += "${PN}-module-fcntl" | 1438 | RDEPENDS_${PN}-module-ipc-open3 += "${PN}-module-fcntl" |
1398 | RDEPENDS_${PN}-module-ipc-open3 += "${PN}-module-io-pipe" | 1439 | RDEPENDS_${PN}-module-ipc-open3 += "${PN}-module-io-pipe" |
1440 | RDEPENDS_${PN}-module-ipc-open3 += "${PN}-module-posix" | ||
1399 | RDEPENDS_${PN}-module-ipc-open3 += "${PN}-module-strict" | 1441 | RDEPENDS_${PN}-module-ipc-open3 += "${PN}-module-strict" |
1400 | RDEPENDS_${PN}-module-ipc-open3 += "${PN}-module-symbol" | 1442 | RDEPENDS_${PN}-module-ipc-open3 += "${PN}-module-symbol" |
1401 | RDEPENDS_${PN}-module-ipc-semaphore += "${PN}-module-carp" | 1443 | RDEPENDS_${PN}-module-ipc-semaphore += "${PN}-module-carp" |
@@ -1414,33 +1456,38 @@ RDEPENDS_${PN}-module-ipc-sysv += "${PN}-module-dynaloader" | |||
1414 | RDEPENDS_${PN}-module-ipc-sysv += "${PN}-module-exporter" | 1456 | RDEPENDS_${PN}-module-ipc-sysv += "${PN}-module-exporter" |
1415 | RDEPENDS_${PN}-module-ipc-sysv += "${PN}-module-strict" | 1457 | RDEPENDS_${PN}-module-ipc-sysv += "${PN}-module-strict" |
1416 | RDEPENDS_${PN}-module-ipc-sysv += "${PN}-module-vars" | 1458 | RDEPENDS_${PN}-module-ipc-sysv += "${PN}-module-vars" |
1459 | RDEPENDS_${PN}-module-json-pp-boolean += "${PN}-module-json-pp" | ||
1460 | RDEPENDS_${PN}-module-json-pp-boolean += "${PN}-module-strict" | ||
1461 | RDEPENDS_${PN}-module-json-pp += "${PN}-module-b" | ||
1462 | RDEPENDS_${PN}-module-json-pp += "${PN}-module-base" | ||
1463 | RDEPENDS_${PN}-module-json-pp += "${PN}-module-bytes" | ||
1464 | RDEPENDS_${PN}-module-json-pp += "${PN}-module-carp" | ||
1465 | RDEPENDS_${PN}-module-json-pp += "${PN}-module-constant" | ||
1466 | RDEPENDS_${PN}-module-json-pp += "${PN}-module-encode" | ||
1467 | RDEPENDS_${PN}-module-json-pp += "${PN}-module-math-bigfloat" | ||
1468 | RDEPENDS_${PN}-module-json-pp += "${PN}-module-math-bigint" | ||
1469 | RDEPENDS_${PN}-module-json-pp += "${PN}-module-overload" | ||
1470 | RDEPENDS_${PN}-module-json-pp += "${PN}-module-strict" | ||
1471 | RDEPENDS_${PN}-module-json-pp += "${PN}-module-subs" | ||
1417 | RDEPENDS_${PN}-module-less += "${PN}-module-strict" | 1472 | RDEPENDS_${PN}-module-less += "${PN}-module-strict" |
1418 | RDEPENDS_${PN}-module-less += "${PN}-module-warnings" | 1473 | RDEPENDS_${PN}-module-less += "${PN}-module-warnings" |
1419 | RDEPENDS_${PN}-module-lib += "${PN}-module-carp" | 1474 | RDEPENDS_${PN}-module-lib += "${PN}-module-carp" |
1420 | RDEPENDS_${PN}-module-lib += "${PN}-module-config" | 1475 | RDEPENDS_${PN}-module-lib += "${PN}-module-config" |
1421 | RDEPENDS_${PN}-module-lib += "${PN}-module-strict" | 1476 | RDEPENDS_${PN}-module-lib += "${PN}-module-strict" |
1422 | RDEPENDS_${PN}-module-list-util += "${PN}-module-dynaloader" | ||
1423 | RDEPENDS_${PN}-module-list-util += "${PN}-module-exporter" | 1477 | RDEPENDS_${PN}-module-list-util += "${PN}-module-exporter" |
1424 | RDEPENDS_${PN}-module-list-util += "${PN}-module-list-util-pp" | ||
1425 | RDEPENDS_${PN}-module-list-util += "${PN}-module-strict" | 1478 | RDEPENDS_${PN}-module-list-util += "${PN}-module-strict" |
1426 | RDEPENDS_${PN}-module-list-util += "${PN}-module-vars" | ||
1427 | RDEPENDS_${PN}-module-list-util += "${PN}-module-xsloader" | 1479 | RDEPENDS_${PN}-module-list-util += "${PN}-module-xsloader" |
1428 | RDEPENDS_${PN}-module-list-util-pp += "${PN}-module-carp" | ||
1429 | RDEPENDS_${PN}-module-list-util-pp += "${PN}-module-exporter" | ||
1430 | RDEPENDS_${PN}-module-list-util-pp += "${PN}-module-scalar-util" | ||
1431 | RDEPENDS_${PN}-module-list-util-pp += "${PN}-module-strict" | ||
1432 | RDEPENDS_${PN}-module-list-util-pp += "${PN}-module-vars" | ||
1433 | RDEPENDS_${PN}-module-list-util-pp += "${PN}-module-warnings" | ||
1434 | RDEPENDS_${PN}-module-list-util-xs += "${PN}-module-carp" | ||
1435 | RDEPENDS_${PN}-module-list-util-xs += "${PN}-module-list-util" | 1480 | RDEPENDS_${PN}-module-list-util-xs += "${PN}-module-list-util" |
1436 | RDEPENDS_${PN}-module-list-util-xs += "${PN}-module-strict" | 1481 | RDEPENDS_${PN}-module-list-util-xs += "${PN}-module-strict" |
1437 | RDEPENDS_${PN}-module-list-util-xs += "${PN}-module-vars" | 1482 | RDEPENDS_${PN}-module-loaded += "${PN}-module-carp" |
1483 | RDEPENDS_${PN}-module-loaded += "${PN}-module-strict" | ||
1484 | RDEPENDS_${PN}-module-loaded += "${PN}-module-vars" | ||
1438 | RDEPENDS_${PN}-module-load += "${PN}-module-carp" | 1485 | RDEPENDS_${PN}-module-load += "${PN}-module-carp" |
1439 | RDEPENDS_${PN}-module-load += "${PN}-module-config" | 1486 | RDEPENDS_${PN}-module-load += "${PN}-module-config" |
1440 | RDEPENDS_${PN}-module-load += "${PN}-module-constant" | 1487 | RDEPENDS_${PN}-module-load += "${PN}-module-constant" |
1441 | RDEPENDS_${PN}-module-load += "${PN}-module-exporter" | 1488 | RDEPENDS_${PN}-module-load += "${PN}-module-exporter" |
1442 | RDEPENDS_${PN}-module-load += "${PN}-module-file-spec" | ||
1443 | RDEPENDS_${PN}-module-load += "${PN}-module-filehandle" | 1489 | RDEPENDS_${PN}-module-load += "${PN}-module-filehandle" |
1490 | RDEPENDS_${PN}-module-load += "${PN}-module-file-spec" | ||
1444 | RDEPENDS_${PN}-module-load += "${PN}-module-locale-maketext-simple" | 1491 | RDEPENDS_${PN}-module-load += "${PN}-module-locale-maketext-simple" |
1445 | RDEPENDS_${PN}-module-load += "${PN}-module-corelist" | 1492 | RDEPENDS_${PN}-module-load += "${PN}-module-corelist" |
1446 | RDEPENDS_${PN}-module-load += "${PN}-module-load" | 1493 | RDEPENDS_${PN}-module-load += "${PN}-module-load" |
@@ -1448,86 +1495,136 @@ RDEPENDS_${PN}-module-load += "${PN}-module-params-check" | |||
1448 | RDEPENDS_${PN}-module-load += "${PN}-module-strict" | 1495 | RDEPENDS_${PN}-module-load += "${PN}-module-strict" |
1449 | RDEPENDS_${PN}-module-load += "${PN}-module-vars" | 1496 | RDEPENDS_${PN}-module-load += "${PN}-module-vars" |
1450 | RDEPENDS_${PN}-module-load += "${PN}-module-version" | 1497 | RDEPENDS_${PN}-module-load += "${PN}-module-version" |
1451 | RDEPENDS_${PN}-module-loaded += "${PN}-module-carp" | 1498 | RDEPENDS_${PN}-module-load += "${PN}-module-warnings" |
1452 | RDEPENDS_${PN}-module-loaded += "${PN}-module-strict" | 1499 | RDEPENDS_${PN}-module-locale-codes-constants += "${PN}-module-constant" |
1453 | RDEPENDS_${PN}-module-loaded += "${PN}-module-vars" | 1500 | RDEPENDS_${PN}-module-locale-codes-constants += "${PN}-module-exporter" |
1454 | RDEPENDS_${PN}-module-locale-codes += "${PN}-module-carp" | 1501 | RDEPENDS_${PN}-module-locale-codes-constants += "${PN}-module-strict" |
1455 | RDEPENDS_${PN}-module-locale-codes += "${PN}-module-strict" | 1502 | RDEPENDS_${PN}-module-locale-codes-constants += "${PN}-module-warnings" |
1456 | RDEPENDS_${PN}-module-locale-codes += "${PN}-module-warnings" | 1503 | RDEPENDS_${PN}-module-locale-codes-country-codes += "${PN}-module-strict" |
1504 | RDEPENDS_${PN}-module-locale-codes-country-codes += "${PN}-module-utf8" | ||
1505 | RDEPENDS_${PN}-module-locale-codes-country-codes += "${PN}-module-warnings" | ||
1506 | RDEPENDS_${PN}-module-locale-codes-country += "${PN}-module-carp" | ||
1507 | RDEPENDS_${PN}-module-locale-codes-country += "${PN}-module-exporter" | ||
1508 | RDEPENDS_${PN}-module-locale-codes-country += "${PN}-module-locale-codes" | ||
1509 | RDEPENDS_${PN}-module-locale-codes-country += "${PN}-module-locale-codes-constants" | ||
1510 | RDEPENDS_${PN}-module-locale-codes-country += "${PN}-module-locale-codes-country-codes" | ||
1511 | RDEPENDS_${PN}-module-locale-codes-country += "${PN}-module-locale-codes-country-retired" | ||
1457 | RDEPENDS_${PN}-module-locale-codes-country += "${PN}-module-strict" | 1512 | RDEPENDS_${PN}-module-locale-codes-country += "${PN}-module-strict" |
1458 | RDEPENDS_${PN}-module-locale-codes-country += "${PN}-module-warnings" | 1513 | RDEPENDS_${PN}-module-locale-codes-country += "${PN}-module-warnings" |
1514 | RDEPENDS_${PN}-module-locale-codes-country-retired += "${PN}-module-strict" | ||
1515 | RDEPENDS_${PN}-module-locale-codes-country-retired += "${PN}-module-utf8" | ||
1516 | RDEPENDS_${PN}-module-locale-codes-country-retired += "${PN}-module-warnings" | ||
1517 | RDEPENDS_${PN}-module-locale-codes-currency-codes += "${PN}-module-strict" | ||
1518 | RDEPENDS_${PN}-module-locale-codes-currency-codes += "${PN}-module-utf8" | ||
1519 | RDEPENDS_${PN}-module-locale-codes-currency-codes += "${PN}-module-warnings" | ||
1520 | RDEPENDS_${PN}-module-locale-codes-currency += "${PN}-module-carp" | ||
1521 | RDEPENDS_${PN}-module-locale-codes-currency += "${PN}-module-exporter" | ||
1522 | RDEPENDS_${PN}-module-locale-codes-currency += "${PN}-module-locale-codes" | ||
1523 | RDEPENDS_${PN}-module-locale-codes-currency += "${PN}-module-locale-codes-constants" | ||
1524 | RDEPENDS_${PN}-module-locale-codes-currency += "${PN}-module-locale-codes-currency-codes" | ||
1525 | RDEPENDS_${PN}-module-locale-codes-currency += "${PN}-module-locale-codes-currency-retired" | ||
1459 | RDEPENDS_${PN}-module-locale-codes-currency += "${PN}-module-strict" | 1526 | RDEPENDS_${PN}-module-locale-codes-currency += "${PN}-module-strict" |
1460 | RDEPENDS_${PN}-module-locale-codes-currency += "${PN}-module-warnings" | 1527 | RDEPENDS_${PN}-module-locale-codes-currency += "${PN}-module-warnings" |
1528 | RDEPENDS_${PN}-module-locale-codes-currency-retired += "${PN}-module-strict" | ||
1529 | RDEPENDS_${PN}-module-locale-codes-currency-retired += "${PN}-module-utf8" | ||
1530 | RDEPENDS_${PN}-module-locale-codes-currency-retired += "${PN}-module-warnings" | ||
1531 | RDEPENDS_${PN}-module-locale-codes-langext-codes += "${PN}-module-strict" | ||
1532 | RDEPENDS_${PN}-module-locale-codes-langext-codes += "${PN}-module-utf8" | ||
1533 | RDEPENDS_${PN}-module-locale-codes-langext-codes += "${PN}-module-warnings" | ||
1534 | RDEPENDS_${PN}-module-locale-codes-langext += "${PN}-module-carp" | ||
1535 | RDEPENDS_${PN}-module-locale-codes-langext += "${PN}-module-exporter" | ||
1536 | RDEPENDS_${PN}-module-locale-codes-langext += "${PN}-module-locale-codes" | ||
1537 | RDEPENDS_${PN}-module-locale-codes-langext += "${PN}-module-locale-codes-constants" | ||
1538 | RDEPENDS_${PN}-module-locale-codes-langext += "${PN}-module-locale-codes-langext-codes" | ||
1539 | RDEPENDS_${PN}-module-locale-codes-langext += "${PN}-module-locale-codes-langext-retired" | ||
1540 | RDEPENDS_${PN}-module-locale-codes-langext += "${PN}-module-strict" | ||
1541 | RDEPENDS_${PN}-module-locale-codes-langext += "${PN}-module-warnings" | ||
1542 | RDEPENDS_${PN}-module-locale-codes-langext-retired += "${PN}-module-strict" | ||
1543 | RDEPENDS_${PN}-module-locale-codes-langext-retired += "${PN}-module-utf8" | ||
1544 | RDEPENDS_${PN}-module-locale-codes-langext-retired += "${PN}-module-warnings" | ||
1545 | RDEPENDS_${PN}-module-locale-codes-langfam-codes += "${PN}-module-strict" | ||
1546 | RDEPENDS_${PN}-module-locale-codes-langfam-codes += "${PN}-module-utf8" | ||
1547 | RDEPENDS_${PN}-module-locale-codes-langfam-codes += "${PN}-module-warnings" | ||
1548 | RDEPENDS_${PN}-module-locale-codes-langfam += "${PN}-module-carp" | ||
1549 | RDEPENDS_${PN}-module-locale-codes-langfam += "${PN}-module-exporter" | ||
1550 | RDEPENDS_${PN}-module-locale-codes-langfam += "${PN}-module-locale-codes" | ||
1551 | RDEPENDS_${PN}-module-locale-codes-langfam += "${PN}-module-locale-codes-constants" | ||
1552 | RDEPENDS_${PN}-module-locale-codes-langfam += "${PN}-module-locale-codes-langfam-codes" | ||
1553 | RDEPENDS_${PN}-module-locale-codes-langfam += "${PN}-module-locale-codes-langfam-retired" | ||
1554 | RDEPENDS_${PN}-module-locale-codes-langfam += "${PN}-module-strict" | ||
1555 | RDEPENDS_${PN}-module-locale-codes-langfam += "${PN}-module-warnings" | ||
1556 | RDEPENDS_${PN}-module-locale-codes-langfam-retired += "${PN}-module-strict" | ||
1557 | RDEPENDS_${PN}-module-locale-codes-langfam-retired += "${PN}-module-warnings" | ||
1558 | RDEPENDS_${PN}-module-locale-codes-language-codes += "${PN}-module-strict" | ||
1559 | RDEPENDS_${PN}-module-locale-codes-language-codes += "${PN}-module-utf8" | ||
1560 | RDEPENDS_${PN}-module-locale-codes-language-codes += "${PN}-module-warnings" | ||
1561 | RDEPENDS_${PN}-module-locale-codes-language += "${PN}-module-carp" | ||
1562 | RDEPENDS_${PN}-module-locale-codes-language += "${PN}-module-exporter" | ||
1563 | RDEPENDS_${PN}-module-locale-codes-language += "${PN}-module-locale-codes" | ||
1564 | RDEPENDS_${PN}-module-locale-codes-language += "${PN}-module-locale-codes-constants" | ||
1565 | RDEPENDS_${PN}-module-locale-codes-language += "${PN}-module-locale-codes-language-codes" | ||
1566 | RDEPENDS_${PN}-module-locale-codes-language += "${PN}-module-locale-codes-language-retired" | ||
1461 | RDEPENDS_${PN}-module-locale-codes-language += "${PN}-module-strict" | 1567 | RDEPENDS_${PN}-module-locale-codes-language += "${PN}-module-strict" |
1462 | RDEPENDS_${PN}-module-locale-codes-language += "${PN}-module-warnings" | 1568 | RDEPENDS_${PN}-module-locale-codes-language += "${PN}-module-warnings" |
1569 | RDEPENDS_${PN}-module-locale-codes-language-retired += "${PN}-module-strict" | ||
1570 | RDEPENDS_${PN}-module-locale-codes-language-retired += "${PN}-module-utf8" | ||
1571 | RDEPENDS_${PN}-module-locale-codes-language-retired += "${PN}-module-warnings" | ||
1572 | RDEPENDS_${PN}-module-locale-codes-langvar-codes += "${PN}-module-strict" | ||
1573 | RDEPENDS_${PN}-module-locale-codes-langvar-codes += "${PN}-module-utf8" | ||
1574 | RDEPENDS_${PN}-module-locale-codes-langvar-codes += "${PN}-module-warnings" | ||
1575 | RDEPENDS_${PN}-module-locale-codes-langvar += "${PN}-module-carp" | ||
1576 | RDEPENDS_${PN}-module-locale-codes-langvar += "${PN}-module-exporter" | ||
1577 | RDEPENDS_${PN}-module-locale-codes-langvar += "${PN}-module-locale-codes" | ||
1578 | RDEPENDS_${PN}-module-locale-codes-langvar += "${PN}-module-locale-codes-constants" | ||
1579 | RDEPENDS_${PN}-module-locale-codes-langvar += "${PN}-module-locale-codes-langvar-codes" | ||
1580 | RDEPENDS_${PN}-module-locale-codes-langvar += "${PN}-module-locale-codes-langvar-retired" | ||
1581 | RDEPENDS_${PN}-module-locale-codes-langvar += "${PN}-module-strict" | ||
1582 | RDEPENDS_${PN}-module-locale-codes-langvar += "${PN}-module-warnings" | ||
1583 | RDEPENDS_${PN}-module-locale-codes-langvar-retired += "${PN}-module-strict" | ||
1584 | RDEPENDS_${PN}-module-locale-codes-langvar-retired += "${PN}-module-utf8" | ||
1585 | RDEPENDS_${PN}-module-locale-codes-langvar-retired += "${PN}-module-warnings" | ||
1586 | RDEPENDS_${PN}-module-locale-codes += "${PN}-module-carp" | ||
1587 | RDEPENDS_${PN}-module-locale-codes += "${PN}-module-locale-codes-constants" | ||
1588 | RDEPENDS_${PN}-module-locale-codes += "${PN}-module-strict" | ||
1589 | RDEPENDS_${PN}-module-locale-codes += "${PN}-module-warnings" | ||
1590 | RDEPENDS_${PN}-module-locale-codes-script-codes += "${PN}-module-strict" | ||
1591 | RDEPENDS_${PN}-module-locale-codes-script-codes += "${PN}-module-utf8" | ||
1592 | RDEPENDS_${PN}-module-locale-codes-script-codes += "${PN}-module-warnings" | ||
1593 | RDEPENDS_${PN}-module-locale-codes-script += "${PN}-module-carp" | ||
1594 | RDEPENDS_${PN}-module-locale-codes-script += "${PN}-module-exporter" | ||
1595 | RDEPENDS_${PN}-module-locale-codes-script += "${PN}-module-locale-codes" | ||
1596 | RDEPENDS_${PN}-module-locale-codes-script += "${PN}-module-locale-codes-constants" | ||
1597 | RDEPENDS_${PN}-module-locale-codes-script += "${PN}-module-locale-codes-script-codes" | ||
1598 | RDEPENDS_${PN}-module-locale-codes-script += "${PN}-module-locale-codes-script-retired" | ||
1463 | RDEPENDS_${PN}-module-locale-codes-script += "${PN}-module-strict" | 1599 | RDEPENDS_${PN}-module-locale-codes-script += "${PN}-module-strict" |
1464 | RDEPENDS_${PN}-module-locale-codes-script += "${PN}-module-warnings" | 1600 | RDEPENDS_${PN}-module-locale-codes-script += "${PN}-module-warnings" |
1465 | RDEPENDS_${PN}-module-locale-constants += "${PN}-module-constant" | 1601 | RDEPENDS_${PN}-module-locale-codes-script-retired += "${PN}-module-strict" |
1466 | RDEPENDS_${PN}-module-locale-constants += "${PN}-module-exporter" | 1602 | RDEPENDS_${PN}-module-locale-codes-script-retired += "${PN}-module-utf8" |
1467 | RDEPENDS_${PN}-module-locale-constants += "${PN}-module-strict" | 1603 | RDEPENDS_${PN}-module-locale-codes-script-retired += "${PN}-module-warnings" |
1468 | RDEPENDS_${PN}-module-locale-constants += "${PN}-module-warnings" | ||
1469 | RDEPENDS_${PN}-module-locale-country += "${PN}-module-carp" | ||
1470 | RDEPENDS_${PN}-module-locale-country += "${PN}-module-exporter" | 1604 | RDEPENDS_${PN}-module-locale-country += "${PN}-module-exporter" |
1471 | RDEPENDS_${PN}-module-locale-country += "${PN}-module-locale-codes" | ||
1472 | RDEPENDS_${PN}-module-locale-country += "${PN}-module-locale-codes-country" | ||
1473 | RDEPENDS_${PN}-module-locale-country += "${PN}-module-locale-constants" | ||
1474 | RDEPENDS_${PN}-module-locale-country += "${PN}-module-strict" | 1605 | RDEPENDS_${PN}-module-locale-country += "${PN}-module-strict" |
1475 | RDEPENDS_${PN}-module-locale-country += "${PN}-module-warnings" | 1606 | RDEPENDS_${PN}-module-locale-country += "${PN}-module-warnings" |
1476 | RDEPENDS_${PN}-module-locale-currency += "${PN}-module-carp" | ||
1477 | RDEPENDS_${PN}-module-locale-currency += "${PN}-module-exporter" | 1607 | RDEPENDS_${PN}-module-locale-currency += "${PN}-module-exporter" |
1478 | RDEPENDS_${PN}-module-locale-currency += "${PN}-module-locale-codes" | ||
1479 | RDEPENDS_${PN}-module-locale-currency += "${PN}-module-locale-codes-currency" | ||
1480 | RDEPENDS_${PN}-module-locale-currency += "${PN}-module-locale-constants" | ||
1481 | RDEPENDS_${PN}-module-locale-currency += "${PN}-module-strict" | 1608 | RDEPENDS_${PN}-module-locale-currency += "${PN}-module-strict" |
1482 | RDEPENDS_${PN}-module-locale-currency += "${PN}-module-warnings" | 1609 | RDEPENDS_${PN}-module-locale-currency += "${PN}-module-warnings" |
1483 | RDEPENDS_${PN}-module-locale-language += "${PN}-module-carp" | ||
1484 | RDEPENDS_${PN}-module-locale-language += "${PN}-module-exporter" | 1610 | RDEPENDS_${PN}-module-locale-language += "${PN}-module-exporter" |
1485 | RDEPENDS_${PN}-module-locale-language += "${PN}-module-locale-codes" | ||
1486 | RDEPENDS_${PN}-module-locale-language += "${PN}-module-locale-codes-language" | ||
1487 | RDEPENDS_${PN}-module-locale-language += "${PN}-module-locale-constants" | ||
1488 | RDEPENDS_${PN}-module-locale-language += "${PN}-module-strict" | 1611 | RDEPENDS_${PN}-module-locale-language += "${PN}-module-strict" |
1489 | RDEPENDS_${PN}-module-locale-language += "${PN}-module-warnings" | 1612 | RDEPENDS_${PN}-module-locale-language += "${PN}-module-warnings" |
1613 | RDEPENDS_${PN}-module-locale-maketext-gutsloader += "${PN}-module-locale-maketext" | ||
1614 | RDEPENDS_${PN}-module-locale-maketext-guts += "${PN}-module-locale-maketext" | ||
1490 | RDEPENDS_${PN}-module-locale-maketext += "${PN}-module-carp" | 1615 | RDEPENDS_${PN}-module-locale-maketext += "${PN}-module-carp" |
1491 | RDEPENDS_${PN}-module-locale-maketext += "${PN}-module-i18n-langtags" | 1616 | RDEPENDS_${PN}-module-locale-maketext += "${PN}-module-i18n-langtags" |
1492 | RDEPENDS_${PN}-module-locale-maketext += "${PN}-module-i18n-langtags-detect" | 1617 | RDEPENDS_${PN}-module-locale-maketext += "${PN}-module-i18n-langtags-detect" |
1493 | RDEPENDS_${PN}-module-locale-maketext += "${PN}-module-integer" | 1618 | RDEPENDS_${PN}-module-locale-maketext += "${PN}-module-integer" |
1494 | RDEPENDS_${PN}-module-locale-maketext += "${PN}-module-strict" | 1619 | RDEPENDS_${PN}-module-locale-maketext += "${PN}-module-strict" |
1495 | RDEPENDS_${PN}-module-locale-maketext += "${PN}-module-vars" | 1620 | RDEPENDS_${PN}-module-locale-maketext += "${PN}-module-vars" |
1496 | RDEPENDS_${PN}-module-locale-maketext-guts += "${PN}-module-locale-maketext" | ||
1497 | RDEPENDS_${PN}-module-locale-maketext-gutsloader += "${PN}-module-locale-maketext" | ||
1498 | RDEPENDS_${PN}-module-locale-maketext-simple += "${PN}-module-base" | 1621 | RDEPENDS_${PN}-module-locale-maketext-simple += "${PN}-module-base" |
1499 | RDEPENDS_${PN}-module-locale-maketext-simple += "${PN}-module-strict" | 1622 | RDEPENDS_${PN}-module-locale-maketext-simple += "${PN}-module-strict" |
1500 | RDEPENDS_${PN}-module-locale-script += "${PN}-module-carp" | 1623 | RDEPENDS_${PN}-module-locale += "${PN}-module-carp" |
1624 | RDEPENDS_${PN}-module-locale += "${PN}-module-config" | ||
1501 | RDEPENDS_${PN}-module-locale-script += "${PN}-module-exporter" | 1625 | RDEPENDS_${PN}-module-locale-script += "${PN}-module-exporter" |
1502 | RDEPENDS_${PN}-module-locale-script += "${PN}-module-locale-codes" | ||
1503 | RDEPENDS_${PN}-module-locale-script += "${PN}-module-locale-codes-script" | ||
1504 | RDEPENDS_${PN}-module-locale-script += "${PN}-module-locale-constants" | ||
1505 | RDEPENDS_${PN}-module-locale-script += "${PN}-module-strict" | 1626 | RDEPENDS_${PN}-module-locale-script += "${PN}-module-strict" |
1506 | RDEPENDS_${PN}-module-locale-script += "${PN}-module-warnings" | 1627 | RDEPENDS_${PN}-module-locale-script += "${PN}-module-warnings" |
1507 | RDEPENDS_${PN}-module-log-message += "${PN}-module-locale-maketext-simple" | ||
1508 | RDEPENDS_${PN}-module-log-message += "${PN}-module-log-message-config" | ||
1509 | RDEPENDS_${PN}-module-log-message += "${PN}-module-log-message-item" | ||
1510 | RDEPENDS_${PN}-module-log-message += "${PN}-module-params-check" | ||
1511 | RDEPENDS_${PN}-module-log-message += "${PN}-module-strict" | ||
1512 | RDEPENDS_${PN}-module-log-message += "${PN}-module-vars" | ||
1513 | RDEPENDS_${PN}-module-log-message-config += "${PN}-module-filehandle" | ||
1514 | RDEPENDS_${PN}-module-log-message-config += "${PN}-module-locale-maketext-simple" | ||
1515 | RDEPENDS_${PN}-module-log-message-config += "${PN}-module-load" | ||
1516 | RDEPENDS_${PN}-module-log-message-config += "${PN}-module-params-check" | ||
1517 | RDEPENDS_${PN}-module-log-message-config += "${PN}-module-strict" | ||
1518 | RDEPENDS_${PN}-module-log-message-config += "${PN}-module-vars" | ||
1519 | RDEPENDS_${PN}-module-log-message-handlers += "${PN}-module-strict" | ||
1520 | RDEPENDS_${PN}-module-log-message-handlers += "${PN}-module-vars" | ||
1521 | RDEPENDS_${PN}-module-log-message-item += "${PN}-module-carp" | ||
1522 | RDEPENDS_${PN}-module-log-message-item += "${PN}-module-log-message-handlers" | ||
1523 | RDEPENDS_${PN}-module-log-message-item += "${PN}-module-params-check" | ||
1524 | RDEPENDS_${PN}-module-log-message-item += "${PN}-module-strict" | ||
1525 | RDEPENDS_${PN}-module-log-message-item += "${PN}-module-vars" | ||
1526 | RDEPENDS_${PN}-module-log-message-simple += "${PN}-module-exporter" | ||
1527 | RDEPENDS_${PN}-module-log-message-simple += "${PN}-module-log-message" | ||
1528 | RDEPENDS_${PN}-module-log-message-simple += "${PN}-module-params-check" | ||
1529 | RDEPENDS_${PN}-module-log-message-simple += "${PN}-module-strict" | ||
1530 | RDEPENDS_${PN}-module-log-message-simple += "${PN}-module-vars" | ||
1531 | RDEPENDS_${PN}-module-math-bigfloat += "${PN}-module-carp" | 1628 | RDEPENDS_${PN}-module-math-bigfloat += "${PN}-module-carp" |
1532 | RDEPENDS_${PN}-module-math-bigfloat += "${PN}-module-exporter" | 1629 | RDEPENDS_${PN}-module-math-bigfloat += "${PN}-module-exporter" |
1533 | RDEPENDS_${PN}-module-math-bigfloat += "${PN}-module-math-bigint" | 1630 | RDEPENDS_${PN}-module-math-bigfloat += "${PN}-module-math-bigint" |
@@ -1539,24 +1636,24 @@ RDEPENDS_${PN}-module-math-bigfloat-trace += "${PN}-module-math-bigfloat" | |||
1539 | RDEPENDS_${PN}-module-math-bigfloat-trace += "${PN}-module-overload" | 1636 | RDEPENDS_${PN}-module-math-bigfloat-trace += "${PN}-module-overload" |
1540 | RDEPENDS_${PN}-module-math-bigfloat-trace += "${PN}-module-strict" | 1637 | RDEPENDS_${PN}-module-math-bigfloat-trace += "${PN}-module-strict" |
1541 | RDEPENDS_${PN}-module-math-bigfloat-trace += "${PN}-module-vars" | 1638 | RDEPENDS_${PN}-module-math-bigfloat-trace += "${PN}-module-vars" |
1542 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-carp" | 1639 | RDEPENDS_${PN}-module-math-bigint-calcemu += "${PN}-module-strict" |
1543 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-exporter" | 1640 | RDEPENDS_${PN}-module-math-bigint-calcemu += "${PN}-module-vars" |
1544 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-file-spec" | ||
1545 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-math-bigfloat" | ||
1546 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-overload" | ||
1547 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-strict" | ||
1548 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-vars" | ||
1549 | RDEPENDS_${PN}-module-math-bigint-calc += "${PN}-module-carp" | 1641 | RDEPENDS_${PN}-module-math-bigint-calc += "${PN}-module-carp" |
1550 | RDEPENDS_${PN}-module-math-bigint-calc += "${PN}-module-constant" | 1642 | RDEPENDS_${PN}-module-math-bigint-calc += "${PN}-module-constant" |
1551 | RDEPENDS_${PN}-module-math-bigint-calc += "${PN}-module-integer" | 1643 | RDEPENDS_${PN}-module-math-bigint-calc += "${PN}-module-integer" |
1552 | RDEPENDS_${PN}-module-math-bigint-calc += "${PN}-module-strict" | 1644 | RDEPENDS_${PN}-module-math-bigint-calc += "${PN}-module-strict" |
1553 | RDEPENDS_${PN}-module-math-bigint-calcemu += "${PN}-module-strict" | ||
1554 | RDEPENDS_${PN}-module-math-bigint-calcemu += "${PN}-module-vars" | ||
1555 | RDEPENDS_${PN}-module-math-bigint-fastcalc += "${PN}-module-math-bigint-calc" | 1645 | RDEPENDS_${PN}-module-math-bigint-fastcalc += "${PN}-module-math-bigint-calc" |
1556 | RDEPENDS_${PN}-module-math-bigint-fastcalc += "${PN}-module-strict" | 1646 | RDEPENDS_${PN}-module-math-bigint-fastcalc += "${PN}-module-strict" |
1557 | RDEPENDS_${PN}-module-math-bigint-fastcalc += "${PN}-module-vars" | 1647 | RDEPENDS_${PN}-module-math-bigint-fastcalc += "${PN}-module-vars" |
1558 | RDEPENDS_${PN}-module-math-bigint-fastcalc += "${PN}-module-warnings" | 1648 | RDEPENDS_${PN}-module-math-bigint-fastcalc += "${PN}-module-warnings" |
1559 | RDEPENDS_${PN}-module-math-bigint-fastcalc += "${PN}-module-xsloader" | 1649 | RDEPENDS_${PN}-module-math-bigint-fastcalc += "${PN}-module-xsloader" |
1650 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-carp" | ||
1651 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-exporter" | ||
1652 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-file-spec" | ||
1653 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-math-bigfloat" | ||
1654 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-overload" | ||
1655 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-strict" | ||
1656 | RDEPENDS_${PN}-module-math-bigint += "${PN}-module-vars" | ||
1560 | RDEPENDS_${PN}-module-math-bigint-trace += "${PN}-module-exporter" | 1657 | RDEPENDS_${PN}-module-math-bigint-trace += "${PN}-module-exporter" |
1561 | RDEPENDS_${PN}-module-math-bigint-trace += "${PN}-module-math-bigint" | 1658 | RDEPENDS_${PN}-module-math-bigint-trace += "${PN}-module-math-bigint" |
1562 | RDEPENDS_${PN}-module-math-bigint-trace += "${PN}-module-overload" | 1659 | RDEPENDS_${PN}-module-math-bigint-trace += "${PN}-module-overload" |
@@ -1573,20 +1670,18 @@ RDEPENDS_${PN}-module-math-complex += "${PN}-module-exporter" | |||
1573 | RDEPENDS_${PN}-module-math-complex += "${PN}-module-overload" | 1670 | RDEPENDS_${PN}-module-math-complex += "${PN}-module-overload" |
1574 | RDEPENDS_${PN}-module-math-complex += "${PN}-module-scalar-util" | 1671 | RDEPENDS_${PN}-module-math-complex += "${PN}-module-scalar-util" |
1575 | RDEPENDS_${PN}-module-math-complex += "${PN}-module-strict" | 1672 | RDEPENDS_${PN}-module-math-complex += "${PN}-module-strict" |
1576 | RDEPENDS_${PN}-module-math-complex += "${PN}-module-vars" | ||
1577 | RDEPENDS_${PN}-module-math-complex += "${PN}-module-warnings" | 1673 | RDEPENDS_${PN}-module-math-complex += "${PN}-module-warnings" |
1578 | RDEPENDS_${PN}-module-math-trig += "${PN}-module-exporter" | 1674 | RDEPENDS_${PN}-module-math-trig += "${PN}-module-exporter" |
1579 | RDEPENDS_${PN}-module-math-trig += "${PN}-module-math-complex" | 1675 | RDEPENDS_${PN}-module-math-trig += "${PN}-module-math-complex" |
1580 | RDEPENDS_${PN}-module-math-trig += "${PN}-module-strict" | 1676 | RDEPENDS_${PN}-module-math-trig += "${PN}-module-strict" |
1581 | RDEPENDS_${PN}-module-math-trig += "${PN}-module-vars" | 1677 | RDEPENDS_${PN}-module-memoize-anydbm-file += "${PN}-module-vars" |
1678 | RDEPENDS_${PN}-module-memoize-expirefile += "${PN}-module-carp" | ||
1679 | RDEPENDS_${PN}-module-memoize-expire += "${PN}-module-carp" | ||
1582 | RDEPENDS_${PN}-module-memoize += "${PN}-module-carp" | 1680 | RDEPENDS_${PN}-module-memoize += "${PN}-module-carp" |
1583 | RDEPENDS_${PN}-module-memoize += "${PN}-module-config" | 1681 | RDEPENDS_${PN}-module-memoize += "${PN}-module-config" |
1584 | RDEPENDS_${PN}-module-memoize += "${PN}-module-exporter" | 1682 | RDEPENDS_${PN}-module-memoize += "${PN}-module-exporter" |
1585 | RDEPENDS_${PN}-module-memoize += "${PN}-module-strict" | 1683 | RDEPENDS_${PN}-module-memoize += "${PN}-module-strict" |
1586 | RDEPENDS_${PN}-module-memoize += "${PN}-module-vars" | 1684 | RDEPENDS_${PN}-module-memoize += "${PN}-module-vars" |
1587 | RDEPENDS_${PN}-module-memoize-anydbm-file += "${PN}-module-vars" | ||
1588 | RDEPENDS_${PN}-module-memoize-expire += "${PN}-module-carp" | ||
1589 | RDEPENDS_${PN}-module-memoize-expirefile += "${PN}-module-carp" | ||
1590 | RDEPENDS_${PN}-module-memoize-sdbm-file += "${PN}-module-sdbm-file" | 1685 | RDEPENDS_${PN}-module-memoize-sdbm-file += "${PN}-module-sdbm-file" |
1591 | RDEPENDS_${PN}-module-memoize-storable += "${PN}-module-carp" | 1686 | RDEPENDS_${PN}-module-memoize-storable += "${PN}-module-carp" |
1592 | RDEPENDS_${PN}-module-memoize-storable += "${PN}-module-storable" | 1687 | RDEPENDS_${PN}-module-memoize-storable += "${PN}-module-storable" |
@@ -1617,18 +1712,6 @@ RDEPENDS_${PN}-module-net-domain += "${PN}-module-posix" | |||
1617 | RDEPENDS_${PN}-module-net-domain += "${PN}-module-socket" | 1712 | RDEPENDS_${PN}-module-net-domain += "${PN}-module-socket" |
1618 | RDEPENDS_${PN}-module-net-domain += "${PN}-module-strict" | 1713 | RDEPENDS_${PN}-module-net-domain += "${PN}-module-strict" |
1619 | RDEPENDS_${PN}-module-net-domain += "${PN}-module-vars" | 1714 | RDEPENDS_${PN}-module-net-domain += "${PN}-module-vars" |
1620 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-carp" | ||
1621 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-fcntl" | ||
1622 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-file-basename" | ||
1623 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-io-socket" | ||
1624 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-net-cmd" | ||
1625 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-net-config" | ||
1626 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-net-ftp-a" | ||
1627 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-net-netrc" | ||
1628 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-socket" | ||
1629 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-strict" | ||
1630 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-time-local" | ||
1631 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-vars" | ||
1632 | RDEPENDS_${PN}-module-net-ftp-a += "${PN}-module-carp" | 1715 | RDEPENDS_${PN}-module-net-ftp-a += "${PN}-module-carp" |
1633 | RDEPENDS_${PN}-module-net-ftp-a += "${PN}-module-net-ftp-dataconn" | 1716 | RDEPENDS_${PN}-module-net-ftp-a += "${PN}-module-net-ftp-dataconn" |
1634 | RDEPENDS_${PN}-module-net-ftp-a += "${PN}-module-strict" | 1717 | RDEPENDS_${PN}-module-net-ftp-a += "${PN}-module-strict" |
@@ -1642,6 +1725,18 @@ RDEPENDS_${PN}-module-net-ftp-i += "${PN}-module-carp" | |||
1642 | RDEPENDS_${PN}-module-net-ftp-i += "${PN}-module-net-ftp-dataconn" | 1725 | RDEPENDS_${PN}-module-net-ftp-i += "${PN}-module-net-ftp-dataconn" |
1643 | RDEPENDS_${PN}-module-net-ftp-i += "${PN}-module-vars" | 1726 | RDEPENDS_${PN}-module-net-ftp-i += "${PN}-module-vars" |
1644 | RDEPENDS_${PN}-module-net-ftp-l += "${PN}-module-net-ftp-i" | 1727 | RDEPENDS_${PN}-module-net-ftp-l += "${PN}-module-net-ftp-i" |
1728 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-carp" | ||
1729 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-fcntl" | ||
1730 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-file-basename" | ||
1731 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-io-socket" | ||
1732 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-net-cmd" | ||
1733 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-net-config" | ||
1734 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-net-ftp-a" | ||
1735 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-net-netrc" | ||
1736 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-socket" | ||
1737 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-strict" | ||
1738 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-time-local" | ||
1739 | RDEPENDS_${PN}-module-net-ftp += "${PN}-module-vars" | ||
1645 | RDEPENDS_${PN}-module-net-hostent += "${PN}-module-class-struct" | 1740 | RDEPENDS_${PN}-module-net-hostent += "${PN}-module-class-struct" |
1646 | RDEPENDS_${PN}-module-net-hostent += "${PN}-module-exporter" | 1741 | RDEPENDS_${PN}-module-net-hostent += "${PN}-module-exporter" |
1647 | RDEPENDS_${PN}-module-net-hostent += "${PN}-module-socket" | 1742 | RDEPENDS_${PN}-module-net-hostent += "${PN}-module-socket" |
@@ -1707,17 +1802,6 @@ RDEPENDS_${PN}-module-net-time += "${PN}-module-vars" | |||
1707 | RDEPENDS_${PN}-module-next += "${PN}-module-carp" | 1802 | RDEPENDS_${PN}-module-next += "${PN}-module-carp" |
1708 | RDEPENDS_${PN}-module-next += "${PN}-module-overload" | 1803 | RDEPENDS_${PN}-module-next += "${PN}-module-overload" |
1709 | RDEPENDS_${PN}-module-next += "${PN}-module-strict" | 1804 | RDEPENDS_${PN}-module-next += "${PN}-module-strict" |
1710 | RDEPENDS_${PN}-module-o += "${PN}-module-b" | ||
1711 | RDEPENDS_${PN}-module-o += "${PN}-module-carp" | ||
1712 | RDEPENDS_${PN}-module-object-accessor += "${PN}-module-base" | ||
1713 | RDEPENDS_${PN}-module-object-accessor += "${PN}-module-carp" | ||
1714 | RDEPENDS_${PN}-module-object-accessor += "${PN}-module-constant" | ||
1715 | RDEPENDS_${PN}-module-object-accessor += "${PN}-module-data-dumper" | ||
1716 | RDEPENDS_${PN}-module-object-accessor += "${PN}-module-overload" | ||
1717 | RDEPENDS_${PN}-module-object-accessor += "${PN}-module-params-check" | ||
1718 | RDEPENDS_${PN}-module-object-accessor += "${PN}-module-strict" | ||
1719 | RDEPENDS_${PN}-module-object-accessor += "${PN}-module-tie-scalar" | ||
1720 | RDEPENDS_${PN}-module-object-accessor += "${PN}-module-vars" | ||
1721 | RDEPENDS_${PN}-module-opcode += "${PN}-module-carp" | 1805 | RDEPENDS_${PN}-module-opcode += "${PN}-module-carp" |
1722 | RDEPENDS_${PN}-module-opcode += "${PN}-module-exporter" | 1806 | RDEPENDS_${PN}-module-opcode += "${PN}-module-exporter" |
1723 | RDEPENDS_${PN}-module-opcode += "${PN}-module-strict" | 1807 | RDEPENDS_${PN}-module-opcode += "${PN}-module-strict" |
@@ -1727,17 +1811,18 @@ RDEPENDS_${PN}-module-open += "${PN}-module-carp" | |||
1727 | RDEPENDS_${PN}-module-open += "${PN}-module-encode" | 1811 | RDEPENDS_${PN}-module-open += "${PN}-module-encode" |
1728 | RDEPENDS_${PN}-module-open += "${PN}-module-encoding" | 1812 | RDEPENDS_${PN}-module-open += "${PN}-module-encoding" |
1729 | RDEPENDS_${PN}-module-open += "${PN}-module-warnings" | 1813 | RDEPENDS_${PN}-module-open += "${PN}-module-warnings" |
1814 | RDEPENDS_${PN}-module-o += "${PN}-module-b" | ||
1815 | RDEPENDS_${PN}-module-o += "${PN}-module-carp" | ||
1730 | RDEPENDS_${PN}-module-ops += "${PN}-module-opcode" | 1816 | RDEPENDS_${PN}-module-ops += "${PN}-module-opcode" |
1817 | RDEPENDS_${PN}-module-overloading += "${PN}-module-overload-numbers" | ||
1818 | RDEPENDS_${PN}-module-overloading += "${PN}-module-warnings" | ||
1731 | RDEPENDS_${PN}-module-overload += "${PN}-module-mro" | 1819 | RDEPENDS_${PN}-module-overload += "${PN}-module-mro" |
1732 | RDEPENDS_${PN}-module-overload += "${PN}-module-scalar-util" | 1820 | RDEPENDS_${PN}-module-overload += "${PN}-module-scalar-util" |
1733 | RDEPENDS_${PN}-module-overload += "${PN}-module-warnings-register" | 1821 | RDEPENDS_${PN}-module-overload += "${PN}-module-warnings-register" |
1734 | RDEPENDS_${PN}-module-overloading += "${PN}-module-carp" | 1822 | RDEPENDS_${PN}-module-package-constants += "${PN}-module-if" |
1735 | RDEPENDS_${PN}-module-overloading += "${PN}-module-overload-numbers" | ||
1736 | RDEPENDS_${PN}-module-overloading += "${PN}-module-warnings" | ||
1737 | RDEPENDS_${PN}-module-package-constants += "${PN}-module-strict" | 1823 | RDEPENDS_${PN}-module-package-constants += "${PN}-module-strict" |
1738 | RDEPENDS_${PN}-module-package-constants += "${PN}-module-vars" | 1824 | RDEPENDS_${PN}-module-package-constants += "${PN}-module-vars" |
1739 | RDEPENDS_${PN}-module-params-check += "${PN}-module-carp" | 1825 | RDEPENDS_${PN}-module-params-check += "${PN}-module-carp" |
1740 | RDEPENDS_${PN}-module-params-check += "${PN}-module-data-dumper" | ||
1741 | RDEPENDS_${PN}-module-params-check += "${PN}-module-exporter" | 1826 | RDEPENDS_${PN}-module-params-check += "${PN}-module-exporter" |
1742 | RDEPENDS_${PN}-module-params-check += "${PN}-module-locale-maketext-simple" | 1827 | RDEPENDS_${PN}-module-params-check += "${PN}-module-locale-maketext-simple" |
1743 | RDEPENDS_${PN}-module-params-check += "${PN}-module-strict" | 1828 | RDEPENDS_${PN}-module-params-check += "${PN}-module-strict" |
@@ -1746,17 +1831,13 @@ RDEPENDS_${PN}-module-parent += "${PN}-module-strict" | |||
1746 | RDEPENDS_${PN}-module-parent += "${PN}-module-vars" | 1831 | RDEPENDS_${PN}-module-parent += "${PN}-module-vars" |
1747 | RDEPENDS_${PN}-module-perlio-encoding += "${PN}-module-strict" | 1832 | RDEPENDS_${PN}-module-perlio-encoding += "${PN}-module-strict" |
1748 | RDEPENDS_${PN}-module-perlio-encoding += "${PN}-module-xsloader" | 1833 | RDEPENDS_${PN}-module-perlio-encoding += "${PN}-module-xsloader" |
1834 | RDEPENDS_${PN}-module-perlio-mmap += "${PN}-module-strict" | ||
1835 | RDEPENDS_${PN}-module-perlio-mmap += "${PN}-module-warnings" | ||
1836 | RDEPENDS_${PN}-module-perlio-mmap += "${PN}-module-xsloader" | ||
1749 | RDEPENDS_${PN}-module-perlio-scalar += "${PN}-module-xsloader" | 1837 | RDEPENDS_${PN}-module-perlio-scalar += "${PN}-module-xsloader" |
1750 | RDEPENDS_${PN}-module-perlio-via += "${PN}-module-xsloader" | 1838 | RDEPENDS_${PN}-module-perlio-via += "${PN}-module-xsloader" |
1751 | RDEPENDS_${PN}-module-perlio-via-quotedprint += "${PN}-module-mime-quotedprint" | 1839 | RDEPENDS_${PN}-module-perlio-via-quotedprint += "${PN}-module-mime-quotedprint" |
1752 | RDEPENDS_${PN}-module-perlio-via-quotedprint += "${PN}-module-strict" | 1840 | RDEPENDS_${PN}-module-perlio-via-quotedprint += "${PN}-module-strict" |
1753 | RDEPENDS_${PN}-module-pluggable += "${PN}-module-carp" | ||
1754 | RDEPENDS_${PN}-module-pluggable += "${PN}-module-devel-innerpackage" | ||
1755 | RDEPENDS_${PN}-module-pluggable += "${PN}-module-file-basename" | ||
1756 | RDEPENDS_${PN}-module-pluggable += "${PN}-module-file-find" | ||
1757 | RDEPENDS_${PN}-module-pluggable += "${PN}-module-file-spec-functions" | ||
1758 | RDEPENDS_${PN}-module-pluggable += "${PN}-module-strict" | ||
1759 | RDEPENDS_${PN}-module-pluggable += "${PN}-module-vars" | ||
1760 | RDEPENDS_${PN}-module-pod-checker += "${PN}-module-carp" | 1841 | RDEPENDS_${PN}-module-pod-checker += "${PN}-module-carp" |
1761 | RDEPENDS_${PN}-module-pod-checker += "${PN}-module-exporter" | 1842 | RDEPENDS_${PN}-module-pod-checker += "${PN}-module-exporter" |
1762 | RDEPENDS_${PN}-module-pod-checker += "${PN}-module-pod-parser" | 1843 | RDEPENDS_${PN}-module-pod-checker += "${PN}-module-pod-parser" |
@@ -1766,6 +1847,7 @@ RDEPENDS_${PN}-module-pod-checker += "${PN}-module-vars" | |||
1766 | RDEPENDS_${PN}-module-pod-escapes += "${PN}-module-exporter" | 1847 | RDEPENDS_${PN}-module-pod-escapes += "${PN}-module-exporter" |
1767 | RDEPENDS_${PN}-module-pod-escapes += "${PN}-module-strict" | 1848 | RDEPENDS_${PN}-module-pod-escapes += "${PN}-module-strict" |
1768 | RDEPENDS_${PN}-module-pod-escapes += "${PN}-module-vars" | 1849 | RDEPENDS_${PN}-module-pod-escapes += "${PN}-module-vars" |
1850 | RDEPENDS_${PN}-module-pod-escapes += "${PN}-module-warnings" | ||
1769 | RDEPENDS_${PN}-module-pod-find += "${PN}-module-carp" | 1851 | RDEPENDS_${PN}-module-pod-find += "${PN}-module-carp" |
1770 | RDEPENDS_${PN}-module-pod-find += "${PN}-module-config" | 1852 | RDEPENDS_${PN}-module-pod-find += "${PN}-module-config" |
1771 | RDEPENDS_${PN}-module-pod-find += "${PN}-module-cwd" | 1853 | RDEPENDS_${PN}-module-pod-find += "${PN}-module-cwd" |
@@ -1779,11 +1861,6 @@ RDEPENDS_${PN}-module-pod-functions += "${PN}-module-exporter" | |||
1779 | RDEPENDS_${PN}-module-pod-functions += "${PN}-module-strict" | 1861 | RDEPENDS_${PN}-module-pod-functions += "${PN}-module-strict" |
1780 | RDEPENDS_${PN}-module-pod-inputobjects += "${PN}-module-strict" | 1862 | RDEPENDS_${PN}-module-pod-inputobjects += "${PN}-module-strict" |
1781 | RDEPENDS_${PN}-module-pod-inputobjects += "${PN}-module-vars" | 1863 | RDEPENDS_${PN}-module-pod-inputobjects += "${PN}-module-vars" |
1782 | RDEPENDS_${PN}-module-pod-latex += "${PN}-module-base" | ||
1783 | RDEPENDS_${PN}-module-pod-latex += "${PN}-module-carp" | ||
1784 | RDEPENDS_${PN}-module-pod-latex += "${PN}-module-pod-parseutils" | ||
1785 | RDEPENDS_${PN}-module-pod-latex += "${PN}-module-strict" | ||
1786 | RDEPENDS_${PN}-module-pod-latex += "${PN}-module-vars" | ||
1787 | RDEPENDS_${PN}-module-pod-man += "${PN}-module-carp" | 1864 | RDEPENDS_${PN}-module-pod-man += "${PN}-module-carp" |
1788 | RDEPENDS_${PN}-module-pod-man += "${PN}-module-encode" | 1865 | RDEPENDS_${PN}-module-pod-man += "${PN}-module-encode" |
1789 | RDEPENDS_${PN}-module-pod-man += "${PN}-module-file-basename" | 1866 | RDEPENDS_${PN}-module-pod-man += "${PN}-module-file-basename" |
@@ -1804,9 +1881,18 @@ RDEPENDS_${PN}-module-pod-parser += "${PN}-module-vars" | |||
1804 | RDEPENDS_${PN}-module-pod-parseutils += "${PN}-module-carp" | 1881 | RDEPENDS_${PN}-module-pod-parseutils += "${PN}-module-carp" |
1805 | RDEPENDS_${PN}-module-pod-parseutils += "${PN}-module-strict" | 1882 | RDEPENDS_${PN}-module-pod-parseutils += "${PN}-module-strict" |
1806 | RDEPENDS_${PN}-module-pod-parseutils += "${PN}-module-vars" | 1883 | RDEPENDS_${PN}-module-pod-parseutils += "${PN}-module-vars" |
1884 | RDEPENDS_${PN}-module-pod-perldoc-baseto += "${PN}-module-carp" | ||
1885 | RDEPENDS_${PN}-module-pod-perldoc-baseto += "${PN}-module-config" | ||
1886 | RDEPENDS_${PN}-module-pod-perldoc-baseto += "${PN}-module-file-spec-functions" | ||
1887 | RDEPENDS_${PN}-module-pod-perldoc-baseto += "${PN}-module-strict" | ||
1888 | RDEPENDS_${PN}-module-pod-perldoc-baseto += "${PN}-module-vars" | ||
1889 | RDEPENDS_${PN}-module-pod-perldoc-baseto += "${PN}-module-warnings" | ||
1890 | RDEPENDS_${PN}-module-pod-perldoc-getoptsoo += "${PN}-module-strict" | ||
1891 | RDEPENDS_${PN}-module-pod-perldoc-getoptsoo += "${PN}-module-vars" | ||
1807 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-carp" | 1892 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-carp" |
1808 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-config" | 1893 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-config" |
1809 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-fcntl" | 1894 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-fcntl" |
1895 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-file-basename" | ||
1810 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-file-spec-functions" | 1896 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-file-spec-functions" |
1811 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-file-temp" | 1897 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-file-temp" |
1812 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-pod-perldoc-getoptsoo" | 1898 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-pod-perldoc-getoptsoo" |
@@ -1814,36 +1900,52 @@ RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-strict" | |||
1814 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-symbol" | 1900 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-symbol" |
1815 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-text-parsewords" | 1901 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-text-parsewords" |
1816 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-vars" | 1902 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-vars" |
1817 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-vmsish" | ||
1818 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-warnings" | 1903 | RDEPENDS_${PN}-module-pod-perldoc += "${PN}-module-warnings" |
1819 | RDEPENDS_${PN}-module-pod-perldoc-baseto += "${PN}-module-strict" | 1904 | RDEPENDS_${PN}-module-pod-perldoc-toansi += "${PN}-module-parent" |
1820 | RDEPENDS_${PN}-module-pod-perldoc-baseto += "${PN}-module-warnings" | 1905 | RDEPENDS_${PN}-module-pod-perldoc-toansi += "${PN}-module-pod-text-color" |
1821 | RDEPENDS_${PN}-module-pod-perldoc-getoptsoo += "${PN}-module-strict" | 1906 | RDEPENDS_${PN}-module-pod-perldoc-toansi += "${PN}-module-strict" |
1907 | RDEPENDS_${PN}-module-pod-perldoc-toansi += "${PN}-module-vars" | ||
1908 | RDEPENDS_${PN}-module-pod-perldoc-toansi += "${PN}-module-warnings" | ||
1822 | RDEPENDS_${PN}-module-pod-perldoc-tochecker += "${PN}-module-pod-checker" | 1909 | RDEPENDS_${PN}-module-pod-perldoc-tochecker += "${PN}-module-pod-checker" |
1823 | RDEPENDS_${PN}-module-pod-perldoc-tochecker += "${PN}-module-strict" | 1910 | RDEPENDS_${PN}-module-pod-perldoc-tochecker += "${PN}-module-strict" |
1824 | RDEPENDS_${PN}-module-pod-perldoc-tochecker += "${PN}-module-vars" | 1911 | RDEPENDS_${PN}-module-pod-perldoc-tochecker += "${PN}-module-vars" |
1825 | RDEPENDS_${PN}-module-pod-perldoc-tochecker += "${PN}-module-warnings" | 1912 | RDEPENDS_${PN}-module-pod-perldoc-tochecker += "${PN}-module-warnings" |
1826 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-base" | 1913 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-encode" |
1827 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-file-spec-functions" | 1914 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-file-spec-functions" |
1915 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-io-handle" | ||
1916 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-io-select" | ||
1917 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-ipc-open3" | ||
1918 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-parent" | ||
1919 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-pod-man" | ||
1828 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-pod-perldoc-topod" | 1920 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-pod-perldoc-topod" |
1829 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-strict" | 1921 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-strict" |
1922 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-symbol" | ||
1923 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-vars" | ||
1830 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-warnings" | 1924 | RDEPENDS_${PN}-module-pod-perldoc-toman += "${PN}-module-warnings" |
1831 | RDEPENDS_${PN}-module-pod-perldoc-tonroff += "${PN}-module-base" | 1925 | RDEPENDS_${PN}-module-pod-perldoc-tonroff += "${PN}-module-parent" |
1832 | RDEPENDS_${PN}-module-pod-perldoc-tonroff += "${PN}-module-pod-man" | 1926 | RDEPENDS_${PN}-module-pod-perldoc-tonroff += "${PN}-module-pod-man" |
1833 | RDEPENDS_${PN}-module-pod-perldoc-tonroff += "${PN}-module-strict" | 1927 | RDEPENDS_${PN}-module-pod-perldoc-tonroff += "${PN}-module-strict" |
1928 | RDEPENDS_${PN}-module-pod-perldoc-tonroff += "${PN}-module-vars" | ||
1834 | RDEPENDS_${PN}-module-pod-perldoc-tonroff += "${PN}-module-warnings" | 1929 | RDEPENDS_${PN}-module-pod-perldoc-tonroff += "${PN}-module-warnings" |
1835 | RDEPENDS_${PN}-module-pod-perldoc-topod += "${PN}-module-base" | 1930 | RDEPENDS_${PN}-module-pod-perldoc-topod += "${PN}-module-parent" |
1836 | RDEPENDS_${PN}-module-pod-perldoc-topod += "${PN}-module-strict" | 1931 | RDEPENDS_${PN}-module-pod-perldoc-topod += "${PN}-module-strict" |
1932 | RDEPENDS_${PN}-module-pod-perldoc-topod += "${PN}-module-vars" | ||
1837 | RDEPENDS_${PN}-module-pod-perldoc-topod += "${PN}-module-warnings" | 1933 | RDEPENDS_${PN}-module-pod-perldoc-topod += "${PN}-module-warnings" |
1838 | RDEPENDS_${PN}-module-pod-perldoc-tortf += "${PN}-module-base" | 1934 | RDEPENDS_${PN}-module-pod-perldoc-tortf += "${PN}-module-parent" |
1839 | RDEPENDS_${PN}-module-pod-perldoc-tortf += "${PN}-module-strict" | 1935 | RDEPENDS_${PN}-module-pod-perldoc-tortf += "${PN}-module-strict" |
1840 | RDEPENDS_${PN}-module-pod-perldoc-tortf += "${PN}-module-vars" | 1936 | RDEPENDS_${PN}-module-pod-perldoc-tortf += "${PN}-module-vars" |
1841 | RDEPENDS_${PN}-module-pod-perldoc-tortf += "${PN}-module-warnings" | 1937 | RDEPENDS_${PN}-module-pod-perldoc-tortf += "${PN}-module-warnings" |
1842 | RDEPENDS_${PN}-module-pod-perldoc-totext += "${PN}-module-base" | 1938 | RDEPENDS_${PN}-module-pod-perldoc-toterm += "${PN}-module-parent" |
1939 | RDEPENDS_${PN}-module-pod-perldoc-toterm += "${PN}-module-pod-text-termcap" | ||
1940 | RDEPENDS_${PN}-module-pod-perldoc-toterm += "${PN}-module-strict" | ||
1941 | RDEPENDS_${PN}-module-pod-perldoc-toterm += "${PN}-module-vars" | ||
1942 | RDEPENDS_${PN}-module-pod-perldoc-toterm += "${PN}-module-warnings" | ||
1943 | RDEPENDS_${PN}-module-pod-perldoc-totext += "${PN}-module-parent" | ||
1843 | RDEPENDS_${PN}-module-pod-perldoc-totext += "${PN}-module-pod-text" | 1944 | RDEPENDS_${PN}-module-pod-perldoc-totext += "${PN}-module-pod-text" |
1844 | RDEPENDS_${PN}-module-pod-perldoc-totext += "${PN}-module-strict" | 1945 | RDEPENDS_${PN}-module-pod-perldoc-totext += "${PN}-module-strict" |
1946 | RDEPENDS_${PN}-module-pod-perldoc-totext += "${PN}-module-vars" | ||
1845 | RDEPENDS_${PN}-module-pod-perldoc-totext += "${PN}-module-warnings" | 1947 | RDEPENDS_${PN}-module-pod-perldoc-totext += "${PN}-module-warnings" |
1846 | RDEPENDS_${PN}-module-pod-perldoc-toxml += "${PN}-module-base" | 1948 | RDEPENDS_${PN}-module-pod-perldoc-toxml += "${PN}-module-parent" |
1847 | RDEPENDS_${PN}-module-pod-perldoc-toxml += "${PN}-module-strict" | 1949 | RDEPENDS_${PN}-module-pod-perldoc-toxml += "${PN}-module-strict" |
1848 | RDEPENDS_${PN}-module-pod-perldoc-toxml += "${PN}-module-vars" | 1950 | RDEPENDS_${PN}-module-pod-perldoc-toxml += "${PN}-module-vars" |
1849 | RDEPENDS_${PN}-module-pod-perldoc-toxml += "${PN}-module-warnings" | 1951 | RDEPENDS_${PN}-module-pod-perldoc-toxml += "${PN}-module-warnings" |
@@ -1856,15 +1958,6 @@ RDEPENDS_${PN}-module-pod-select += "${PN}-module-carp" | |||
1856 | RDEPENDS_${PN}-module-pod-select += "${PN}-module-pod-parser" | 1958 | RDEPENDS_${PN}-module-pod-select += "${PN}-module-pod-parser" |
1857 | RDEPENDS_${PN}-module-pod-select += "${PN}-module-strict" | 1959 | RDEPENDS_${PN}-module-pod-select += "${PN}-module-strict" |
1858 | RDEPENDS_${PN}-module-pod-select += "${PN}-module-vars" | 1960 | RDEPENDS_${PN}-module-pod-select += "${PN}-module-vars" |
1859 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-carp" | ||
1860 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-integer" | ||
1861 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-pod-escapes" | ||
1862 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-pod-simple-blackbox" | ||
1863 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-pod-simple-linksection" | ||
1864 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-pod-simple-tiedoutfh" | ||
1865 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-strict" | ||
1866 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-symbol" | ||
1867 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-vars" | ||
1868 | RDEPENDS_${PN}-module-pod-simple-blackbox += "${PN}-module-carp" | 1961 | RDEPENDS_${PN}-module-pod-simple-blackbox += "${PN}-module-carp" |
1869 | RDEPENDS_${PN}-module-pod-simple-blackbox += "${PN}-module-integer" | 1962 | RDEPENDS_${PN}-module-pod-simple-blackbox += "${PN}-module-integer" |
1870 | RDEPENDS_${PN}-module-pod-simple-blackbox += "${PN}-module-pod-simple" | 1963 | RDEPENDS_${PN}-module-pod-simple-blackbox += "${PN}-module-pod-simple" |
@@ -1887,6 +1980,7 @@ RDEPENDS_${PN}-module-pod-simple-dumpastext += "${PN}-module-strict" | |||
1887 | RDEPENDS_${PN}-module-pod-simple-dumpasxml += "${PN}-module-carp" | 1980 | RDEPENDS_${PN}-module-pod-simple-dumpasxml += "${PN}-module-carp" |
1888 | RDEPENDS_${PN}-module-pod-simple-dumpasxml += "${PN}-module-pod-simple" | 1981 | RDEPENDS_${PN}-module-pod-simple-dumpasxml += "${PN}-module-pod-simple" |
1889 | RDEPENDS_${PN}-module-pod-simple-dumpasxml += "${PN}-module-strict" | 1982 | RDEPENDS_${PN}-module-pod-simple-dumpasxml += "${PN}-module-strict" |
1983 | RDEPENDS_${PN}-module-pod-simple-dumpasxml += "${PN}-module-text-wrap" | ||
1890 | RDEPENDS_${PN}-module-pod-simple-linksection += "${PN}-module-overload" | 1984 | RDEPENDS_${PN}-module-pod-simple-linksection += "${PN}-module-overload" |
1891 | RDEPENDS_${PN}-module-pod-simple-linksection += "${PN}-module-pod-simple-blackbox" | 1985 | RDEPENDS_${PN}-module-pod-simple-linksection += "${PN}-module-pod-simple-blackbox" |
1892 | RDEPENDS_${PN}-module-pod-simple-linksection += "${PN}-module-strict" | 1986 | RDEPENDS_${PN}-module-pod-simple-linksection += "${PN}-module-strict" |
@@ -1894,16 +1988,25 @@ RDEPENDS_${PN}-module-pod-simple-linksection += "${PN}-module-vars" | |||
1894 | RDEPENDS_${PN}-module-pod-simple-methody += "${PN}-module-pod-simple" | 1988 | RDEPENDS_${PN}-module-pod-simple-methody += "${PN}-module-pod-simple" |
1895 | RDEPENDS_${PN}-module-pod-simple-methody += "${PN}-module-strict" | 1989 | RDEPENDS_${PN}-module-pod-simple-methody += "${PN}-module-strict" |
1896 | RDEPENDS_${PN}-module-pod-simple-methody += "${PN}-module-vars" | 1990 | RDEPENDS_${PN}-module-pod-simple-methody += "${PN}-module-vars" |
1991 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-carp" | ||
1992 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-integer" | ||
1993 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-pod-escapes" | ||
1994 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-pod-simple-blackbox" | ||
1995 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-pod-simple-linksection" | ||
1996 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-pod-simple-tiedoutfh" | ||
1997 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-strict" | ||
1998 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-symbol" | ||
1999 | RDEPENDS_${PN}-module-pod-simple += "${PN}-module-vars" | ||
1897 | RDEPENDS_${PN}-module-pod-simple-progress += "${PN}-module-strict" | 2000 | RDEPENDS_${PN}-module-pod-simple-progress += "${PN}-module-strict" |
2001 | RDEPENDS_${PN}-module-pod-simple-pullparserendtoken += "${PN}-module-pod-simple-pullparsertoken" | ||
2002 | RDEPENDS_${PN}-module-pod-simple-pullparserendtoken += "${PN}-module-strict" | ||
2003 | RDEPENDS_${PN}-module-pod-simple-pullparserendtoken += "${PN}-module-vars" | ||
1898 | RDEPENDS_${PN}-module-pod-simple-pullparser += "${PN}-module-carp" | 2004 | RDEPENDS_${PN}-module-pod-simple-pullparser += "${PN}-module-carp" |
1899 | RDEPENDS_${PN}-module-pod-simple-pullparser += "${PN}-module-pod-simple" | 2005 | RDEPENDS_${PN}-module-pod-simple-pullparser += "${PN}-module-pod-simple" |
1900 | RDEPENDS_${PN}-module-pod-simple-pullparser += "${PN}-module-pod-simple-pullparserendtoken" | 2006 | RDEPENDS_${PN}-module-pod-simple-pullparser += "${PN}-module-pod-simple-pullparserendtoken" |
1901 | RDEPENDS_${PN}-module-pod-simple-pullparser += "${PN}-module-pod-simple-pullparserstarttoken" | 2007 | RDEPENDS_${PN}-module-pod-simple-pullparser += "${PN}-module-pod-simple-pullparserstarttoken" |
1902 | RDEPENDS_${PN}-module-pod-simple-pullparser += "${PN}-module-pod-simple-pullparsertexttoken" | 2008 | RDEPENDS_${PN}-module-pod-simple-pullparser += "${PN}-module-pod-simple-pullparsertexttoken" |
1903 | RDEPENDS_${PN}-module-pod-simple-pullparser += "${PN}-module-strict" | 2009 | RDEPENDS_${PN}-module-pod-simple-pullparser += "${PN}-module-strict" |
1904 | RDEPENDS_${PN}-module-pod-simple-pullparserendtoken += "${PN}-module-pod-simple-pullparsertoken" | ||
1905 | RDEPENDS_${PN}-module-pod-simple-pullparserendtoken += "${PN}-module-strict" | ||
1906 | RDEPENDS_${PN}-module-pod-simple-pullparserendtoken += "${PN}-module-vars" | ||
1907 | RDEPENDS_${PN}-module-pod-simple-pullparserstarttoken += "${PN}-module-carp" | 2010 | RDEPENDS_${PN}-module-pod-simple-pullparserstarttoken += "${PN}-module-carp" |
1908 | RDEPENDS_${PN}-module-pod-simple-pullparserstarttoken += "${PN}-module-pod-simple-pullparsertoken" | 2011 | RDEPENDS_${PN}-module-pod-simple-pullparserstarttoken += "${PN}-module-pod-simple-pullparsertoken" |
1909 | RDEPENDS_${PN}-module-pod-simple-pullparserstarttoken += "${PN}-module-strict" | 2012 | RDEPENDS_${PN}-module-pod-simple-pullparserstarttoken += "${PN}-module-strict" |
@@ -1928,23 +2031,23 @@ RDEPENDS_${PN}-module-pod-simple-simpletree += "${PN}-module-carp" | |||
1928 | RDEPENDS_${PN}-module-pod-simple-simpletree += "${PN}-module-pod-simple" | 2031 | RDEPENDS_${PN}-module-pod-simple-simpletree += "${PN}-module-pod-simple" |
1929 | RDEPENDS_${PN}-module-pod-simple-simpletree += "${PN}-module-strict" | 2032 | RDEPENDS_${PN}-module-pod-simple-simpletree += "${PN}-module-strict" |
1930 | RDEPENDS_${PN}-module-pod-simple-simpletree += "${PN}-module-vars" | 2033 | RDEPENDS_${PN}-module-pod-simple-simpletree += "${PN}-module-vars" |
2034 | RDEPENDS_${PN}-module-pod-simple-textcontent += "${PN}-module-carp" | ||
2035 | RDEPENDS_${PN}-module-pod-simple-textcontent += "${PN}-module-pod-simple" | ||
2036 | RDEPENDS_${PN}-module-pod-simple-textcontent += "${PN}-module-strict" | ||
2037 | RDEPENDS_${PN}-module-pod-simple-textcontent += "${PN}-module-vars" | ||
1931 | RDEPENDS_${PN}-module-pod-simple-text += "${PN}-module-carp" | 2038 | RDEPENDS_${PN}-module-pod-simple-text += "${PN}-module-carp" |
1932 | RDEPENDS_${PN}-module-pod-simple-text += "${PN}-module-pod-simple" | 2039 | RDEPENDS_${PN}-module-pod-simple-text += "${PN}-module-pod-simple" |
1933 | RDEPENDS_${PN}-module-pod-simple-text += "${PN}-module-pod-simple-methody" | 2040 | RDEPENDS_${PN}-module-pod-simple-text += "${PN}-module-pod-simple-methody" |
1934 | RDEPENDS_${PN}-module-pod-simple-text += "${PN}-module-strict" | 2041 | RDEPENDS_${PN}-module-pod-simple-text += "${PN}-module-strict" |
1935 | RDEPENDS_${PN}-module-pod-simple-text += "${PN}-module-text-wrap" | 2042 | RDEPENDS_${PN}-module-pod-simple-text += "${PN}-module-text-wrap" |
1936 | RDEPENDS_${PN}-module-pod-simple-text += "${PN}-module-vars" | 2043 | RDEPENDS_${PN}-module-pod-simple-text += "${PN}-module-vars" |
1937 | RDEPENDS_${PN}-module-pod-simple-textcontent += "${PN}-module-carp" | ||
1938 | RDEPENDS_${PN}-module-pod-simple-textcontent += "${PN}-module-pod-simple" | ||
1939 | RDEPENDS_${PN}-module-pod-simple-textcontent += "${PN}-module-strict" | ||
1940 | RDEPENDS_${PN}-module-pod-simple-textcontent += "${PN}-module-vars" | ||
1941 | RDEPENDS_${PN}-module-pod-simple-tiedoutfh += "${PN}-module-carp" | 2044 | RDEPENDS_${PN}-module-pod-simple-tiedoutfh += "${PN}-module-carp" |
1942 | RDEPENDS_${PN}-module-pod-simple-tiedoutfh += "${PN}-module-strict" | 2045 | RDEPENDS_${PN}-module-pod-simple-tiedoutfh += "${PN}-module-strict" |
1943 | RDEPENDS_${PN}-module-pod-simple-tiedoutfh += "${PN}-module-symbol" | 2046 | RDEPENDS_${PN}-module-pod-simple-tiedoutfh += "${PN}-module-symbol" |
1944 | RDEPENDS_${PN}-module-pod-simple-tiedoutfh += "${PN}-module-vars" | 2047 | RDEPENDS_${PN}-module-pod-simple-tiedoutfh += "${PN}-module-vars" |
1945 | RDEPENDS_${PN}-module-pod-simple-transcode += "${PN}-module-vars" | ||
1946 | RDEPENDS_${PN}-module-pod-simple-transcodedumb += "${PN}-module-strict" | 2048 | RDEPENDS_${PN}-module-pod-simple-transcodedumb += "${PN}-module-strict" |
1947 | RDEPENDS_${PN}-module-pod-simple-transcodedumb += "${PN}-module-vars" | 2049 | RDEPENDS_${PN}-module-pod-simple-transcodedumb += "${PN}-module-vars" |
2050 | RDEPENDS_${PN}-module-pod-simple-transcode += "${PN}-module-vars" | ||
1948 | RDEPENDS_${PN}-module-pod-simple-transcodesmart += "${PN}-module-encode" | 2051 | RDEPENDS_${PN}-module-pod-simple-transcodesmart += "${PN}-module-encode" |
1949 | RDEPENDS_${PN}-module-pod-simple-transcodesmart += "${PN}-module-pod-simple" | 2052 | RDEPENDS_${PN}-module-pod-simple-transcodesmart += "${PN}-module-pod-simple" |
1950 | RDEPENDS_${PN}-module-pod-simple-transcodesmart += "${PN}-module-strict" | 2053 | RDEPENDS_${PN}-module-pod-simple-transcodesmart += "${PN}-module-strict" |
@@ -1953,12 +2056,6 @@ RDEPENDS_${PN}-module-pod-simple-xmloutstream += "${PN}-module-carp" | |||
1953 | RDEPENDS_${PN}-module-pod-simple-xmloutstream += "${PN}-module-pod-simple" | 2056 | RDEPENDS_${PN}-module-pod-simple-xmloutstream += "${PN}-module-pod-simple" |
1954 | RDEPENDS_${PN}-module-pod-simple-xmloutstream += "${PN}-module-strict" | 2057 | RDEPENDS_${PN}-module-pod-simple-xmloutstream += "${PN}-module-strict" |
1955 | RDEPENDS_${PN}-module-pod-simple-xmloutstream += "${PN}-module-vars" | 2058 | RDEPENDS_${PN}-module-pod-simple-xmloutstream += "${PN}-module-vars" |
1956 | RDEPENDS_${PN}-module-pod-text += "${PN}-module-carp" | ||
1957 | RDEPENDS_${PN}-module-pod-text += "${PN}-module-encode" | ||
1958 | RDEPENDS_${PN}-module-pod-text += "${PN}-module-exporter" | ||
1959 | RDEPENDS_${PN}-module-pod-text += "${PN}-module-pod-simple" | ||
1960 | RDEPENDS_${PN}-module-pod-text += "${PN}-module-strict" | ||
1961 | RDEPENDS_${PN}-module-pod-text += "${PN}-module-vars" | ||
1962 | RDEPENDS_${PN}-module-pod-text-color += "${PN}-module-pod-text" | 2059 | RDEPENDS_${PN}-module-pod-text-color += "${PN}-module-pod-text" |
1963 | RDEPENDS_${PN}-module-pod-text-color += "${PN}-module-strict" | 2060 | RDEPENDS_${PN}-module-pod-text-color += "${PN}-module-strict" |
1964 | RDEPENDS_${PN}-module-pod-text-color += "${PN}-module-term-ansicolor" | 2061 | RDEPENDS_${PN}-module-pod-text-color += "${PN}-module-term-ansicolor" |
@@ -1966,6 +2063,12 @@ RDEPENDS_${PN}-module-pod-text-color += "${PN}-module-vars" | |||
1966 | RDEPENDS_${PN}-module-pod-text-overstrike += "${PN}-module-pod-text" | 2063 | RDEPENDS_${PN}-module-pod-text-overstrike += "${PN}-module-pod-text" |
1967 | RDEPENDS_${PN}-module-pod-text-overstrike += "${PN}-module-strict" | 2064 | RDEPENDS_${PN}-module-pod-text-overstrike += "${PN}-module-strict" |
1968 | RDEPENDS_${PN}-module-pod-text-overstrike += "${PN}-module-vars" | 2065 | RDEPENDS_${PN}-module-pod-text-overstrike += "${PN}-module-vars" |
2066 | RDEPENDS_${PN}-module-pod-text += "${PN}-module-carp" | ||
2067 | RDEPENDS_${PN}-module-pod-text += "${PN}-module-encode" | ||
2068 | RDEPENDS_${PN}-module-pod-text += "${PN}-module-exporter" | ||
2069 | RDEPENDS_${PN}-module-pod-text += "${PN}-module-pod-simple" | ||
2070 | RDEPENDS_${PN}-module-pod-text += "${PN}-module-strict" | ||
2071 | RDEPENDS_${PN}-module-pod-text += "${PN}-module-vars" | ||
1969 | RDEPENDS_${PN}-module-pod-text-termcap += "${PN}-module-pod-text" | 2072 | RDEPENDS_${PN}-module-pod-text-termcap += "${PN}-module-pod-text" |
1970 | RDEPENDS_${PN}-module-pod-text-termcap += "${PN}-module-posix" | 2073 | RDEPENDS_${PN}-module-pod-text-termcap += "${PN}-module-posix" |
1971 | RDEPENDS_${PN}-module-pod-text-termcap += "${PN}-module-strict" | 2074 | RDEPENDS_${PN}-module-pod-text-termcap += "${PN}-module-strict" |
@@ -1975,17 +2078,12 @@ RDEPENDS_${PN}-module-pod-usage += "${PN}-module-carp" | |||
1975 | RDEPENDS_${PN}-module-pod-usage += "${PN}-module-config" | 2078 | RDEPENDS_${PN}-module-pod-usage += "${PN}-module-config" |
1976 | RDEPENDS_${PN}-module-pod-usage += "${PN}-module-exporter" | 2079 | RDEPENDS_${PN}-module-pod-usage += "${PN}-module-exporter" |
1977 | RDEPENDS_${PN}-module-pod-usage += "${PN}-module-file-spec" | 2080 | RDEPENDS_${PN}-module-pod-usage += "${PN}-module-file-spec" |
1978 | RDEPENDS_${PN}-module-pod-usage += "${PN}-module-pod-plaintext" | ||
1979 | RDEPENDS_${PN}-module-pod-usage += "${PN}-module-pod-select" | ||
1980 | RDEPENDS_${PN}-module-pod-usage += "${PN}-module-pod-text" | ||
1981 | RDEPENDS_${PN}-module-pod-usage += "${PN}-module-strict" | 2081 | RDEPENDS_${PN}-module-pod-usage += "${PN}-module-strict" |
1982 | RDEPENDS_${PN}-module-pod-usage += "${PN}-module-vars" | 2082 | RDEPENDS_${PN}-module-pod-usage += "${PN}-module-vars" |
1983 | RDEPENDS_${PN}-module-posix += "${PN}-module-autoloader" | ||
1984 | RDEPENDS_${PN}-module-posix += "${PN}-module-exporter" | 2083 | RDEPENDS_${PN}-module-posix += "${PN}-module-exporter" |
1985 | RDEPENDS_${PN}-module-posix += "${PN}-module-fcntl" | 2084 | RDEPENDS_${PN}-module-posix += "${PN}-module-fcntl" |
1986 | RDEPENDS_${PN}-module-posix += "${PN}-module-strict" | 2085 | RDEPENDS_${PN}-module-posix += "${PN}-module-strict" |
1987 | RDEPENDS_${PN}-module-posix += "${PN}-module-tie-hash" | 2086 | RDEPENDS_${PN}-module-posix += "${PN}-module-tie-hash" |
1988 | RDEPENDS_${PN}-module-posix += "${PN}-module-vars" | ||
1989 | RDEPENDS_${PN}-module-posix += "${PN}-module-warnings" | 2087 | RDEPENDS_${PN}-module-posix += "${PN}-module-warnings" |
1990 | RDEPENDS_${PN}-module-posix += "${PN}-module-xsloader" | 2088 | RDEPENDS_${PN}-module-posix += "${PN}-module-xsloader" |
1991 | RDEPENDS_${PN}-module-re += "${PN}-module-carp" | 2089 | RDEPENDS_${PN}-module-re += "${PN}-module-carp" |
@@ -2004,20 +2102,14 @@ RDEPENDS_${PN}-module-safe += "${PN}-module-utf8" | |||
2004 | RDEPENDS_${PN}-module-scalar-util += "${PN}-module-carp" | 2102 | RDEPENDS_${PN}-module-scalar-util += "${PN}-module-carp" |
2005 | RDEPENDS_${PN}-module-scalar-util += "${PN}-module-exporter" | 2103 | RDEPENDS_${PN}-module-scalar-util += "${PN}-module-exporter" |
2006 | RDEPENDS_${PN}-module-scalar-util += "${PN}-module-list-util" | 2104 | RDEPENDS_${PN}-module-scalar-util += "${PN}-module-list-util" |
2007 | RDEPENDS_${PN}-module-scalar-util += "${PN}-module-scalar-util-pp" | ||
2008 | RDEPENDS_${PN}-module-scalar-util += "${PN}-module-strict" | 2105 | RDEPENDS_${PN}-module-scalar-util += "${PN}-module-strict" |
2009 | RDEPENDS_${PN}-module-scalar-util += "${PN}-module-vars" | 2106 | RDEPENDS_${PN}-module-sdbm-file += "${PN}-module-exporter" |
2010 | RDEPENDS_${PN}-module-scalar-util-pp += "${PN}-module-b" | ||
2011 | RDEPENDS_${PN}-module-scalar-util-pp += "${PN}-module-exporter" | ||
2012 | RDEPENDS_${PN}-module-scalar-util-pp += "${PN}-module-overload" | ||
2013 | RDEPENDS_${PN}-module-scalar-util-pp += "${PN}-module-strict" | ||
2014 | RDEPENDS_${PN}-module-scalar-util-pp += "${PN}-module-vars" | ||
2015 | RDEPENDS_${PN}-module-scalar-util-pp += "${PN}-module-warnings" | ||
2016 | RDEPENDS_${PN}-module-sdbm-file += "${PN}-module-strict" | 2107 | RDEPENDS_${PN}-module-sdbm-file += "${PN}-module-strict" |
2017 | RDEPENDS_${PN}-module-sdbm-file += "${PN}-module-tie-hash" | 2108 | RDEPENDS_${PN}-module-sdbm-file += "${PN}-module-tie-hash" |
2018 | RDEPENDS_${PN}-module-sdbm-file += "${PN}-module-warnings" | 2109 | RDEPENDS_${PN}-module-sdbm-file += "${PN}-module-warnings" |
2019 | RDEPENDS_${PN}-module-sdbm-file += "${PN}-module-xsloader" | 2110 | RDEPENDS_${PN}-module-sdbm-file += "${PN}-module-xsloader" |
2020 | RDEPENDS_${PN}-module-search-dict += "${PN}-module-exporter" | 2111 | RDEPENDS_${PN}-module-search-dict += "${PN}-module-exporter" |
2112 | RDEPENDS_${PN}-module-search-dict += "${PN}-module-feature" | ||
2021 | RDEPENDS_${PN}-module-search-dict += "${PN}-module-strict" | 2113 | RDEPENDS_${PN}-module-search-dict += "${PN}-module-strict" |
2022 | RDEPENDS_${PN}-module-selectsaver += "${PN}-module-carp" | 2114 | RDEPENDS_${PN}-module-selectsaver += "${PN}-module-carp" |
2023 | RDEPENDS_${PN}-module-selectsaver += "${PN}-module-symbol" | 2115 | RDEPENDS_${PN}-module-selectsaver += "${PN}-module-symbol" |
@@ -2025,11 +2117,6 @@ RDEPENDS_${PN}-module-selfloader += "${PN}-module-exporter" | |||
2025 | RDEPENDS_${PN}-module-selfloader += "${PN}-module-io-handle" | 2117 | RDEPENDS_${PN}-module-selfloader += "${PN}-module-io-handle" |
2026 | RDEPENDS_${PN}-module-selfloader += "${PN}-module-strict" | 2118 | RDEPENDS_${PN}-module-selfloader += "${PN}-module-strict" |
2027 | RDEPENDS_${PN}-module-selfloader += "${PN}-module-vars" | 2119 | RDEPENDS_${PN}-module-selfloader += "${PN}-module-vars" |
2028 | RDEPENDS_${PN}-module-shell += "${PN}-module-constant" | ||
2029 | RDEPENDS_${PN}-module-shell += "${PN}-module-file-spec-functions" | ||
2030 | RDEPENDS_${PN}-module-shell += "${PN}-module-if" | ||
2031 | RDEPENDS_${PN}-module-shell += "${PN}-module-strict" | ||
2032 | RDEPENDS_${PN}-module-shell += "${PN}-module-warnings" | ||
2033 | RDEPENDS_${PN}-module-sigtrap += "${PN}-module-carp" | 2120 | RDEPENDS_${PN}-module-sigtrap += "${PN}-module-carp" |
2034 | RDEPENDS_${PN}-module-sigtrap += "${PN}-module-symbol" | 2121 | RDEPENDS_${PN}-module-sigtrap += "${PN}-module-symbol" |
2035 | RDEPENDS_${PN}-module-socket += "${PN}-module-carp" | 2122 | RDEPENDS_${PN}-module-socket += "${PN}-module-carp" |
@@ -2065,135 +2152,120 @@ RDEPENDS_${PN}-module-sys-syslog += "${PN}-module-vars" | |||
2065 | RDEPENDS_${PN}-module-sys-syslog += "${PN}-module-warnings" | 2152 | RDEPENDS_${PN}-module-sys-syslog += "${PN}-module-warnings" |
2066 | RDEPENDS_${PN}-module-sys-syslog += "${PN}-module-warnings-register" | 2153 | RDEPENDS_${PN}-module-sys-syslog += "${PN}-module-warnings-register" |
2067 | RDEPENDS_${PN}-module-sys-syslog += "${PN}-module-xsloader" | 2154 | RDEPENDS_${PN}-module-sys-syslog += "${PN}-module-xsloader" |
2155 | RDEPENDS_${PN}-module-tap-base += "${PN}-module-base" | ||
2068 | RDEPENDS_${PN}-module-tap-base += "${PN}-module-constant" | 2156 | RDEPENDS_${PN}-module-tap-base += "${PN}-module-constant" |
2069 | RDEPENDS_${PN}-module-tap-base += "${PN}-module-strict" | 2157 | RDEPENDS_${PN}-module-tap-base += "${PN}-module-strict" |
2070 | RDEPENDS_${PN}-module-tap-base += "${PN}-module-tap-object" | 2158 | RDEPENDS_${PN}-module-tap-base += "${PN}-module-warnings" |
2071 | RDEPENDS_${PN}-module-tap-base += "${PN}-module-vars" | 2159 | RDEPENDS_${PN}-module-tap-formatter-base += "${PN}-module-base" |
2072 | RDEPENDS_${PN}-module-tap-formatter-base += "${PN}-module-posix" | 2160 | RDEPENDS_${PN}-module-tap-formatter-base += "${PN}-module-posix" |
2073 | RDEPENDS_${PN}-module-tap-formatter-base += "${PN}-module-strict" | 2161 | RDEPENDS_${PN}-module-tap-formatter-base += "${PN}-module-strict" |
2074 | RDEPENDS_${PN}-module-tap-formatter-base += "${PN}-module-tap-base" | ||
2075 | RDEPENDS_${PN}-module-tap-formatter-base += "${PN}-module-tap-formatter-color" | 2162 | RDEPENDS_${PN}-module-tap-formatter-base += "${PN}-module-tap-formatter-color" |
2076 | RDEPENDS_${PN}-module-tap-formatter-base += "${PN}-module-vars" | 2163 | RDEPENDS_${PN}-module-tap-formatter-base += "${PN}-module-warnings" |
2164 | RDEPENDS_${PN}-module-tap-formatter-color += "${PN}-module-base" | ||
2077 | RDEPENDS_${PN}-module-tap-formatter-color += "${PN}-module-constant" | 2165 | RDEPENDS_${PN}-module-tap-formatter-color += "${PN}-module-constant" |
2078 | RDEPENDS_${PN}-module-tap-formatter-color += "${PN}-module-strict" | 2166 | RDEPENDS_${PN}-module-tap-formatter-color += "${PN}-module-strict" |
2079 | RDEPENDS_${PN}-module-tap-formatter-color += "${PN}-module-vars" | 2167 | RDEPENDS_${PN}-module-tap-formatter-color += "${PN}-module-warnings" |
2080 | RDEPENDS_${PN}-module-tap-formatter-console += "${PN}-module-posix" | 2168 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-base" |
2081 | RDEPENDS_${PN}-module-tap-formatter-console += "${PN}-module-strict" | ||
2082 | RDEPENDS_${PN}-module-tap-formatter-console += "${PN}-module-tap-formatter-base" | ||
2083 | RDEPENDS_${PN}-module-tap-formatter-console += "${PN}-module-vars" | ||
2084 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-carp" | 2169 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-carp" |
2085 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-constant" | 2170 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-constant" |
2086 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-file-path" | 2171 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-file-path" |
2087 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-file-spec" | 2172 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-file-spec" |
2088 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-strict" | 2173 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-strict" |
2089 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-tap-formatter-console-session" | 2174 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-warnings" |
2090 | RDEPENDS_${PN}-module-tap-formatter-console-parallelsession += "${PN}-module-vars" | 2175 | RDEPENDS_${PN}-module-tap-formatter-console += "${PN}-module-base" |
2176 | RDEPENDS_${PN}-module-tap-formatter-console += "${PN}-module-posix" | ||
2177 | RDEPENDS_${PN}-module-tap-formatter-console += "${PN}-module-strict" | ||
2178 | RDEPENDS_${PN}-module-tap-formatter-console += "${PN}-module-warnings" | ||
2179 | RDEPENDS_${PN}-module-tap-formatter-console-session += "${PN}-module-base" | ||
2091 | RDEPENDS_${PN}-module-tap-formatter-console-session += "${PN}-module-strict" | 2180 | RDEPENDS_${PN}-module-tap-formatter-console-session += "${PN}-module-strict" |
2092 | RDEPENDS_${PN}-module-tap-formatter-console-session += "${PN}-module-tap-formatter-session" | 2181 | RDEPENDS_${PN}-module-tap-formatter-console-session += "${PN}-module-warnings" |
2093 | RDEPENDS_${PN}-module-tap-formatter-console-session += "${PN}-module-vars" | 2182 | RDEPENDS_${PN}-module-tap-formatter-file += "${PN}-module-base" |
2094 | RDEPENDS_${PN}-module-tap-formatter-file += "${PN}-module-posix" | 2183 | RDEPENDS_${PN}-module-tap-formatter-file += "${PN}-module-posix" |
2095 | RDEPENDS_${PN}-module-tap-formatter-file += "${PN}-module-strict" | 2184 | RDEPENDS_${PN}-module-tap-formatter-file += "${PN}-module-strict" |
2096 | RDEPENDS_${PN}-module-tap-formatter-file += "${PN}-module-tap-formatter-base" | ||
2097 | RDEPENDS_${PN}-module-tap-formatter-file += "${PN}-module-tap-formatter-file-session" | 2185 | RDEPENDS_${PN}-module-tap-formatter-file += "${PN}-module-tap-formatter-file-session" |
2098 | RDEPENDS_${PN}-module-tap-formatter-file += "${PN}-module-vars" | 2186 | RDEPENDS_${PN}-module-tap-formatter-file += "${PN}-module-warnings" |
2187 | RDEPENDS_${PN}-module-tap-formatter-file-session += "${PN}-module-base" | ||
2099 | RDEPENDS_${PN}-module-tap-formatter-file-session += "${PN}-module-strict" | 2188 | RDEPENDS_${PN}-module-tap-formatter-file-session += "${PN}-module-strict" |
2100 | RDEPENDS_${PN}-module-tap-formatter-file-session += "${PN}-module-tap-formatter-session" | 2189 | RDEPENDS_${PN}-module-tap-formatter-file-session += "${PN}-module-warnings" |
2101 | RDEPENDS_${PN}-module-tap-formatter-file-session += "${PN}-module-vars" | 2190 | RDEPENDS_${PN}-module-tap-formatter-session += "${PN}-module-base" |
2102 | RDEPENDS_${PN}-module-tap-formatter-session += "${PN}-module-strict" | 2191 | RDEPENDS_${PN}-module-tap-formatter-session += "${PN}-module-strict" |
2103 | RDEPENDS_${PN}-module-tap-formatter-session += "${PN}-module-tap-base" | 2192 | RDEPENDS_${PN}-module-tap-formatter-session += "${PN}-module-warnings" |
2104 | RDEPENDS_${PN}-module-tap-formatter-session += "${PN}-module-vars" | 2193 | RDEPENDS_${PN}-module-tap-harness-env += "${PN}-module-constant" |
2194 | RDEPENDS_${PN}-module-tap-harness-env += "${PN}-module-strict" | ||
2195 | RDEPENDS_${PN}-module-tap-harness-env += "${PN}-module-tap-object" | ||
2196 | RDEPENDS_${PN}-module-tap-harness-env += "${PN}-module-text-parsewords" | ||
2197 | RDEPENDS_${PN}-module-tap-harness-env += "${PN}-module-warnings" | ||
2198 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-base" | ||
2105 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-carp" | 2199 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-carp" |
2106 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-file-path" | 2200 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-file-path" |
2107 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-file-spec" | 2201 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-file-spec" |
2108 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-io-handle" | 2202 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-io-handle" |
2109 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-strict" | 2203 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-strict" |
2110 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-tap-base" | 2204 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-warnings" |
2111 | RDEPENDS_${PN}-module-tap-harness += "${PN}-module-vars" | ||
2112 | RDEPENDS_${PN}-module-tap-object += "${PN}-module-carp" | 2205 | RDEPENDS_${PN}-module-tap-object += "${PN}-module-carp" |
2113 | RDEPENDS_${PN}-module-tap-object += "${PN}-module-strict" | 2206 | RDEPENDS_${PN}-module-tap-object += "${PN}-module-strict" |
2114 | RDEPENDS_${PN}-module-tap-object += "${PN}-module-vars" | 2207 | RDEPENDS_${PN}-module-tap-object += "${PN}-module-warnings" |
2115 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-carp" | 2208 | RDEPENDS_${PN}-module-tap-parser-aggregator += "${PN}-module-base" |
2116 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-strict" | ||
2117 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-base" | ||
2118 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-grammar" | ||
2119 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-iterator" | ||
2120 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-iteratorfactory" | ||
2121 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-result" | ||
2122 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-resultfactory" | ||
2123 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-source" | ||
2124 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-sourcehandler-executable" | ||
2125 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-sourcehandler-file" | ||
2126 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-sourcehandler-handle" | ||
2127 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-sourcehandler-perl" | ||
2128 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-sourcehandler-rawtap" | ||
2129 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-vars" | ||
2130 | RDEPENDS_${PN}-module-tap-parser-aggregator += "${PN}-module-benchmark" | 2209 | RDEPENDS_${PN}-module-tap-parser-aggregator += "${PN}-module-benchmark" |
2131 | RDEPENDS_${PN}-module-tap-parser-aggregator += "${PN}-module-carp" | 2210 | RDEPENDS_${PN}-module-tap-parser-aggregator += "${PN}-module-carp" |
2132 | RDEPENDS_${PN}-module-tap-parser-aggregator += "${PN}-module-strict" | 2211 | RDEPENDS_${PN}-module-tap-parser-aggregator += "${PN}-module-strict" |
2133 | RDEPENDS_${PN}-module-tap-parser-aggregator += "${PN}-module-tap-object" | 2212 | RDEPENDS_${PN}-module-tap-parser-aggregator += "${PN}-module-warnings" |
2134 | RDEPENDS_${PN}-module-tap-parser-aggregator += "${PN}-module-vars" | 2213 | RDEPENDS_${PN}-module-tap-parser-grammar += "${PN}-module-base" |
2135 | RDEPENDS_${PN}-module-tap-parser-grammar += "${PN}-module-carp" | 2214 | RDEPENDS_${PN}-module-tap-parser-grammar += "${PN}-module-carp" |
2136 | RDEPENDS_${PN}-module-tap-parser-grammar += "${PN}-module-strict" | 2215 | RDEPENDS_${PN}-module-tap-parser-grammar += "${PN}-module-strict" |
2137 | RDEPENDS_${PN}-module-tap-parser-grammar += "${PN}-module-tap-object" | ||
2138 | RDEPENDS_${PN}-module-tap-parser-grammar += "${PN}-module-tap-parser-resultfactory" | 2216 | RDEPENDS_${PN}-module-tap-parser-grammar += "${PN}-module-tap-parser-resultfactory" |
2139 | RDEPENDS_${PN}-module-tap-parser-grammar += "${PN}-module-tap-parser-yamlish-reader" | 2217 | RDEPENDS_${PN}-module-tap-parser-grammar += "${PN}-module-tap-parser-yamlish-reader" |
2140 | RDEPENDS_${PN}-module-tap-parser-grammar += "${PN}-module-vars" | 2218 | RDEPENDS_${PN}-module-tap-parser-grammar += "${PN}-module-warnings" |
2219 | RDEPENDS_${PN}-module-tap-parser-iterator-array += "${PN}-module-base" | ||
2220 | RDEPENDS_${PN}-module-tap-parser-iterator-array += "${PN}-module-strict" | ||
2221 | RDEPENDS_${PN}-module-tap-parser-iterator-array += "${PN}-module-warnings" | ||
2222 | RDEPENDS_${PN}-module-tap-parser-iteratorfactory += "${PN}-module-base" | ||
2223 | RDEPENDS_${PN}-module-tap-parser-iteratorfactory += "${PN}-module-carp" | ||
2224 | RDEPENDS_${PN}-module-tap-parser-iteratorfactory += "${PN}-module-constant" | ||
2225 | RDEPENDS_${PN}-module-tap-parser-iteratorfactory += "${PN}-module-file-basename" | ||
2226 | RDEPENDS_${PN}-module-tap-parser-iteratorfactory += "${PN}-module-strict" | ||
2227 | RDEPENDS_${PN}-module-tap-parser-iteratorfactory += "${PN}-module-warnings" | ||
2228 | RDEPENDS_${PN}-module-tap-parser-iterator += "${PN}-module-base" | ||
2141 | RDEPENDS_${PN}-module-tap-parser-iterator += "${PN}-module-carp" | 2229 | RDEPENDS_${PN}-module-tap-parser-iterator += "${PN}-module-carp" |
2142 | RDEPENDS_${PN}-module-tap-parser-iterator += "${PN}-module-strict" | 2230 | RDEPENDS_${PN}-module-tap-parser-iterator += "${PN}-module-strict" |
2143 | RDEPENDS_${PN}-module-tap-parser-iterator += "${PN}-module-tap-object" | 2231 | RDEPENDS_${PN}-module-tap-parser-iterator += "${PN}-module-warnings" |
2144 | RDEPENDS_${PN}-module-tap-parser-iterator += "${PN}-module-vars" | 2232 | RDEPENDS_${PN}-module-tap-parser-iterator-process += "${PN}-module-base" |
2145 | RDEPENDS_${PN}-module-tap-parser-iterator-array += "${PN}-module-strict" | ||
2146 | RDEPENDS_${PN}-module-tap-parser-iterator-array += "${PN}-module-tap-parser-iterator" | ||
2147 | RDEPENDS_${PN}-module-tap-parser-iterator-array += "${PN}-module-vars" | ||
2148 | RDEPENDS_${PN}-module-tap-parser-iterator-process += "${PN}-module-config" | 2233 | RDEPENDS_${PN}-module-tap-parser-iterator-process += "${PN}-module-config" |
2149 | RDEPENDS_${PN}-module-tap-parser-iterator-process += "${PN}-module-io-handle" | 2234 | RDEPENDS_${PN}-module-tap-parser-iterator-process += "${PN}-module-io-handle" |
2150 | RDEPENDS_${PN}-module-tap-parser-iterator-process += "${PN}-module-strict" | 2235 | RDEPENDS_${PN}-module-tap-parser-iterator-process += "${PN}-module-strict" |
2151 | RDEPENDS_${PN}-module-tap-parser-iterator-process += "${PN}-module-tap-parser-iterator" | 2236 | RDEPENDS_${PN}-module-tap-parser-iterator-process += "${PN}-module-warnings" |
2152 | RDEPENDS_${PN}-module-tap-parser-iterator-process += "${PN}-module-vars" | 2237 | RDEPENDS_${PN}-module-tap-parser-iterator-stream += "${PN}-module-base" |
2153 | RDEPENDS_${PN}-module-tap-parser-iterator-stream += "${PN}-module-strict" | 2238 | RDEPENDS_${PN}-module-tap-parser-iterator-stream += "${PN}-module-strict" |
2154 | RDEPENDS_${PN}-module-tap-parser-iterator-stream += "${PN}-module-tap-parser-iterator" | 2239 | RDEPENDS_${PN}-module-tap-parser-iterator-stream += "${PN}-module-warnings" |
2155 | RDEPENDS_${PN}-module-tap-parser-iterator-stream += "${PN}-module-vars" | 2240 | RDEPENDS_${PN}-module-tap-parser-multiplexer += "${PN}-module-base" |
2156 | RDEPENDS_${PN}-module-tap-parser-iteratorfactory += "${PN}-module-carp" | ||
2157 | RDEPENDS_${PN}-module-tap-parser-iteratorfactory += "${PN}-module-constant" | ||
2158 | RDEPENDS_${PN}-module-tap-parser-iteratorfactory += "${PN}-module-file-basename" | ||
2159 | RDEPENDS_${PN}-module-tap-parser-iteratorfactory += "${PN}-module-strict" | ||
2160 | RDEPENDS_${PN}-module-tap-parser-iteratorfactory += "${PN}-module-tap-object" | ||
2161 | RDEPENDS_${PN}-module-tap-parser-iteratorfactory += "${PN}-module-vars" | ||
2162 | RDEPENDS_${PN}-module-tap-parser-multiplexer += "${PN}-module-constant" | 2241 | RDEPENDS_${PN}-module-tap-parser-multiplexer += "${PN}-module-constant" |
2163 | RDEPENDS_${PN}-module-tap-parser-multiplexer += "${PN}-module-io-select" | 2242 | RDEPENDS_${PN}-module-tap-parser-multiplexer += "${PN}-module-io-select" |
2164 | RDEPENDS_${PN}-module-tap-parser-multiplexer += "${PN}-module-strict" | 2243 | RDEPENDS_${PN}-module-tap-parser-multiplexer += "${PN}-module-strict" |
2165 | RDEPENDS_${PN}-module-tap-parser-multiplexer += "${PN}-module-tap-object" | 2244 | RDEPENDS_${PN}-module-tap-parser-multiplexer += "${PN}-module-warnings" |
2166 | RDEPENDS_${PN}-module-tap-parser-multiplexer += "${PN}-module-vars" | 2245 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-base" |
2167 | RDEPENDS_${PN}-module-tap-parser-result += "${PN}-module-strict" | 2246 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-carp" |
2168 | RDEPENDS_${PN}-module-tap-parser-result += "${PN}-module-tap-object" | 2247 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-strict" |
2169 | RDEPENDS_${PN}-module-tap-parser-result += "${PN}-module-vars" | 2248 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-grammar" |
2249 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-iterator" | ||
2250 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-iteratorfactory" | ||
2251 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-result" | ||
2252 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-resultfactory" | ||
2253 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-source" | ||
2254 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-sourcehandler-executable" | ||
2255 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-sourcehandler-file" | ||
2256 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-sourcehandler-handle" | ||
2257 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-sourcehandler-perl" | ||
2258 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-tap-parser-sourcehandler-rawtap" | ||
2259 | RDEPENDS_${PN}-module-tap-parser += "${PN}-module-warnings" | ||
2260 | RDEPENDS_${PN}-module-tap-parser-result-bailout += "${PN}-module-base" | ||
2170 | RDEPENDS_${PN}-module-tap-parser-result-bailout += "${PN}-module-strict" | 2261 | RDEPENDS_${PN}-module-tap-parser-result-bailout += "${PN}-module-strict" |
2171 | RDEPENDS_${PN}-module-tap-parser-result-bailout += "${PN}-module-tap-parser-result" | 2262 | RDEPENDS_${PN}-module-tap-parser-result-bailout += "${PN}-module-warnings" |
2172 | RDEPENDS_${PN}-module-tap-parser-result-bailout += "${PN}-module-vars" | 2263 | RDEPENDS_${PN}-module-tap-parser-result-comment += "${PN}-module-base" |
2173 | RDEPENDS_${PN}-module-tap-parser-result-comment += "${PN}-module-strict" | 2264 | RDEPENDS_${PN}-module-tap-parser-result-comment += "${PN}-module-strict" |
2174 | RDEPENDS_${PN}-module-tap-parser-result-comment += "${PN}-module-tap-parser-result" | 2265 | RDEPENDS_${PN}-module-tap-parser-result-comment += "${PN}-module-warnings" |
2175 | RDEPENDS_${PN}-module-tap-parser-result-comment += "${PN}-module-vars" | 2266 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-base" |
2176 | RDEPENDS_${PN}-module-tap-parser-result-plan += "${PN}-module-strict" | ||
2177 | RDEPENDS_${PN}-module-tap-parser-result-plan += "${PN}-module-tap-parser-result" | ||
2178 | RDEPENDS_${PN}-module-tap-parser-result-plan += "${PN}-module-vars" | ||
2179 | RDEPENDS_${PN}-module-tap-parser-result-pragma += "${PN}-module-strict" | ||
2180 | RDEPENDS_${PN}-module-tap-parser-result-pragma += "${PN}-module-tap-parser-result" | ||
2181 | RDEPENDS_${PN}-module-tap-parser-result-pragma += "${PN}-module-vars" | ||
2182 | RDEPENDS_${PN}-module-tap-parser-result-test += "${PN}-module-strict" | ||
2183 | RDEPENDS_${PN}-module-tap-parser-result-test += "${PN}-module-tap-parser-result" | ||
2184 | RDEPENDS_${PN}-module-tap-parser-result-test += "${PN}-module-vars" | ||
2185 | RDEPENDS_${PN}-module-tap-parser-result-unknown += "${PN}-module-strict" | ||
2186 | RDEPENDS_${PN}-module-tap-parser-result-unknown += "${PN}-module-tap-parser-result" | ||
2187 | RDEPENDS_${PN}-module-tap-parser-result-unknown += "${PN}-module-vars" | ||
2188 | RDEPENDS_${PN}-module-tap-parser-result-version += "${PN}-module-strict" | ||
2189 | RDEPENDS_${PN}-module-tap-parser-result-version += "${PN}-module-tap-parser-result" | ||
2190 | RDEPENDS_${PN}-module-tap-parser-result-version += "${PN}-module-vars" | ||
2191 | RDEPENDS_${PN}-module-tap-parser-result-yaml += "${PN}-module-strict" | ||
2192 | RDEPENDS_${PN}-module-tap-parser-result-yaml += "${PN}-module-tap-parser-result" | ||
2193 | RDEPENDS_${PN}-module-tap-parser-result-yaml += "${PN}-module-vars" | ||
2194 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-carp" | 2267 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-carp" |
2195 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-strict" | 2268 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-strict" |
2196 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-object" | ||
2197 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-parser-result-bailout" | 2269 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-parser-result-bailout" |
2198 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-parser-result-comment" | 2270 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-parser-result-comment" |
2199 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-parser-result-plan" | 2271 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-parser-result-plan" |
@@ -2202,70 +2274,89 @@ RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-parser-resul | |||
2202 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-parser-result-unknown" | 2274 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-parser-result-unknown" |
2203 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-parser-result-version" | 2275 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-parser-result-version" |
2204 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-parser-result-yaml" | 2276 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-tap-parser-result-yaml" |
2205 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-vars" | 2277 | RDEPENDS_${PN}-module-tap-parser-resultfactory += "${PN}-module-warnings" |
2278 | RDEPENDS_${PN}-module-tap-parser-result += "${PN}-module-base" | ||
2279 | RDEPENDS_${PN}-module-tap-parser-result += "${PN}-module-strict" | ||
2280 | RDEPENDS_${PN}-module-tap-parser-result += "${PN}-module-warnings" | ||
2281 | RDEPENDS_${PN}-module-tap-parser-result-plan += "${PN}-module-base" | ||
2282 | RDEPENDS_${PN}-module-tap-parser-result-plan += "${PN}-module-strict" | ||
2283 | RDEPENDS_${PN}-module-tap-parser-result-plan += "${PN}-module-warnings" | ||
2284 | RDEPENDS_${PN}-module-tap-parser-result-pragma += "${PN}-module-base" | ||
2285 | RDEPENDS_${PN}-module-tap-parser-result-pragma += "${PN}-module-strict" | ||
2286 | RDEPENDS_${PN}-module-tap-parser-result-pragma += "${PN}-module-warnings" | ||
2287 | RDEPENDS_${PN}-module-tap-parser-result-test += "${PN}-module-base" | ||
2288 | RDEPENDS_${PN}-module-tap-parser-result-test += "${PN}-module-strict" | ||
2289 | RDEPENDS_${PN}-module-tap-parser-result-test += "${PN}-module-warnings" | ||
2290 | RDEPENDS_${PN}-module-tap-parser-result-unknown += "${PN}-module-base" | ||
2291 | RDEPENDS_${PN}-module-tap-parser-result-unknown += "${PN}-module-strict" | ||
2292 | RDEPENDS_${PN}-module-tap-parser-result-unknown += "${PN}-module-warnings" | ||
2293 | RDEPENDS_${PN}-module-tap-parser-result-version += "${PN}-module-base" | ||
2294 | RDEPENDS_${PN}-module-tap-parser-result-version += "${PN}-module-strict" | ||
2295 | RDEPENDS_${PN}-module-tap-parser-result-version += "${PN}-module-warnings" | ||
2296 | RDEPENDS_${PN}-module-tap-parser-result-yaml += "${PN}-module-base" | ||
2297 | RDEPENDS_${PN}-module-tap-parser-result-yaml += "${PN}-module-strict" | ||
2298 | RDEPENDS_${PN}-module-tap-parser-result-yaml += "${PN}-module-warnings" | ||
2299 | RDEPENDS_${PN}-module-tap-parser-scheduler-job += "${PN}-module-carp" | ||
2300 | RDEPENDS_${PN}-module-tap-parser-scheduler-job += "${PN}-module-strict" | ||
2301 | RDEPENDS_${PN}-module-tap-parser-scheduler-job += "${PN}-module-warnings" | ||
2206 | RDEPENDS_${PN}-module-tap-parser-scheduler += "${PN}-module-carp" | 2302 | RDEPENDS_${PN}-module-tap-parser-scheduler += "${PN}-module-carp" |
2207 | RDEPENDS_${PN}-module-tap-parser-scheduler += "${PN}-module-strict" | 2303 | RDEPENDS_${PN}-module-tap-parser-scheduler += "${PN}-module-strict" |
2208 | RDEPENDS_${PN}-module-tap-parser-scheduler += "${PN}-module-tap-parser-scheduler-job" | 2304 | RDEPENDS_${PN}-module-tap-parser-scheduler += "${PN}-module-tap-parser-scheduler-job" |
2209 | RDEPENDS_${PN}-module-tap-parser-scheduler += "${PN}-module-tap-parser-scheduler-spinner" | 2305 | RDEPENDS_${PN}-module-tap-parser-scheduler += "${PN}-module-tap-parser-scheduler-spinner" |
2210 | RDEPENDS_${PN}-module-tap-parser-scheduler += "${PN}-module-vars" | 2306 | RDEPENDS_${PN}-module-tap-parser-scheduler += "${PN}-module-warnings" |
2211 | RDEPENDS_${PN}-module-tap-parser-scheduler-job += "${PN}-module-carp" | ||
2212 | RDEPENDS_${PN}-module-tap-parser-scheduler-job += "${PN}-module-strict" | ||
2213 | RDEPENDS_${PN}-module-tap-parser-scheduler-job += "${PN}-module-vars" | ||
2214 | RDEPENDS_${PN}-module-tap-parser-scheduler-spinner += "${PN}-module-carp" | 2307 | RDEPENDS_${PN}-module-tap-parser-scheduler-spinner += "${PN}-module-carp" |
2215 | RDEPENDS_${PN}-module-tap-parser-scheduler-spinner += "${PN}-module-strict" | 2308 | RDEPENDS_${PN}-module-tap-parser-scheduler-spinner += "${PN}-module-strict" |
2216 | RDEPENDS_${PN}-module-tap-parser-scheduler-spinner += "${PN}-module-vars" | 2309 | RDEPENDS_${PN}-module-tap-parser-scheduler-spinner += "${PN}-module-warnings" |
2217 | RDEPENDS_${PN}-module-tap-parser-source += "${PN}-module-file-basename" | 2310 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-executable += "${PN}-module-base" |
2218 | RDEPENDS_${PN}-module-tap-parser-source += "${PN}-module-strict" | ||
2219 | RDEPENDS_${PN}-module-tap-parser-source += "${PN}-module-tap-object" | ||
2220 | RDEPENDS_${PN}-module-tap-parser-source += "${PN}-module-vars" | ||
2221 | RDEPENDS_${PN}-module-tap-parser-sourcehandler += "${PN}-module-strict" | ||
2222 | RDEPENDS_${PN}-module-tap-parser-sourcehandler += "${PN}-module-tap-object" | ||
2223 | RDEPENDS_${PN}-module-tap-parser-sourcehandler += "${PN}-module-tap-parser-iterator" | ||
2224 | RDEPENDS_${PN}-module-tap-parser-sourcehandler += "${PN}-module-vars" | ||
2225 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-executable += "${PN}-module-constant" | 2311 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-executable += "${PN}-module-constant" |
2226 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-executable += "${PN}-module-strict" | 2312 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-executable += "${PN}-module-strict" |
2227 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-executable += "${PN}-module-tap-parser-iterator-process" | ||
2228 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-executable += "${PN}-module-tap-parser-iteratorfactory" | 2313 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-executable += "${PN}-module-tap-parser-iteratorfactory" |
2229 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-executable += "${PN}-module-tap-parser-sourcehandler" | 2314 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-executable += "${PN}-module-tap-parser-iterator-process" |
2230 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-executable += "${PN}-module-vars" | 2315 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-executable += "${PN}-module-warnings" |
2316 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-file += "${PN}-module-base" | ||
2231 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-file += "${PN}-module-constant" | 2317 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-file += "${PN}-module-constant" |
2232 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-file += "${PN}-module-strict" | 2318 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-file += "${PN}-module-strict" |
2233 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-file += "${PN}-module-tap-parser-iterator-stream" | ||
2234 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-file += "${PN}-module-tap-parser-iteratorfactory" | 2319 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-file += "${PN}-module-tap-parser-iteratorfactory" |
2235 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-file += "${PN}-module-tap-parser-sourcehandler" | 2320 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-file += "${PN}-module-tap-parser-iterator-stream" |
2236 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-file += "${PN}-module-vars" | 2321 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-file += "${PN}-module-warnings" |
2322 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-handle += "${PN}-module-base" | ||
2237 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-handle += "${PN}-module-constant" | 2323 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-handle += "${PN}-module-constant" |
2238 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-handle += "${PN}-module-strict" | 2324 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-handle += "${PN}-module-strict" |
2239 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-handle += "${PN}-module-tap-parser-iterator-stream" | ||
2240 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-handle += "${PN}-module-tap-parser-iteratorfactory" | 2325 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-handle += "${PN}-module-tap-parser-iteratorfactory" |
2241 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-handle += "${PN}-module-tap-parser-sourcehandler" | 2326 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-handle += "${PN}-module-tap-parser-iterator-stream" |
2242 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-handle += "${PN}-module-vars" | 2327 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-handle += "${PN}-module-warnings" |
2328 | RDEPENDS_${PN}-module-tap-parser-sourcehandler += "${PN}-module-base" | ||
2329 | RDEPENDS_${PN}-module-tap-parser-sourcehandler += "${PN}-module-strict" | ||
2330 | RDEPENDS_${PN}-module-tap-parser-sourcehandler += "${PN}-module-tap-parser-iterator" | ||
2331 | RDEPENDS_${PN}-module-tap-parser-sourcehandler += "${PN}-module-warnings" | ||
2332 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-base" | ||
2243 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-config" | 2333 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-config" |
2244 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-constant" | 2334 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-constant" |
2245 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-strict" | 2335 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-strict" |
2246 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-tap-parser-iterator-process" | ||
2247 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-tap-parser-iteratorfactory" | 2336 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-tap-parser-iteratorfactory" |
2248 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-tap-parser-sourcehandler-executable" | 2337 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-tap-parser-iterator-process" |
2249 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-tap-parser-utils" | 2338 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-text-parsewords" |
2250 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-vars" | 2339 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-perl += "${PN}-module-warnings" |
2340 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-rawtap += "${PN}-module-base" | ||
2251 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-rawtap += "${PN}-module-strict" | 2341 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-rawtap += "${PN}-module-strict" |
2252 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-rawtap += "${PN}-module-tap-parser-iterator-array" | 2342 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-rawtap += "${PN}-module-tap-parser-iterator-array" |
2253 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-rawtap += "${PN}-module-tap-parser-iteratorfactory" | 2343 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-rawtap += "${PN}-module-tap-parser-iteratorfactory" |
2254 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-rawtap += "${PN}-module-tap-parser-sourcehandler" | 2344 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-rawtap += "${PN}-module-warnings" |
2255 | RDEPENDS_${PN}-module-tap-parser-sourcehandler-rawtap += "${PN}-module-vars" | 2345 | RDEPENDS_${PN}-module-tap-parser-source += "${PN}-module-base" |
2256 | RDEPENDS_${PN}-module-tap-parser-utils += "${PN}-module-exporter" | 2346 | RDEPENDS_${PN}-module-tap-parser-source += "${PN}-module-constant" |
2257 | RDEPENDS_${PN}-module-tap-parser-utils += "${PN}-module-strict" | 2347 | RDEPENDS_${PN}-module-tap-parser-source += "${PN}-module-file-basename" |
2258 | RDEPENDS_${PN}-module-tap-parser-utils += "${PN}-module-vars" | 2348 | RDEPENDS_${PN}-module-tap-parser-source += "${PN}-module-strict" |
2349 | RDEPENDS_${PN}-module-tap-parser-source += "${PN}-module-warnings" | ||
2350 | RDEPENDS_${PN}-module-tap-parser-yamlish-reader += "${PN}-module-base" | ||
2259 | RDEPENDS_${PN}-module-tap-parser-yamlish-reader += "${PN}-module-strict" | 2351 | RDEPENDS_${PN}-module-tap-parser-yamlish-reader += "${PN}-module-strict" |
2260 | RDEPENDS_${PN}-module-tap-parser-yamlish-reader += "${PN}-module-tap-object" | 2352 | RDEPENDS_${PN}-module-tap-parser-yamlish-reader += "${PN}-module-warnings" |
2261 | RDEPENDS_${PN}-module-tap-parser-yamlish-reader += "${PN}-module-vars" | 2353 | RDEPENDS_${PN}-module-tap-parser-yamlish-writer += "${PN}-module-base" |
2262 | RDEPENDS_${PN}-module-tap-parser-yamlish-writer += "${PN}-module-strict" | 2354 | RDEPENDS_${PN}-module-tap-parser-yamlish-writer += "${PN}-module-strict" |
2263 | RDEPENDS_${PN}-module-tap-parser-yamlish-writer += "${PN}-module-tap-object" | 2355 | RDEPENDS_${PN}-module-tap-parser-yamlish-writer += "${PN}-module-warnings" |
2264 | RDEPENDS_${PN}-module-tap-parser-yamlish-writer += "${PN}-module-vars" | ||
2265 | RDEPENDS_${PN}-module-term-ansicolor += "${PN}-module-carp" | 2356 | RDEPENDS_${PN}-module-term-ansicolor += "${PN}-module-carp" |
2266 | RDEPENDS_${PN}-module-term-ansicolor += "${PN}-module-exporter" | 2357 | RDEPENDS_${PN}-module-term-ansicolor += "${PN}-module-exporter" |
2267 | RDEPENDS_${PN}-module-term-ansicolor += "${PN}-module-strict" | 2358 | RDEPENDS_${PN}-module-term-ansicolor += "${PN}-module-strict" |
2268 | RDEPENDS_${PN}-module-term-ansicolor += "${PN}-module-vars" | 2359 | RDEPENDS_${PN}-module-term-ansicolor += "${PN}-module-warnings" |
2269 | RDEPENDS_${PN}-module-term-cap += "${PN}-module-carp" | 2360 | RDEPENDS_${PN}-module-term-cap += "${PN}-module-carp" |
2270 | RDEPENDS_${PN}-module-term-cap += "${PN}-module-strict" | 2361 | RDEPENDS_${PN}-module-term-cap += "${PN}-module-strict" |
2271 | RDEPENDS_${PN}-module-term-cap += "${PN}-module-vars" | 2362 | RDEPENDS_${PN}-module-term-cap += "${PN}-module-vars" |
@@ -2273,51 +2364,41 @@ RDEPENDS_${PN}-module-term-complete += "${PN}-module-exporter" | |||
2273 | RDEPENDS_${PN}-module-term-complete += "${PN}-module-strict" | 2364 | RDEPENDS_${PN}-module-term-complete += "${PN}-module-strict" |
2274 | RDEPENDS_${PN}-module-term-readline += "${PN}-module-strict" | 2365 | RDEPENDS_${PN}-module-term-readline += "${PN}-module-strict" |
2275 | RDEPENDS_${PN}-module-term-readline += "${PN}-module-term-cap" | 2366 | RDEPENDS_${PN}-module-term-readline += "${PN}-module-term-cap" |
2276 | RDEPENDS_${PN}-module-term-ui += "${PN}-module-carp" | 2367 | RDEPENDS_${PN}-module-test-builder-module += "${PN}-module-exporter" |
2277 | RDEPENDS_${PN}-module-term-ui += "${PN}-module-locale-maketext-simple" | 2368 | RDEPENDS_${PN}-module-test-builder-module += "${PN}-module-strict" |
2278 | RDEPENDS_${PN}-module-term-ui += "${PN}-module-params-check" | 2369 | RDEPENDS_${PN}-module-test-builder-module += "${PN}-module-test-builder" |
2279 | RDEPENDS_${PN}-module-term-ui += "${PN}-module-strict" | ||
2280 | RDEPENDS_${PN}-module-term-ui += "${PN}-module-term-readline" | ||
2281 | RDEPENDS_${PN}-module-term-ui += "${PN}-module-term-ui-history" | ||
2282 | RDEPENDS_${PN}-module-term-ui += "${PN}-module-vars" | ||
2283 | RDEPENDS_${PN}-module-term-ui-history += "${PN}-module-base" | ||
2284 | RDEPENDS_${PN}-module-term-ui-history += "${PN}-module-log-message" | ||
2285 | RDEPENDS_${PN}-module-term-ui-history += "${PN}-module-strict" | ||
2286 | RDEPENDS_${PN}-module-term-ui-history += "${PN}-module-vars" | ||
2287 | RDEPENDS_${PN}-module-test += "${PN}-module-carp" | ||
2288 | RDEPENDS_${PN}-module-test += "${PN}-module-exporter" | ||
2289 | RDEPENDS_${PN}-module-test += "${PN}-module-file-temp" | ||
2290 | RDEPENDS_${PN}-module-test += "${PN}-module-strict" | ||
2291 | RDEPENDS_${PN}-module-test += "${PN}-module-vars" | ||
2292 | RDEPENDS_${PN}-module-test-builder += "${PN}-module-config" | 2370 | RDEPENDS_${PN}-module-test-builder += "${PN}-module-config" |
2293 | RDEPENDS_${PN}-module-test-builder += "${PN}-module-perlio" | 2371 | RDEPENDS_${PN}-module-test-builder += "${PN}-module-perlio" |
2294 | RDEPENDS_${PN}-module-test-builder += "${PN}-module-strict" | 2372 | RDEPENDS_${PN}-module-test-builder += "${PN}-module-strict" |
2295 | RDEPENDS_${PN}-module-test-builder += "${PN}-module-threads-shared" | 2373 | RDEPENDS_${PN}-module-test-builder += "${PN}-module-threads-shared" |
2296 | RDEPENDS_${PN}-module-test-builder += "${PN}-module-warnings" | 2374 | RDEPENDS_${PN}-module-test-builder += "${PN}-module-warnings" |
2297 | RDEPENDS_${PN}-module-test-builder-module += "${PN}-module-exporter" | 2375 | RDEPENDS_${PN}-module-test-builder-tester-color += "${PN}-module-strict" |
2298 | RDEPENDS_${PN}-module-test-builder-module += "${PN}-module-strict" | 2376 | RDEPENDS_${PN}-module-test-builder-tester-color += "${PN}-module-test-builder-tester" |
2299 | RDEPENDS_${PN}-module-test-builder-module += "${PN}-module-test-builder" | ||
2300 | RDEPENDS_${PN}-module-test-builder-tester += "${PN}-module-carp" | 2377 | RDEPENDS_${PN}-module-test-builder-tester += "${PN}-module-carp" |
2301 | RDEPENDS_${PN}-module-test-builder-tester += "${PN}-module-exporter" | 2378 | RDEPENDS_${PN}-module-test-builder-tester += "${PN}-module-exporter" |
2302 | RDEPENDS_${PN}-module-test-builder-tester += "${PN}-module-strict" | 2379 | RDEPENDS_${PN}-module-test-builder-tester += "${PN}-module-strict" |
2303 | RDEPENDS_${PN}-module-test-builder-tester += "${PN}-module-symbol" | 2380 | RDEPENDS_${PN}-module-test-builder-tester += "${PN}-module-symbol" |
2304 | RDEPENDS_${PN}-module-test-builder-tester += "${PN}-module-test-builder" | 2381 | RDEPENDS_${PN}-module-test-builder-tester += "${PN}-module-test-builder" |
2305 | RDEPENDS_${PN}-module-test-builder-tester-color += "${PN}-module-strict" | 2382 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-base" |
2306 | RDEPENDS_${PN}-module-test-builder-tester-color += "${PN}-module-test-builder-tester" | ||
2307 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-config" | 2383 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-config" |
2308 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-constant" | 2384 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-constant" |
2309 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-exporter" | ||
2310 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-strict" | 2385 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-strict" |
2311 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-tap-harness" | 2386 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-tap-harness" |
2312 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-tap-parser-aggregator" | 2387 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-tap-parser-aggregator" |
2313 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-tap-parser-source" | 2388 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-tap-parser-source" |
2314 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-tap-parser-sourcehandler-perl" | 2389 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-tap-parser-sourcehandler-perl" |
2315 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-tap-parser-utils" | 2390 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-text-parsewords" |
2316 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-vars" | 2391 | RDEPENDS_${PN}-module-test-harness += "${PN}-module-warnings" |
2392 | RDEPENDS_${PN}-module-test-more += "${PN}-module-scalar-util" | ||
2317 | RDEPENDS_${PN}-module-test-more += "${PN}-module-strict" | 2393 | RDEPENDS_${PN}-module-test-more += "${PN}-module-strict" |
2318 | RDEPENDS_${PN}-module-test-more += "${PN}-module-test-builder-module" | 2394 | RDEPENDS_${PN}-module-test-more += "${PN}-module-test-builder-module" |
2319 | RDEPENDS_${PN}-module-test-more += "${PN}-module-test-more" | 2395 | RDEPENDS_${PN}-module-test-more += "${PN}-module-test-more" |
2320 | RDEPENDS_${PN}-module-test-more += "${PN}-module-warnings" | 2396 | RDEPENDS_${PN}-module-test-more += "${PN}-module-warnings" |
2397 | RDEPENDS_${PN}-module-test += "${PN}-module-carp" | ||
2398 | RDEPENDS_${PN}-module-test += "${PN}-module-exporter" | ||
2399 | RDEPENDS_${PN}-module-test += "${PN}-module-file-temp" | ||
2400 | RDEPENDS_${PN}-module-test += "${PN}-module-strict" | ||
2401 | RDEPENDS_${PN}-module-test += "${PN}-module-vars" | ||
2321 | RDEPENDS_${PN}-module-test-simple += "${PN}-module-strict" | 2402 | RDEPENDS_${PN}-module-test-simple += "${PN}-module-strict" |
2322 | RDEPENDS_${PN}-module-test-simple += "${PN}-module-test-builder-module" | 2403 | RDEPENDS_${PN}-module-test-simple += "${PN}-module-test-builder-module" |
2323 | RDEPENDS_${PN}-module-text-abbrev += "${PN}-module-exporter" | 2404 | RDEPENDS_${PN}-module-text-abbrev += "${PN}-module-exporter" |
@@ -2330,10 +2411,6 @@ RDEPENDS_${PN}-module-text-balanced += "${PN}-module-vars" | |||
2330 | RDEPENDS_${PN}-module-text-parsewords += "${PN}-module-carp" | 2411 | RDEPENDS_${PN}-module-text-parsewords += "${PN}-module-carp" |
2331 | RDEPENDS_${PN}-module-text-parsewords += "${PN}-module-exporter" | 2412 | RDEPENDS_${PN}-module-text-parsewords += "${PN}-module-exporter" |
2332 | RDEPENDS_${PN}-module-text-parsewords += "${PN}-module-strict" | 2413 | RDEPENDS_${PN}-module-text-parsewords += "${PN}-module-strict" |
2333 | RDEPENDS_${PN}-module-text-soundex += "${PN}-module-carp" | ||
2334 | RDEPENDS_${PN}-module-text-soundex += "${PN}-module-exporter" | ||
2335 | RDEPENDS_${PN}-module-text-soundex += "${PN}-module-strict" | ||
2336 | RDEPENDS_${PN}-module-text-soundex += "${PN}-module-xsloader" | ||
2337 | RDEPENDS_${PN}-module-text-tabs += "${PN}-module-exporter" | 2414 | RDEPENDS_${PN}-module-text-tabs += "${PN}-module-exporter" |
2338 | RDEPENDS_${PN}-module-text-tabs += "${PN}-module-strict" | 2415 | RDEPENDS_${PN}-module-text-tabs += "${PN}-module-strict" |
2339 | RDEPENDS_${PN}-module-text-tabs += "${PN}-module-vars" | 2416 | RDEPENDS_${PN}-module-text-tabs += "${PN}-module-vars" |
@@ -2381,10 +2458,10 @@ RDEPENDS_${PN}-module-tie-file += "${PN}-module-symbol" | |||
2381 | RDEPENDS_${PN}-module-tie-handle += "${PN}-module-carp" | 2458 | RDEPENDS_${PN}-module-tie-handle += "${PN}-module-carp" |
2382 | RDEPENDS_${PN}-module-tie-handle += "${PN}-module-tie-stdhandle" | 2459 | RDEPENDS_${PN}-module-tie-handle += "${PN}-module-tie-stdhandle" |
2383 | RDEPENDS_${PN}-module-tie-handle += "${PN}-module-warnings-register" | 2460 | RDEPENDS_${PN}-module-tie-handle += "${PN}-module-warnings-register" |
2384 | RDEPENDS_${PN}-module-tie-hash += "${PN}-module-carp" | ||
2385 | RDEPENDS_${PN}-module-tie-hash += "${PN}-module-warnings-register" | ||
2386 | RDEPENDS_${PN}-module-tie-hash-namedcapture += "${PN}-module-strict" | 2461 | RDEPENDS_${PN}-module-tie-hash-namedcapture += "${PN}-module-strict" |
2387 | RDEPENDS_${PN}-module-tie-hash-namedcapture += "${PN}-module-xsloader" | 2462 | RDEPENDS_${PN}-module-tie-hash-namedcapture += "${PN}-module-xsloader" |
2463 | RDEPENDS_${PN}-module-tie-hash += "${PN}-module-carp" | ||
2464 | RDEPENDS_${PN}-module-tie-hash += "${PN}-module-warnings-register" | ||
2388 | RDEPENDS_${PN}-module-tie-memoize += "${PN}-module-strict" | 2465 | RDEPENDS_${PN}-module-tie-memoize += "${PN}-module-strict" |
2389 | RDEPENDS_${PN}-module-tie-memoize += "${PN}-module-tie-hash" | 2466 | RDEPENDS_${PN}-module-tie-memoize += "${PN}-module-tie-hash" |
2390 | RDEPENDS_${PN}-module-tie-refhash += "${PN}-module-carp" | 2467 | RDEPENDS_${PN}-module-tie-refhash += "${PN}-module-carp" |
@@ -2408,7 +2485,6 @@ RDEPENDS_${PN}-module-time-hires += "${PN}-module-carp" | |||
2408 | RDEPENDS_${PN}-module-time-hires += "${PN}-module-dynaloader" | 2485 | RDEPENDS_${PN}-module-time-hires += "${PN}-module-dynaloader" |
2409 | RDEPENDS_${PN}-module-time-hires += "${PN}-module-exporter" | 2486 | RDEPENDS_${PN}-module-time-hires += "${PN}-module-exporter" |
2410 | RDEPENDS_${PN}-module-time-hires += "${PN}-module-strict" | 2487 | RDEPENDS_${PN}-module-time-hires += "${PN}-module-strict" |
2411 | RDEPENDS_${PN}-module-time-hires += "${PN}-module-vars" | ||
2412 | RDEPENDS_${PN}-module-time-local += "${PN}-module-carp" | 2488 | RDEPENDS_${PN}-module-time-local += "${PN}-module-carp" |
2413 | RDEPENDS_${PN}-module-time-local += "${PN}-module-config" | 2489 | RDEPENDS_${PN}-module-time-local += "${PN}-module-config" |
2414 | RDEPENDS_${PN}-module-time-local += "${PN}-module-constant" | 2490 | RDEPENDS_${PN}-module-time-local += "${PN}-module-constant" |
@@ -2429,17 +2505,12 @@ RDEPENDS_${PN}-module-time-piece += "${PN}-module-strict" | |||
2429 | RDEPENDS_${PN}-module-time-piece += "${PN}-module-time-local" | 2505 | RDEPENDS_${PN}-module-time-piece += "${PN}-module-time-local" |
2430 | RDEPENDS_${PN}-module-time-piece += "${PN}-module-time-seconds" | 2506 | RDEPENDS_${PN}-module-time-piece += "${PN}-module-time-seconds" |
2431 | RDEPENDS_${PN}-module-time-seconds += "${PN}-module-constant" | 2507 | RDEPENDS_${PN}-module-time-seconds += "${PN}-module-constant" |
2508 | RDEPENDS_${PN}-module-time-seconds += "${PN}-module-exporter" | ||
2432 | RDEPENDS_${PN}-module-time-seconds += "${PN}-module-overload " | 2509 | RDEPENDS_${PN}-module-time-seconds += "${PN}-module-overload " |
2433 | RDEPENDS_${PN}-module-time-seconds += "${PN}-module-strict" | 2510 | RDEPENDS_${PN}-module-time-seconds += "${PN}-module-strict" |
2434 | RDEPENDS_${PN}-module-time-seconds += "${PN}-module-vars" | 2511 | RDEPENDS_${PN}-module-time-seconds += "${PN}-module-vars" |
2435 | RDEPENDS_${PN}-module-time-tm += "${PN}-module-class-struct" | 2512 | RDEPENDS_${PN}-module-time-tm += "${PN}-module-class-struct" |
2436 | RDEPENDS_${PN}-module-time-tm += "${PN}-module-strict" | 2513 | RDEPENDS_${PN}-module-time-tm += "${PN}-module-strict" |
2437 | RDEPENDS_${PN}-module-unicode-collate += "${PN}-module-carp" | ||
2438 | RDEPENDS_${PN}-module-unicode-collate += "${PN}-module-constant" | ||
2439 | RDEPENDS_${PN}-module-unicode-collate += "${PN}-module-dynaloader" | ||
2440 | RDEPENDS_${PN}-module-unicode-collate += "${PN}-module-file-spec" | ||
2441 | RDEPENDS_${PN}-module-unicode-collate += "${PN}-module-strict" | ||
2442 | RDEPENDS_${PN}-module-unicode-collate += "${PN}-module-warnings" | ||
2443 | RDEPENDS_${PN}-module-unicode-collate-cjk-big5 += "${PN}-module-strict" | 2514 | RDEPENDS_${PN}-module-unicode-collate-cjk-big5 += "${PN}-module-strict" |
2444 | RDEPENDS_${PN}-module-unicode-collate-cjk-gb2312 += "${PN}-module-strict" | 2515 | RDEPENDS_${PN}-module-unicode-collate-cjk-gb2312 += "${PN}-module-strict" |
2445 | RDEPENDS_${PN}-module-unicode-collate-cjk-jisx0208 += "${PN}-module-strict" | 2516 | RDEPENDS_${PN}-module-unicode-collate-cjk-jisx0208 += "${PN}-module-strict" |
@@ -2447,10 +2518,16 @@ RDEPENDS_${PN}-module-unicode-collate-cjk-korean += "${PN}-module-strict" | |||
2447 | RDEPENDS_${PN}-module-unicode-collate-cjk-korean += "${PN}-module-unicode-collate" | 2518 | RDEPENDS_${PN}-module-unicode-collate-cjk-korean += "${PN}-module-unicode-collate" |
2448 | RDEPENDS_${PN}-module-unicode-collate-cjk-pinyin += "${PN}-module-strict" | 2519 | RDEPENDS_${PN}-module-unicode-collate-cjk-pinyin += "${PN}-module-strict" |
2449 | RDEPENDS_${PN}-module-unicode-collate-cjk-stroke += "${PN}-module-strict" | 2520 | RDEPENDS_${PN}-module-unicode-collate-cjk-stroke += "${PN}-module-strict" |
2521 | RDEPENDS_${PN}-module-unicode-collate-cjk-zhuyin += "${PN}-module-strict" | ||
2450 | RDEPENDS_${PN}-module-unicode-collate-locale += "${PN}-module-base" | 2522 | RDEPENDS_${PN}-module-unicode-collate-locale += "${PN}-module-base" |
2451 | RDEPENDS_${PN}-module-unicode-collate-locale += "${PN}-module-carp" | 2523 | RDEPENDS_${PN}-module-unicode-collate-locale += "${PN}-module-carp" |
2452 | RDEPENDS_${PN}-module-unicode-collate-locale += "${PN}-module-file-spec" | ||
2453 | RDEPENDS_${PN}-module-unicode-collate-locale += "${PN}-module-strict" | 2524 | RDEPENDS_${PN}-module-unicode-collate-locale += "${PN}-module-strict" |
2525 | RDEPENDS_${PN}-module-unicode-collate += "${PN}-module-carp" | ||
2526 | RDEPENDS_${PN}-module-unicode-collate += "${PN}-module-constant" | ||
2527 | RDEPENDS_${PN}-module-unicode-collate += "${PN}-module-dynaloader" | ||
2528 | RDEPENDS_${PN}-module-unicode-collate += "${PN}-module-file-spec" | ||
2529 | RDEPENDS_${PN}-module-unicode-collate += "${PN}-module-strict" | ||
2530 | RDEPENDS_${PN}-module-unicode-collate += "${PN}-module-warnings" | ||
2454 | RDEPENDS_${PN}-module-unicode-normalize += "${PN}-module-carp" | 2531 | RDEPENDS_${PN}-module-unicode-normalize += "${PN}-module-carp" |
2455 | RDEPENDS_${PN}-module-unicode-normalize += "${PN}-module-dynaloader" | 2532 | RDEPENDS_${PN}-module-unicode-normalize += "${PN}-module-dynaloader" |
2456 | RDEPENDS_${PN}-module-unicode-normalize += "${PN}-module-exporter" | 2533 | RDEPENDS_${PN}-module-unicode-normalize += "${PN}-module-exporter" |
@@ -2461,10 +2538,13 @@ RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-charnames" | |||
2461 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-exporter" | 2538 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-exporter" |
2462 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-feature" | 2539 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-feature" |
2463 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-file-spec" | 2540 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-file-spec" |
2464 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-storable" | 2541 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-if" |
2542 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-integer" | ||
2465 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-strict" | 2543 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-strict" |
2466 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-unicode-normalize" | 2544 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-unicore" |
2545 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-utf8-heavy" | ||
2467 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-warnings" | 2546 | RDEPENDS_${PN}-module-unicode-ucd += "${PN}-module-warnings" |
2547 | RDEPENDS_${PN}-module-unicore += "${PN}-module-integer" | ||
2468 | RDEPENDS_${PN}-module-universal += "${PN}-module-exporter" | 2548 | RDEPENDS_${PN}-module-universal += "${PN}-module-exporter" |
2469 | RDEPENDS_${PN}-module-universal += "${PN}-module-warnings" | 2549 | RDEPENDS_${PN}-module-universal += "${PN}-module-warnings" |
2470 | RDEPENDS_${PN}-module-user-grent += "${PN}-module-class-struct" | 2550 | RDEPENDS_${PN}-module-user-grent += "${PN}-module-class-struct" |
@@ -2482,5 +2562,19 @@ RDEPENDS_${PN}-module-utf8 += "${PN}-module-carp" | |||
2482 | RDEPENDS_${PN}-module-utf8 += "${PN}-module-utf8-heavy" | 2562 | RDEPENDS_${PN}-module-utf8 += "${PN}-module-utf8-heavy" |
2483 | RDEPENDS_${PN}-module-version += "${PN}-module-strict" | 2563 | RDEPENDS_${PN}-module-version += "${PN}-module-strict" |
2484 | RDEPENDS_${PN}-module-version += "${PN}-module-vars" | 2564 | RDEPENDS_${PN}-module-version += "${PN}-module-vars" |
2565 | RDEPENDS_${PN}-module-version += "${PN}-module-version-regex" | ||
2566 | RDEPENDS_${PN}-module-version-regex += "${PN}-module-strict" | ||
2567 | RDEPENDS_${PN}-module-version-regex += "${PN}-module-vars" | ||
2568 | RDEPENDS_${PN}-module-version-vpp += "${PN}-module-b" | ||
2569 | RDEPENDS_${PN}-module-version-vpp += "${PN}-module-carp" | ||
2570 | RDEPENDS_${PN}-module-version-vpp += "${PN}-module-config" | ||
2571 | RDEPENDS_${PN}-module-version-vpp += "${PN}-module-constant" | ||
2572 | RDEPENDS_${PN}-module-version-vpp += "${PN}-module-if" | ||
2573 | RDEPENDS_${PN}-module-version-vpp += "${PN}-module-overload" | ||
2574 | RDEPENDS_${PN}-module-version-vpp += "${PN}-module-posix" | ||
2575 | RDEPENDS_${PN}-module-version-vpp += "${PN}-module-strict" | ||
2576 | RDEPENDS_${PN}-module-version-vpp += "${PN}-module-universal" | ||
2577 | RDEPENDS_${PN}-module-version-vpp += "${PN}-module-vars" | ||
2578 | RDEPENDS_${PN}-module-version-vpp += "${PN}-module-version-regex" | ||
2485 | RDEPENDS_${PN}-module-xsloader += "${PN}-module-carp" | 2579 | RDEPENDS_${PN}-module-xsloader += "${PN}-module-carp" |
2486 | RDEPENDS_${PN}-module-xsloader += "${PN}-module-dynaloader" | 2580 | RDEPENDS_${PN}-module-xsloader += "${PN}-module-dynaloader" |
diff --git a/meta/recipes-devtools/perl/perl-rprovides_5.14.3.inc b/meta/recipes-devtools/perl/perl-rprovides_5.20.0.inc index 9a648dbf2f..9a648dbf2f 100644 --- a/meta/recipes-devtools/perl/perl-rprovides_5.14.3.inc +++ b/meta/recipes-devtools/perl/perl-rprovides_5.20.0.inc | |||
diff --git a/meta/recipes-devtools/perl/perl_5.14.3.bb b/meta/recipes-devtools/perl/perl_5.20.0.bb index 6aaaade34f..4bd452512d 100644 --- a/meta/recipes-devtools/perl/perl_5.14.3.bb +++ b/meta/recipes-devtools/perl/perl_5.20.0.bb | |||
@@ -2,8 +2,8 @@ SUMMARY = "Perl scripting language" | |||
2 | HOMEPAGE = "http://www.perl.org/" | 2 | HOMEPAGE = "http://www.perl.org/" |
3 | SECTION = "devel" | 3 | SECTION = "devel" |
4 | LICENSE = "Artistic-1.0 | GPL-1.0" | 4 | LICENSE = "Artistic-1.0 | GPL-1.0" |
5 | LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \ | 5 | LIC_FILES_CHKSUM = "file://Copying;md5=5b122a36d0f6dc55279a0ebc69f3c60b \ |
6 | file://Artistic;md5=f921793d03cc6d63ec4b15e9be8fd3f8" | 6 | file://Artistic;md5=2e6fd2475335af892494fe1f7327baf3" |
7 | # We need gnugrep (for -I) | 7 | # We need gnugrep (for -I) |
8 | DEPENDS = "virtual/db grep-native" | 8 | DEPENDS = "virtual/db grep-native" |
9 | DEPENDS += "gdbm zlib" | 9 | DEPENDS += "gdbm zlib" |
@@ -13,7 +13,11 @@ PR = "r1" | |||
13 | PROVIDES += "libmodule-build-perl" | 13 | PROVIDES += "libmodule-build-perl" |
14 | 14 | ||
15 | SRC_URI = "http://www.cpan.org/src/5.0/perl-${PV}.tar.gz \ | 15 | SRC_URI = "http://www.cpan.org/src/5.0/perl-${PV}.tar.gz \ |
16 | file://debian/arm_thread_stress_timeout.diff \ | 16 | " |
17 | |||
18 | # Pick up patches from debian | ||
19 | # http://ftp.de.debian.org/debian/pool/main/p/perl/perl_5.20.0-1.debian.tar.xz | ||
20 | SRC_URI += " \ | ||
17 | file://debian/cpan_definstalldirs.diff \ | 21 | file://debian/cpan_definstalldirs.diff \ |
18 | file://debian/db_file_ver.diff \ | 22 | file://debian/db_file_ver.diff \ |
19 | file://debian/doc_info.diff \ | 23 | file://debian/doc_info.diff \ |
@@ -25,30 +29,27 @@ SRC_URI = "http://www.cpan.org/src/5.0/perl-${PV}.tar.gz \ | |||
25 | file://debian/extutils_set_libperl_path.diff \ | 29 | file://debian/extutils_set_libperl_path.diff \ |
26 | file://debian/no_packlist_perllocal.diff \ | 30 | file://debian/no_packlist_perllocal.diff \ |
27 | file://debian/prefix_changes.diff \ | 31 | file://debian/prefix_changes.diff \ |
28 | file://debian/fakeroot.diff \ | ||
29 | file://debian/instmodsh_doc.diff \ | 32 | file://debian/instmodsh_doc.diff \ |
30 | file://debian/ld_run_path.diff \ | 33 | file://debian/ld_run_path.diff \ |
31 | file://debian/libnet_config_path.diff \ | 34 | file://debian/libnet_config_path.diff \ |
32 | file://debian/m68k_thread_stress.diff \ | ||
33 | file://debian/mod_paths.diff \ | 35 | file://debian/mod_paths.diff \ |
34 | file://debian/module_build_man_extensions.diff \ | 36 | file://debian/module_build_man_extensions.diff \ |
35 | file://debian/prune_libs.diff \ | 37 | file://debian/prune_libs.diff \ |
36 | file://debian/fixes/net_smtp_docs.diff \ | 38 | file://debian/fixes/net_smtp_docs.diff \ |
37 | file://debian/perlivp.diff \ | 39 | file://debian/perlivp.diff \ |
38 | file://debian/disable-zlib-bundling.diff \ | ||
39 | file://debian/cpanplus_definstalldirs.diff \ | ||
40 | file://debian/cpanplus_config_path.diff \ | ||
41 | file://debian/deprecate-with-apt.diff \ | ||
42 | file://debian/squelch-locale-warnings.diff \ | 40 | file://debian/squelch-locale-warnings.diff \ |
43 | file://debian/skip-upstream-git-tests.diff \ | 41 | file://debian/skip-upstream-git-tests.diff \ |
44 | file://debian/fixes/extutils-cbuilder-cflags.diff \ | ||
45 | file://debian/fixes/module-build-home-directory.diff \ | ||
46 | file://debian/skip-kfreebsd-crash.diff \ | 42 | file://debian/skip-kfreebsd-crash.diff \ |
47 | file://debian/fixes/document_makemaker_ccflags.diff \ | 43 | file://debian/fixes/document_makemaker_ccflags.diff \ |
48 | file://debian/fixes/sys-syslog-socket-timeout-kfreebsd.patch \ | ||
49 | file://debian/fixes/pod_fixes.diff \ | ||
50 | file://debian/find_html2text.diff \ | 44 | file://debian/find_html2text.diff \ |
51 | \ | 45 | file://debian/hurd_test_skip_stack.diff \ |
46 | file://debian/perl5db-x-terminal-emulator.patch \ | ||
47 | file://debian/cpan-missing-site-dirs.diff \ | ||
48 | file://debian/fixes/memoize_storable_nstore.diff \ | ||
49 | file://debian/regen-skip.diff \ | ||
50 | " | ||
51 | |||
52 | SRC_URI += " \ | ||
52 | file://Makefile.patch \ | 53 | file://Makefile.patch \ |
53 | file://Makefile.SH.patch \ | 54 | file://Makefile.SH.patch \ |
54 | file://installperl.patch \ | 55 | file://installperl.patch \ |
@@ -56,17 +57,13 @@ SRC_URI = "http://www.cpan.org/src/5.0/perl-${PV}.tar.gz \ | |||
56 | file://perl-moreconfig.patch \ | 57 | file://perl-moreconfig.patch \ |
57 | file://letgcc-find-errno.patch \ | 58 | file://letgcc-find-errno.patch \ |
58 | file://generate-sh.patch \ | 59 | file://generate-sh.patch \ |
59 | file://09_fix_installperl.patch \ | ||
60 | file://native-perlinc.patch \ | 60 | file://native-perlinc.patch \ |
61 | file://perl-enable-gdbm.patch \ | 61 | file://perl-enable-gdbm.patch \ |
62 | file://cross-generate_uudmap.patch \ | 62 | file://cross-generate_uudmap.patch \ |
63 | file://fix_bad_rpath.patch \ | 63 | file://fix_bad_rpath.patch \ |
64 | file://perl-build-in-t-dir.patch \ | ||
65 | file://perl-archlib-exp.patch \ | 64 | file://perl-archlib-exp.patch \ |
66 | file://dynaloaderhack.patch \ | 65 | file://dynaloaderhack.patch \ |
67 | \ | 66 | \ |
68 | file://0001-Fix-misparsing-of-maketext-strings.patch \ | ||
69 | file://0001-Prevent-premature-hsplit-calls-and-only-trigger-REHA.patch \ | ||
70 | \ | 67 | \ |
71 | file://config.sh \ | 68 | file://config.sh \ |
72 | file://config.sh-32 \ | 69 | file://config.sh-32 \ |
@@ -75,11 +72,18 @@ SRC_URI = "http://www.cpan.org/src/5.0/perl-${PV}.tar.gz \ | |||
75 | file://config.sh-64 \ | 72 | file://config.sh-64 \ |
76 | file://config.sh-64-le \ | 73 | file://config.sh-64-le \ |
77 | file://config.sh-64-be \ | 74 | file://config.sh-64-be \ |
78 | file://perl-5.14.3-fix-CVE-2010-4777.patch " | 75 | file://perl-5.14.3-fix-CVE-2010-4777.patch \ |
79 | # file://debian/fakeroot.diff | 76 | file://0001-Makefile.SH-fix-do_install-failed.patch \ |
77 | " | ||
78 | |||
79 | # Fix test case issues | ||
80 | SRC_URI_append_class-target = " \ | ||
81 | file://test/dist-threads-t-join.t-adjust-ps-option.patch \ | ||
82 | file://test/ext-DynaLoader-t-DynaLoader.t-fix-calling-dl_findfil.patch \ | ||
83 | " | ||
80 | 84 | ||
81 | SRC_URI[md5sum] = "f6a3d878c688d111b495c87db56c5be5" | 85 | SRC_URI[md5sum] = "406ec049ebe3afcc80d9c76ec78ca4f8" |
82 | SRC_URI[sha256sum] = "03638a4f01bc26b81231233671524b4163849a3a9ea5cc2397293080c4ea339f" | 86 | SRC_URI[sha256sum] = "4e8c28ad6ecc89902f9cb2e76f2815bb1a8287ded278e15f7a36ca45f8bbcd02" |
83 | 87 | ||
84 | inherit perlnative siteinfo | 88 | inherit perlnative siteinfo |
85 | 89 | ||
@@ -191,6 +195,7 @@ do_compile() { | |||
191 | } | 195 | } |
192 | 196 | ||
193 | do_install() { | 197 | do_install() { |
198 | #export hostperl="${STAGING_BINDIR_NATIVE}/perl-native/perl${PV}" | ||
194 | oe_runmake install DESTDIR=${D} | 199 | oe_runmake install DESTDIR=${D} |
195 | # Add perl pointing at current version | 200 | # Add perl pointing at current version |
196 | ln -sf perl${PV} ${D}${bindir}/perl | 201 | ln -sf perl${PV} ${D}${bindir}/perl |
@@ -246,7 +251,6 @@ perl_package_preprocess () { | |||
246 | ${PKGD}${libdir}/perl/${PV}/Config_heavy.pl \ | 251 | ${PKGD}${libdir}/perl/${PV}/Config_heavy.pl \ |
247 | ${PKGD}${libdir}/perl/${PV}/ExtUtils/Liblist/Kid.pm \ | 252 | ${PKGD}${libdir}/perl/${PV}/ExtUtils/Liblist/Kid.pm \ |
248 | ${PKGD}${libdir}/perl/${PV}/FileCache.pm \ | 253 | ${PKGD}${libdir}/perl/${PV}/FileCache.pm \ |
249 | ${PKGD}${libdir}/perl/${PV}/cacheout.pl \ | ||
250 | ${PKGD}${libdir}/perl/${PV}/pod/*.pod \ | 254 | ${PKGD}${libdir}/perl/${PV}/pod/*.pod \ |
251 | ${PKGD}${libdir}/perl/config.sh | 255 | ${PKGD}${libdir}/perl/config.sh |
252 | } | 256 | } |