From fcf42a682daab5ccb70f42ee2220e6496ba5e510 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Thu, 9 Mar 2023 09:08:26 +0000 Subject: [PATCH 1/4] Convert fd recipe to TOML. --- recipes/fd/recipe.sh | 1 - recipes/fd/recipe.toml | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) delete mode 100644 recipes/fd/recipe.sh create mode 100644 recipes/fd/recipe.toml diff --git a/recipes/fd/recipe.sh b/recipes/fd/recipe.sh deleted file mode 100644 index 8839a16f7..000000000 --- a/recipes/fd/recipe.sh +++ /dev/null @@ -1 +0,0 @@ -GIT=https://github.com/sharkdp/fd.git \ No newline at end of file diff --git a/recipes/fd/recipe.toml b/recipes/fd/recipe.toml new file mode 100644 index 000000000..d7d1c6385 --- /dev/null +++ b/recipes/fd/recipe.toml @@ -0,0 +1,5 @@ +[source] +git = "https://github.com/sharkdp/fd.git" + +[build] +template = "cargo" From f9ec14a487a9819137b938c689237789a237815f Mon Sep 17 00:00:00 2001 From: Ribbon Date: Thu, 9 Mar 2023 10:01:10 +0000 Subject: [PATCH 2/4] New recipes. --- recipes/perg/recipe.toml | 5 +++++ recipes/procedural-wallpapers-rs/recipe.toml | 5 +++++ recipes/tokei/recipe.toml | 4 ++++ 3 files changed, 14 insertions(+) create mode 100644 recipes/perg/recipe.toml create mode 100644 recipes/procedural-wallpapers-rs/recipe.toml create mode 100644 recipes/tokei/recipe.toml diff --git a/recipes/perg/recipe.toml b/recipes/perg/recipe.toml new file mode 100644 index 000000000..f5390a215 --- /dev/null +++ b/recipes/perg/recipe.toml @@ -0,0 +1,5 @@ +[source] +git = "https://github.com/guerinoni/perg.git" + +[build] +template = "cargo" diff --git a/recipes/procedural-wallpapers-rs/recipe.toml b/recipes/procedural-wallpapers-rs/recipe.toml new file mode 100644 index 000000000..de976eaf6 --- /dev/null +++ b/recipes/procedural-wallpapers-rs/recipe.toml @@ -0,0 +1,5 @@ +[source] +git = "https://github.com/lukas-kirschner/procedural-wallpapers-rs.git" + +[build] +template = "cargo" diff --git a/recipes/tokei/recipe.toml b/recipes/tokei/recipe.toml new file mode 100644 index 000000000..752ec64b2 --- /dev/null +++ b/recipes/tokei/recipe.toml @@ -0,0 +1,4 @@ +[source] +git = "https://github.com/XAMPPRocky/tokei.git" +[build] +template = "cargo" From 24b98879ca415972a546d995740ff8bee13ca058 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Thu, 9 Mar 2023 10:10:03 +0000 Subject: [PATCH 3/4] Convert calculator to TOML. --- recipes/calculator/recipe.sh | 2 -- recipes/calculator/recipe.toml | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) delete mode 100644 recipes/calculator/recipe.sh create mode 100644 recipes/calculator/recipe.toml diff --git a/recipes/calculator/recipe.sh b/recipes/calculator/recipe.sh deleted file mode 100644 index f81baf3eb..000000000 --- a/recipes/calculator/recipe.sh +++ /dev/null @@ -1,2 +0,0 @@ -GIT=https://gitlab.redox-os.org/redox-os/orbcalculator.git -BRANCH=master diff --git a/recipes/calculator/recipe.toml b/recipes/calculator/recipe.toml new file mode 100644 index 000000000..33006ff5a --- /dev/null +++ b/recipes/calculator/recipe.toml @@ -0,0 +1,5 @@ +[source] +git = "https://gitlab.redox-os.org/redox-os/orbcalculator.git" + +[build] +template = "cargo" From 36b22802ea855406d2d299ac94c878e4e637e26b Mon Sep 17 00:00:00 2001 From: Ribbon Date: Thu, 9 Mar 2023 11:29:19 +0000 Subject: [PATCH 4/4] New recipe. --- recipes/shellharden/recipe.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 recipes/shellharden/recipe.toml diff --git a/recipes/shellharden/recipe.toml b/recipes/shellharden/recipe.toml new file mode 100644 index 000000000..7cdbbb3d5 --- /dev/null +++ b/recipes/shellharden/recipe.toml @@ -0,0 +1,5 @@ +[source] +git = "https://github.com/anordal/shellharden.git" + +[build] +template = "cargo"