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/Archive-Tar-Stream/
Date: Tue, 28 Apr 2020 13:42:38
Message-Id: 1588081326.09fc3486deecc4ed1de2923b2ce90f1d61d1b1fa.kentnl@gentoo
1 commit: 09fc3486deecc4ed1de2923b2ce90f1d61d1b1fa
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 28 13:37:24 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 28 13:42:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09fc3486
7
8 dev-perl/Archive-Tar-Stream: -r1 QA pass (EAPI,LICENSE,DEPS)
9
10 - Move to EAPI7
11 - Remove redundant and incorrect LICENSE ( things with license="perl"
12 are correctly handled by perl-module.eclass defaults, and its || (
13 Artistic-1 GPL-1+ )
14 - Remove unwanted tests
15 - Remove incorrect HOMEPAGE ( default provided by perl-module.eclass
16 is more correct as the official authorship of a package changes over
17 time, and the metacpan default URL thus maps correctly )
18
19 Package-Manager: Portage-2.3.97, Repoman-2.3.22
20 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
21
22 .../Archive-Tar-Stream-0.30.0-r1.ebuild | 31 ++++++++++++++++++++++
23 1 file changed, 31 insertions(+)
24
25 diff --git a/dev-perl/Archive-Tar-Stream/Archive-Tar-Stream-0.30.0-r1.ebuild b/dev-perl/Archive-Tar-Stream/Archive-Tar-Stream-0.30.0-r1.ebuild
26 new file mode 100644
27 index 00000000000..06d8f2be23b
28 --- /dev/null
29 +++ b/dev-perl/Archive-Tar-Stream/Archive-Tar-Stream-0.30.0-r1.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DIST_AUTHOR=CDRAKE
37 +DIST_VERSION=0.03
38 +inherit perl-module
39 +
40 +DESCRIPTION="pure perl IO-friendly tar file management"
41 +
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="test"
45 +RESTRICT="!test? ( test )"
46 +
47 +RDEPEND="
48 + virtual/perl-File-Temp
49 + virtual/perl-IO
50 +"
51 +BDEPEND="${RDEPEND}
52 + virtual/perl-ExtUtils-MakeMaker
53 + test? (
54 + virtual/perl-Test-Simple
55 + )
56 +"
57 +PERL_RM_FILES=(
58 + "t/pod-coverage.t"
59 + "t/pod.t"
60 + "t/manifest.t"
61 +)