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 78DA813835C for ; Sun, 30 May 2021 16:03:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C63B5E0824; Sun, 30 May 2021 16:03:10 +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 AE04DE0824 for ; Sun, 30 May 2021 16:03:10 +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 B4CF0335D67 for ; Sun, 30 May 2021 16:03:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD28F7A3 for ; Sun, 30 May 2021 16:03:06 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1622390569.8208908c5ef7630e5212f2f048ca79fe8d589bff.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/File-Next/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/File-Next/File-Next-1.180.0.ebuild X-VCS-Directories: dev-perl/File-Next/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 8208908c5ef7630e5212f2f048ca79fe8d589bff X-VCS-Branch: master Date: Sun, 30 May 2021 16:03:06 +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: 8fb33593-b79c-44ea-893a-5063c6988458 X-Archives-Hash: 9090fafb6611cb8829d4ceaa1b0e67a7 commit: 8208908c5ef7630e5212f2f048ca79fe8d589bff Author: Andreas K. Hüttel gentoo org> AuthorDate: Sun May 30 15:58:06 2021 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Sun May 30 16:02:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8208908c dev-perl/File-Next: Remove old 1.18 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-perl/File-Next/File-Next-1.180.0.ebuild | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/dev-perl/File-Next/File-Next-1.180.0.ebuild b/dev-perl/File-Next/File-Next-1.180.0.ebuild deleted file mode 100644 index 49d21d698fc..00000000000 --- a/dev-perl/File-Next/File-Next-1.180.0.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DIST_AUTHOR=PETDANCE -DIST_VERSION=1.18 -inherit perl-module - -DESCRIPTION="File::Next is an iterator-based module for finding files" - -LICENSE="Artistic-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" -IUSE="test" - -RDEPEND="virtual/perl-File-Spec" -DEPEND="${RDEPEND} - virtual/perl-ExtUtils-MakeMaker - test? ( virtual/perl-Test-Simple ) -" -RESTRICT="!test? ( test )" - -src_test() { - # Ugh, Upstream has tests that depend on tests ... - echo 'print qq[1..1\nok 1];' > "${S}/t/pod.t" - echo 'print qq[1..1\nok 1];' > "${S}/t/pod-coverage.t" - perl-module_src_test -}