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/DBIx-Class-InflateColumn-IP/
Date: Fri, 20 Oct 2017 07:40:12
Message-Id: 1508485181.e20ffb86df15b97b61796372c3ba06b56cda8d97.kentnl@gentoo
1 commit: e20ffb86df15b97b61796372c3ba06b56cda8d97
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 20 00:32:05 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 20 07:39:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e20ffb86
7
8 dev-perl/DBIx-Class-InflateColumn-IP: EAPI6 + Tests
9
10 - EAPI6
11 - Enable tests
12
13 Package-Manager: Portage-2.3.8, Repoman-2.3.3
14
15 .../DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild | 31 ++++++++++++++++++++++
16 1 file changed, 31 insertions(+)
17
18 diff --git a/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild b/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild
19 new file mode 100644
20 index 00000000000..479c54e5bac
21 --- /dev/null
22 +++ b/dev-perl/DBIx-Class-InflateColumn-IP/DBIx-Class-InflateColumn-IP-0.20.30-r1.ebuild
23 @@ -0,0 +1,31 @@
24 +# Copyright 1999-2017 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=6
28 +
29 +DIST_AUTHOR=ILMARI
30 +DIST_VERSION=0.02003
31 +inherit perl-module
32 +
33 +DESCRIPTION="Auto-create NetAddr::IP objects from columns"
34 +
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +IUSE=""
38 +
39 +RDEPEND="
40 + dev-perl/NetAddr-IP
41 + >=dev-perl/DBIx-Class-0.81.70
42 +"
43 +DEPEND="${RDEPEND}"
44 +
45 +src_prepare() {
46 + sed -i -e 's/use inc::Module::Install /use lib q[.];\nuse inc::Module::Install /' Makefile.PL ||
47 + die "Can't patch Makefile.PL for 5.26 dot-in-inc"
48 + perl-module_src_prepare
49 +}
50 +
51 +src_test() {
52 + perl_rm_files t/pod-coverage.t t/pod.t t/style-notabs.t
53 + perl-module_src_test
54 +}