public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/urjtag/
Date: Sat, 24 Aug 2024 18:37:54 +0000 (UTC)	[thread overview]
Message-ID: <1724524672.3cd605429af74ba054e53b6f52a2a02d606136da.juippis@gentoo> (raw)

commit:     3cd605429af74ba054e53b6f52a2a02d606136da
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Aug 24 08:10:45 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> 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 <mmk <AT> levelnine.at>
Signed-off-by: Joonas Niilola <juippis <AT> 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"


             reply	other threads:[~2024-08-24 18:37 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-24 18:37 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-09-15  4:52 [gentoo-commits] repo/gentoo:master commit in: dev-embedded/urjtag/ Viorel Munteanu
2023-09-15  4:52 Viorel Munteanu
2023-09-07 17:02 Sam James
2023-09-07 14:41 Sam James
2023-09-07 14:41 Sam James
2023-08-06 10:05 Viorel Munteanu
2023-06-08 11:23 Viorel Munteanu
2021-04-18 22:22 Andreas Sturmlechner
2021-02-18  8:37 Sam James
2021-02-16 12:30 Sam James
2021-02-12  9:57 Sam James
2021-02-11  7:55 Sam James
2020-12-27 20:19 Sam James
2019-11-23 18:19 Michał Górny
2019-11-23 18:19 Michał Górny
2017-03-23 20:53 David Seifert
2016-10-30 20:05 Sven Wegener
2016-01-10 11:17 Sven Wegener
2015-12-31 16:23 Sven Wegener
2015-12-31 13:29 Sven Wegener
2015-12-31 13:27 Sven Wegener
2015-12-31 13:11 Sven Wegener
2015-12-31 13:11 Sven Wegener

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1724524672.3cd605429af74ba054e53b6f52a2a02d606136da.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox