From 32115b37ec472b2b3706172b8f88435c1702fa47 Mon Sep 17 00:00:00 2001 From: Jesper Quorning Date: Sun, 31 Jul 2022 11:22:20 +0200 Subject: [PATCH] utilada 2.1.0: Constraints on compiler (#590) * Add compiler constraints * Fix readthedocs url --- index/ut/utilada/utilada-2.1.0.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/index/ut/utilada/utilada-2.1.0.toml b/index/ut/utilada/utilada-2.1.0.toml index 0b7a1ad0..dd16e33d 100644 --- a/index/ut/utilada/utilada-2.1.0.toml +++ b/index/ut/utilada/utilada-2.1.0.toml @@ -1,5 +1,5 @@ description = "Utility Library with streams, processes, logs, serialization, encoders" -long-description = "\n[![Build Status](https://img.shields.io/jenkins/s/https/jenkins.vacs.fr/Ada-Util.svg)](https://jenkins.vacs.fr/job/Ada-Util/)\n[![Test Status](https://img.shields.io/jenkins/t/https/jenkins.vacs.fr/Ada-Util.svg)](https://jenkins.vacs.fr/job/Ada-Util/)\n[![codecov](https://codecov.io/gh/stcarrez/ada-util/branch/master/graph/badge.svg)](https://codecov.io/gh/stcarrez/ada-util)\n\nThis Ada05 library contains various utility packages for building\nAda05 applications. This includes:\n\n* A logging framework close to Java log4j framework,\n* Support for properties\n* A serialization/deserialization framework for XML, JSON, CSV\n* Ada beans framework\n* Encoding/decoding framework (Base16, Base64, SHA, HMAC-SHA, AES-256)\n* A composing stream framework (raw, files, buffers, pipes, sockets)\n* Several concurrency tools (reference counters, counters, pools, fifos, arrays)\n* Process creation and pipes\n* Support for loading shared libraries (on Windows or Unix)\n* HTTP client library on top of CURL or AWS\n\nAda Util also provides a small test utility library on top of\nAhven or AUnit to help in writing unit tests. Ahven is the default testing\nframework as it provides better reports.\n\n## Documentation\n\n* [Ada Utility Library Programmer's Guide](https://ada-util.readthedocs.io/en/latest/intro/)\n\n" +long-description = "\n[![Build Status](https://img.shields.io/jenkins/s/https/jenkins.vacs.fr/Ada-Util.svg)](https://jenkins.vacs.fr/job/Ada-Util/)\n[![Test Status](https://img.shields.io/jenkins/t/https/jenkins.vacs.fr/Ada-Util.svg)](https://jenkins.vacs.fr/job/Ada-Util/)\n[![codecov](https://codecov.io/gh/stcarrez/ada-util/branch/master/graph/badge.svg)](https://codecov.io/gh/stcarrez/ada-util)\n\nThis Ada05 library contains various utility packages for building\nAda05 applications. This includes:\n\n* A logging framework close to Java log4j framework,\n* Support for properties\n* A serialization/deserialization framework for XML, JSON, CSV\n* Ada beans framework\n* Encoding/decoding framework (Base16, Base64, SHA, HMAC-SHA, AES-256)\n* A composing stream framework (raw, files, buffers, pipes, sockets)\n* Several concurrency tools (reference counters, counters, pools, fifos, arrays)\n* Process creation and pipes\n* Support for loading shared libraries (on Windows or Unix)\n* HTTP client library on top of CURL or AWS\n\nAda Util also provides a small test utility library on top of\nAhven or AUnit to help in writing unit tests. Ahven is the default testing\nframework as it provides better reports.\n\n## Documentation\n\n* [Ada Utility Library Programmer's Guide](https://ada-util.readthedocs.io/en/latest/)\n\n" name = "utilada" version = "2.1.0" authors = ["Stephane.Carrez@gmail.com"] @@ -14,6 +14,9 @@ BUILD = ["distrib", "debug", "optimize", "profile", "coverage"] UTIL_LIBRARY_TYPE = ["relocatable", "static", "static-pic"] UTIL_OS = ["win32", "win64", "linux32", "linux64", "macos64", "netbsd32", "netbsd64", "freebsd32", "freebsd64"] +[[depends-on]] +gnat = "<=10 | (>=2000 & <=2020)" + [gpr-set-externals] BUILD = "distrib" UTIL_LIBRARY_TYPE = "static"