diff options
author | 2024-03-14 12:43:56 -0400 | |
---|---|---|
committer | 2024-03-15 10:56:47 -0400 | |
commit | 2630ff5a0f5dc45a04f7fa21ec55957e5d475901 (patch) | |
tree | 9b2fd55775f06a0fe15e6a3adad11e929cc88366 /dev-perl/Pod-Parser | |
parent | dev-perl/Pod-Eventual: Drop old versions (diff) | |
download | gentoo-2630ff5a0f5dc45a04f7fa21ec55957e5d475901.tar.gz gentoo-2630ff5a0f5dc45a04f7fa21ec55957e5d475901.tar.bz2 gentoo-2630ff5a0f5dc45a04f7fa21ec55957e5d475901.zip |
dev-perl/Pod-Parser: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-perl/Pod-Parser')
-rw-r--r-- | dev-perl/Pod-Parser/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/Pod-Parser/Pod-Parser-1.630.0-r1.ebuild | 40 | ||||
-rw-r--r-- | dev-perl/Pod-Parser/files/Pod-Parser-1.63-no-binscript.patch | 25 |
3 files changed, 0 insertions, 66 deletions
diff --git a/dev-perl/Pod-Parser/Manifest b/dev-perl/Pod-Parser/Manifest index f52acf1f7282..94fe464dd8ad 100644 --- a/dev-perl/Pod-Parser/Manifest +++ b/dev-perl/Pod-Parser/Manifest @@ -1,2 +1 @@ -DIST Pod-Parser-1.63.tar.gz 79707 BLAKE2B b53c9ac63f967e712f45af0f935d7a10318e6f39d7489605a9ec013d3249615736ac2ec5206f9d50eedd5eeffb4f0c0df67e071903b08c77946a4c7fbc8e0971 SHA512 55f5741bb906701705f489b2314d3f11cd6d63ca5b64a60fdbda7eed0388945f2e68262735c7cc33b7089794630393049e619f9900e85c71bf9223243bc0984a DIST Pod-Parser-1.66.tar.gz 84064 BLAKE2B 8b96e0966f96d3ab6c1413c3b3b9ac5f0752005b13703846e538ca4dc4a3c80d70a5d8780478882817e478978aa5b0eca44a4a81a40c625e88134a3c55a6e659 SHA512 7e9db0166ad74e45a61542a12e901443ae82e5ba06d8c0704f9a617fc792b41b5520b9c071f9ec93bddffaae9a3e2232a777e45d1f64f8e418dd788dd49c189f diff --git a/dev-perl/Pod-Parser/Pod-Parser-1.630.0-r1.ebuild b/dev-perl/Pod-Parser/Pod-Parser-1.630.0-r1.ebuild deleted file mode 100644 index 58e5096a1353..000000000000 --- a/dev-perl/Pod-Parser/Pod-Parser-1.630.0-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=MAREKR -DIST_VERSION=1.63 -inherit perl-module - -DESCRIPTION="POD filters and translators" - -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - virtual/perl-File-Spec -" -BDEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - test? ( - virtual/perl-Test-Simple - ) -" -src_prepare() { - # This avoids filename collision in /usr/bin on perl <5.32 - # which previously had this script. But no decollisioning needed for the modules - # due to that already being handled by @INC stuff - # Though, it does mean that with this installed, the podselect shipped in perl <5.32 - # will consume modules shipped by this ebuild, but that doesn't look very problematic - # looking at the code (its just a dumb shim with arg-parsing) - if has_version -r "<dev-lang/perl-5.32"; then - einfo "Stripping podselect for compat with perl <5.32"; - perl_rm_files "scripts/podselect.PL" \ - "t/pod/podselect.t" - eapply "${FILESDIR}/${PN}-1.63-no-binscript.patch" - fi - perl-module_src_prepare -} diff --git a/dev-perl/Pod-Parser/files/Pod-Parser-1.63-no-binscript.patch b/dev-perl/Pod-Parser/files/Pod-Parser-1.63-no-binscript.patch deleted file mode 100644 index 20efa9b8ac24..000000000000 --- a/dev-perl/Pod-Parser/files/Pod-Parser-1.63-no-binscript.patch +++ /dev/null @@ -1,25 +0,0 @@ -From c3049f6c575836f19ff234635cd9ac8cf23cc930 Mon Sep 17 00:00:00 2001 -From: Kent Fredric <kentnl@gentoo.org> -Date: Tue, 11 Aug 2020 10:13:39 +1200 -Subject: Don't compile podselect bin script - ---- - Makefile.PL | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/Makefile.PL b/Makefile.PL -index 258f51e..e6cac08 100755 ---- a/Makefile.PL -+++ b/Makefile.PL -@@ -31,7 +31,7 @@ $DISTMOD = 'Pod::Parser'; ## The "title" module of this distribution - );
-
- ## The executable scripts to be installed
--@SCRIPTS = qw( podselect
-+@SCRIPTS = qw(
- );
- sub script($) { File::Spec->catfile ('scripts', @_) }
- my @EXE_FILES = ();
--- -2.28.0 - |