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/Lchown/
Date: Sun, 29 Oct 2017 15:07:16
Message-Id: 1509289623.b9fdec5377e4577077092bdae9a7cfd00179a2da.kentnl@gentoo
1 commit: b9fdec5377e4577077092bdae9a7cfd00179a2da
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 29 14:01:35 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 29 15:07:03 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9fdec53
7
8 dev-perl/Lchown: Enable tests
9
10 - EAPI6
11 - Enable tests
12
13 Package-Manager: Portage-2.3.8, Repoman-2.3.3
14
15 dev-perl/Lchown/Lchown-1.10.0-r2.ebuild | 23 +++++++++++++++++++++++
16 1 file changed, 23 insertions(+)
17
18 diff --git a/dev-perl/Lchown/Lchown-1.10.0-r2.ebuild b/dev-perl/Lchown/Lchown-1.10.0-r2.ebuild
19 new file mode 100644
20 index 00000000000..f5300354013
21 --- /dev/null
22 +++ b/dev-perl/Lchown/Lchown-1.10.0-r2.ebuild
23 @@ -0,0 +1,23 @@
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=NCLEATON
30 +DIST_VERSION=1.01
31 +inherit perl-module
32 +
33 +DESCRIPTION="Use the lchown(2) system call from Perl"
34 +
35 +SLOT="0"
36 +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
37 +IUSE=""
38 +
39 +RDEPEND=""
40 +DEPEND="
41 + ${RDEPEND}
42 + dev-perl/Module-Build"
43 +src_test() {
44 + perl_rm_files t/pod-coverage.t t/pod.t
45 + perl-module_src_test
46 +}