Download sources over https

This commit is contained in:
mattmadeofpasta 2023-10-24 19:36:18 +00:00
parent eceb1ab5fe
commit 6881fbf6e8
No known key found for this signature in database
GPG Key ID: 020D6BD1B8975037
14 changed files with 17 additions and 14 deletions

View File

@ -1,5 +1,5 @@
[source]
tar = "http://ftp.gnu.org/gnu/bash/bash-5.2.15.tar.gz"
tar = "https://ftp.gnu.org/gnu/bash/bash-5.2.15.tar.gz"
blake3 = "c1548e3f2a9b6de5296e18c28b3d2007985e647273e03f039efd3e489edaa41f"
patches = [
"redox.patch"

View File

@ -1,5 +1,5 @@
VERSION=3.6
TAR=http://ftp.gnu.org/gnu/diffutils/diffutils-$VERSION.tar.xz
TAR=https://ftp.gnu.org/gnu/diffutils/diffutils-$VERSION.tar.xz
function recipe_version {
echo "$VERSION"

View File

@ -1,5 +1,5 @@
VERSION=2.6.6
TAR=http://files.freeciv.org/stable/freeciv-$VERSION.tar.bz2
TAR=https://files.freeciv.org/stable/freeciv-$VERSION.tar.bz2
BUILD_DEPENDS=(curl freetype libiconv liborbital libpng openssl nghttp2 sdl sdl_gfx sdl_image sdl_mixer sdl_ttf zlib)
function recipe_version {

View File

@ -1,6 +1,6 @@
GIT=https://gitlab.redox-os.org/redox-os/binutils-gdb.git
BRANCH=redox-2.41
GIT_UPSTREAM=git://sourceware.org/git/binutils-gdb.git
GIT_UPSTREAM=https://sourceware.org/git/binutils-gdb.git
BUILD_DEPENDS=(expat libgmp libmpfr)
function recipe_version {

View File

@ -1,5 +1,5 @@
VERSION=2.10
TAR=http://www.digip.org/jansson/releases/jansson-$VERSION.tar.gz
TAR=https://www.digip.org/jansson/releases/jansson-$VERSION.tar.gz
function recipe_version {
echo "$VERSION"

View File

@ -1,5 +1,5 @@
VERSION=20110206
TAR=http://www.etalabs.net/releases/libc-bench-$VERSION.tar.gz
TAR=https://www.etalabs.net/releases/libc-bench-$VERSION.tar.gz
function recipe_version {
echo "$VERSION"

View File

@ -1,5 +1,5 @@
[source]
tar = "http://ijg.org/files/jpegsrc.v9e.tar.gz"
tar = "https://ijg.org/files/jpegsrc.v9e.tar.gz"
blake3 = "f0d6072e15de609397cbd8428758d7054dd921dc448018111e3822b17bcbcc5d"
[build]
template = "configure"

View File

@ -1,5 +1,5 @@
[source]
tar = "http://www.nasm.us/pub/nasm/releasebuilds/2.14.02/nasm-2.14.02.tar.gz"
tar = "https://www.nasm.us/pub/nasm/releasebuilds/2.14.02/nasm-2.14.02.tar.gz"
[build]
template = "configure"

View File

@ -1,5 +1,5 @@
VERSION=6.0
TAR=http://ftp.gnu.org/gnu/ncurses/ncurses-$VERSION.tar.gz
TAR=https://ftp.gnu.org/gnu/ncurses/ncurses-$VERSION.tar.gz
DEPENDS="terminfo"
function recipe_version {

View File

@ -1,5 +1,5 @@
VERSION=3.10
TAR=http://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-$VERSION.tar.gz
TAR=https://download.netsurf-browser.org/netsurf/releases/source-full/netsurf-all-$VERSION.tar.gz
BUILD_DEPENDS=(curl expat libjpeg libpng nghttp2 openssl sdl zlib freetype liborbital libiconv)
DEPENDS="ca-certificates orbital"

View File

@ -1,7 +1,7 @@
[source]
#git = "https://git.savannah.gnu.org/git/readline.git"
#rev = "d49a9082c0e15bba8cd3d8cc0a994409cf823cac"
tar = "http://ftp.gnu.org/gnu/readline/readline-7.0.tar.gz"
tar = "https://ftp.gnu.org/gnu/readline/readline-7.0.tar.gz"
blake3 = "962483e201f36f05a5ccb507bb7330b4d4e4989fd52f41eb15ba65582ad02703"
patches = [
"redox.patch"

View File

@ -1,5 +1,5 @@
[source]
tar = "http://ftp.gnu.org/gnu/sed/sed-4.4.tar.xz"
tar = "https://ftp.gnu.org/gnu/sed/sed-4.4.tar.xz"
patches = [
"sed.patch"
]

View File

@ -1,5 +1,5 @@
VERSION=7.9p1
TAR=http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-$VERSION.tar.gz
TAR=https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-$VERSION.tar.gz
BUILD_DEPENDS=(openssl zlib)
function recipe_version {

View File

@ -1,5 +1,8 @@
VERSION=8.2
TAR=http://ftp.vim.org/vim/unix/vim-$VERSION.tar.bz2
# We use `https://ftp.nluug.nl` because `ftp.vim.org` doesn't support `https`
# see https://www.vim.org/mirrors.php
TAR=https://ftp.nluug.nl/pub/vim/unix/vim-$VERSION.tar.bz2
BUILD_DEPENDS=(ncurses)
DEPENDS="terminfo"