Add a Process API library (spawn-1.0.0). (#157)

This commit is contained in:
Maxim Reznik
2020-10-02 11:57:17 +03:00
committed by GitHub
parent ad52a694a2
commit 9b1c1cc584
2 changed files with 49 additions and 0 deletions
+23
View File
@@ -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 <vgodunko@gmail.com>", "Max Reznik <reznikmm@gmail.com>"]
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"]
+26
View File
@@ -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 <vgodunko@gmail.com>", "Max Reznik <reznikmm@gmail.com>"]
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"]