Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/CGI-PSGI/
Date: Sat, 26 Sep 2020 09:25:02
Message-Id: 1601112230.6fa569d864188b4be712728886a8b6e4f1d40214.kentnl@gentoo
1 commit: 6fa569d864188b4be712728886a8b6e4f1d40214
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 26 09:03:38 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 26 09:23:50 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fa569d8
7
8 dev-perl/CGI-PSGI: Cleanup old 0.150.0-r1
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
12
13 dev-perl/CGI-PSGI/CGI-PSGI-0.150.0-r1.ebuild | 32 ----------------------------
14 1 file changed, 32 deletions(-)
15
16 diff --git a/dev-perl/CGI-PSGI/CGI-PSGI-0.150.0-r1.ebuild b/dev-perl/CGI-PSGI/CGI-PSGI-0.150.0-r1.ebuild
17 deleted file mode 100644
18 index de54a5de6b4..00000000000
19 --- a/dev-perl/CGI-PSGI/CGI-PSGI-0.150.0-r1.ebuild
20 +++ /dev/null
21 @@ -1,32 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -MODULE_AUTHOR=MIYAGAWA
28 -MODULE_VERSION=0.15
29 -inherit perl-module
30 -
31 -DESCRIPTION="Adapt CGI.pm to the PSGI protocol"
32 -
33 -SLOT="0"
34 -KEYWORDS="amd64 ~x86"
35 -IUSE="test"
36 -RESTRICT="!test? ( test )"
37 -
38 -RDEPEND="
39 - >=dev-perl/CGI-3.330.0
40 -"
41 -DEPEND="${RDEPEND}
42 - test? (
43 - >=virtual/perl-Test-Simple-0.88
44 - )
45 -"
46 -
47 -SRC_TEST="do"
48 -
49 -src_prepare() {
50 - sed -i -e 's/use inc::Module::Install;/use lib q[.]; use inc::Module::Install;/' Makefile.PL ||
51 - die "Can't patch Makefile.PL for 5.26 dot-in-inc"
52 - perl-module_src_prepare
53 -}