From 9b1c1cc5840a6ceeeec1a253f316da934c7c40e3 Mon Sep 17 00:00:00 2001 From: Maxim Reznik Date: Fri, 2 Oct 2020 11:57:17 +0300 Subject: [PATCH] Add a Process API library (spawn-1.0.0). (#157) --- index/sp/spawn/spawn-1.0.0.toml | 23 ++++++++++++++++++++ index/sp/spawn_glib/spawn_glib-1.0.0.toml | 26 +++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 index/sp/spawn/spawn-1.0.0.toml create mode 100644 index/sp/spawn_glib/spawn_glib-1.0.0.toml diff --git a/index/sp/spawn/spawn-1.0.0.toml b/index/sp/spawn/spawn-1.0.0.toml new file mode 100644 index 00000000..d433f80c --- /dev/null +++ b/index/sp/spawn/spawn-1.0.0.toml @@ -0,0 +1,23 @@ +name = "spawn" +description = "A simple library to spawn processes and communicate with them." +long-description = "This is Glib indepentent implementation of a spawn processes interface." +version = "1.0.0" +website = "https://github.com/reznikmm/spawn" +authors = ["AdaCore", "Max Reznik"] +licenses = ["GMGPL 3.0"] +maintainers = ["Vadim Godunko ", "Max Reznik "] +maintainers-logins = ["godunko", "reznikmm"] +project-files = ["gnat/spawn.gpr"] +tags = ["process", "launch", "pipe"] + +[gpr-externals] +OS = ["unix", "osx", "Windows_NT"] + +[gpr-set-externals.'case(os)'] +linux = { OS = "unix" } # Compact table syntax is convenient in this case +windows = { OS = "Windows_NT" } # to see all enumeration values, one per row. +macos = { OS = "osx" } + +[origin] +url = "https://github.com/reznikmm/spawn/files/5311743/spawn-1.0.0.tar.gz" +hashes = ["sha512:a3d12d2df209f006922883ffcd1b69cff87995970b5e60a1aee69251bd01094364a7f8fe546284d21d0979a34ee3e95b92a94e31de55a0a3d9acf1e7aa133066"] diff --git a/index/sp/spawn_glib/spawn_glib-1.0.0.toml b/index/sp/spawn_glib/spawn_glib-1.0.0.toml new file mode 100644 index 00000000..312ecd4a --- /dev/null +++ b/index/sp/spawn_glib/spawn_glib-1.0.0.toml @@ -0,0 +1,26 @@ +name = "spawn_glib" +description = "A simple library to spawn processes and communicate with them." +long-description = "This is Glib integrated implementation of a spawn processes interface." +version = "1.0.0" +website = "https://github.com/reznikmm/spawn" +authors = ["AdaCore", "Max Reznik"] +licenses = ["GMGPL 3.0"] +maintainers = ["Vadim Godunko ", "Max Reznik "] +maintainers-logins = ["godunko", "reznikmm"] +project-files = ["gnat/spawn_glib.gpr"] +tags = ["process", "launch", "pipe", "glib"] + +[[depends-on]] +gtkada = "^19" # GtkAda 2019 and latter + +[gpr-externals] +OS = ["unix", "osx", "Windows_NT"] + +[gpr-set-externals.'case(os)'] +linux = { OS = "unix" } # Compact table syntax is convenient in this case +windows = { OS = "Windows_NT" } # to see all enumeration values, one per row. +macos = { OS = "osx" } + +[origin] +url = "https://github.com/reznikmm/spawn/files/5311744/spawn_glib-1.0.0.tar.gz" +hashes = ["sha512:44f2752986dcfdea4634731e0bcb972dec129d89b57e55c9e785b47cd3ae3adc04cf70334294dbcb9dd0c54cfe2896695d9b9090b8f7d6165eaf04a0b3baaaa6"]