84 lines
3.8 KiB
TOML
84 lines
3.8 KiB
TOML
description = "Utility Library with streams, processes, logs, serialization, encoders"
|
|
name = "utilada"
|
|
version = "2.9.0"
|
|
authors = ["Stephane.Carrez@gmail.com"]
|
|
licenses = "Apache-2.0"
|
|
maintainers = ["Stephane.Carrez@gmail.com"]
|
|
maintainers-logins = ["stcarrez"]
|
|
project-files = ["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", "openbsd32", "openbsd64"]
|
|
UTIL_HAS_TIME_64 = ["yes", "no"]
|
|
|
|
[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)".openbsd."case(word-size)".bits-32]
|
|
UTIL_OS = "openbsd32"
|
|
|
|
[gpr-set-externals."case(os)".openbsd."case(word-size)".bits-64]
|
|
UTIL_OS = "openbsd64"
|
|
|
|
[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"
|
|
|
|
[gpr-set-externals."case(os)".macos]
|
|
UTIL_OS = "macos64"
|
|
|
|
[configuration]
|
|
disabled = true
|
|
|
|
[environment]
|
|
DYNAMO_BUNDLE_PATH.prepend = "${CRATE_ROOT}/bundles"
|
|
|
|
[origin]
|
|
commit = "bd635f55729b99ca1d2633fb487fe17f935e7d6b"
|
|
url = "git+https://gitlab.com/stcarrez/ada-util.git"
|
|
|