summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/perl-5.12.2/debian/squelch-locale-warnings.diff
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2010-12-22 09:26:07 -0800
committerSaul Wold <sgw@linux.intel.com>2011-01-12 00:55:48 -0800
commitf57e9daf74d5fbab6c9a3f5e60e1320a0bf0642d (patch)
treef6b24ea8f39fd6c83a161f91117641a851c4a9c6 /meta/recipes-devtools/perl/perl-5.12.2/debian/squelch-locale-warnings.diff
parentfde91acaf7849d80a2b9c908398bee2c3452004e (diff)
downloadpoky-f57e9daf74d5fbab6c9a3f5e60e1320a0bf0642d.tar.gz
perl, perl-native: upgrade from 5.8.8 to 5.12.2
Deleted these patches as they are part of the upstream code now. deleted: files/perl-5.8.8-gcc-4.2.patch deleted: perl-5.12.2/makedepend-dash.patch deleted: perl-5.12.2/native-no-gdbminc.patch deleted: perl-5.12.2/54_debian_perldoc-r.patch And rebased these patches to the newer source code modified: files/letgcc-find-errno.patch modified: perl-5.12.2/Makefile.patch modified: perl-5.12.2/asm-pageh-fix.patch modified: perl-5.12.2/native-nopacklist.patch modified: perl-5.12.2/native-perlinc.patch modified: perl-5.12.2/Makefile.SH.patch modified: perl-5.12.2/installperl.patch modified: perl-5.12.2/perl-dynloader.patch modified: perl-5.12.2/09_fix_installperl.patch get patches from debian perl ver 5.12.2-2 the fakeroot.diff patch from debian is conflicting with our Makefile.SH.patch, hence disabling the fakeroot patch use newly created config files Created with current milestone branch on qemu machines modified: config.sh modified: config.sh-32 modified: config.sh-64 get some changes from oe's perl 5.10.1 recipe fix the Makefile.SH.patch use miniperl instead of perl import a OE 5.10.1 patch: uudmap_cross fix install issues add /usr in the destdir, so that perl gets installed in /usr/bin/perl and not in /bin/perl link /usr/lib/perl to /usr/lib/perl5 so that operations with /usr/lib/perl path in them keep on working. Fix/Improve perl packaging avoid perl-module-module-* kind of packages recreate perl-rdepends_5.12.2.inc file with new set of packages import from oe perl-rprovide_5.12.2.inc combine all unicore perl scripts in one package simplify perl-lib reduce no of perl recipe packages greatly. Add zlib to depedancy fix buildtime host contamination This also fixes [BUGID #384] Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/recipes-devtools/perl/perl-5.12.2/debian/squelch-locale-warnings.diff')
-rw-r--r--meta/recipes-devtools/perl/perl-5.12.2/debian/squelch-locale-warnings.diff53
1 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/perl-5.12.2/debian/squelch-locale-warnings.diff b/meta/recipes-devtools/perl/perl-5.12.2/debian/squelch-locale-warnings.diff
new file mode 100644
index 0000000000..091dec45cb
--- /dev/null
+++ b/meta/recipes-devtools/perl/perl-5.12.2/debian/squelch-locale-warnings.diff
@@ -0,0 +1,53 @@
1From: Niko Tyni <ntyni@debian.org>
2Subject: Squelch locale warnings in Debian package maintainer scripts
3Bug-Debian: http://bugs.debian.org/508764
4
5The system locales are rather frequently out of sync with the C library
6during package upgrades, causing a huge amount of useless Perl locale
7warnings. Squelch them when running package maintainer scripts, detected
8by the DPKG_RUNNING_VERSION environment variable.
9
10Any real locale problem will show up after the system upgrade too, and
11the warning will be triggered normally again at that point.
12
13---
14 locale.c | 4 ++++
15 pod/perllocale.pod | 8 ++++++++
16 2 files changed, 12 insertions(+), 0 deletions(-)
17
18diff --git a/locale.c b/locale.c
19index 16ccce8..2592b3c 100644
20--- a/locale.c
21+++ b/locale.c
22@@ -359,6 +359,10 @@ Perl_init_i18nl10n(pTHX_ int printwarn)
23 char *p;
24 const bool locwarn = (printwarn > 1 ||
25 (printwarn &&
26+
27+ /* Debian specific change - see http://bugs.debian.org/508764 */
28+ (!PerlEnv_getenv("DPKG_RUNNING_VERSION")) &&
29+
30 (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p))));
31
32 if (locwarn) {
33diff --git a/pod/perllocale.pod b/pod/perllocale.pod
34index 0dbabe7..60b7bab 100644
35--- a/pod/perllocale.pod
36+++ b/pod/perllocale.pod
37@@ -844,6 +844,14 @@ B<NOTE>: PERL_BADLANG only gives you a way to hide the warning message.
38 The message tells about some problem in your system's locale support,
39 and you should investigate what the problem is.
40
41+=item DPKG_RUNNING_VERSION
42+
43+On Debian systems, if the DPKG_RUNNING_VERSION environment variable is
44+set (to any value), the locale failure warnings will be suppressed just
45+like with a zero PERL_BADLANG setting. This is done to avoid floods
46+of spurious warnings during system upgrades.
47+See L<http://bugs.debian.org/508764>.
48+
49 =back
50
51 The following environment variables are not specific to Perl: They are
52--
53tg: (c823880..) debian/squelch-locale-warnings (depends on: upstream)