From 7dfc0d803729c33d9a3cb860899c5c1c51e63a7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= Date: Tue, 11 Jan 2022 12:51:45 -0300 Subject: [PATCH] srcpkgs/: Switch templates from git:// to https:// As of today github no longer accepts `git://` so we switch templates that use git clone from `git://github.com/` to `https://github.com`. --- srcpkgs/ardour/template | 2 +- srcpkgs/ci20-uboot/template | 2 +- srcpkgs/darch/template | 2 +- srcpkgs/rdis-git/template | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/ardour/template b/srcpkgs/ardour/template index b9f15ae83c27..c2f1c13649f5 100644 --- a/srcpkgs/ardour/template +++ b/srcpkgs/ardour/template @@ -34,7 +34,7 @@ esac # Upstream deletes older release tarballs from their site and # GitHub tarballs are empty: https://tracker.ardour.org/view.php?id=7328 do_fetch() { - git clone git://github.com/Ardour/ardour ${wrksrc} + git clone https://github.com/Ardour/ardour ${wrksrc} cd ${wrksrc} git checkout ${_commit} } diff --git a/srcpkgs/ci20-uboot/template b/srcpkgs/ci20-uboot/template index 5f0eaa41cc6f..ba243ca32c42 100644 --- a/srcpkgs/ci20-uboot/template +++ b/srcpkgs/ci20-uboot/template @@ -11,7 +11,7 @@ homepage="http://www.denx.de/wiki/U-Boot/WebHome" archs="mispel*" do_fetch() { - git clone -b ci20-${version} git://github.com/MIPS/CI20_u-boot ${wrksrc} + git clone -b ci20-${version} https://github.com/MIPS/CI20_u-boot ${wrksrc} cd $wrksrc git reset --hard 25f5638f961c6bfcc64a1e02f742e60aa13fc1c6 diff --git a/srcpkgs/darch/template b/srcpkgs/darch/template index 161af0a666b1..7ba537336a38 100644 --- a/srcpkgs/darch/template +++ b/srcpkgs/darch/template @@ -17,7 +17,7 @@ homepage="https://godarch.com/" do_fetch() { mkdir -p "$(dirname ${GOSRCPATH})" git clone --branch "v${version}" \ - git://github.com/godarch/darch \ + https://github.com/godarch/darch \ ${GOSRCPATH} } diff --git a/srcpkgs/rdis-git/template b/srcpkgs/rdis-git/template index ff8c03081de7..0486edd1b1a0 100644 --- a/srcpkgs/rdis-git/template +++ b/srcpkgs/rdis-git/template @@ -10,7 +10,7 @@ license="GPL-3.0-or-later" homepage="https://github.com/endeav0r/rdis" do_fetch() { - git clone git://github.com/endeav0r/rdis.git $wrksrc + git clone https://github.com/endeav0r/rdis.git $wrksrc cd $wrksrc git reset --hard 1370ca0f737a790e3ca7d7d9513543d7ea52c3a4 }