From 17443137fb86f9c87f8929e5621fdad869231241 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sat, 6 Jul 2024 21:23:28 +0200 Subject: [PATCH 1/3] Remove keyboard-sfx package The only thing it does is install a bunch of .wav files that are not used in any place. --- recipes/other/keyboard-sfx/recipe.sh | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 recipes/other/keyboard-sfx/recipe.sh diff --git a/recipes/other/keyboard-sfx/recipe.sh b/recipes/other/keyboard-sfx/recipe.sh deleted file mode 100644 index 95de8e7b6..000000000 --- a/recipes/other/keyboard-sfx/recipe.sh +++ /dev/null @@ -1,22 +0,0 @@ -GIT=https://gitlab.redox-os.org/redox-os/keyboard-sfx.git - -function recipe_version { - echo "0.0.1" - skip=1 -} - -function recipe_build { - echo "skipping build" - skip=1 -} - -function recipe_clean { - echo "skipping clean" - skip=1 -} - -function recipe_stage { - mkdir -pv "$1/sfx" - cp -Rv ./* "$1/sfx" - skip=1 -} From 67335290faaf1732aa1520f06bf1e1c887d0beb1 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sat, 6 Jul 2024 21:25:54 +0200 Subject: [PATCH 2/3] Remove glium recipe Glium is no longer actively maintained. --- recipes/demos/glium/recipe.sh | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 recipes/demos/glium/recipe.sh diff --git a/recipes/demos/glium/recipe.sh b/recipes/demos/glium/recipe.sh deleted file mode 100644 index 455618c1f..000000000 --- a/recipes/demos/glium/recipe.sh +++ /dev/null @@ -1,23 +0,0 @@ -GIT=https://gitlab.redox-os.org/redox-os/glium.git -GIT_UPSTREAM=https://github.com/glium/glium.git -BUILD_DEPENDS=(llvm18 mesa zlib) -BRANCH=redox -CARGOFLAGS="--example teapot" - -function recipe_build { - sysroot="$(realpath ../sysroot)" - set -x - cargo rustc --target "$TARGET" --release ${CARGOFLAGS} \ - -- \ - -L "${sysroot}/lib" \ - -C link-args="-Wl,-Bstatic $("${PKG_CONFIG}" --libs osmesa) -lz -lstdc++ -lc -lgcc" - set +x - skip=1 -} - -function recipe_stage { - dest="$(realpath $1)" - mkdir -pv "$dest/bin" - cp -v "target/${TARGET}/release/examples/teapot" "$dest/bin/glium" - skip=1 -} From 656a80b4a7295e1d44ae6d1787c8d18ec3f7df61 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sat, 6 Jul 2024 21:28:59 +0200 Subject: [PATCH 3/3] Mark pastel as wip It doesn't compile anymore as one of it's dependencies uses a removed rustc feature. --- recipes/{tools => wip/tools/other}/pastel/recipe.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename recipes/{tools => wip/tools/other}/pastel/recipe.sh (100%) diff --git a/recipes/tools/pastel/recipe.sh b/recipes/wip/tools/other/pastel/recipe.sh similarity index 100% rename from recipes/tools/pastel/recipe.sh rename to recipes/wip/tools/other/pastel/recipe.sh