From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8460C138350 for ; Tue, 28 Apr 2020 13:42:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A3BD5E0977; Tue, 28 Apr 2020 13:42:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 85A05E0977 for ; Tue, 28 Apr 2020 13:42:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 30ADB34ED3D for ; Tue, 28 Apr 2020 13:42:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA9BE1A8 for ; Tue, 28 Apr 2020 13:42:34 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1588081326.09fc3486deecc4ed1de2923b2ce90f1d61d1b1fa.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Archive-Tar-Stream/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Archive-Tar-Stream/Archive-Tar-Stream-0.30.0-r1.ebuild X-VCS-Directories: dev-perl/Archive-Tar-Stream/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 09fc3486deecc4ed1de2923b2ce90f1d61d1b1fa X-VCS-Branch: master Date: Tue, 28 Apr 2020 13:42:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a367a3cd-72c3-443c-8411-30082a7bdb66 X-Archives-Hash: f9b621605a1450c92e6950ecea37b4cb commit: 09fc3486deecc4ed1de2923b2ce90f1d61d1b1fa Author: Kent Fredric gentoo org> AuthorDate: Tue Apr 28 13:37:24 2020 +0000 Commit: Kent Fredric gentoo org> CommitDate: Tue Apr 28 13:42:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09fc3486 dev-perl/Archive-Tar-Stream: -r1 QA pass (EAPI,LICENSE,DEPS) - Move to EAPI7 - Remove redundant and incorrect LICENSE ( things with license="perl" are correctly handled by perl-module.eclass defaults, and its || ( Artistic-1 GPL-1+ ) - Remove unwanted tests - Remove incorrect HOMEPAGE ( default provided by perl-module.eclass is more correct as the official authorship of a package changes over time, and the metacpan default URL thus maps correctly ) Package-Manager: Portage-2.3.97, Repoman-2.3.22 Signed-off-by: Kent Fredric gentoo.org> .../Archive-Tar-Stream-0.30.0-r1.ebuild | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) 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 new file mode 100644 index 00000000000..06d8f2be23b --- /dev/null +++ b/dev-perl/Archive-Tar-Stream/Archive-Tar-Stream-0.30.0-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=CDRAKE +DIST_VERSION=0.03 +inherit perl-module + +DESCRIPTION="pure perl IO-friendly tar file management" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + virtual/perl-File-Temp + virtual/perl-IO +" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + virtual/perl-Test-Simple + ) +" +PERL_RM_FILES=( + "t/pod-coverage.t" + "t/pod.t" + "t/manifest.t" +)