From ad53bcc970eec3c26e2ff06c1a1770f32708e4b3 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sat, 11 Jan 2025 08:30:52 +0000 Subject: [PATCH 1/6] Add recipes --- recipes/wip/dev/analysis/zizmor/recipe.toml | 5 +++++ recipes/wip/edu/rusty-tape/recipe.toml | 10 ++++++++++ recipes/wip/finance/mgmt/tackler-ng/recipe.toml | 10 ++++++++++ .../wip/math/cosmic-ext-calculator/recipe.toml | 15 +++++++++++++++ .../monitors/cosmic-ext-observatory/recipe.toml | 15 +++++++++++++++ .../weather/cosmic-ext-forecast/recipe.toml | 15 +++++++++++++++ 6 files changed, 70 insertions(+) create mode 100644 recipes/wip/dev/analysis/zizmor/recipe.toml create mode 100644 recipes/wip/edu/rusty-tape/recipe.toml create mode 100644 recipes/wip/finance/mgmt/tackler-ng/recipe.toml create mode 100644 recipes/wip/math/cosmic-ext-calculator/recipe.toml create mode 100644 recipes/wip/monitors/cosmic-ext-observatory/recipe.toml create mode 100644 recipes/wip/science/weather/cosmic-ext-forecast/recipe.toml diff --git a/recipes/wip/dev/analysis/zizmor/recipe.toml b/recipes/wip/dev/analysis/zizmor/recipe.toml new file mode 100644 index 000000000..619072131 --- /dev/null +++ b/recipes/wip/dev/analysis/zizmor/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/woodruffw/zizmor" +[build] +template = "cargo" diff --git a/recipes/wip/edu/rusty-tape/recipe.toml b/recipes/wip/edu/rusty-tape/recipe.toml new file mode 100644 index 000000000..755a33f3a --- /dev/null +++ b/recipes/wip/edu/rusty-tape/recipe.toml @@ -0,0 +1,10 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/Kkobarii/Rusty-Tape" +[build] +template = "custom" +script = """ +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/rusty-tape +cp -rv "${COOKBOOK_SOURCE}"/data/* "${COOKBOOK_STAGE}"/usr/share/rusty-tape +cookbook_cargo +""" diff --git a/recipes/wip/finance/mgmt/tackler-ng/recipe.toml b/recipes/wip/finance/mgmt/tackler-ng/recipe.toml new file mode 100644 index 000000000..09092a706 --- /dev/null +++ b/recipes/wip/finance/mgmt/tackler-ng/recipe.toml @@ -0,0 +1,10 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/e257-fi/tackler-ng" +[build] +template = "custom" +script = """ +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/tackler-ng/examples +cp -rv "${COOKBOOK_SOURCE}"/examples/* "${COOKBOOK_STAGE}"/usr/share/tackler-ng/examples +cookbook_cargo_packages tackler +""" diff --git a/recipes/wip/math/cosmic-ext-calculator/recipe.toml b/recipes/wip/math/cosmic-ext-calculator/recipe.toml new file mode 100644 index 000000000..ce024aa36 --- /dev/null +++ b/recipes/wip/math/cosmic-ext-calculator/recipe.toml @@ -0,0 +1,15 @@ +#TODO not compiled or tested +#TODO verify if the desktop shortcut and icon configuration is correct +[source] +git = "https://github.com/cosmic-utils/calculator" +[build] +template = "custom" +script = """ +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/applications +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/metainfo +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/icons +cp -rv "${COOKBOOK_SOURCE}"/res/app.desktop "${COOKBOOK_STAGE}"/usr/share/applications/dev.edfloreshz.Calculator.desktop +cp -rv "${COOKBOOK_SOURCE}"/res/metainfo.xml "${COOKBOOK_STAGE}"/usr/share/metainfo/dev.edfloreshz.Calculator.metainfo.xml +cp -rv "${COOKBOOK_SOURCE}"/res/icons/hicolor "${COOKBOOK_STAGE}"/usr/share/icons +cookbook_cargo +""" diff --git a/recipes/wip/monitors/cosmic-ext-observatory/recipe.toml b/recipes/wip/monitors/cosmic-ext-observatory/recipe.toml new file mode 100644 index 000000000..70c3c59f6 --- /dev/null +++ b/recipes/wip/monitors/cosmic-ext-observatory/recipe.toml @@ -0,0 +1,15 @@ +#TODO not compiled or tested +#TODO verify if the resource commands are correct +[source] +git = "https://github.com/cosmic-utils/observatory" +[build] +template = "custom" +script = """ +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/applications +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/metainfo +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/icons +cp -rv "${COOKBOOK_SOURCE}"/observatory/res/app.desktop "${COOKBOOK_STAGE}"/usr/share/applications/io.github.cosmic_utils.observatory.desktop +cp -rv "${COOKBOOK_SOURCE}"/observatory/res/metainfo.xml "${COOKBOOK_STAGE}"/usr/share/metainfo/io.github.cosmic_utils.observatory.metainfo.xml +cp -rv "${COOKBOOK_SOURCE}"/observatory/res/icons/hicolor "${COOKBOOK_STAGE}"/usr/share/icons +cookbook_cargo_packages observatory +""" diff --git a/recipes/wip/science/weather/cosmic-ext-forecast/recipe.toml b/recipes/wip/science/weather/cosmic-ext-forecast/recipe.toml new file mode 100644 index 000000000..1b35e5247 --- /dev/null +++ b/recipes/wip/science/weather/cosmic-ext-forecast/recipe.toml @@ -0,0 +1,15 @@ +#TODO not compiled or tested +#TODO verify if the resource commands are correct +[source] +git = "https://github.com/cosmic-utils/forecast" +[build] +template = "custom" +script = """ +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/applications +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/metainfo +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/icons +cp -rv "${COOKBOOK_SOURCE}"/res/com.jwestall.Forecast.desktop "${COOKBOOK_STAGE}"/usr/share/applications +cp -rv "${COOKBOOK_SOURCE}"/res/com.jwestall.Forecast.metainfo.xml "${COOKBOOK_STAGE}"/usr/share/metainfo +cp -rv "${COOKBOOK_SOURCE}"/res/icons/hicolor "${COOKBOOK_STAGE}"/usr/share/icons +cookbook_cargo +""" \ No newline at end of file From 87461fd72cd0d6e3ab8bf47cff749e80aa1212d1 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sat, 11 Jan 2025 08:41:36 +0000 Subject: [PATCH 2/6] Update recipes --- recipes/wip/games/math/cosmic-2048/recipe.toml | 5 ----- recipes/wip/games/math/cosmic-ext-2048/recipe.toml | 14 ++++++++++++++ recipes/wip/math/cosmic-ext-calculator/recipe.toml | 2 +- .../monitors/cosmic-ext-observatory/recipe.toml | 2 +- 4 files changed, 16 insertions(+), 7 deletions(-) delete mode 100644 recipes/wip/games/math/cosmic-2048/recipe.toml create mode 100644 recipes/wip/games/math/cosmic-ext-2048/recipe.toml diff --git a/recipes/wip/games/math/cosmic-2048/recipe.toml b/recipes/wip/games/math/cosmic-2048/recipe.toml deleted file mode 100644 index e3b83481e..000000000 --- a/recipes/wip/games/math/cosmic-2048/recipe.toml +++ /dev/null @@ -1,5 +0,0 @@ -#TODO not compiled or tested -[source] -git = "https://github.com/Kartonrealista/cosmic-ext-2048" -[build] -template = "cargo" diff --git a/recipes/wip/games/math/cosmic-ext-2048/recipe.toml b/recipes/wip/games/math/cosmic-ext-2048/recipe.toml new file mode 100644 index 000000000..872d66c01 --- /dev/null +++ b/recipes/wip/games/math/cosmic-ext-2048/recipe.toml @@ -0,0 +1,14 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/Kartonrealista/cosmic-ext-2048" +[build] +template = "custom" +script = """ +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/applications +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/metainfo +mkdir -pv "${COOKBOOK_STAGE}"/usr/share/icons +cp -rv "${COOKBOOK_SOURCE}"/res/io.github.Kartonrealista.cosmic-ext-2048.desktop "${COOKBOOK_STAGE}"/usr/share/applications +cp -rv "${COOKBOOK_SOURCE}"/res/io.github.Kartonrealista.cosmic-ext-2048.metainfo.xml "${COOKBOOK_STAGE}"/usr/share/metainfo +cp -rv "${COOKBOOK_SOURCE}"/res/icons/hicolor "${COOKBOOK_STAGE}"/usr/share/icons +cookbook_cargo +""" diff --git a/recipes/wip/math/cosmic-ext-calculator/recipe.toml b/recipes/wip/math/cosmic-ext-calculator/recipe.toml index ce024aa36..57f0dd2ab 100644 --- a/recipes/wip/math/cosmic-ext-calculator/recipe.toml +++ b/recipes/wip/math/cosmic-ext-calculator/recipe.toml @@ -10,6 +10,6 @@ mkdir -pv "${COOKBOOK_STAGE}"/usr/share/metainfo mkdir -pv "${COOKBOOK_STAGE}"/usr/share/icons cp -rv "${COOKBOOK_SOURCE}"/res/app.desktop "${COOKBOOK_STAGE}"/usr/share/applications/dev.edfloreshz.Calculator.desktop cp -rv "${COOKBOOK_SOURCE}"/res/metainfo.xml "${COOKBOOK_STAGE}"/usr/share/metainfo/dev.edfloreshz.Calculator.metainfo.xml -cp -rv "${COOKBOOK_SOURCE}"/res/icons/hicolor "${COOKBOOK_STAGE}"/usr/share/icons +cp -rv "${COOKBOOK_SOURCE}"/res/icons/hicolor/scalable/apps/icon.svg "${COOKBOOK_STAGE}"/usr/share/icons/hicolor/scalable/apps/dev.edfloreshz.Calculator.svg cookbook_cargo """ diff --git a/recipes/wip/monitors/cosmic-ext-observatory/recipe.toml b/recipes/wip/monitors/cosmic-ext-observatory/recipe.toml index 70c3c59f6..6dd545a2b 100644 --- a/recipes/wip/monitors/cosmic-ext-observatory/recipe.toml +++ b/recipes/wip/monitors/cosmic-ext-observatory/recipe.toml @@ -10,6 +10,6 @@ mkdir -pv "${COOKBOOK_STAGE}"/usr/share/metainfo mkdir -pv "${COOKBOOK_STAGE}"/usr/share/icons cp -rv "${COOKBOOK_SOURCE}"/observatory/res/app.desktop "${COOKBOOK_STAGE}"/usr/share/applications/io.github.cosmic_utils.observatory.desktop cp -rv "${COOKBOOK_SOURCE}"/observatory/res/metainfo.xml "${COOKBOOK_STAGE}"/usr/share/metainfo/io.github.cosmic_utils.observatory.metainfo.xml -cp -rv "${COOKBOOK_SOURCE}"/observatory/res/icons/hicolor "${COOKBOOK_STAGE}"/usr/share/icons +cp -rv "${COOKBOOK_SOURCE}"/observatory/res/icons/hicolor/scalable/apps/icon.svg "${COOKBOOK_STAGE}"/usr/share/icons/hicolor/scalable/apps/io.github.cosmic_utils.observatory.svg cookbook_cargo_packages observatory """ From 24dc0e53200c5d24af9474643a8fb08338dd4a3f Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sat, 11 Jan 2025 08:51:31 +0000 Subject: [PATCH 3/6] Add recipes --- recipes/wip/games/open-world/ethertia/recipe.toml | 5 +++++ recipes/wip/net/other/rallyup/recipe.toml | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 recipes/wip/games/open-world/ethertia/recipe.toml create mode 100644 recipes/wip/net/other/rallyup/recipe.toml diff --git a/recipes/wip/games/open-world/ethertia/recipe.toml b/recipes/wip/games/open-world/ethertia/recipe.toml new file mode 100644 index 000000000..747cf4515 --- /dev/null +++ b/recipes/wip/games/open-world/ethertia/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/Dreamtowards/Ethertum" +[build] +template = "cargo" diff --git a/recipes/wip/net/other/rallyup/recipe.toml b/recipes/wip/net/other/rallyup/recipe.toml new file mode 100644 index 000000000..aec0aedfb --- /dev/null +++ b/recipes/wip/net/other/rallyup/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/darwindarak/rallyup" +[build] +template = "cargo" From 7bc8c317f2f4c641f6dd8ffd47dd195ba14ce4b2 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sat, 11 Jan 2025 08:52:33 +0000 Subject: [PATCH 4/6] Rename the "sandbox" recipe --- recipes/wip/games/{sandbox => other/sandbox-rs}/recipe.toml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename recipes/wip/games/{sandbox => other/sandbox-rs}/recipe.toml (100%) diff --git a/recipes/wip/games/sandbox/recipe.toml b/recipes/wip/games/other/sandbox-rs/recipe.toml similarity index 100% rename from recipes/wip/games/sandbox/recipe.toml rename to recipes/wip/games/other/sandbox-rs/recipe.toml From bfefd758aa0914cf352b7d3a9be26f4286889461 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sat, 11 Jan 2025 09:07:14 +0000 Subject: [PATCH 5/6] Add recipes --- recipes/wip/net/p2p/easytier/recipe.toml | 8 ++++++++ recipes/wip/net/server/shoes/recipe.toml | 5 +++++ 2 files changed, 13 insertions(+) create mode 100644 recipes/wip/net/p2p/easytier/recipe.toml create mode 100644 recipes/wip/net/server/shoes/recipe.toml diff --git a/recipes/wip/net/p2p/easytier/recipe.toml b/recipes/wip/net/p2p/easytier/recipe.toml new file mode 100644 index 000000000..9f4a94387 --- /dev/null +++ b/recipes/wip/net/p2p/easytier/recipe.toml @@ -0,0 +1,8 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/EasyTier/EasyTier" +[build] +template = "custom" +script = """ +cookbook_cargo_packages easytier +""" diff --git a/recipes/wip/net/server/shoes/recipe.toml b/recipes/wip/net/server/shoes/recipe.toml new file mode 100644 index 000000000..474d05eec --- /dev/null +++ b/recipes/wip/net/server/shoes/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/cfal/shoes" +[build] +template = "cargo" From e5ccc5c8521a59fe57f3f89cbdb5fe0088e74a23 Mon Sep 17 00:00:00 2001 From: Ribbon Date: Sat, 11 Jan 2025 12:43:00 +0000 Subject: [PATCH 6/6] Add the boulette recipe --- recipes/wip/terminal/boulette/recipe.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 recipes/wip/terminal/boulette/recipe.toml diff --git a/recipes/wip/terminal/boulette/recipe.toml b/recipes/wip/terminal/boulette/recipe.toml new file mode 100644 index 000000000..4dd89dd8a --- /dev/null +++ b/recipes/wip/terminal/boulette/recipe.toml @@ -0,0 +1,5 @@ +#TODO not compiled or tested +[source] +git = "https://github.com/pipelight/boulette" +[build] +template = "cargo"