-
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.
Second batch of 24.0 releases for AdaCore libraries
- Loading branch information
1 parent
d8df16e
commit 0a46aa4
Showing
4 changed files
with
122 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,40 @@ | ||
description = "An Ada graphical toolkit based on Gtk+" | ||
long-description = "This crate requires Gtk3+ >= 3.24.24" | ||
website = "https://github.com/adacore/gtkada" | ||
name = "gtkada" | ||
version = "24.0.0" | ||
authors = ["AdaCore"] | ||
licenses = "GPL-3.0-or-later WITH GCC-exception-3.1" | ||
maintainers = ["[email protected]", "[email protected]"] | ||
maintainers-logins = ["Fabien-Chouteau", "reznikmm"] | ||
project-files = ["src/gtkada.gpr"] | ||
tags = ["gtk", "gui"] | ||
|
||
[configuration] | ||
disabled = true | ||
|
||
# Prepend PATH with pkg-config directory to stabilize GitHub CI | ||
[[actions]] | ||
type = "post-fetch" | ||
command = ["bash", "-c", "PATH=${DISTRIB_ROOT}/mingw64/bin:${PATH} ./configure"] | ||
|
||
# Generate gtkada-intl.adb to be able to build with gtkada.gpr | ||
[[actions]] | ||
type = "post-fetch" | ||
command = ["make", "src/gtkada-intl.adb"] | ||
|
||
[[depends-on]] | ||
make = "*" | ||
pkg_config = "*" | ||
libgtk3 = ">=3.24.24" | ||
|
||
[gpr-externals] | ||
LIBRARY_TYPE = ["static", "static-pic", "relocatable"] | ||
|
||
# Update PATH on Windows to help deps find .DLL files | ||
[environment.'case(os)'.windows.PATH] | ||
append = "${CRATE_ROOT}/src/obj/gtkada/relocatable" | ||
|
||
[origin] | ||
url="https://github.com/adacore/gtkada/archive/v24.0.0/gtkada-24.0.0.zip" | ||
hashes=['sha512:80c56171029539ab95be130cd3febcb6d65106fd9c5f9fda7e812c3f23b6e9da76cea636d257fa5778644d896f3c0dd6c2a6af8eca63ac9b5747993965ddc416'] |
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 = "libgpr2" | ||
version = "24.0.0" | ||
description = "Parser for GPR Project File" | ||
authors = ["AdaCore"] | ||
licenses = "Apache-2.0" | ||
maintainers = ["[email protected]"] | ||
maintainers-logins = ["Fabien-Chouteau"] | ||
project-files = ["gpr2.gpr"] | ||
|
||
[configuration] | ||
disabled = true | ||
|
||
[gpr-externals] | ||
GPR2_BUILD = ["debug", "release", "release_checks", "gnatcov"] | ||
LIBRARY_TYPE = ["static", "relocatable", "static-pic"] | ||
|
||
[gpr-set-externals] | ||
GPR2_BUILD = "release" | ||
|
||
[[depends-on]] | ||
gnatcoll = "~24.0.0" | ||
gnatcoll_iconv = "~24.0.0" | ||
gnatcoll_gmp = "~24.0.0" | ||
|
||
[origin] | ||
url="https://github.com/AdaCore/gpr/releases/download/v24.0.0/gpr2-with-lkparser-24.0.tgz" | ||
hashes=['sha512:eda3c693393763da31312733e2bc06e852b867a32b42da6afdddd623051a1d29f7243aabaef3ae50052b22686dce6db62d9823652ce516d79822e4215f4d87b1'] |
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,36 @@ | ||
name = "templates_parser" | ||
version = "24.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"] | ||
TP_TASKING = ["No_Tasking", "Standard_Tasking"] | ||
TP_XMLADA = ["Installed", "Disabled"] | ||
|
||
[gpr-set-externals] | ||
TP_XMLADA = "Installed" | ||
PRJ_BUILD = "Release" | ||
|
||
[environment] | ||
ADAFLAGS.set = "-gnaty-d" # Disable no DOS line terminators check | ||
|
||
[[depends-on]] | ||
xmlada = "~24.0.0" | ||
|
||
[origin] | ||
url="https://github.com/adacore/templates-parser/archive/v24.0.0/templates-parser-24.0.0.zip" | ||
hashes=['sha512:74c57b1c059e312a6714abfa45062f927589ab2b8428f9956d0bcd0b09f76db51f44a63438aab99955653ec75b86fdfb267c89921dd0c0210886a3757a7476b8'] |
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,19 @@ | ||
name = "vss" | ||
description = "Advanced string and text manipulation with Unicode support" | ||
version = "24.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" | ||
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"] | ||
|
||
[configuration] | ||
disabled = true | ||
|
||
[origin] | ||
url="https://github.com/adacore/VSS/archive/v24.0.0/VSS-24.0.0.zip" | ||
hashes=['sha512:b4d0be7c8cdfc30d5221cdb568882b9a5e45d18264ed4e419091efa65da2227c84ba60b725ffb56820672e641922df45dbd790fac1f9b1aa1df75b605de4fc4e'] |