From 88bc9ee7bf02171ed1a9961d9c58aa6194dc71a4 Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Mon, 16 Dec 2024 07:17:28 +0000 Subject: [PATCH] Revert "libretro-scummvm: allow build without wget using curl" This reverts commit b7fc8f5b3e30a69145dd0f0d7aa879d5a5e9c376. --- .../libretro-scummvm/patches/0003-use-curl.patch | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 packages/emulation/libretro-scummvm/patches/0003-use-curl.patch diff --git a/packages/emulation/libretro-scummvm/patches/0003-use-curl.patch b/packages/emulation/libretro-scummvm/patches/0003-use-curl.patch deleted file mode 100644 index 28110031ab..0000000000 --- a/packages/emulation/libretro-scummvm/patches/0003-use-curl.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- a/backends/platform/libretro/scripts/bundle_datafiles.sh 2024-02-12 22:13:53.000000000 +0000 -+++ b/backends/platform/libretro/scripts/bundle_datafiles.sh 2024-10-20 11:20:58.695910358 +0000 -@@ -108,7 +108,12 @@ - if [ ! $3 = "bundle" ]; then - - # Update from libretro ScummVM.dat --wget -NO "$BUILD_PATH"/ScummVM.dat https://raw.githubusercontent.com/libretro/libretro-database/master/dat/ScummVM.dat -+if command -v wget >/dev/null; then -+ wget -NO "$BUILD_PATH"/ScummVM.dat https://raw.githubusercontent.com/libretro/libretro-database/master/dat/ScummVM.dat -+else -+ # if wget is not available use curl -+ curl -f -o "$BUILD_PATH"/ScummVM.dat https://raw.githubusercontent.com/libretro/libretro-database/master/dat/ScummVM.dat -+fi - [ -f "$BUILD_PATH"/ScummVM.dat ] && SUPPORTED_EXTENSIONS="$(cat $BUILD_PATH/ScummVM.dat | grep 'rom (' | sed -e 's/\" .*//g' -e 's/.*\.//g' | sort -u | tr '\n' '|')" || SUPPORTED_EXTENSIONS="$ALLOWED_EXT" - - # Create core.info file