From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1695790-garchives=archives.gentoo.org@lists.gentoo.org> 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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A6EF71581F3 for <garchives@archives.gentoo.org>; Sun, 1 Dec 2024 08:53:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF49DE0801; Sun, 1 Dec 2024 08:53:03 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4F828E0805 for <gentoo-commits@lists.gentoo.org>; Sun, 1 Dec 2024 08:53:03 +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 3DBF4340C7C for <gentoo-commits@lists.gentoo.org>; Sun, 1 Dec 2024 08:53:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 990A21AB5 for <gentoo-commits@lists.gentoo.org>; Sun, 1 Dec 2024 08:53:00 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1733043107.13e92531b953583d1f5049fbed2c68645f6f968c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-debug/gdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-debug/gdb/gdb-9999.ebuild X-VCS-Directories: dev-debug/gdb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 13e92531b953583d1f5049fbed2c68645f6f968c X-VCS-Branch: master Date: Sun, 1 Dec 2024 08:53:00 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6cdc8dcc-0a97-4084-9909-8dd3362c7df7 X-Archives-Hash: d69e76558b17bc9c5e8502b4e407897e commit: 13e92531b953583d1f5049fbed2c68645f6f968c Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Dec 1 08:51:37 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Dec 1 08:51:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13e92531 dev-debug/gdb: add mirrors to EGIT_REPO_URI sourceware was down earlier, so add some mirrors. sourcehut is an official mirror (albeit an experiment IIRC) by sourceware and x86-binutils is run by H.J. Lu. Signed-off-by: Sam James <sam <AT> gentoo.org> dev-debug/gdb/gdb-9999.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-debug/gdb/gdb-9999.ebuild b/dev-debug/gdb/gdb-9999.ebuild index 811789dab6d8..039c98a9e0ca 100644 --- a/dev-debug/gdb/gdb-9999.ebuild +++ b/dev-debug/gdb/gdb-9999.ebuild @@ -23,7 +23,11 @@ is_cross() { [[ ${CHOST} != ${CTARGET} ]] ; } case ${PV} in 9999*) # live git tree - EGIT_REPO_URI="https://sourceware.org/git/binutils-gdb.git" + EGIT_REPO_URI=" + https://sourceware.org/git/binutils-gdb.git + https://git.sr.ht/~sourceware/binutils-gdb + https://gitlab.com/x86-binutils/binutils-gdb.git + " inherit git-r3 SRC_URI="" ;;