From b7b2b9b98ea92107aa8be26aa5f009dc72aba143 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sat, 20 Apr 2024 02:47:19 +0000 Subject: [PATCH 01/13] Add a recipe --- recipes/wip/dev/bite/recipe.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 recipes/wip/dev/bite/recipe.toml diff --git a/recipes/wip/dev/bite/recipe.toml b/recipes/wip/dev/bite/recipe.toml new file mode 100644 index 000000000..8d35e8aac --- /dev/null +++ b/recipes/wip/dev/bite/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/WINSDK/bite" +[build] +template = "cargo" From 525e4d5b3dc728afc842aef9c7b11570225e3d37 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sat, 20 Apr 2024 18:43:45 +0000 Subject: [PATCH 02/13] Add recipes --- recipes/wip/dev/cargo-compete/recipe.toml | 5 +++++ recipes/wip/dev/probe-rs/recipe.toml | 11 +++++++++++ recipes/wip/graphics/simp/recipe.toml | 11 +++++++++++ recipes/wip/net/rustdesk-server/recipe.toml | 5 +++++ recipes/wip/security/sss-cli/recipe.toml | 5 +++++ 5 files changed, 37 insertions(+) create mode 100644 recipes/wip/dev/cargo-compete/recipe.toml create mode 100644 recipes/wip/dev/probe-rs/recipe.toml create mode 100644 recipes/wip/graphics/simp/recipe.toml create mode 100644 recipes/wip/net/rustdesk-server/recipe.toml create mode 100644 recipes/wip/security/sss-cli/recipe.toml diff --git a/recipes/wip/dev/cargo-compete/recipe.toml b/recipes/wip/dev/cargo-compete/recipe.toml new file mode 100644 index 000000000..8f8563fa8 --- /dev/null +++ b/recipes/wip/dev/cargo-compete/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/qryxip/cargo-compete" +[build] +template = "cargo" diff --git a/recipes/wip/dev/probe-rs/recipe.toml b/recipes/wip/dev/probe-rs/recipe.toml new file mode 100644 index 000000000..9afdaeee9 --- /dev/null +++ b/recipes/wip/dev/probe-rs/recipe.toml @@ -0,0 +1,11 @@ +#TODO maybe missing dependencies +[source] +git = "https://github.com/probe-rs/probe-rs" +[build] +template = "custom" +dependencies = [ + "libudev", +] +script = """ +cookbook_cargo --features cli +""" diff --git a/recipes/wip/graphics/simp/recipe.toml b/recipes/wip/graphics/simp/recipe.toml new file mode 100644 index 000000000..8f7b19e88 --- /dev/null +++ b/recipes/wip/graphics/simp/recipe.toml @@ -0,0 +1,11 @@ +#TODO missing dependencies, see https://github.com/Kl4rry/simp#system-dependencies +[source] +git = "https://github.com/Kl4rry/simp" +rev = "195b2ef334e4c72ba8f44ee8af9f5cc0c259cc52" +[build] +template = "cargo" +dependencies = [ + "gtk3", + "openssl1", + "libxkbcommon", +] diff --git a/recipes/wip/net/rustdesk-server/recipe.toml b/recipes/wip/net/rustdesk-server/recipe.toml new file mode 100644 index 000000000..fe3eb4697 --- /dev/null +++ b/recipes/wip/net/rustdesk-server/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/rustdesk/rustdesk-server" +[build] +template = "cargo" diff --git a/recipes/wip/security/sss-cli/recipe.toml b/recipes/wip/security/sss-cli/recipe.toml new file mode 100644 index 000000000..dbd8cfed0 --- /dev/null +++ b/recipes/wip/security/sss-cli/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/dsprenkels/sss-cli" +[build] +template = "cargo" From 4c683c6c12d63a8369e82911b0c35e302018a527 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sat, 20 Apr 2024 23:31:46 +0000 Subject: [PATCH 03/13] Add recipes --- recipes/wip/demos/fractal-rs/recipe.toml | 8 ++++++++ recipes/wip/dev/cargo-equip/recipe.toml | 5 +++++ recipes/wip/dev/quicktest/recipe.toml | 6 ++++++ recipes/wip/finance/btc-vanity/recipe.toml | 5 +++++ recipes/wip/graphics/kantig/recipe.toml | 5 +++++ recipes/wip/security/veldora/recipe.toml | 5 +++++ recipes/wip/tools/lucid/recipe.toml | 5 +++++ recipes/wip/tools/rfetch/recipe.toml | 5 +++++ 8 files changed, 44 insertions(+) create mode 100644 recipes/wip/demos/fractal-rs/recipe.toml create mode 100644 recipes/wip/dev/cargo-equip/recipe.toml create mode 100644 recipes/wip/dev/quicktest/recipe.toml create mode 100644 recipes/wip/finance/btc-vanity/recipe.toml create mode 100644 recipes/wip/graphics/kantig/recipe.toml create mode 100644 recipes/wip/security/veldora/recipe.toml create mode 100644 recipes/wip/tools/lucid/recipe.toml create mode 100644 recipes/wip/tools/rfetch/recipe.toml diff --git a/recipes/wip/demos/fractal-rs/recipe.toml b/recipes/wip/demos/fractal-rs/recipe.toml new file mode 100644 index 000000000..2032d1bd1 --- /dev/null +++ b/recipes/wip/demos/fractal-rs/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/aetherknight/fractal-rs" +[build] +template = "custom" +script = """ +cookbook_cargo_packages fractal-piston +""" diff --git a/recipes/wip/dev/cargo-equip/recipe.toml b/recipes/wip/dev/cargo-equip/recipe.toml new file mode 100644 index 000000000..de7655a66 --- /dev/null +++ b/recipes/wip/dev/cargo-equip/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/qryxip/cargo-equip" +[build] +template = "cargo" diff --git a/recipes/wip/dev/quicktest/recipe.toml b/recipes/wip/dev/quicktest/recipe.toml new file mode 100644 index 000000000..24cbc2d54 --- /dev/null +++ b/recipes/wip/dev/quicktest/recipe.toml @@ -0,0 +1,6 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/LuchoBazz/quicktest" +rev = "f4d32f87d350a725b47d5bc92756e7be208cd466" +[build] +template = "cargo" diff --git a/recipes/wip/finance/btc-vanity/recipe.toml b/recipes/wip/finance/btc-vanity/recipe.toml new file mode 100644 index 000000000..d98555936 --- /dev/null +++ b/recipes/wip/finance/btc-vanity/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/Emivvvvv/btc-vanity" +[build] +template = "cargo" diff --git a/recipes/wip/graphics/kantig/recipe.toml b/recipes/wip/graphics/kantig/recipe.toml new file mode 100644 index 000000000..4814f0971 --- /dev/null +++ b/recipes/wip/graphics/kantig/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/DenSASoftware/kantig" +[build] +template = "cargo" diff --git a/recipes/wip/security/veldora/recipe.toml b/recipes/wip/security/veldora/recipe.toml new file mode 100644 index 000000000..6c81e6afd --- /dev/null +++ b/recipes/wip/security/veldora/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/tamton-aquib/veldora" +[build] +template = "cargo" diff --git a/recipes/wip/tools/lucid/recipe.toml b/recipes/wip/tools/lucid/recipe.toml new file mode 100644 index 000000000..9a75dbe75 --- /dev/null +++ b/recipes/wip/tools/lucid/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/sharkdp/lucid" +[build] +template = "cargo" diff --git a/recipes/wip/tools/rfetch/recipe.toml b/recipes/wip/tools/rfetch/recipe.toml new file mode 100644 index 000000000..0b2ddf21c --- /dev/null +++ b/recipes/wip/tools/rfetch/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/kamui-fin/rfetch" +[build] +template = "cargo" From 0b2007e054436c3f4995093b65788e425badd7d4 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sat, 20 Apr 2024 23:32:18 +0000 Subject: [PATCH 04/13] update the simp recipe --- recipes/wip/graphics/simp/recipe.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/recipes/wip/graphics/simp/recipe.toml b/recipes/wip/graphics/simp/recipe.toml index 8f7b19e88..bfaceec13 100644 --- a/recipes/wip/graphics/simp/recipe.toml +++ b/recipes/wip/graphics/simp/recipe.toml @@ -5,7 +5,6 @@ rev = "195b2ef334e4c72ba8f44ee8af9f5cc0c259cc52" [build] template = "cargo" dependencies = [ - "gtk3", "openssl1", "libxkbcommon", ] From d19dc7f02e247a1ce5f793df3938b68d196f7557 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sun, 21 Apr 2024 09:27:11 +0000 Subject: [PATCH 05/13] Add a recipe --- recipes/wip/net/hinoki/recipe.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 recipes/wip/net/hinoki/recipe.toml diff --git a/recipes/wip/net/hinoki/recipe.toml b/recipes/wip/net/hinoki/recipe.toml new file mode 100644 index 000000000..c64c258c6 --- /dev/null +++ b/recipes/wip/net/hinoki/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/jplatte/hinoki" +[build] +template = "cargo" From f74f642705229ca63188532461f784c2bea4c88a Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sun, 21 Apr 2024 14:17:17 +0000 Subject: [PATCH 06/13] Add recipes --- recipes/wip/demos/ferris-says/recipe.toml | 5 +++++ recipes/wip/dev/cargo-outofdate/recipe.toml | 5 +++++ recipes/wip/dev/jaq/recipe.toml | 8 ++++++++ recipes/wip/games/bevy-combat/recipe.toml | 5 +++++ recipes/wip/graphics/jxl-oxide/recipe.toml | 8 ++++++++ recipes/wip/net/turn-rs/recipe.toml | 8 ++++++++ recipes/wip/tools/crunchy-cli/recipe.toml | 6 ++++++ recipes/wip/tools/epub2txt/recipe.toml | 5 +++++ recipes/wip/tools/snappy-rs/recipe.toml | 8 ++++++++ recipes/wip/tools/unzrip/recipe.toml | 5 +++++ 10 files changed, 63 insertions(+) create mode 100644 recipes/wip/demos/ferris-says/recipe.toml create mode 100644 recipes/wip/dev/cargo-outofdate/recipe.toml create mode 100644 recipes/wip/dev/jaq/recipe.toml create mode 100644 recipes/wip/games/bevy-combat/recipe.toml create mode 100644 recipes/wip/graphics/jxl-oxide/recipe.toml create mode 100644 recipes/wip/net/turn-rs/recipe.toml create mode 100644 recipes/wip/tools/crunchy-cli/recipe.toml create mode 100644 recipes/wip/tools/epub2txt/recipe.toml create mode 100644 recipes/wip/tools/snappy-rs/recipe.toml create mode 100644 recipes/wip/tools/unzrip/recipe.toml diff --git a/recipes/wip/demos/ferris-says/recipe.toml b/recipes/wip/demos/ferris-says/recipe.toml new file mode 100644 index 000000000..f42b0fccd --- /dev/null +++ b/recipes/wip/demos/ferris-says/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/rust-lang/ferris-says" +[build] +template = "cargo" diff --git a/recipes/wip/dev/cargo-outofdate/recipe.toml b/recipes/wip/dev/cargo-outofdate/recipe.toml new file mode 100644 index 000000000..27864de37 --- /dev/null +++ b/recipes/wip/dev/cargo-outofdate/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/quininer/cargo-outofdate" +[build] +template = "cargo" diff --git a/recipes/wip/dev/jaq/recipe.toml b/recipes/wip/dev/jaq/recipe.toml new file mode 100644 index 000000000..c78159a2d --- /dev/null +++ b/recipes/wip/dev/jaq/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/01mf02/jaq" +[build] +template = "custom" +script = """ +cookbook_cargo_packages jaq +""" diff --git a/recipes/wip/games/bevy-combat/recipe.toml b/recipes/wip/games/bevy-combat/recipe.toml new file mode 100644 index 000000000..8a6afa27b --- /dev/null +++ b/recipes/wip/games/bevy-combat/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/ElliotB256/bevy_combat" +[build] +template = "cargo" diff --git a/recipes/wip/graphics/jxl-oxide/recipe.toml b/recipes/wip/graphics/jxl-oxide/recipe.toml new file mode 100644 index 000000000..d025db41c --- /dev/null +++ b/recipes/wip/graphics/jxl-oxide/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/tirr-c/jxl-oxide" +[build] +template = "custom" +script = """ +cookbook_cargo_packages jxl-oxide-cli +""" diff --git a/recipes/wip/net/turn-rs/recipe.toml b/recipes/wip/net/turn-rs/recipe.toml new file mode 100644 index 000000000..8cc52065d --- /dev/null +++ b/recipes/wip/net/turn-rs/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/mycrl/turn-rs" +[build] +template = "custom" +script = """ +cookbook_cargo_packages cli turn-server +""" diff --git a/recipes/wip/tools/crunchy-cli/recipe.toml b/recipes/wip/tools/crunchy-cli/recipe.toml new file mode 100644 index 000000000..e866bbd99 --- /dev/null +++ b/recipes/wip/tools/crunchy-cli/recipe.toml @@ -0,0 +1,6 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/crunchy-labs/crunchy-cli" +rev = "8fff807ae68b61931aa8b1c899b8c8bba4df0784" +[build] +template = "cargo" diff --git a/recipes/wip/tools/epub2txt/recipe.toml b/recipes/wip/tools/epub2txt/recipe.toml new file mode 100644 index 000000000..cbe24729f --- /dev/null +++ b/recipes/wip/tools/epub2txt/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/quininer/epub2txt" +[build] +template = "cargo" diff --git a/recipes/wip/tools/snappy-rs/recipe.toml b/recipes/wip/tools/snappy-rs/recipe.toml new file mode 100644 index 000000000..63e390a5c --- /dev/null +++ b/recipes/wip/tools/snappy-rs/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/BurntSushi/rust-snappy" +[build] +template = "custom" +script = """ +cookbook_cargo_packages szip +""" diff --git a/recipes/wip/tools/unzrip/recipe.toml b/recipes/wip/tools/unzrip/recipe.toml new file mode 100644 index 000000000..c90407d8a --- /dev/null +++ b/recipes/wip/tools/unzrip/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/quininer/unzrip" +[build] +template = "cargo" From 7ee1fa9a962aadd2bde1ffe9efdd66eeaf999585 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sun, 21 Apr 2024 14:48:35 +0000 Subject: [PATCH 07/13] Add recipes --- recipes/wip/games/leafish/recipe.toml | 9 +++++++++ recipes/wip/tools/rusync/recipe.toml | 5 +++++ recipes/wip/tools/skyspell/recipe.toml | 12 ++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 recipes/wip/games/leafish/recipe.toml create mode 100644 recipes/wip/tools/rusync/recipe.toml create mode 100644 recipes/wip/tools/skyspell/recipe.toml diff --git a/recipes/wip/games/leafish/recipe.toml b/recipes/wip/games/leafish/recipe.toml new file mode 100644 index 000000000..ff29d95ef --- /dev/null +++ b/recipes/wip/games/leafish/recipe.toml @@ -0,0 +1,9 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/Lea-fish/Leafish" +[build] +template = "cargo" +dependencies = [ + "gtk3", + "openssl1", +] diff --git a/recipes/wip/tools/rusync/recipe.toml b/recipes/wip/tools/rusync/recipe.toml new file mode 100644 index 000000000..21258e5b2 --- /dev/null +++ b/recipes/wip/tools/rusync/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/your-tools/rusync" +[build] +template = "cargo" diff --git a/recipes/wip/tools/skyspell/recipe.toml b/recipes/wip/tools/skyspell/recipe.toml new file mode 100644 index 000000000..2a8c80c92 --- /dev/null +++ b/recipes/wip/tools/skyspell/recipe.toml @@ -0,0 +1,12 @@ +#TODO missing an enchant backend and dictionary, see https://github.com/your-tools/skyspell#installation +[source] +git = "https://github.com/your-tools/skyspell" +[build] +template = "custom" +dependencies = [ + "sqlite3", + "enchant", +] +script = """ +cookbook_cargo_packages skyspell +""" From 6e5201b9c51e37d6d855c0c1fff7e7e9a2bd57bc Mon Sep 17 00:00:00 2001 From: Ribbon Date: Mon, 22 Apr 2024 08:59:07 +0000 Subject: [PATCH 08/13] Add recipes --- recipes/wip/dev/clippy/recipe.toml | 5 +++++ recipes/wip/dev/crater/recipe.toml | 5 +++++ recipes/wip/dev/rust-analyzer/recipe.toml | 5 +++++ recipes/wip/dev/rustfmt/recipe.toml | 5 +++++ recipes/wip/dev/rustup/recipe.toml | 5 +++++ recipes/wip/tools/lines-rs/recipe.toml | 5 +++++ 6 files changed, 30 insertions(+) create mode 100644 recipes/wip/dev/clippy/recipe.toml create mode 100644 recipes/wip/dev/crater/recipe.toml create mode 100644 recipes/wip/dev/rust-analyzer/recipe.toml create mode 100644 recipes/wip/dev/rustfmt/recipe.toml create mode 100644 recipes/wip/dev/rustup/recipe.toml create mode 100644 recipes/wip/tools/lines-rs/recipe.toml diff --git a/recipes/wip/dev/clippy/recipe.toml b/recipes/wip/dev/clippy/recipe.toml new file mode 100644 index 000000000..db81cc483 --- /dev/null +++ b/recipes/wip/dev/clippy/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/rust-lang/rust-clippy" +[build] +template = "cargo" diff --git a/recipes/wip/dev/crater/recipe.toml b/recipes/wip/dev/crater/recipe.toml new file mode 100644 index 000000000..36433fe77 --- /dev/null +++ b/recipes/wip/dev/crater/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/rust-lang/crater" +[build] +template = "cargo" diff --git a/recipes/wip/dev/rust-analyzer/recipe.toml b/recipes/wip/dev/rust-analyzer/recipe.toml new file mode 100644 index 000000000..d74f1c316 --- /dev/null +++ b/recipes/wip/dev/rust-analyzer/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/rust-lang/rust-analyzer" +[build] +template = "cargo" diff --git a/recipes/wip/dev/rustfmt/recipe.toml b/recipes/wip/dev/rustfmt/recipe.toml new file mode 100644 index 000000000..7bac4a362 --- /dev/null +++ b/recipes/wip/dev/rustfmt/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/rust-lang/rustfmt" +[build] +template = "cargo" diff --git a/recipes/wip/dev/rustup/recipe.toml b/recipes/wip/dev/rustup/recipe.toml new file mode 100644 index 000000000..33463a870 --- /dev/null +++ b/recipes/wip/dev/rustup/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/rust-lang/rustup" +[build] +template = "cargo" diff --git a/recipes/wip/tools/lines-rs/recipe.toml b/recipes/wip/tools/lines-rs/recipe.toml new file mode 100644 index 000000000..b14c5cd6e --- /dev/null +++ b/recipes/wip/tools/lines-rs/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/ryanfowler/lines" +[build] +template = "cargo" From 4aaa7fd65feabedded3cb8aef2c6cc41fe2bc596 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Mon, 22 Apr 2024 09:06:03 +0000 Subject: [PATCH 09/13] Add a recipe --- recipes/wip/dev/jq/recipe.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 recipes/wip/dev/jq/recipe.toml diff --git a/recipes/wip/dev/jq/recipe.toml b/recipes/wip/dev/jq/recipe.toml new file mode 100644 index 000000000..72364e720 --- /dev/null +++ b/recipes/wip/dev/jq/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +tar = "https://github.com/jqlang/jq/releases/download/jq-1.7.1/jq-1.7.1.tar.gz" +[build] +template = "configure" From 2deb578e6cb66ec33b521a6aee70e150049fa7d5 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Mon, 22 Apr 2024 09:10:55 +0000 Subject: [PATCH 10/13] update the simp recipe --- recipes/wip/graphics/simp/recipe.toml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/recipes/wip/graphics/simp/recipe.toml b/recipes/wip/graphics/simp/recipe.toml index bfaceec13..2fb2e960b 100644 --- a/recipes/wip/graphics/simp/recipe.toml +++ b/recipes/wip/graphics/simp/recipe.toml @@ -4,7 +4,3 @@ git = "https://github.com/Kl4rry/simp" rev = "195b2ef334e4c72ba8f44ee8af9f5cc0c259cc52" [build] template = "cargo" -dependencies = [ - "openssl1", - "libxkbcommon", -] From 9fd50c85c36a4ab57c7a4c02bfd08a20314ed1f1 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Mon, 22 Apr 2024 09:12:16 +0000 Subject: [PATCH 11/13] rename a recipe --- recipes/wip/dev/{godot-engine4 => godot4}/recipe.toml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename recipes/wip/dev/{godot-engine4 => godot4}/recipe.toml (100%) diff --git a/recipes/wip/dev/godot-engine4/recipe.toml b/recipes/wip/dev/godot4/recipe.toml similarity index 100% rename from recipes/wip/dev/godot-engine4/recipe.toml rename to recipes/wip/dev/godot4/recipe.toml From 1bf1849458f7efd7b13b172d2ffce4608c01452d Mon Sep 17 00:00:00 2001 From: Ribbon Date: Mon, 22 Apr 2024 09:32:17 +0000 Subject: [PATCH 12/13] add a recipe --- recipes/wip/dev/piccolo/recipe.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 recipes/wip/dev/piccolo/recipe.toml diff --git a/recipes/wip/dev/piccolo/recipe.toml b/recipes/wip/dev/piccolo/recipe.toml new file mode 100644 index 000000000..e12ae622c --- /dev/null +++ b/recipes/wip/dev/piccolo/recipe.toml @@ -0,0 +1,8 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/kyren/piccolo" +[build] +template = "custom" +script = """ +cookbook_cargo_examples interpreter +""" From cd7504a20518f69c997a9e9fa1651870e2a46368 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Mon, 22 Apr 2024 10:45:30 +0000 Subject: [PATCH 13/13] add recipes --- recipes/wip/dev/cargo-c/recipe.toml | 5 +++++ recipes/wip/dev/py-spy/recipe.toml | 5 +++++ recipes/wip/dev/pyapp/recipe.toml | 5 +++++ recipes/wip/dev/pylyzer/recipe.toml | 5 +++++ recipes/wip/dev/pyscan/recipe.toml | 5 +++++ recipes/wip/dev/python-launcher/recipe.toml | 5 +++++ recipes/wip/graphics/dssim/recipe.toml | 5 +++++ recipes/wip/security/weggli/recipe.toml | 5 +++++ 8 files changed, 40 insertions(+) create mode 100644 recipes/wip/dev/cargo-c/recipe.toml create mode 100644 recipes/wip/dev/py-spy/recipe.toml create mode 100644 recipes/wip/dev/pyapp/recipe.toml create mode 100644 recipes/wip/dev/pylyzer/recipe.toml create mode 100644 recipes/wip/dev/pyscan/recipe.toml create mode 100644 recipes/wip/dev/python-launcher/recipe.toml create mode 100644 recipes/wip/graphics/dssim/recipe.toml create mode 100644 recipes/wip/security/weggli/recipe.toml diff --git a/recipes/wip/dev/cargo-c/recipe.toml b/recipes/wip/dev/cargo-c/recipe.toml new file mode 100644 index 000000000..672635328 --- /dev/null +++ b/recipes/wip/dev/cargo-c/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/lu-zero/cargo-c" +[build] +template = "cargo" diff --git a/recipes/wip/dev/py-spy/recipe.toml b/recipes/wip/dev/py-spy/recipe.toml new file mode 100644 index 000000000..3e07e5b5a --- /dev/null +++ b/recipes/wip/dev/py-spy/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/benfred/py-spy" +[build] +template = "cargo" diff --git a/recipes/wip/dev/pyapp/recipe.toml b/recipes/wip/dev/pyapp/recipe.toml new file mode 100644 index 000000000..48178700f --- /dev/null +++ b/recipes/wip/dev/pyapp/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/ofek/pyapp" +[build] +template = "cargo" diff --git a/recipes/wip/dev/pylyzer/recipe.toml b/recipes/wip/dev/pylyzer/recipe.toml new file mode 100644 index 000000000..bef4e30f3 --- /dev/null +++ b/recipes/wip/dev/pylyzer/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/mtshiba/pylyzer" +[build] +template = "cargo" diff --git a/recipes/wip/dev/pyscan/recipe.toml b/recipes/wip/dev/pyscan/recipe.toml new file mode 100644 index 000000000..81303e527 --- /dev/null +++ b/recipes/wip/dev/pyscan/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/aswinnnn/pyscan" +[build] +template = "cargo" diff --git a/recipes/wip/dev/python-launcher/recipe.toml b/recipes/wip/dev/python-launcher/recipe.toml new file mode 100644 index 000000000..046d65c67 --- /dev/null +++ b/recipes/wip/dev/python-launcher/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/brettcannon/python-launcher" +[build] +template = "cargo" diff --git a/recipes/wip/graphics/dssim/recipe.toml b/recipes/wip/graphics/dssim/recipe.toml new file mode 100644 index 000000000..af5795f22 --- /dev/null +++ b/recipes/wip/graphics/dssim/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/kornelski/dssim" +[build] +template = "cargo" diff --git a/recipes/wip/security/weggli/recipe.toml b/recipes/wip/security/weggli/recipe.toml new file mode 100644 index 000000000..621a99302 --- /dev/null +++ b/recipes/wip/security/weggli/recipe.toml @@ -0,0 +1,5 @@ +#TODO Not compiled or tested +[source] +git = "https://github.com/weggli-rs/weggli" +[build] +template = "cargo"