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/Sys-Hostname-Long/
Date: Wed, 10 Jan 2018 20:46:45
Message-Id: 1515617186.b77214c08d5605ec4121fae9d3ebb4ad2aa63c91.kentnl@gentoo
1 commit: b77214c08d5605ec4121fae9d3ebb4ad2aa63c91
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 10 20:42:52 2018 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 10 20:46:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b77214c0
7
8 dev-perl/Sys-Hostname-Long: EAPI6 + Test
9
10 - EAPI6ify
11 - Enable tests
12
13 Package-Manager: Portage-2.3.18, Repoman-2.3.6
14
15 .../Sys-Hostname-Long-1.500.0-r1.ebuild | 21 +++++++++++++++++++++
16 1 file changed, 21 insertions(+)
17
18 diff --git a/dev-perl/Sys-Hostname-Long/Sys-Hostname-Long-1.500.0-r1.ebuild b/dev-perl/Sys-Hostname-Long/Sys-Hostname-Long-1.500.0-r1.ebuild
19 new file mode 100644
20 index 00000000000..7b7aae9637c
21 --- /dev/null
22 +++ b/dev-perl/Sys-Hostname-Long/Sys-Hostname-Long-1.500.0-r1.ebuild
23 @@ -0,0 +1,21 @@
24 +# Copyright 1999-2018 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=6
28 +
29 +DIST_AUTHOR=SCOTT
30 +DIST_VERSION=1.5
31 +inherit perl-module
32 +
33 +DESCRIPTION="Try every conceivable way to get full hostname"
34 +
35 +SLOT="0"
36 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
37 +IUSE=""
38 +
39 +src_install() {
40 + perl-module_src_install
41 + rm "${ED}${VENDOR_LIB}"/Sys/Hostname/testall.pl || die
42 + dodoc testall.pl
43 + docompress -x /usr/share/doc/${PF}/testall.pl
44 +}