summaryrefslogtreecommitdiff
path: root/dev-embedded
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2025-10-08 07:03:11 +0100
committerSam James <sam@gentoo.org>2025-10-08 07:03:11 +0100
commitaafbf83c4d90d7fe1594a015e312116801c300e1 (patch)
treee0cc4133e3d7531320e0542d263db92e7a12618a /dev-embedded
parent421c3fb41e3287f9419259d4952fed3a562867a9 (diff)
downloadgentoo-aafbf83c4d90d7fe1594a015e312116801c300e1.tar.gz
gentoo-aafbf83c4d90d7fe1594a015e312116801c300e1.tar.bz2
gentoo-aafbf83c4d90d7fe1594a015e312116801c300e1.zip
dev-embedded/openocd: fix EGIT_REPO_URI
Put the canonical upstream repo first, then backup URLs. Closes: https://bugs.gentoo.org/963894 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-embedded')
-rw-r--r--dev-embedded/openocd/openocd-9999.ebuild8
1 files changed, 6 insertions, 2 deletions
diff --git a/dev-embedded/openocd/openocd-9999.ebuild b/dev-embedded/openocd/openocd-9999.ebuild
index 618475a4afdc..7eeda15d54a0 100644
--- a/dev-embedded/openocd/openocd-9999.ebuild
+++ b/dev-embedded/openocd/openocd-9999.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
@@ -7,7 +7,11 @@ inherit autotools udev
if [[ ${PV} == *9999 ]] ; then
inherit git-r3
- EGIT_REPO_URI=" https://repo.or.cz/openocd.git"
+ EGIT_REPO_URI="
+ https://git.code.sf.net/p/openocd/code
+ https://repo.or.cz/openocd.git
+ https://github.com/openocd-org/openocd
+ "
else
MY_PV="${PV/_/-}"
MY_P="${PN}-${MY_PV}"