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 36C5E1584AD for ; Thu, 24 Apr 2025 20:15:07 +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 05770343077 for ; Thu, 24 Apr 2025 20:15:07 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 541131104B1; Thu, 24 Apr 2025 20:15:02 +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 4E8A61104B1 for ; Thu, 24 Apr 2025 20:15:02 +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 DE828335D10 for ; Thu, 24 Apr 2025 20:15:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78D08254A for ; Thu, 24 Apr 2025 20:15:00 +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: <1745525672.e89a488b1b1effe51b443fba606170acd8b4e209.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/thrift/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/thrift/thrift-0.21.0.ebuild X-VCS-Directories: dev-python/thrift/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e89a488b1b1effe51b443fba606170acd8b4e209 X-VCS-Branch: master Date: Thu, 24 Apr 2025 20:15:00 +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: 20acbe31-877d-435f-8af1-337ad642b9ba X-Archives-Hash: 8296d15801ad0e0a3129292bd7bb9df8 commit: e89a488b1b1effe51b443fba606170acd8b4e209 Author: Sam James gentoo org> AuthorDate: Thu Apr 24 20:14:14 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Apr 24 20:14:32 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e89a488b dev-python/thrift: add archive.apache.org as fallback SRC_URI Signed-off-by: Sam James gentoo.org> dev-python/thrift/thrift-0.21.0.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-python/thrift/thrift-0.21.0.ebuild b/dev-python/thrift/thrift-0.21.0.ebuild index 261fd69010bc..ff743da12930 100644 --- a/dev-python/thrift/thrift-0.21.0.ebuild +++ b/dev-python/thrift/thrift-0.21.0.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 @@ -14,7 +14,10 @@ HOMEPAGE=" https://thrift.apache.org/ https://github.com/apache/thrift " -SRC_URI="https://downloads.apache.org/${PN}/${PV}/${P}.tar.gz" +SRC_URI=" + https://downloads.apache.org/${PN}/${PV}/${P}.tar.gz + https://archive.apache.org/dist/${PN}/${PV}/${P}.tar.gz +" S="${WORKDIR}/${P}/lib/py" LICENSE="Apache-2.0"