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 0D9EA1581FB for ; Sat, 24 Aug 2024 18:37:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 574AFE2A52; Sat, 24 Aug 2024 18:37:57 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3B85BE2A52 for ; Sat, 24 Aug 2024 18:37:57 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4E37F342DEF for ; Sat, 24 Aug 2024 18:37:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B73701F11 for ; Sat, 24 Aug 2024 18:37:54 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1724524672.3cd605429af74ba054e53b6f52a2a02d606136da.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/urjtag/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/urjtag/urjtag-2021.03.ebuild dev-embedded/urjtag/urjtag-9999.ebuild X-VCS-Directories: dev-embedded/urjtag/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 3cd605429af74ba054e53b6f52a2a02d606136da X-VCS-Branch: master Date: Sat, 24 Aug 2024 18:37:54 +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: 2758734e-e343-4cbc-b106-67b38b515bd8 X-Archives-Hash: 5ddf503d5f27f0ec2c8d2a60ae188359 commit: 3cd605429af74ba054e53b6f52a2a02d606136da Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sat Aug 24 08:10:45 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Aug 24 18:37:52 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cd60542 dev-embedded/urjtag: use https:// instead of git:// for cloning git:// is unencrypted and could be used by an attacker (mitm) to insert malicious code, see also [1]. git:// runs on port 9418 which is also less likely open behind a firewall. [1] git-scm.com/book/en/v2/Git-on-the-Server-The-Protocols Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Joonas Niilola gentoo.org> dev-embedded/urjtag/urjtag-2021.03.ebuild | 6 +++--- dev-embedded/urjtag/urjtag-9999.ebuild | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-embedded/urjtag/urjtag-2021.03.ebuild b/dev-embedded/urjtag/urjtag-2021.03.ebuild index 1b765b94391a..56275fc855ba 100644 --- a/dev-embedded/urjtag/urjtag-2021.03.ebuild +++ b/dev-embedded/urjtag/urjtag-2021.03.ebuild @@ -8,16 +8,16 @@ PYTHON_COMPAT=( python3_{10..12} ) inherit python-r1 if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="git://git.code.sf.net/p/urjtag/git" + EGIT_REPO_URI="https://git.code.sf.net/p/urjtag/git" inherit git-r3 autotools S="${WORKDIR}/${P}/${PN}" else - SRC_URI="https://downloads.sourceforge.net/urjtag/${P}.tar.xz" + SRC_URI="https://downloads.sourceforge.net/project/${PN}/${PN}/${PV}/${P}.tar.xz" KEYWORDS="amd64 ppc sparc x86" fi DESCRIPTION="Tool for communicating over JTAG with flash chips, CPUs, and many more" -HOMEPAGE="https://urjtag.sourceforge.net/" +HOMEPAGE="https://urjtag.sourceforge.io/" LICENSE="GPL-2" SLOT="0" diff --git a/dev-embedded/urjtag/urjtag-9999.ebuild b/dev-embedded/urjtag/urjtag-9999.ebuild index d01057522264..60327e2adb4b 100644 --- a/dev-embedded/urjtag/urjtag-9999.ebuild +++ b/dev-embedded/urjtag/urjtag-9999.ebuild @@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{10..12} ) inherit python-r1 if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="git://git.code.sf.net/p/urjtag/git" + EGIT_REPO_URI="https://git.code.sf.net/p/urjtag/git" inherit git-r3 autotools S="${WORKDIR}/${P}/${PN}" else @@ -17,7 +17,7 @@ else fi DESCRIPTION="Tool for communicating over JTAG with flash chips, CPUs, and many more" -HOMEPAGE="https://urjtag.sourceforge.net/" +HOMEPAGE="https://urjtag.sourceforge.io/" LICENSE="GPL-2" SLOT="0"