commit: 0bf450f5e4fae70aea1615b1ef6885e750c904c8 Author: Eli Schwartz <eschwartz <AT> gentoo <DOT> org> AuthorDate: Mon Aug 12 00:59:12 2024 +0000 Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> org> CommitDate: Mon Aug 12 01:16:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bf450f5
games-simulation/flightgear: use https for git clones in live Using git:// is a really bad idea and the eclass yells at you for it. And the second uri does not actually exist (anymore). Note: the live ebuild still doesn't actually build. The patch is stale and then there are a bunch of weird "XXX does not name a type" and "YYY was not declared in this scope" errors that I have no patience to debug. Perhaps an upstream bug. I was able to determine that existing LTO errors are still present and then gave up. Baby steps... :D Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org> games-simulation/flightgear/flightgear-9999.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/games-simulation/flightgear/flightgear-9999.ebuild b/games-simulation/flightgear/flightgear-9999.ebuild index b35e56b521a8..ec1215fc6d90 100644 --- a/games-simulation/flightgear/flightgear-9999.ebuild +++ b/games-simulation/flightgear/flightgear-9999.ebuild @@ -7,8 +7,7 @@ inherit cmake toolchain-funcs git-r3 DESCRIPTION="Open Source Flight Simulator" HOMEPAGE="https://www.flightgear.org/"; -EGIT_REPO_URI="git://git.code.sf.net/p/${PN}/${PN} - git://mapserver.flightgear.org/${PN}" +EGIT_REPO_URI="https://git.code.sf.net/p/${PN}/${PN}"; EGIT_BRANCH="next" LICENSE="GPL-2"