Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/binutils/
Date: Tue, 10 Mar 2020 07:35:16
Message-Id: 1583825706.f6ce8a59558a0472d72be70e9568aa3ef566b108.slyfox@gentoo
1 commit: f6ce8a59558a0472d72be70e9568aa3ef566b108
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 10 07:31:14 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 10 07:35:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6ce8a59
7
8 sys-devel/binutils: fix live ebuild link
9
10 https:// scema is not supported by sourceware's git. Use git:// instead.
11
12 Package-Manager: Portage-2.3.93, Repoman-2.3.20
13 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
14
15 sys-devel/binutils/binutils-9999.ebuild | 6 ++++--
16 1 file changed, 4 insertions(+), 2 deletions(-)
17
18 diff --git a/sys-devel/binutils/binutils-9999.ebuild b/sys-devel/binutils/binutils-9999.ebuild
19 index 7e5b921ee5f..569c1c82680 100644
20 --- a/sys-devel/binutils/binutils-9999.ebuild
21 +++ b/sys-devel/binutils/binutils-9999.ebuild
22 @@ -24,14 +24,16 @@ PATCH_BINUTILS_VER=9999
23
24 case ${PV} in
25 9999)
26 - EGIT_REPO_URI="https://sourceware.org/git/binutils-gdb.git"
27 + # sourceware.org does not have https:// today.
28 + EGIT_REPO_URI="git://sourceware.org/git/binutils-gdb.git"
29 inherit git-r3
30 S=${WORKDIR}/binutils
31 EGIT_CHECKOUT_DIR=${S}
32 SLOT=${PV}
33 ;;
34 *.9999)
35 - EGIT_REPO_URI="https://sourceware.org/git/binutils-gdb.git"
36 + # sourceware.org does not have https:// today.
37 + EGIT_REPO_URI="git://sourceware.org/git/binutils-gdb.git"
38 inherit git-r3
39 S=${WORKDIR}/binutils
40 EGIT_CHECKOUT_DIR=${S}