23184612 Upgrade Perl gettext to 1.0.7
authorRich Burridge <rich.burridge@oracle.com>
Wed, 21 Dec 2016 14:15:33 -0800
changeset 7520 7b33249790c8
parent 7519 f5b504a5dd36
child 7521 149969f54db5
23184612 Upgrade Perl gettext to 1.0.7
components/perl_modules/gettext/Makefile
components/perl_modules/gettext/gettext.license
components/perl_modules/gettext/patches/001-compatibility-with-POSIX-module.patch
--- a/components/perl_modules/gettext/Makefile	Wed Dec 21 12:22:29 2016 -0800
+++ b/components/perl_modules/gettext/Makefile	Wed Dec 21 14:15:33 2016 -0800
@@ -26,17 +26,17 @@
 include ../../../make-rules/shared-macros.mk
 
 COMPONENT_NAME=		gettext
-COMPONENT_VERSION=	1.0.5
-HUMAN_VERSION=		1.05
-COMPONENT_PROJECT_URL=	http://search.cpan.org/~pvandry/gettext-1.05/gettext.pm
-COMPONENT_SRC=		$(COMPONENT_NAME)-$(HUMAN_VERSION)
+COMPONENT_VERSION=	1.0.7
+HUMAN_VERSION=		1.07
+COMPONENT_PROJECT_URL=	http://search.cpan.org/~pvandry/$(COMPONENT_NAME)-$(HUMAN_VERSION)/gettext.pm
+COMPONENT_SRC=		Locale-$(COMPONENT_NAME)-$(HUMAN_VERSION)
 COMPONENT_ARCHIVE=	$(COMPONENT_SRC).tar.gz
 COMPONENT_ARCHIVE_HASH=	\
-    sha256:27367f3dc1be79c9ed178732756e37e4cfce45f9e2a27ebf26e1f40d80124694
+    sha256:909d47954697e7c04218f972915b787bd1244d75e3bd01620bc167d5bbc49c15
 COMPONENT_ARCHIVE_URL=	http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/$(COMPONENT_ARCHIVE)
 COMPONENT_BUGDB=	perl-mod/gettext
 
-TPNO=			22740
+TPNO=			33099
 
 include $(WS_MAKE_RULES)/prep.mk
 include $(WS_MAKE_RULES)/ips.mk
--- a/components/perl_modules/gettext/gettext.license	Wed Dec 21 12:22:29 2016 -0800
+++ b/components/perl_modules/gettext/gettext.license	Wed Dec 21 14:15:33 2016 -0800
@@ -1,4 +1,4 @@
-Portions of this program use gettext 1.0.5, the open source version is made
+Portions of this program use gettext 1.0.7, the open source version is made
 available by Phillip Vandry under the terms of the below version of the
 Artistic License. As such, Oracle is required to provide the following notices.
 Note, however, that the Oracle program license that accompanied this program
@@ -10,7 +10,7 @@
 patches subdirectory.
 
 The current open source version of gettext can be downloaded at:
-http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/gettext-1.05.tar.gz
+http://search.cpan.org/CPAN/authors/id/P/PV/PVANDRY/gettext-1.07.tar.gz
 
 
 			 The "Artistic License"
--- a/components/perl_modules/gettext/patches/001-compatibility-with-POSIX-module.patch	Wed Dec 21 12:22:29 2016 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-Debian Bug report logs - #479803
-https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=479803
-
-liblocale-gettext-perl: defines LC_* slightly differently from Perl 5.10's
-POSIX.pm
-
-New patch debian/patches/compatibility-with-POSIX-module.diff so that
-Locale::Gettext re-exports the LC_* constants coming from POSIX instead
-of those coming from its own XS implementation.
-
---- gettext-1.05/gettext.pm.orig	2015-05-14 09:06:58.288075712 -0700
-+++ gettext-1.05/gettext.pm	2015-05-14 09:07:23.772010237 -0700
-@@ -32,6 +32,7 @@
- =cut
- 
- use Carp;
-+use POSIX qw(:locale_h);
- 
- require Exporter;
- require DynaLoader;