lzmada 1.1.3, utilada 2.6.0 (#859)
* Ada Utility Library 2.6.0 - update crates for the new version of Ada Utility Library - convert the crates to use nested crates * Remove (temporarily) the utilada_aws-2.6.0 because building AWS fails (the issue is not related to utilada_aws but it is caused by a bug in the automated build which fails building AWS for Debian and Fedora, see https://github.com/alire-project/alire/issues/1394)
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
description = "Ada LZMA Library Binding"
|
||||
name = "lzmada"
|
||||
version = "1.1.3"
|
||||
licenses = "MIT"
|
||||
maintainers = ["Stephane.Carrez@gmail.com"]
|
||||
maintainers-logins = ["stcarrez"]
|
||||
authors = ["Stephane.Carrez@gmail.com"]
|
||||
project-files = [".alire/lzmada.gpr"]
|
||||
tags = ["compression", "lzma"]
|
||||
website = "https://gitlab.com/stcarrez/ada-lzma"
|
||||
long-description = """
|
||||
|
||||
A very thin Ada binding for the LZMA compression library.
|
||||
Roughly speaking, import some package:
|
||||
|
||||
with Lzma.Base;
|
||||
with Lzma.Container;
|
||||
with Lzma.Check;
|
||||
|
||||
Then declare the LZMA stream:
|
||||
|
||||
Stream : aliased Lzma.Base.lzma_stream := Lzma.Base.LZMA_STREAM_INIT;
|
||||
|
||||
Initialize the LZMA stream as decoder (or as encoder):
|
||||
|
||||
Result := Lzma.Container.lzma_stream_decoder (Stream'Unchecked_Access,
|
||||
Long_Long_Integer'Last,
|
||||
Lzma.Container.LZMA_CONCATENATED);
|
||||
|
||||
Setup the stream 'next_out', 'avail_out', 'next_in' and 'avail_in' and call
|
||||
the lzma_code operation with the action (Lzma.Base.LZMA_RUN or Lzma.Base.LZMA_FINISH):
|
||||
|
||||
Result := Lzma.Base.lzma_code (Stream'Unchecked_Access, Action);
|
||||
|
||||
Close the LZMA stream:
|
||||
|
||||
Lzma.Base.lzma_end (Stream'Unchecked_Access);
|
||||
|
||||
"""
|
||||
|
||||
[gpr-externals]
|
||||
LZMA_BUILD = ["distrib", "debug", "optimize", "profile", "coverage"]
|
||||
LZMA_LIBRARY_TYPE = ["relocatable", "static", "static-pic"]
|
||||
|
||||
[[depends-on]]
|
||||
liblzma = "*"
|
||||
|
||||
[configuration]
|
||||
disabled = true
|
||||
|
||||
[origin]
|
||||
commit = "b1b687dbffd5edbd494eb9d40aabfa4d3c48dfaf"
|
||||
url = "git+https://gitlab.com/stcarrez/ada-lzma.git"
|
||||
|
||||
@@ -0,0 +1,72 @@
|
||||
description = "Utility Library with streams, processes, logs, serialization, encoders"
|
||||
name = "utilada"
|
||||
version = "2.6.0"
|
||||
authors = ["Stephane.Carrez@gmail.com"]
|
||||
licenses = "Apache-2.0"
|
||||
maintainers = ["Stephane.Carrez@gmail.com"]
|
||||
maintainers-logins = ["stcarrez"]
|
||||
project-files = [".alire/utilada_conf.gpr", "utilada_core.gpr", "utilada_base.gpr", "utilada_sys.gpr"]
|
||||
tags = ["logging", "processes", "streams", "json", "beans", "encoders", "decoders"]
|
||||
website = "https://gitlab.com/stcarrez/ada-util"
|
||||
long-description = """
|
||||
|
||||
[](https://porion.vacs.fr/porion/projects/view/ada-util/summary)
|
||||
[](https://porion.vacs.fr/porion/projects/view/ada-util/xunits)
|
||||
[](https://porion.vacs.fr/porion/projects/view/ada-util/summary)
|
||||
[](https://ada-util.readthedocs.io/en/latest/?badge=latest)
|
||||
|
||||
This Ada library contains various utility packages for building
|
||||
Ada applications. This includes:
|
||||
|
||||
* A logging framework close to Java log4j framework,
|
||||
* Support for INI and property files,
|
||||
* A serialization/deserialization framework for XML, JSON, CSV, Forms
|
||||
* Ada beans framework,
|
||||
* Encoding/decoding framework (Base16, Base32, Base64, SHA, HMAC-SHA, AES-256),
|
||||
* A composing stream framework (raw, files, buffers, pipes, sockets, encryption, decryption, LZMA compression, LZMA decompression),
|
||||
* Several concurrency tools (reference counters, counters, pools, fifos, arrays),
|
||||
* Process creation and pipes,
|
||||
* Support for loading shared libraries (on Windows or Unix),
|
||||
* HTTP client library on top of CURL or AWS.
|
||||
|
||||
# Documentation
|
||||
|
||||
* [Ada Utility Library Programmer's Guide](https://ada-util.readthedocs.io/en/latest/) [PDF](https://github.com/stcarrez/ada-util/blob/master/docs/utilada-book.pdf)
|
||||
* [IO stream composition and serialization with Ada Utility Library](https://blog.vacs.fr/vacs/blogs/post.html?post=2022/03/05/IO-stream-composition-and-serialization-with-Ada-Utility-Library)
|
||||
* [Easy reading and writing files with Ada Utility Library](https://blog.vacs.fr/vacs/blogs/post.html?post=2020/08/09/Easy-reading-and-writing-files-with-Ada-Utility-Library)
|
||||
* [Process creation in Java and Ada](https://blog.vacs.fr/vacs/blogs/post.html?post=2012/03/16/Process-creation-in-Java-and-Ada)
|
||||
|
||||
"""
|
||||
|
||||
[gpr-externals]
|
||||
UTIL_BUILD = ["distrib", "debug", "optimize", "profile", "coverage"]
|
||||
UTIL_LIBRARY_TYPE = ["relocatable", "static", "static-pic"]
|
||||
UTIL_OS = ["win32", "win64", "linux32", "linux64", "macos64", "netbsd32", "netbsd64", "freebsd32", "freebsd64"]
|
||||
|
||||
[gpr-set-externals."case(os)".linux."case(word-size)".bits-32]
|
||||
UTIL_OS = "linux32"
|
||||
|
||||
[gpr-set-externals."case(os)".linux."case(word-size)".bits-64]
|
||||
UTIL_OS = "linux64"
|
||||
|
||||
[gpr-set-externals."case(os)".freebsd."case(word-size)".bits-32]
|
||||
UTIL_OS = "freebsd32"
|
||||
|
||||
[gpr-set-externals."case(os)".freebsd."case(word-size)".bits-64]
|
||||
UTIL_OS = "freebsd64"
|
||||
|
||||
[gpr-set-externals."case(os)".macos]
|
||||
UTIL_OS = "macos64"
|
||||
[gpr-set-externals."case(os)".windows."case(word-size)".bits-32]
|
||||
UTIL_OS = "win32"
|
||||
|
||||
[gpr-set-externals."case(os)".windows."case(word-size)".bits-64]
|
||||
UTIL_OS = "win64"
|
||||
|
||||
[configuration]
|
||||
disabled = true
|
||||
|
||||
[origin]
|
||||
commit = "99ca46a12f0d542348262d67b613d58f0d14c7b5"
|
||||
url = "git+https://gitlab.com/stcarrez/ada-util.git"
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
name = "utilada_curl"
|
||||
version = "2.6.0"
|
||||
authors = ["Stephane.Carrez@gmail.com"]
|
||||
licenses = "Apache-2.0"
|
||||
maintainers = ["Stephane.Carrez@gmail.com"]
|
||||
maintainers-logins = ["stcarrez"]
|
||||
project-files = ["utilada_curl.gpr"]
|
||||
tags = ["web", "http", "rest"]
|
||||
website = "https://gitlab.com/stcarrez/ada-util"
|
||||
description = "Utility Library REST support on top of CURL"
|
||||
long-description = """
|
||||
|
||||
[](https://porion.vacs.fr/porion/projects/view/ada-util/summary)
|
||||
[](https://porion.vacs.fr/porion/projects/view/ada-util/xunits)
|
||||
[](https://porion.vacs.fr/porion/projects/view/ada-util/summary)
|
||||
[](https://ada-util.readthedocs.io/en/latest/?badge=latest)
|
||||
|
||||
This small library provides an HTTP backend on top of CURL.
|
||||
It can be used by the `Util.Http` package.
|
||||
|
||||
An alternate HTTP backend is provided by AWS with `utilada_aws`.
|
||||
|
||||
# Documentation
|
||||
|
||||
* [Ada Utility Library Programmer's Guide](https://ada-util.readthedocs.io/en/latest/) [PDF](https://github.com/stcarrez/ada-util/blob/master/docs/utilada-book.pdf)
|
||||
|
||||
"""
|
||||
|
||||
[[depends-on]]
|
||||
utilada = "^2.6.0"
|
||||
libcurl = "*"
|
||||
|
||||
[gpr-externals]
|
||||
UTIL_BUILD = ["distrib", "debug", "optimize", "profile", "coverage"]
|
||||
UTIL_LIBRARY_TYPE = ["relocatable", "static", "static-pic"]
|
||||
|
||||
[configuration]
|
||||
disabled = true
|
||||
|
||||
[origin]
|
||||
commit = "99ca46a12f0d542348262d67b613d58f0d14c7b5"
|
||||
subdir = "./.alire/curl/"
|
||||
url = "git+https://gitlab.com/stcarrez/ada-util.git"
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
description = "Utility Library streams with LZMA support"
|
||||
name = "utilada_lzma"
|
||||
version = "2.6.0"
|
||||
authors = ["Stephane.Carrez@gmail.com"]
|
||||
licenses = "Apache-2.0"
|
||||
maintainers = ["Stephane.Carrez@gmail.com"]
|
||||
maintainers-logins = ["stcarrez"]
|
||||
project-files = ["utilada_lzma.gpr"]
|
||||
tags = ["lzma", "streams"]
|
||||
website = "https://gitlab.com/stcarrez/ada-util"
|
||||
long-description = """
|
||||
|
||||
[](https://porion.vacs.fr/porion/projects/view/ada-util/summary)
|
||||
[](https://porion.vacs.fr/porion/projects/view/ada-util/xunits)
|
||||
[](https://porion.vacs.fr/porion/projects/view/ada-util/summary)
|
||||
[](https://ada-util.readthedocs.io/en/latest/?badge=latest)
|
||||
|
||||
This small library provides LZMA streams.
|
||||
|
||||
# Documentation
|
||||
|
||||
* [Ada Utility Library Programmer's Guide](https://ada-util.readthedocs.io/en/latest/) [PDF](https://github.com/stcarrez/ada-util/blob/master/docs/utilada-book.pdf)
|
||||
|
||||
"""
|
||||
|
||||
[[depends-on]]
|
||||
lzmada = "^1.1.2"
|
||||
utilada = "^2.6.0"
|
||||
|
||||
[gpr-externals]
|
||||
UTIL_BUILD = ["distrib", "debug", "optimize", "profile", "coverage"]
|
||||
UTIL_LIBRARY_TYPE = ["relocatable", "static", "static-pic"]
|
||||
|
||||
[configuration]
|
||||
disabled = true
|
||||
|
||||
[origin]
|
||||
commit = "99ca46a12f0d542348262d67b613d58f0d14c7b5"
|
||||
subdir = "./.alire/lzma/"
|
||||
url = "git+https://gitlab.com/stcarrez/ada-util.git"
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
description = "Utility Library testing framework with Ahven"
|
||||
long-description = "\n[](https://jenkins.vacs.fr/job/Ada-Util/)\n[](https://jenkins.vacs.fr/job/Ada-Util/)\n[](https://codecov.io/gh/stcarrez/ada-util)\n\nThis library provides a testing framework on top of Ahven.\nIt provides various testing helper operations to help in\nwriting unit tests.\n\n"
|
||||
name = "utilada_unit"
|
||||
version = "2.6.0"
|
||||
authors = ["Stephane.Carrez@gmail.com"]
|
||||
licenses = "Apache-2.0"
|
||||
maintainers = ["Stephane.Carrez@gmail.com"]
|
||||
maintainers-logins = ["stcarrez"]
|
||||
project-files = ["utilada_unit.gpr"]
|
||||
tags = ["testing"]
|
||||
website = "https://gitlab.com/stcarrez/ada-util"
|
||||
|
||||
[[depends-on]]
|
||||
utilada = "^2.6.0"
|
||||
|
||||
[gpr-externals]
|
||||
UTIL_BUILD = ["distrib", "debug", "optimize", "profile", "coverage"]
|
||||
UTIL_LIBRARY_TYPE = ["relocatable", "static", "static-pic"]
|
||||
|
||||
[configuration]
|
||||
disabled = true
|
||||
|
||||
[origin]
|
||||
commit = "99ca46a12f0d542348262d67b613d58f0d14c7b5"
|
||||
subdir = "./.alire/unit/"
|
||||
url = "git+https://gitlab.com/stcarrez/ada-util.git"
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
description = "Utility Library serialization with XML/Ada"
|
||||
name = "utilada_xml"
|
||||
version = "2.6.0"
|
||||
authors = ["Stephane.Carrez@gmail.com"]
|
||||
licenses = "Apache-2.0"
|
||||
maintainers = ["Stephane.Carrez@gmail.com"]
|
||||
maintainers-logins = ["stcarrez"]
|
||||
project-files = ["utilada_xml.gpr"]
|
||||
tags = ["xml", "serialization"]
|
||||
website = "https://gitlab.com/stcarrez/ada-util"
|
||||
long-description = """
|
||||
|
||||
[](https://porion.vacs.fr/porion/projects/view/ada-util/summary)
|
||||
[](https://porion.vacs.fr/porion/projects/view/ada-util/xunits)
|
||||
[](https://porion.vacs.fr/porion/projects/view/ada-util/summary)
|
||||
[](https://ada-util.readthedocs.io/en/latest/?badge=latest)
|
||||
|
||||
This library provides a serialization framework on top of XML/Ada for Ada Utility Library.
|
||||
|
||||
# Documentation
|
||||
|
||||
* [Ada Utility Library Programmer's Guide](https://ada-util.readthedocs.io/en/latest/) [PDF](https://github.com/stcarrez/ada-util/blob/master/docs/utilada-book.pdf)
|
||||
|
||||
"""
|
||||
|
||||
[[depends-on]]
|
||||
utilada = "^2.6.0"
|
||||
xmlada = "any"
|
||||
|
||||
[gpr-externals]
|
||||
UTIL_BUILD = ["distrib", "debug", "optimize", "profile", "coverage"]
|
||||
UTIL_LIBRARY_TYPE = ["relocatable", "static", "static-pic"]
|
||||
|
||||
[configuration]
|
||||
disabled = true
|
||||
|
||||
[origin]
|
||||
commit = "99ca46a12f0d542348262d67b613d58f0d14c7b5"
|
||||
subdir = "./.alire/xml/"
|
||||
url = "git+https://gitlab.com/stcarrez/ada-util.git"
|
||||
|
||||
Reference in New Issue
Block a user