55 lines
2.1 KiB
TOML
55 lines
2.1 KiB
TOML
name = "adacl_regexp"
|
|
description = "Ada Class Library - Regular Expressions"
|
|
long-description = """A class library for Ada for those who like OO programming.
|
|
|
|
Regular expression for String, Wide_String and Wide_Wide_Strings using a
|
|
generic implementation that could be used for any array of descreete elements.
|
|
|
|
Development versions available with:
|
|
|
|
```sh
|
|
alr index --add "git+https://github.com/krischik/alire-index.git#develop" --name krischik
|
|
```
|
|
|
|
Source code including AUnit tests available on [SourceForge](https://git.code.sf.net/p/adacl/git)
|
|
"""
|
|
version = "6.2.1"
|
|
licenses = "GPL-3.0-or-later"
|
|
authors = ["Martin Krischik <krischik@users.sourceforge.net>"]
|
|
maintainers = ["Martin Krischik <krischik@users.sourceforge.net>"]
|
|
maintainers-logins = ["krischik"]
|
|
website = "https://sourceforge.net/projects/adacl/"
|
|
tags = ["library", "strings", "wide-strings", "search", "regexp", "unicode", "ada2022"]
|
|
|
|
[build-switches]
|
|
development.compile_checks = "Warnings"
|
|
development.contracts = "Yes"
|
|
development.runtime_checks = "Overflow"
|
|
release.compile_checks = "Warnings"
|
|
release.contracts = "No"
|
|
release.runtime_checks = "Default"
|
|
validation.compile_checks = "Warnings"
|
|
validation.contracts = "Yes"
|
|
validation.runtime_checks = "Everything"
|
|
|
|
[[depends-on]]
|
|
gnat_native = "^14.2"
|
|
adacl = "6.2.0"
|
|
|
|
[[actions]]
|
|
type = "test"
|
|
command = ["alr", "run"]
|
|
directory = "test"
|
|
|
|
# vim: set textwidth=0 nowrap tabstop=8 shiftwidth=4 softtabstop=4 expandtab :
|
|
# vim: set filetype=toml fileencoding=utf-8 fileformat=unix foldmethod=diff :
|
|
# vim: set spell spelllang=en_gb :
|
|
|
|
[origin]
|
|
hashes = [
|
|
"sha256:d25d08b193d4e5f93b2c67c39dd54dfaccc24eb4a0bdb92466a5e8a3d40d4721",
|
|
"sha512:427e5ab1c579b63b822d81e55a3e25c0a3106a9406d3981e5cf19ffeb83854632e2b7b6418cdc39ad258ef0e064be2b925a348282fedb6c39c2e53129749458d",
|
|
]
|
|
url = "https://sourceforge.net/projects/adacl/files/Alire/adacl_regexp-6.2.1.tgz"
|
|
|