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 501801581EE for ; Wed, 02 Apr 2025 01:43:44 +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 3E585343261 for ; Wed, 02 Apr 2025 01:43:44 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 30F591104B8; Wed, 02 Apr 2025 01:43:26 +0000 (UTC) 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 bobolink.gentoo.org (Postfix) with ESMTPS id 26DFA1104B8 for ; Wed, 02 Apr 2025 01:43:26 +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 D0B503431FB for ; Wed, 02 Apr 2025 01:43:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B20082865 for ; Wed, 02 Apr 2025 01:43:22 +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: <1743558001.8d06842954134cd228c5cf499ae4649eabbce6cb.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/libmilter/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/libmilter/libmilter-1.0.2_p3-r2.ebuild mail-filter/libmilter/libmilter-1.0.2_p3-r3.ebuild X-VCS-Directories: mail-filter/libmilter/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 8d06842954134cd228c5cf499ae4649eabbce6cb X-VCS-Branch: master Date: Wed, 02 Apr 2025 01:43:22 +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: 0d2a3841-0495-4f01-80f3-05857d7a5fa4 X-Archives-Hash: c04663ffc4819b6505da8cd1f74f18a3 commit: 8d06842954134cd228c5cf499ae4649eabbce6cb Author: Sam James gentoo org> AuthorDate: Wed Apr 2 01:24:00 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed Apr 2 01:40:01 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d068429 mail-filter/libmilter: update SRC_URI (FTP->HTTPS) ... and add fallback URL. Signed-off-by: Sam James gentoo.org> mail-filter/libmilter/libmilter-1.0.2_p3-r2.ebuild | 11 ++++------- mail-filter/libmilter/libmilter-1.0.2_p3-r3.ebuild | 11 ++++------- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/mail-filter/libmilter/libmilter-1.0.2_p3-r2.ebuild b/mail-filter/libmilter/libmilter-1.0.2_p3-r2.ebuild index f5439b981e83..12f3deba485b 100644 --- a/mail-filter/libmilter/libmilter-1.0.2_p3-r2.ebuild +++ b/mail-filter/libmilter/libmilter-1.0.2_p3-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -19,13 +19,10 @@ DESCRIPTION="The Sendmail Filter API (Milter)" HOMEPAGE="https://www.proofpoint.com/us/products/email-protection/open-source-email-solution" if [[ -n $(ver_cut 4 ${SENDMAIL_VER}) ]] ; then # Snapshots have an extra version component (e.g. 8.17.1 vs 8.17.1.9) - SRC_URI+="https://ftp.sendmail.org/snapshots/sendmail.${SENDMAIL_VER}.tar.gz - ftp://ftp.sendmail.org/pub/sendmail/snapshots/sendmail.${SENDMAIL_VER}.tar.gz" -else - SRC_URI="https://ftp.sendmail.org/sendmail.${SENDMAIL_VER}.tar.gz - ftp://ftp.sendmail.org/pub/sendmail/sendmail.${SENDMAIL_VER}.tar.gz" + SRC_URI="https://ftp.sendmail.org/snapshots/sendmail.${SENDMAIL_VER}.tar.gz" fi - +SRC_URI+=" https://ftp.sendmail.org/sendmail.${SENDMAIL_VER}.tar.gz" +SRC_URI+=" https://ftp.sendmail.org/past-releases/sendmail.${SENDMAIL_VER}.tar.gz" S="${WORKDIR}/sendmail-${SENDMAIL_VER}" LICENSE="Sendmail" diff --git a/mail-filter/libmilter/libmilter-1.0.2_p3-r3.ebuild b/mail-filter/libmilter/libmilter-1.0.2_p3-r3.ebuild index 58df66c97eaf..0c8c03714c55 100644 --- a/mail-filter/libmilter/libmilter-1.0.2_p3-r3.ebuild +++ b/mail-filter/libmilter/libmilter-1.0.2_p3-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -19,13 +19,10 @@ DESCRIPTION="The Sendmail Filter API (Milter)" HOMEPAGE="https://www.proofpoint.com/us/products/email-protection/open-source-email-solution" if [[ -n $(ver_cut 4 ${SENDMAIL_VER}) ]] ; then # Snapshots have an extra version component (e.g. 8.17.1 vs 8.17.1.9) - SRC_URI+="https://ftp.sendmail.org/snapshots/sendmail.${SENDMAIL_VER}.tar.gz - ftp://ftp.sendmail.org/pub/sendmail/snapshots/sendmail.${SENDMAIL_VER}.tar.gz" -else - SRC_URI="https://ftp.sendmail.org/sendmail.${SENDMAIL_VER}.tar.gz - ftp://ftp.sendmail.org/pub/sendmail/sendmail.${SENDMAIL_VER}.tar.gz" + SRC_URI="https://ftp.sendmail.org/snapshots/sendmail.${SENDMAIL_VER}.tar.gz" fi - +SRC_URI+=" https://ftp.sendmail.org/sendmail.${SENDMAIL_VER}.tar.gz" +SRC_URI+=" https://ftp.sendmail.org/past-releases/sendmail.${SENDMAIL_VER}.tar.gz" S="${WORKDIR}/sendmail-${SENDMAIL_VER}" LICENSE="Sendmail"