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/File-SearchPath/
Date: Mon, 31 Aug 2020 09:32:30
Message-Id: 1598866243.c86419bebbcdf2b8b6f6eb7863bd77d4492dd58c.kentnl@gentoo
1 commit: c86419bebbcdf2b8b6f6eb7863bd77d4492dd58c
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 31 09:29:58 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 31 09:30:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c86419be
7
8 dev-perl/File-SearchPath: -r bump for EAPI7 & fixes
9
10 - EAPI7
11 - Fix LICENSE
12 - Improve deps
13
14 Package-Manager: Portage-3.0.4, Repoman-3.0.1
15 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
16
17 .../File-SearchPath-0.70.0-r1.ebuild | 27 ++++++++++++++++++++++
18 1 file changed, 27 insertions(+)
19
20 diff --git a/dev-perl/File-SearchPath/File-SearchPath-0.70.0-r1.ebuild b/dev-perl/File-SearchPath/File-SearchPath-0.70.0-r1.ebuild
21 new file mode 100644
22 index 00000000000..c3c4834a2ce
23 --- /dev/null
24 +++ b/dev-perl/File-SearchPath/File-SearchPath-0.70.0-r1.ebuild
25 @@ -0,0 +1,27 @@
26 +# Copyright 1999-2020 Gentoo Authors
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI=7
30 +
31 +DIST_AUTHOR=TJENNESS
32 +DIST_VERSION=0.07
33 +inherit perl-module
34 +
35 +DESCRIPTION="Search for a file in an environment variable path"
36 +
37 +LICENSE="GPL-2+"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
40 +IUSE="test"
41 +RESTRICT="!test? ( test )"
42 +
43 +RDEPEND="
44 + >=virtual/perl-File-Spec-0.800.0
45 +"
46 +DEPEND="dev-perl/Module-Build"
47 +BDEPEND="
48 + >=dev-perl/Module-Build-0.360.0
49 + test? (
50 + virtual/perl-Test-Simple
51 + )
52 +"