From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2C39F158041 for ; Fri, 29 Mar 2024 02:29:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 360612BC016; Fri, 29 Mar 2024 02:28:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0DC1A2BC016 for ; Fri, 29 Mar 2024 02:28:59 +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 3096F343016 for ; Fri, 29 Mar 2024 02:28:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A7801603 for ; Fri, 29 Mar 2024 02:28:56 +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: <1711679304.39eca52d93521a58c4205411d4ab11eca1cb1756.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/legion/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/legion/legion-21.09.0-r1.ebuild sys-cluster/legion/legion-23.03.0.ebuild sys-cluster/legion/legion-9999.ebuild X-VCS-Directories: sys-cluster/legion/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 39eca52d93521a58c4205411d4ab11eca1cb1756 X-VCS-Branch: master Date: Fri, 29 Mar 2024 02:28:56 +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: 2c062332-a27e-44e5-b602-cd0c41e9ee7c X-Archives-Hash: 2d18b00f576c7ea42c84cb85f01cd3e0 commit: 39eca52d93521a58c4205411d4ab11eca1cb1756 Author: Eli Schwartz gmail com> AuthorDate: Thu Mar 28 06:08:42 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 29 02:28:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39eca52d sys-cluster/legion: remove conceptually invalid repository clone url This clearly wasn't tested (or else it was a cunning form of troll) to list the primary clone url as git://directoryname/reponame.git given that the directory name "StanfordLegion" is not a valid hostname or IP address. If I had to hazard the wildest of wild guesses as to what this was intended to do, it was intended to allow cloning from github.com over your choice of git:// or https:// protocols. Which leaves open the alternative question "why in G-ds name...". In any case, it doesn't matter since github hasn't offered git:// support for quite some time, so even if it worked, it wouldn't work. This change was made by github for the same reason that portage scolds you for using it: * git-r3: git protocol is completely insecure and may render the ebuild * easily susceptible to MITM attacks (even if used only as fallback). Please * use https instead. Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> sys-cluster/legion/legion-21.09.0-r1.ebuild | 2 +- sys-cluster/legion/legion-23.03.0.ebuild | 2 +- sys-cluster/legion/legion-9999.ebuild | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-cluster/legion/legion-21.09.0-r1.ebuild b/sys-cluster/legion/legion-21.09.0-r1.ebuild index 55c79a8cda25..8a7849ea2d4e 100644 --- a/sys-cluster/legion/legion-21.09.0-r1.ebuild +++ b/sys-cluster/legion/legion-21.09.0-r1.ebuild @@ -9,7 +9,7 @@ DESCRIPTION="A data-centric parallel programming system" HOMEPAGE="https://legion.stanford.edu/" if [[ ${PV} == 9999 ]]; then inherit git-r3 - EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" + EGIT_REPO_URI="https://github.com/StanfordLegion/${PN}.git" else SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" S="${WORKDIR}"/${PN}-${P} diff --git a/sys-cluster/legion/legion-23.03.0.ebuild b/sys-cluster/legion/legion-23.03.0.ebuild index 95cdbf4b0a3c..bc099c90fc81 100644 --- a/sys-cluster/legion/legion-23.03.0.ebuild +++ b/sys-cluster/legion/legion-23.03.0.ebuild @@ -9,7 +9,7 @@ DESCRIPTION="A data-centric parallel programming system" HOMEPAGE="https://legion.stanford.edu/" if [[ ${PV} == 9999 ]]; then inherit git-r3 - EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" + EGIT_REPO_URI="https://github.com/StanfordLegion/${PN}.git" else SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" S="${WORKDIR}"/${PN}-${P} diff --git a/sys-cluster/legion/legion-9999.ebuild b/sys-cluster/legion/legion-9999.ebuild index 55c79a8cda25..0857561f4b4a 100644 --- a/sys-cluster/legion/legion-9999.ebuild +++ b/sys-cluster/legion/legion-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -9,7 +9,7 @@ DESCRIPTION="A data-centric parallel programming system" HOMEPAGE="https://legion.stanford.edu/" if [[ ${PV} == 9999 ]]; then inherit git-r3 - EGIT_REPO_URI="git://StanfordLegion/${PN}.git https://github.com/StanfordLegion/${PN}.git" + EGIT_REPO_URI="https://github.com/StanfordLegion/${PN}.git" else SRC_URI="https://github.com/StanfordLegion/${PN}/archive/${P}.tar.gz" S="${WORKDIR}"/${PN}-${P}