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`.
This commit is contained in:
Gonzalo Tornaría 2022-01-11 12:51:45 -03:00 committed by Piotr
parent 2d2233e5dc
commit 1d096e987e
4 changed files with 4 additions and 4 deletions

View file

@ -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}
}

View file

@ -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

View file

@ -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}
}

View file

@ -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
}