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 10300138359 for ; Thu, 7 May 2020 12:01:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E4E6E0950; Thu, 7 May 2020 12:01:12 +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 2FD43E0950 for ; Thu, 7 May 2020 12:01:12 +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 DCCD634F3C9 for ; Thu, 7 May 2020 12:01:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 742511D6 for ; Thu, 7 May 2020 12:01:08 +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: <1588852794.82ad88ee9c19e768d89a8a04a019a0be959d4810.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/CHI/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/CHI/CHI-0.600.0-r1.ebuild X-VCS-Directories: dev-perl/CHI/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 82ad88ee9c19e768d89a8a04a019a0be959d4810 X-VCS-Branch: master Date: Thu, 7 May 2020 12:01:08 +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: 244f3774-e0e9-46a3-8487-ca5b7505f9be X-Archives-Hash: 6eaba61f0f548d0ddd3f84e733442024 commit: 82ad88ee9c19e768d89a8a04a019a0be959d4810 Author: Kent Fredric gentoo org> AuthorDate: Thu May 7 11:59:54 2020 +0000 Commit: Kent Fredric gentoo org> CommitDate: Thu May 7 11:59:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82ad88ee dev-perl/CHI: -r bump for EAPI7 - EAPI7 - Remove unneeded variables - Strip unhelpful tests (though I may revisit the smoke tests later) Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Kent Fredric gentoo.org> dev-perl/CHI/CHI-0.600.0-r1.ebuild | 56 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/dev-perl/CHI/CHI-0.600.0-r1.ebuild b/dev-perl/CHI/CHI-0.600.0-r1.ebuild new file mode 100644 index 00000000000..39a127d7a63 --- /dev/null +++ b/dev-perl/CHI/CHI-0.600.0-r1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DIST_AUTHOR=JSWARTZ +DIST_VERSION=0.60 +inherit perl-module + +DESCRIPTION="Unified cache handling interface" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-perl/Carp-Assert-0.200.0 + dev-perl/Class-Load + dev-perl/Data-UUID + dev-perl/Digest-JHash + virtual/perl-Digest-MD5 + >=virtual/perl-File-Spec-0.800.0 + dev-perl/Hash-MoreUtils + >=dev-perl/JSON-MaybeXS-1.3.3 + >=dev-perl/List-MoreUtils-0.130.0 + >=dev-perl/Log-Any-0.80.0 + >=dev-perl/Moo-1.3.0 + >=dev-perl/MooX-Types-MooseLike-0.230.0 + dev-perl/MooX-Types-MooseLike-Numeric + virtual/perl-Storable + dev-perl/String-RewritePrefix + dev-perl/Task-Weaken + >=dev-perl/Time-Duration-1.60.0 + >=dev-perl/Time-Duration-Parse-0.30.0 + virtual/perl-Time-HiRes + >=dev-perl/Try-Tiny-0.50.0 +" +BDEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + dev-perl/TimeDate + virtual/perl-Test-Simple + dev-perl/Test-Class + dev-perl/Test-Deep + dev-perl/Test-Exception + dev-perl/Test-Warn + ) +" +PERL_RM_FILES=( + t/author-{03-pod,file-driver,no-data-serializer,RequiredModules}.t + t/smoke-Driver-{CacheCache,File-DepthZero,FastMmap,File,NonMoose}.t + t/smoke-Driver-Subcache-{mirror,l1}_cache.t + t/smoke-Null.t + t/release-dependent.t +)