From 71fac772ccefbbf0af0258de9574dd03dd4f10a0 Mon Sep 17 00:00:00 2001 From: Ron Williams Date: Fri, 26 Sep 2025 22:15:00 +0000 Subject: [PATCH 1/2] Add recipe for redox-posix-tests --- recipes/tests/redox-posix-tests/recipe.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 recipes/tests/redox-posix-tests/recipe.toml diff --git a/recipes/tests/redox-posix-tests/recipe.toml b/recipes/tests/redox-posix-tests/recipe.toml new file mode 100644 index 000000000..861b92889 --- /dev/null +++ b/recipes/tests/redox-posix-tests/recipe.toml @@ -0,0 +1,18 @@ +# [source] +# git = "https://gitlab.redox-os.org/redox-os/redox-posix-tests.git" + + +[build] +template = "custom" +script = """ +mkdir -pv "${COOKBOOK_STAGE}/share/redox-posix-tests" +cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/share/redox-posix-tests" +""" + +[package] +dependencies = [ + "gcc13", + "gnu-binutils", + "gnu-make", +] + From 6e8f2b872e2b198ac077c9a516b4e0239fa6be0b Mon Sep 17 00:00:00 2001 From: Ron Williams Date: Sat, 27 Sep 2025 04:49:01 +0000 Subject: [PATCH 2/2] Add redox-posix-tests recipe with correct git reference --- recipes/tests/redox-posix-tests/recipe.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/tests/redox-posix-tests/recipe.toml b/recipes/tests/redox-posix-tests/recipe.toml index 861b92889..dae4b48cc 100644 --- a/recipes/tests/redox-posix-tests/recipe.toml +++ b/recipes/tests/redox-posix-tests/recipe.toml @@ -1,5 +1,5 @@ -# [source] -# git = "https://gitlab.redox-os.org/redox-os/redox-posix-tests.git" +[source] +git = "https://gitlab.redox-os.org/redox-os/redox-posix-tests.git" [build]