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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CB050158498 for ; Wed, 22 May 2024 02:55:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D625E2A3D; Wed, 22 May 2024 02:55:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 46A51E2A3D for ; Wed, 22 May 2024 02:55:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9214233BEBB for ; Wed, 22 May 2024 02:55:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D08AA1B06 for ; Wed, 22 May 2024 02:55:19 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1716345525.ec62351bace628be592dcdd47af8cc8a163ec5a6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-Cracklib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r4.ebuild X-VCS-Directories: dev-perl/Crypt-Cracklib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ec62351bace628be592dcdd47af8cc8a163ec5a6 X-VCS-Branch: master Date: Wed, 22 May 2024 02:55:19 +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: fb64161b-d19e-4d57-9116-daacdc93651b X-Archives-Hash: 251e8e934402bd46395ac6915134c505 commit: ec62351bace628be592dcdd47af8cc8a163ec5a6 Author: Sam James gentoo org> AuthorDate: Wed May 22 02:38:45 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 22 02:38:45 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec62351b dev-perl/Crypt-Cracklib: EAPI 8, rely on eclass impls This covers more variables/args, etc. Signed-off-by: Sam James gentoo.org> .../Crypt-Cracklib-1.700.0-r4.ebuild | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r4.ebuild b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r4.ebuild new file mode 100644 index 000000000000..db112e35efee --- /dev/null +++ b/dev-perl/Crypt-Cracklib/Crypt-Cracklib-1.700.0-r4.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=DANIEL +DIST_VERSION=1.7 +inherit perl-module + +DESCRIPTION="Perl interface to Alec Muffett's Cracklib" + +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="sys-libs/cracklib" +DEPEND="${RDEPEND}" +BDEPEND=" + ${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.420.0 + test? ( + >=virtual/perl-Test-Simple-0.470.0 + ) +" + +PATCHES=( + "${FILESDIR}/${PN}-1.7-CFLAGS-1.patch" + "${FILESDIR}/${PN}-1.7-no-dot-inc.patch" +) + +PERL_RM_FILES=( + t/pod-coverage.t + t/pod.t +)