public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/libintl-perl/files/, dev-perl/libintl-perl/
@ 2016-05-29 17:00 Andreas Hüttel
  0 siblings, 0 replies; 4+ messages in thread
From: Andreas Hüttel @ 2016-05-29 17:00 UTC (permalink / raw
  To: gentoo-commits

commit:     611d1b6ec6832d5d1dffcbfd8a805df1bcba8fc5
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun May 29 16:59:56 2016 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun May 29 17:00:16 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=611d1b6e

dev-perl/libintl-perl: Sanitize build system. This may be the solution for bug 583674.

Package-Manager: portage-2.3.0_rc1

 .../files/libintl-perl-1.240.0-sanity.patch        | 72 ++++++++++++++++++++++
 .../libintl-perl/libintl-perl-1.240.0-r1.ebuild    | 36 +++++++++++
 2 files changed, 108 insertions(+)

diff --git a/dev-perl/libintl-perl/files/libintl-perl-1.240.0-sanity.patch b/dev-perl/libintl-perl/files/libintl-perl-1.240.0-sanity.patch
new file mode 100644
index 0000000..b9add8a
--- /dev/null
+++ b/dev-perl/libintl-perl/files/libintl-perl-1.240.0-sanity.patch
@@ -0,0 +1,72 @@
+diff -ruN libintl-perl-1.24.orig/Makefile.PL libintl-perl-1.24/Makefile.PL
+--- libintl-perl-1.24.orig/Makefile.PL	2015-04-03 15:28:12.000000000 +0200
++++ libintl-perl-1.24/Makefile.PL	2016-05-29 18:42:29.495587789 +0200
+@@ -163,56 +163,8 @@
+ 
+ package MY;
+ 
+-# FIXME: This is really a hack! Problem: Depending on the build system,
+-# we may or may not build and install the XS version.  If the XS version
+-# is being built, the directory blib/arch will be populated, if it is
+-# not being built, blib/arch will be empty.  Unfortunately, if blib/arch
+-# is not empty, *all* library files will be installed in the architecture
+-# dependent locations, if it is empty, they will be installed in the
+-# architecture independent tree.
+-#
+-# Unfortunately, ExtUtils::MakeMaker does not take care of uninstalling
+-# files from previous installations.  Consequently, we cannot determine
+-# which version of the library will be loaded, since this depends on the
+-# current value of @INC.
+-#
+-# The solution does not really make me happy.  The Makefile will be patched,
+-# so that instead of ExtUtils::Install a custom module MyInstall.pm will
+-# be used.  This custom module overwrites the subroutine that detects
+-# whether a directory is empty in ExtUtils::Install, and will lie if that
+-# directory happens to be "blib/arch".  This little hack effectively disables 
+-# the annoying behavior of ExtUtils::Install (and I sincerely hope that
+-# this is portable).
+-sub libscan 
+-{
+-	my ($self, $file) = @_;
+-
+-	return if 'MyInstall.pm' eq $file;
+-
+-	$self->SUPER::libscan ($file);	
+-}
+-
+-sub tools_other 
+-{
+-	my $self = shift;
+-
+-	my $fragment = $self->SUPER::tools_other (@_);
+-
+-	$fragment =~ s/^MOD_INSTALL\s*=\s*(.*?)-MExtUtils::Install
+-		/MOD_INSTALL =$1-MMyInstall/msx;
+-
+-	return $fragment;
+-}
+-
+ package main;
+ 
+-my $name = $0;
+-$name =~ s,Makefile\.PL$,xs_disabled,;
+-local *HANDLE;
+-open HANDLE, ">$name" or die "cannot open '$name' for writing: $!";
+-print HANDLE !$build_gettext_xs;
+-close HANDLE or die "cannot close '$name': $!";
+-
+ WriteMakefile (
+     NAME		    => 'libintl-perl',
+ 	VERSION_FROM	=> 'lib/Locale/Messages.pm',
+@@ -232,11 +184,6 @@
+         },
+     },
+     PL_FILES                => {},
+-    DIR		            => [$build_gettext_xs ? ('gettext_xs') : ()],
+-    clean		    => { FILES => 'xs_disabled build_xs' }
+-    # If you want to build the XS version although the automatic detection
+-    # suggests not to build it, uncomment the following line.
+-    #DIR => [ ('gettext_xs') ],,
+ );
+ 
+ sub MY::postamble {

diff --git a/dev-perl/libintl-perl/libintl-perl-1.240.0-r1.ebuild b/dev-perl/libintl-perl/libintl-perl-1.240.0-r1.ebuild
new file mode 100644
index 0000000..cdefba9
--- /dev/null
+++ b/dev-perl/libintl-perl/libintl-perl-1.240.0-r1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MODULE_AUTHOR=GUIDO
+MODULE_VERSION=1.24
+inherit perl-module
+
+DESCRIPTION="High-Level Interface to Uniforum Message Translation"
+HOMEPAGE="http://guido-flohr.net/projects/libintl-perl ${HOMEPAGE}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND="virtual/libintl"
+RDEPEND=${DEPEND}
+
+PATCHES=( "${FILESDIR}/${P}-sanity.patch" )
+
+SRC_TEST=do
+
+src_test() {
+	if grep -q '^de_' <( locale -a ) ; then
+		if grep -q '^de_AT$' <( locale -a ) ; then
+			perl-module_src_test
+		else
+			ewarn "Skipping tests, known broken with de_ and without de_AT"
+		fi
+	else
+		perl-module_src_test
+	fi
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/libintl-perl/files/, dev-perl/libintl-perl/
@ 2016-05-31 22:15 Andreas Hüttel
  0 siblings, 0 replies; 4+ messages in thread
From: Andreas Hüttel @ 2016-05-31 22:15 UTC (permalink / raw
  To: gentoo-commits

commit:     b30b221e0e1764c3e3347f189de89a3fb825cd59
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Tue May 31 22:15:23 2016 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Tue May 31 22:15:40 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b30b221e

dev-perl/libintl-perl: Remove broken version

Package-Manager: portage-2.3.0_rc1

 .../files/libintl-perl-1.240.0-sanity.patch        | 72 ----------------------
 .../libintl-perl/libintl-perl-1.240.0-r1.ebuild    | 36 -----------
 2 files changed, 108 deletions(-)

diff --git a/dev-perl/libintl-perl/files/libintl-perl-1.240.0-sanity.patch b/dev-perl/libintl-perl/files/libintl-perl-1.240.0-sanity.patch
deleted file mode 100644
index b9add8a..0000000
--- a/dev-perl/libintl-perl/files/libintl-perl-1.240.0-sanity.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-diff -ruN libintl-perl-1.24.orig/Makefile.PL libintl-perl-1.24/Makefile.PL
---- libintl-perl-1.24.orig/Makefile.PL	2015-04-03 15:28:12.000000000 +0200
-+++ libintl-perl-1.24/Makefile.PL	2016-05-29 18:42:29.495587789 +0200
-@@ -163,56 +163,8 @@
- 
- package MY;
- 
--# FIXME: This is really a hack! Problem: Depending on the build system,
--# we may or may not build and install the XS version.  If the XS version
--# is being built, the directory blib/arch will be populated, if it is
--# not being built, blib/arch will be empty.  Unfortunately, if blib/arch
--# is not empty, *all* library files will be installed in the architecture
--# dependent locations, if it is empty, they will be installed in the
--# architecture independent tree.
--#
--# Unfortunately, ExtUtils::MakeMaker does not take care of uninstalling
--# files from previous installations.  Consequently, we cannot determine
--# which version of the library will be loaded, since this depends on the
--# current value of @INC.
--#
--# The solution does not really make me happy.  The Makefile will be patched,
--# so that instead of ExtUtils::Install a custom module MyInstall.pm will
--# be used.  This custom module overwrites the subroutine that detects
--# whether a directory is empty in ExtUtils::Install, and will lie if that
--# directory happens to be "blib/arch".  This little hack effectively disables 
--# the annoying behavior of ExtUtils::Install (and I sincerely hope that
--# this is portable).
--sub libscan 
--{
--	my ($self, $file) = @_;
--
--	return if 'MyInstall.pm' eq $file;
--
--	$self->SUPER::libscan ($file);	
--}
--
--sub tools_other 
--{
--	my $self = shift;
--
--	my $fragment = $self->SUPER::tools_other (@_);
--
--	$fragment =~ s/^MOD_INSTALL\s*=\s*(.*?)-MExtUtils::Install
--		/MOD_INSTALL =$1-MMyInstall/msx;
--
--	return $fragment;
--}
--
- package main;
- 
--my $name = $0;
--$name =~ s,Makefile\.PL$,xs_disabled,;
--local *HANDLE;
--open HANDLE, ">$name" or die "cannot open '$name' for writing: $!";
--print HANDLE !$build_gettext_xs;
--close HANDLE or die "cannot close '$name': $!";
--
- WriteMakefile (
-     NAME		    => 'libintl-perl',
- 	VERSION_FROM	=> 'lib/Locale/Messages.pm',
-@@ -232,11 +184,6 @@
-         },
-     },
-     PL_FILES                => {},
--    DIR		            => [$build_gettext_xs ? ('gettext_xs') : ()],
--    clean		    => { FILES => 'xs_disabled build_xs' }
--    # If you want to build the XS version although the automatic detection
--    # suggests not to build it, uncomment the following line.
--    #DIR => [ ('gettext_xs') ],,
- );
- 
- sub MY::postamble {

diff --git a/dev-perl/libintl-perl/libintl-perl-1.240.0-r1.ebuild b/dev-perl/libintl-perl/libintl-perl-1.240.0-r1.ebuild
deleted file mode 100644
index cdefba9..0000000
--- a/dev-perl/libintl-perl/libintl-perl-1.240.0-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=GUIDO
-MODULE_VERSION=1.24
-inherit perl-module
-
-DESCRIPTION="High-Level Interface to Uniforum Message Translation"
-HOMEPAGE="http://guido-flohr.net/projects/libintl-perl ${HOMEPAGE}"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND="virtual/libintl"
-RDEPEND=${DEPEND}
-
-PATCHES=( "${FILESDIR}/${P}-sanity.patch" )
-
-SRC_TEST=do
-
-src_test() {
-	if grep -q '^de_' <( locale -a ) ; then
-		if grep -q '^de_AT$' <( locale -a ) ; then
-			perl-module_src_test
-		else
-			ewarn "Skipping tests, known broken with de_ and without de_AT"
-		fi
-	else
-		perl-module_src_test
-	fi
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/libintl-perl/files/, dev-perl/libintl-perl/
@ 2017-10-29 13:41 Kent Fredric
  0 siblings, 0 replies; 4+ messages in thread
From: Kent Fredric @ 2017-10-29 13:41 UTC (permalink / raw
  To: gentoo-commits

commit:     c2570b706d4e7e1777ecf4680986d6719ba584f5
Author:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 29 12:52:00 2017 +0000
Commit:     Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sun Oct 29 13:41:49 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2570b70

dev-perl/libintl-perl: Bump to version 1.280.0

- Drop hedging of de_AT ( advertised fixed upstream )
- Rework patch due to source changes

Upstream:
- Fixed false negatives in test suite
- New class methods options, keywords, flags, for Locale::TextDomain
- Don't require modules from relative paths
- Don't generate files in distribution
- Skip XS tests without explicit enabling
- Check applicability of de_AT test
- Disable translation tests on localeless systems

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-perl/libintl-perl/Manifest                     |  1 +
 .../files/libintl-perl-1.280.0-sanity-2.patch      | 65 ++++++++++++++++++++++
 dev-perl/libintl-perl/libintl-perl-1.280.0.ebuild  | 23 ++++++++
 dev-perl/libintl-perl/metadata.xml                 |  2 +-
 4 files changed, 90 insertions(+), 1 deletion(-)

diff --git a/dev-perl/libintl-perl/Manifest b/dev-perl/libintl-perl/Manifest
index f75668120f4..2f09d2b0462 100644
--- a/dev-perl/libintl-perl/Manifest
+++ b/dev-perl/libintl-perl/Manifest
@@ -1,2 +1,3 @@
 DIST libintl-perl-1.20.tar.gz 499899 SHA256 3036a9d2df85f200631b55a0b01082898c20819d9aabdb9b871508054bee5c67 SHA512 7d3ff7b1b48c2e5d1bcf07ce9e4519d3146acee04314709ccbfdfc54fb6d5d2583468bb72532115c423de9853364d4912c7a2ecffdd7132e5a4af59cca509db1 WHIRLPOOL 3509d0e9b4f671dd056cc53ef715bce3ae95bd02905f7ceed1aaee66d33278aeb34aa1f2166a64cbb557d2cafe9654324abc1267f0d8ab469f6dcedf7ba77e67
 DIST libintl-perl-1.24.tar.gz 605626 SHA256 d8d5e95f5553e1a624c3f8bf0cd42f4a46d67bcf83291d5bd6c81c9be2f261a2 SHA512 1c2c5d6d7ab21c45897195952a9f0f6ba26a9bbb7bfef0b5f3e9da282fcf94ab4ee80721164e5e3293d8abda0158e77ffbc331b8bed66aa56dd7fc7a6a91323d WHIRLPOOL e29989dd61c3d2305b1167b3242323e527d10095bd5a4185f7ab7aff4f6a5a9505f02cb244064eed0be2401a76ec00326e754254e854344e0af302aa8fc41aed
+DIST libintl-perl-1.28.tar.gz 470898 SHA256 7bebf2fb1b6d612dbee206693eac4707e185a3e85298683ec5944916b7cb4ebd SHA512 50f0836c1a84a22fcc8fca0fff2faeaae66774ec67b96c09a911c4969e8a610bbf20ba38167c13339b9ad9617e1fca07cb0cb1f12732f973b1cf618d502f59aa WHIRLPOOL 68319f1c34cf62f21ff398ae63a048a4f730e66a7e9a1ba936de95cdcbb8dd480681d0f5fad48cc91542bd6c83fa30a0c83255a6b8f5b5968454759686edd3d4

diff --git a/dev-perl/libintl-perl/files/libintl-perl-1.280.0-sanity-2.patch b/dev-perl/libintl-perl/files/libintl-perl-1.280.0-sanity-2.patch
new file mode 100644
index 00000000000..456ea3349a9
--- /dev/null
+++ b/dev-perl/libintl-perl/files/libintl-perl-1.280.0-sanity-2.patch
@@ -0,0 +1,65 @@
+From fbc3111eec0b71d247d6588bf1f9397bae558a29 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= <dilfridge@gentoo.org>
+Date: Wed, 1 Jun 2016 00:06:12 +0200
+Subject: Minimal build system patching
+
+Bug: https://bugs.gentoo.org/584636
+---
+ Makefile.PL | 41 -----------------------------------------
+ 1 file changed, 41 deletions(-)
+
+diff --git a/Makefile.PL b/Makefile.PL
+index 97d88bf..e23dc89 100644
+--- a/Makefile.PL
++++ b/Makefile.PL
+@@ -163,47 +163,6 @@ EOC
+ 
+ package MY;
+ 
+-# FIXME: This is really a hack! Problem: Depending on the build system,
+-# we may or may not build and install the XS version.  If the XS version
+-# is being built, the directory blib/arch will be populated, if it is
+-# not being built, blib/arch will be empty.  Unfortunately, if blib/arch
+-# is not empty, *all* library files will be installed in the architecture
+-# dependent locations, if it is empty, they will be installed in the
+-# architecture independent tree.
+-#
+-# Unfortunately, ExtUtils::MakeMaker does not take care of uninstalling
+-# files from previous installations.  Consequently, we cannot determine
+-# which version of the library will be loaded, since this depends on the
+-# current value of @INC.
+-#
+-# The solution does not really make me happy.  The Makefile will be patched,
+-# so that instead of ExtUtils::Install a custom module MyInstall.pm will
+-# be used.  This custom module overwrites the subroutine that detects
+-# whether a directory is empty in ExtUtils::Install, and will lie if that
+-# directory happens to be "blib/arch".  This little hack effectively disables 
+-# the annoying behavior of ExtUtils::Install (and I sincerely hope that
+-# this is portable).
+-sub libscan 
+-{
+-	my ($self, $file) = @_;
+-
+-	return if 'MyInstall.pm' eq $file;
+-
+-	$self->SUPER::libscan ($file);	
+-}
+-
+-sub tools_other 
+-{
+-	my $self = shift;
+-
+-	my $fragment = $self->SUPER::tools_other (@_);
+-
+-	$fragment =~ s/^MOD_INSTALL\s*=\s*(.*?)-MExtUtils::Install
+-		/MOD_INSTALL =$1-I. -MMyInstall/msx;
+-
+-	return $fragment;
+-}
+-
+ package main;
+ 
+ my $name = $0;
+-- 
+2.14.3
+

diff --git a/dev-perl/libintl-perl/libintl-perl-1.280.0.ebuild b/dev-perl/libintl-perl/libintl-perl-1.280.0.ebuild
new file mode 100644
index 00000000000..3259b10197c
--- /dev/null
+++ b/dev-perl/libintl-perl/libintl-perl-1.280.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=GUIDO
+DIST_VERSION=1.28
+inherit perl-module
+
+DESCRIPTION="High-Level Interface to Uniforum Message Translation"
+HOMEPAGE="http://guido-flohr.net/projects/libintl-perl ${HOMEPAGE}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+RDEPEND="virtual/libintl"
+DEPEND="${RDEPEND}
+	virtual/perl-ExtUtils-MakeMaker
+"
+
+PATCHES=( "${FILESDIR}/${P}-sanity-2.patch" )

diff --git a/dev-perl/libintl-perl/metadata.xml b/dev-perl/libintl-perl/metadata.xml
index 017b791bc85..642af8f5806 100644
--- a/dev-perl/libintl-perl/metadata.xml
+++ b/dev-perl/libintl-perl/metadata.xml
@@ -152,10 +152,10 @@
     <remote-id type="cpan-module">Locale::RecodeData::_Encode</remote-id>
     <remote-id type="cpan-module">Locale::TextDomain</remote-id>
     <remote-id type="cpan-module">Locale::Util</remote-id>
+    <remote-id type="cpan-module">Locale::gettext_dumb</remote-id>
     <remote-id type="cpan-module">Locale::gettext_pp</remote-id>
     <remote-id type="cpan-module">Locale::gettext_xs</remote-id>
     <remote-id type="cpan-module">MyInstall</remote-id>
     <remote-id type="cpan-module">SimpleCal</remote-id>
-    <remote-id type="cpan-module">__TiedTextDomain</remote-id>
   </upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-perl/libintl-perl/files/, dev-perl/libintl-perl/
@ 2019-10-15 11:31 Andreas K. Hüttel
  0 siblings, 0 replies; 4+ messages in thread
From: Andreas K. Hüttel @ 2019-10-15 11:31 UTC (permalink / raw
  To: gentoo-commits

commit:     9824a86d02ad05160a827b76d8b7870ea28b6b2e
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 15 11:30:18 2019 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Tue Oct 15 11:30:46 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9824a86d

dev-perl/libintl-perl: Remove old

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 dev-perl/libintl-perl/Manifest                     |  1 -
 .../files/libintl-perl-1.240.0-sanity-2.patch      | 51 ----------------------
 .../libintl-perl/libintl-perl-1.240.0-r2.ebuild    | 35 ---------------
 3 files changed, 87 deletions(-)

diff --git a/dev-perl/libintl-perl/Manifest b/dev-perl/libintl-perl/Manifest
index 4c9c2c5db8a..ca7d88df5f3 100644
--- a/dev-perl/libintl-perl/Manifest
+++ b/dev-perl/libintl-perl/Manifest
@@ -1,3 +1,2 @@
-DIST libintl-perl-1.24.tar.gz 605626 BLAKE2B 6949f895ba54853704d5470e8a736e799d74ddbd569378254ac19ada9cc43c644f78bea1949b7a4c0072d4fe54f0744b7ad011539c6a1dd1191c6792c9347f1a SHA512 1c2c5d6d7ab21c45897195952a9f0f6ba26a9bbb7bfef0b5f3e9da282fcf94ab4ee80721164e5e3293d8abda0158e77ffbc331b8bed66aa56dd7fc7a6a91323d
 DIST libintl-perl-1.28.tar.gz 470898 BLAKE2B 6217a37f2176869dc945bd64a87a82710645153e3777fb5e4ddc674f179040d2268f326411a578314efafaa0edbd0e67aed99c4da86e20e811e1116d5cf2a86a SHA512 50f0836c1a84a22fcc8fca0fff2faeaae66774ec67b96c09a911c4969e8a610bbf20ba38167c13339b9ad9617e1fca07cb0cb1f12732f973b1cf618d502f59aa
 DIST libintl-perl-1.31.tar.gz 598187 BLAKE2B 6ce30e51cb001993d6ee3727c69010a3d8d9014334df8749704760734486e50296cdf019e185b463d4ccb3aac660526b440d4217aa5b304f749c5ecf43d18ca3 SHA512 9e22af95ecb8ae1c115114ce5d4f80bb8b1a83e4072d274a55f5946267ac29b98e9da4c01e05d0aa0051fef34a41b6297dbb44f51b8d602f3ef3786a59a6a04a

diff --git a/dev-perl/libintl-perl/files/libintl-perl-1.240.0-sanity-2.patch b/dev-perl/libintl-perl/files/libintl-perl-1.240.0-sanity-2.patch
deleted file mode 100644
index e6adbf1419b..00000000000
--- a/dev-perl/libintl-perl/files/libintl-perl-1.240.0-sanity-2.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-diff -ruN libintl-perl-1.24.orig/Makefile.PL libintl-perl-1.24/Makefile.PL
---- libintl-perl-1.24.orig/Makefile.PL	2015-04-03 15:28:12.000000000 +0200
-+++ libintl-perl-1.24/Makefile.PL	2016-06-01 00:06:12.000000000 +0200
-@@ -163,47 +163,6 @@
- 
- package MY;
- 
--# FIXME: This is really a hack! Problem: Depending on the build system,
--# we may or may not build and install the XS version.  If the XS version
--# is being built, the directory blib/arch will be populated, if it is
--# not being built, blib/arch will be empty.  Unfortunately, if blib/arch
--# is not empty, *all* library files will be installed in the architecture
--# dependent locations, if it is empty, they will be installed in the
--# architecture independent tree.
--#
--# Unfortunately, ExtUtils::MakeMaker does not take care of uninstalling
--# files from previous installations.  Consequently, we cannot determine
--# which version of the library will be loaded, since this depends on the
--# current value of @INC.
--#
--# The solution does not really make me happy.  The Makefile will be patched,
--# so that instead of ExtUtils::Install a custom module MyInstall.pm will
--# be used.  This custom module overwrites the subroutine that detects
--# whether a directory is empty in ExtUtils::Install, and will lie if that
--# directory happens to be "blib/arch".  This little hack effectively disables 
--# the annoying behavior of ExtUtils::Install (and I sincerely hope that
--# this is portable).
--sub libscan 
--{
--	my ($self, $file) = @_;
--
--	return if 'MyInstall.pm' eq $file;
--
--	$self->SUPER::libscan ($file);	
--}
--
--sub tools_other 
--{
--	my $self = shift;
--
--	my $fragment = $self->SUPER::tools_other (@_);
--
--	$fragment =~ s/^MOD_INSTALL\s*=\s*(.*?)-MExtUtils::Install
--		/MOD_INSTALL =$1-MMyInstall/msx;
--
--	return $fragment;
--}
--
- package main;
- 
- my $name = $0;

diff --git a/dev-perl/libintl-perl/libintl-perl-1.240.0-r2.ebuild b/dev-perl/libintl-perl/libintl-perl-1.240.0-r2.ebuild
deleted file mode 100644
index 942ef2ce8d9..00000000000
--- a/dev-perl/libintl-perl/libintl-perl-1.240.0-r2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=GUIDO
-DIST_VERSION=1.24
-inherit perl-module
-
-DESCRIPTION="High-Level Interface to Uniforum Message Translation"
-HOMEPAGE="http://guido-flohr.net/projects/libintl-perl ${HOMEPAGE}"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-RDEPEND="virtual/libintl"
-DEPEND="${RDEPEND}
-	virtual/perl-ExtUtils-MakeMaker
-"
-
-PATCHES=( "${FILESDIR}/${P}-sanity-2.patch" )
-
-src_test() {
-	if grep -q '^de_' <( locale -a ) ; then
-		if grep -q '^de_AT$' <( locale -a ) ; then
-			perl-module_src_test
-		else
-			ewarn "Skipping tests, known broken with de_ and without de_AT"
-		fi
-	else
-		perl-module_src_test
-	fi
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-10-15 11:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-29 17:00 [gentoo-commits] repo/gentoo:master commit in: dev-perl/libintl-perl/files/, dev-perl/libintl-perl/ Andreas Hüttel
  -- strict thread matches above, loose matches on Subject: below --
2016-05-31 22:15 Andreas Hüttel
2017-10-29 13:41 Kent Fredric
2019-10-15 11:31 Andreas K. Hüttel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox