-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aunit, spawn, vss, templates_parser, and startup_gen 25.0.0 (#1280)
* aunit, spawn, vss, templates_parser, and startup_gen 25.0.0 * Update spawn-25.0.0.toml
- Loading branch information
1 parent
ccfa443
commit 9f9cedd
Showing
5 changed files
with
138 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
description = "Ada unit test framework" | ||
name = "aunit" | ||
version = "25.0.0" | ||
authors = ["AdaCore"] | ||
licenses = "GPL-3.0-or-later WITH GCC-exception-3.1" | ||
maintainers = ["[email protected]"] | ||
maintainers-logins = ["Fabien-Chouteau"] | ||
project-files = ["lib/gnat/aunit.gpr"] | ||
tags=["unit", "test", "unit-test"] | ||
|
||
[configuration] | ||
disabled = true | ||
|
||
[gpr-externals] | ||
AUNIT_BUILD_MODE = ["Devel", "Install"] | ||
AUNIT_RUNTIME = ["full", "zfp", "zfp-cross", "ravenscar", "ravenscar-cert", "cert"] | ||
|
||
[origin] | ||
url="https://github.com/adacore/aunit/archive/v25.0.0/aunit-25.0.0.zip" | ||
hashes=['sha512:3882c581a7a9d3c592cae44f683bb4c4d341135359ca8895d2f6c9eff8a083f9147b9d0f8f7201ed677f32ac67bea47477529d839731b56f07bbcce68c514191'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name = "spawn" | ||
description = "A simple library to spawn processes and communicate with them." | ||
long-description = "This is Glib independent implementation of a spawn processes interface." | ||
version = "25.0.0" | ||
website = "https://github.com/AdaCore/spawn" | ||
authors = ["AdaCore"] | ||
licenses = "Apache-2.0 WITH LLVM-exception" | ||
maintainers = ["Vadim Godunko <[email protected]>", "Max Reznik <[email protected]>"] | ||
maintainers-logins = ["godunko", "reznikmm"] | ||
project-files = ["gnat/spawn.gpr"] | ||
tags = ["process", "launch", "pipe"] | ||
|
||
[configuration] | ||
generate_ada = false | ||
generate_c = false | ||
|
||
[gpr-externals] | ||
SPAWN_OS = ["unix", "osx", "Windows_NT"] | ||
|
||
[gpr-set-externals.'case(os)'] | ||
linux = { SPAWN_OS = "unix" } # Compact table syntax is convenient in this case | ||
windows = { SPAWN_OS = "Windows_NT" } # to see all enumeration values, one per row. | ||
macos = { SPAWN_OS = "osx" } | ||
|
||
[origin] | ||
url="https://github.com/adacore/spawn/archive/v25.0.0/spawn-25.0.0.zip" | ||
hashes=['sha512:c1135d5db88cf6672a8e784ad5805020e3d6e97b0cd4f25b21f03b1e2c6f1bec9f84cd68a41554b5d5e4c2829712668fafd40de17e7874d3b22dd8cbddb5a615'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name = "startup_gen" | ||
version = "25.0.0" | ||
description = "Generates startup files (crt0 and linker script)" | ||
website = "https://github.com/AdaCore/startup-gen" | ||
authors = ["AdaCore"] | ||
executables = ["startup-gen"] | ||
licenses = "GPL-3.0-or-later" | ||
maintainers = ["[email protected]"] | ||
maintainers-logins = ["Fabien-Chouteau"] | ||
project-files = ["startup_gen.gpr"] | ||
tags = ["embedded", "zfp", "nostd"] | ||
|
||
[configuration] | ||
disabled = true | ||
|
||
[[depends-on]] | ||
gnatcoll = "~25.0.0" | ||
libgpr = "~25.0.0" | ||
templates_parser = "~25.0.0" | ||
|
||
[origin] | ||
url="https://github.com/adacore/startup-gen/archive/v25.0.0/startup-gen-25.0.0.zip" | ||
hashes=['sha512:11d96112d532d4952706fa3ca2f54360146e35d1de909db64d90bdeef438b9e4069fee55b65fb573de3607b50c9176d0cb2922e5752b473341aabefd93080edd'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name = "templates_parser" | ||
version = "25.0.0" | ||
description = "Templates Parser: File generation from templates in Ada" | ||
website = "https://github.com/AdaCore/templates-parser" | ||
authors = ["AdaCore"] | ||
licenses = "GPL-3.0-or-later WITH GCC-exception-3.1" | ||
maintainers = ["[email protected]"] | ||
maintainers-logins = ["Fabien-Chouteau"] | ||
project-files = ["templates_parser.gpr"] | ||
|
||
[configuration] | ||
disabled = true | ||
|
||
[[actions]] | ||
type = "post-fetch" | ||
command = ["cp", "config/tp_xmlada_installed.gpr", "tp_xmlada.gpr"] | ||
|
||
[gpr-externals] | ||
LIBRARY_TYPE = ["static", "relocatable"] | ||
PRJ_BUILD = ["Debug", "Release"] | ||
PRJ_TARGET = ["Windows", "macOS", "Linux", "FreeBSD", "UNIX"] | ||
TP_TASKING = ["No_Tasking", "Standard_Tasking"] | ||
TP_XMLADA = ["Installed", "Disabled"] | ||
|
||
[gpr-set-externals] | ||
TP_XMLADA = "Installed" | ||
PRJ_BUILD = "Release" | ||
|
||
[gpr-set-externals."case(os)".linux] | ||
PRJ_TARGET = "Linux" | ||
|
||
[gpr-set-externals."case(os)".macos] | ||
PRJ_TARGET = "macOS" | ||
|
||
[gpr-set-externals."case(os)".windows] | ||
PRJ_TARGET = "Windows" | ||
|
||
[environment] | ||
ADAFLAGS.set = "-gnaty-d" # Disable no DOS line terminators check | ||
|
||
[[depends-on]] | ||
xmlada = "~25.0.0" | ||
|
||
[origin] | ||
url="https://github.com/adacore/templates-parser/archive/v25.0.0/templates-parser-25.0.0.zip" | ||
hashes=['sha512:ad33f51f88b9d2d603fa6efe16d75685d511e4b2742965972835c388e438dc0792b76377ef45e1e959dd174da395aa5ed1349bfc4c4016bcf8f57dc1b2b26d09'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name = "vss" | ||
description = "Advanced string and text manipulation with Unicode support" | ||
version = "25.0.0" | ||
tags = ["unicode", "json", "text", "xml", "template"] | ||
|
||
authors = ["AdaCore"] | ||
maintainers = ["Vadim Godunko <[email protected]>", "Maxim Reznik <[email protected]>"] | ||
maintainers-logins = ["godunko", "reznikmm"] | ||
licenses = "Apache-2.0 WITH LLVM-exception" | ||
website = "https://github.com/AdaCore/VSS" | ||
|
||
project-files = ["gnat/vss_text.gpr", "gnat/vss_json.gpr", "gnat/vss_regexp.gpr", "gnat/vss_xml.gpr", "gnat/vss_xml_templates.gpr"] | ||
|
||
[[depends-on]] | ||
gnat = ">=11 & <2000" # Uses Ada 2022 syntax | ||
|
||
[configuration] | ||
disabled = true | ||
|
||
[origin] | ||
url="https://github.com/adacore/VSS/archive/v25.0.0/VSS-25.0.0.zip" | ||
hashes=['sha512:1ddbb26c99e951f71b03933614a263966e785c098d7abb557ea24a35f516bd9fe5f66367b44e8355e29f4f22f9493dfd6eb9029540cbcfe94f2e4cace96dabc0'] |