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 AA5FA1392E8 for ; Sat, 24 Jul 2021 22:00:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF916E0B0C; Sat, 24 Jul 2021 22:00:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A6873E0B47 for ; Sat, 24 Jul 2021 22:00:23 +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 502CD342D39 for ; Sat, 24 Jul 2021 22:00:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D95BC823 for ; Sat, 24 Jul 2021 22:00:20 +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: <1627163335.67e72af5859bb19a081cb37315dcee1f23f5c0ee.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Parse-RecDescent/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Parse-RecDescent/Parse-RecDescent-1.967.15-r1.ebuild dev-perl/Parse-RecDescent/Parse-RecDescent-1.967.15.ebuild X-VCS-Directories: dev-perl/Parse-RecDescent/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 67e72af5859bb19a081cb37315dcee1f23f5c0ee X-VCS-Branch: master Date: Sat, 24 Jul 2021 22:00:20 +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: 1ba83ee1-44bf-4773-9d7b-760eace2cd99 X-Archives-Hash: 20d2e636cfc6a295f0739a6c0a2a8fba commit: 67e72af5859bb19a081cb37315dcee1f23f5c0ee Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Jul 24 21:48:55 2021 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Sat Jul 24 21:48:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67e72af5 dev-perl/Parse-RecDescent: EAPI=8 bump Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Andreas K. Hüttel gentoo.org> ....15.ebuild => Parse-RecDescent-1.967.15-r1.ebuild} | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/dev-perl/Parse-RecDescent/Parse-RecDescent-1.967.15.ebuild b/dev-perl/Parse-RecDescent/Parse-RecDescent-1.967.15-r1.ebuild similarity index 71% rename from dev-perl/Parse-RecDescent/Parse-RecDescent-1.967.15.ebuild rename to dev-perl/Parse-RecDescent/Parse-RecDescent-1.967.15-r1.ebuild index e69e3d1dd24..4d2d8192288 100644 --- a/dev-perl/Parse-RecDescent/Parse-RecDescent-1.967.15.ebuild +++ b/dev-perl/Parse-RecDescent/Parse-RecDescent-1.967.15-r1.ebuild @@ -1,40 +1,33 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DIST_AUTHOR=JTBRAUN DIST_VERSION=1.967015 +DIST_EXAMPLES=( 'demo/*' ) inherit perl-module DESCRIPTION="Generate Recursive-Descent Parsers" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="test examples" -RESTRICT="!test? ( test )" RDEPEND=" >=virtual/perl-Text-Balanced-1.950.0 " -DEPEND="${RDEPEND} +BDEPEND="${RDEPEND} dev-perl/Module-Build test? ( virtual/perl-Test-Simple dev-perl/Test-Warn ) " -src_test() { - perl_rm_files "t/pod.t" - perl-module_src_test -} + +PERL_RM_FILES=( "t/pod.t" ) + src_install() { perl-module_src_install docinto html/ dodoc -r tutorial - if use examples; then - docompress -x /usr/share/doc/${PF}/examples/ - docinto examples/ - dodoc -r demo/* - fi }