From 41ccd31eb0af2c4664b133e917a2049595d6478e Mon Sep 17 00:00:00 2001 From: Ribbon Date: Mon, 26 May 2025 14:03:44 -0300 Subject: [PATCH] Add recipes --- recipes/wip/db/limbo/recipe.toml | 8 ++++++++ recipes/wip/dev/debug/nnd/recipe.toml | 6 ++++++ recipes/wip/dev/framework/feather/recipe.toml | 5 +++++ recipes/wip/dev/git-tools/patchy/recipe.toml | 5 +++++ recipes/wip/dev/lang/ristrettto/recipe.toml | 8 ++++++++ recipes/wip/dev/rust-tools/dylint/recipe.toml | 8 ++++++++ recipes/wip/net/download/kelpsget/recipe.toml | 9 +++++++++ recipes/wip/security/yara-x/recipe.toml | 8 ++++++++ recipes/wip/terminal/scooter/recipe.toml | 8 ++++++++ recipes/wip/text/edit/recipe.toml | 5 +++++ recipes/wip/text/ripwc/recipe.toml | 5 +++++ recipes/wip/web/faircamp/recipe.toml | 5 +++++ 12 files changed, 80 insertions(+) create mode 100644 recipes/wip/db/limbo/recipe.toml create mode 100644 recipes/wip/dev/debug/nnd/recipe.toml create mode 100644 recipes/wip/dev/framework/feather/recipe.toml create mode 100644 recipes/wip/dev/git-tools/patchy/recipe.toml create mode 100644 recipes/wip/dev/lang/ristrettto/recipe.toml create mode 100644 recipes/wip/dev/rust-tools/dylint/recipe.toml create mode 100644 recipes/wip/net/download/kelpsget/recipe.toml create mode 100644 recipes/wip/security/yara-x/recipe.toml create mode 100644 recipes/wip/terminal/scooter/recipe.toml create mode 100644 recipes/wip/text/edit/recipe.toml create mode 100644 recipes/wip/text/ripwc/recipe.toml create mode 100644 recipes/wip/web/faircamp/recipe.toml diff --git a/recipes/wip/db/limbo/recipe.toml b/recipes/wip/db/limbo/recipe.toml new file mode 100644 index 000000000..c68c05927 --- /dev/null +++ b/recipes/wip/db/limbo/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/tursodatabase/limbo" +[build] +template = "custom" +script = """ +cookbook_cargo_packages limbo_cli +""" diff --git a/recipes/wip/dev/debug/nnd/recipe.toml b/recipes/wip/dev/debug/nnd/recipe.toml new file mode 100644 index 000000000..e26a013f8 --- /dev/null +++ b/recipes/wip/dev/debug/nnd/recipe.toml @@ -0,0 +1,6 @@ +#TODO not compiled or tested +#TODO use the "dbgo" profile +[source] +git = "https://github.com/al13n321/nnd" +[build] +template = "cargo" diff --git a/recipes/wip/dev/framework/feather/recipe.toml b/recipes/wip/dev/framework/feather/recipe.toml new file mode 100644 index 000000000..9a30f9358 --- /dev/null +++ b/recipes/wip/dev/framework/feather/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/BersisSe/feather-cli" +[build] +template = "cargo" diff --git a/recipes/wip/dev/git-tools/patchy/recipe.toml b/recipes/wip/dev/git-tools/patchy/recipe.toml new file mode 100644 index 000000000..52de86ffb --- /dev/null +++ b/recipes/wip/dev/git-tools/patchy/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/nik-rev/patchy" +[build] +template = "cargo" diff --git a/recipes/wip/dev/lang/ristrettto/recipe.toml b/recipes/wip/dev/lang/ristrettto/recipe.toml new file mode 100644 index 000000000..e6b345dbb --- /dev/null +++ b/recipes/wip/dev/lang/ristrettto/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/theseus-rs/ristretto" +[build] +template = "custom" +script = """ +cookbook_cargo_packages ristretto_cli +""" diff --git a/recipes/wip/dev/rust-tools/dylint/recipe.toml b/recipes/wip/dev/rust-tools/dylint/recipe.toml new file mode 100644 index 000000000..a3a600637 --- /dev/null +++ b/recipes/wip/dev/rust-tools/dylint/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/trailofbits/dylint" +[build] +template = "custom" +script = """ +cookbook_cargo_packages cargo-dylint dylint-link +""" diff --git a/recipes/wip/net/download/kelpsget/recipe.toml b/recipes/wip/net/download/kelpsget/recipe.toml new file mode 100644 index 000000000..c02bd15b8 --- /dev/null +++ b/recipes/wip/net/download/kelpsget/recipe.toml @@ -0,0 +1,9 @@ +#TODO not compiled or tested +#TODO require transmission-daemon +[source] +git = "https://github.com/davimf721/KelpsGet" +[build] +template = "cargo" +dependencies = [ + "openssl1", +] diff --git a/recipes/wip/security/yara-x/recipe.toml b/recipes/wip/security/yara-x/recipe.toml new file mode 100644 index 000000000..fe61456ae --- /dev/null +++ b/recipes/wip/security/yara-x/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/VirusTotal/yara-x" +[build] +template = "custom" +script = """ +cookbook_cargo_packages yara-x-cli +""" diff --git a/recipes/wip/terminal/scooter/recipe.toml b/recipes/wip/terminal/scooter/recipe.toml new file mode 100644 index 000000000..167f32f6d --- /dev/null +++ b/recipes/wip/terminal/scooter/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/thomasschafer/scooter" +[build] +template = "custom" +script = """ +cookbook_cargo_packages scooter +""" diff --git a/recipes/wip/text/edit/recipe.toml b/recipes/wip/text/edit/recipe.toml new file mode 100644 index 000000000..d21fb69db --- /dev/null +++ b/recipes/wip/text/edit/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/microsoft/edit" +[build] +template = "cargo" diff --git a/recipes/wip/text/ripwc/recipe.toml b/recipes/wip/text/ripwc/recipe.toml new file mode 100644 index 000000000..4bd75ce49 --- /dev/null +++ b/recipes/wip/text/ripwc/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/LuminousToaster/ripwc" +[build] +template = "cargo" diff --git a/recipes/wip/web/faircamp/recipe.toml b/recipes/wip/web/faircamp/recipe.toml new file mode 100644 index 000000000..3c523ae2a --- /dev/null +++ b/recipes/wip/web/faircamp/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://codeberg.org/simonrepp/faircamp" +[build] +template = "cargo"