From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id BBED915807A for ; Fri, 06 Jun 2025 03:44:25 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id A85413431C5 for ; Fri, 06 Jun 2025 03:44:25 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id E3E0F1103C1; Fri, 06 Jun 2025 03:44:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id DE7AF1103C1 for ; Fri, 06 Jun 2025 03:44:21 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 93C3A3431D9 for ; Fri, 06 Jun 2025 03:44:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E30152903 for ; Fri, 06 Jun 2025 03:44: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: <1749179545.3df45fc7e8536f2555c8c677a998fc1198b80d5c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-SPF/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Mail-SPF/Mail-SPF-3.202.505.50.ebuild dev-perl/Mail-SPF/Manifest X-VCS-Directories: dev-perl/Mail-SPF/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3df45fc7e8536f2555c8c677a998fc1198b80d5c X-VCS-Branch: master Date: Fri, 06 Jun 2025 03:44: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: ccf022a7-c4c4-4559-9961-1ad22973d572 X-Archives-Hash: fadb90c5f07bd6011a32c8f5d115770d commit: 3df45fc7e8536f2555c8c677a998fc1198b80d5c Author: Sam James gentoo org> AuthorDate: Fri Jun 6 03:12:25 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jun 6 03:12:25 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3df45fc7 dev-perl/Mail-SPF: add 3.202.505.50 Signed-off-by: Sam James gentoo.org> dev-perl/Mail-SPF/Mail-SPF-3.202.505.50.ebuild | 53 ++++++++++++++++++++++++++ dev-perl/Mail-SPF/Manifest | 1 + 2 files changed, 54 insertions(+) diff --git a/dev-perl/Mail-SPF/Mail-SPF-3.202.505.50.ebuild b/dev-perl/Mail-SPF/Mail-SPF-3.202.505.50.ebuild new file mode 100644 index 000000000000..020bda360b10 --- /dev/null +++ b/dev-perl/Mail-SPF/Mail-SPF-3.202.505.50.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DIST_AUTHOR=ADAVIS +DIST_VERSION=3.20250505 +inherit perl-module + +DESCRIPTION="An object-oriented implementation of Sender Policy Framework" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + dev-perl/Error + >=dev-perl/Net-DNS-0.620.0 + >=dev-perl/NetAddr-IP-4 + >=dev-perl/URI-1.130.0 + dev-perl/Net-DNS-Resolver-Programmable +" +# TODO: Mail::SPF::Test for more tests? +BDEPEND=" + ${RDEPEND} + dev-perl/Net-DNS-Resolver-Programmable +" + +src_prepare() { + perl-module_src_prepare + sed -i \ + -e "s:spfquery:spfquery.pl:" \ + -e "s:spfd:spfd.pl:" \ + Makefile.PL || die "sed failed" + mv "${S}"/bin/spfquery{,.pl} || die "renaming spfquery failed" # bug #281189 + mv "${S}"/bin/spfd{,.pl} || die "renaming spfd failed" # bugs #886179 and #928140 +} + +src_test() { + local badfiles=( + t/90-author-pod-validation.t + ) + if ! has network ${DIST_TEST_OVERRIDE:-${DIST_TEST:-do parallel}}; then + einfo "Removing network tests w/o DIST_TEST_OVERRIDE=~network" + badfiles+=( "t/00.04-class-server.t" ) + fi + perl_rm_files "${badfiles[@]}" + perl-module_src_test +} + +pkg_postinst() { + elog "The spfquery script was renamed to spfquery.pl because of file collisions." +} diff --git a/dev-perl/Mail-SPF/Manifest b/dev-perl/Mail-SPF/Manifest index e11d080ed0a9..2aee0ca318c1 100644 --- a/dev-perl/Mail-SPF/Manifest +++ b/dev-perl/Mail-SPF/Manifest @@ -1 +1,2 @@ DIST Mail-SPF-3.20240923.tar.gz 94271 BLAKE2B 76d88c17ef009c6f86105b3b9a39c1111d9f600ece3183ac4809ffdcbaf6206a770e5d463ca9c23c7a0e54663d152d66c31fbf94e833711c724a08340a7a218e SHA512 f97b73a2ce08959118762da1239cd9d6a623ce767e8f9d9df424801c1bac654c65c807f072081c43eb494fe255ca54527f50c2336e91fc68cc671dc2b780a6d8 +DIST Mail-SPF-3.20250505.tar.gz 94915 BLAKE2B 9f60299a257f348ecfe7df34e70f32df02ce1d33746e81813bfa2edd9c975239e2ff12d484f26dbc14cee10bcce71af4a7e354677e5404b1d23a7c9c2c1ab12c SHA512 c3a22a276481f0b2992109a988cb1ddca8ab00cc657f1b2705fa3b453293d37a3218ead781e81bf42492d4ee5e208e6df48614998f295132eff081f749d28296