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 70D671382C5 for ; Thu, 18 Jun 2020 23:54:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A6FCAE0825; Thu, 18 Jun 2020 23:54:19 +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 8E884E0825 for ; Thu, 18 Jun 2020 23:54:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 93B2C34F3A8 for ; Thu, 18 Jun 2020 23:54:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F08328F for ; Thu, 18 Jun 2020 23:54:17 +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: <1592524425.47140a20c3ea4c7fd1d85fbad1474b1a3212eddf.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Mix/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Class-Mix/Class-Mix-0.6.0-r1.ebuild X-VCS-Directories: dev-perl/Class-Mix/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 47140a20c3ea4c7fd1d85fbad1474b1a3212eddf X-VCS-Branch: master Date: Thu, 18 Jun 2020 23:54:17 +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: 8e476016-b7bf-4fcf-931a-beed3eced3cd X-Archives-Hash: 5cd1f553f9624cd6962f226b5e8ecbff commit: 47140a20c3ea4c7fd1d85fbad1474b1a3212eddf Author: Kent Fredric gentoo org> AuthorDate: Thu Jun 18 23:50:59 2020 +0000 Commit: Kent Fredric gentoo org> CommitDate: Thu Jun 18 23:53:45 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47140a20 dev-perl/Class-Mix: -r bump for EAPI7 - EAPI7 - Correct LICENSE ( perl-module.eclass does a better default for perl5, as perl5 means Artistic || GPL-1+ - Unconditionally patch bad tests out Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Kent Fredric gentoo.org> dev-perl/Class-Mix/Class-Mix-0.6.0-r1.ebuild | 34 ++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/dev-perl/Class-Mix/Class-Mix-0.6.0-r1.ebuild b/dev-perl/Class-Mix/Class-Mix-0.6.0-r1.ebuild new file mode 100644 index 00000000000..b8e2063c0d6 --- /dev/null +++ b/dev-perl/Class-Mix/Class-Mix-0.6.0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +DIST_AUTHOR=ZEFRAM +DIST_VERSION=0.006 +inherit perl-module + +DESCRIPTION="dynamic class mixing" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + virtual/perl-Carp + dev-perl/Params-Classify + virtual/perl-Exporter + virtual/perl-if + virtual/perl-parent +" +DEPEND=" + dev-perl/Module-Build +" +BDEPEND="${RDEPEND} + dev-perl/Module-Build + test? ( + virtual/perl-Test-Simple + ) +" +PERL_RM_FILES=( + t/pod_cvg.t + t/pod_syn.t +)