4206a1952e
* Pi Ada Tutorial release 7.1.2
Update adacl_embedded
* Update adacl-7.1.2.toml
delete line to force rebuild.
63 lines
2.7 KiB
TOML
63 lines
2.7 KiB
TOML
name = "adacl_regexp"
|
|
description = "AdaCL: Regex and SPITBOL Patterns with Wide Character Support"
|
|
long-description = """Regular expression and SPITBOL pattern matching for Ada 2022, with wide character support.
|
|
|
|
Features:
|
|
- Regular Expressions:
|
|
- Generic implementation for any discrete element array
|
|
- Instantiations for String, Wide_String, and Wide_Wide_String
|
|
- SPITBOL Patterns:
|
|
- Pattern construction and matching, inspired by Macro-SPITBOL (Robert Dewar)
|
|
- Supports String, Wide_String, and Wide_Wide_String
|
|
- Forked from GNAT.Regexp and GNAT.Spitbol with enhanced wide and wide-wide character support
|
|
|
|
Licensed under GPL-3.0-or-later. Integrates with the Ada Class Library (AdaCL).
|
|
|
|
Source: [SourceForge](https://sourceforge.net/p/adacl/git/ci/master/tree/adacl_regexp/src/)
|
|
Documentation: [GNATdoc](https://adacl.sourceforge.net/gnatdoc/adacl_regexp/index.html)
|
|
"""
|
|
version = "7.1.2"
|
|
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]
|
|
"*".ada_version = "Ada2022"
|
|
"*".source_encoding = "UTF_8"
|
|
development.compile_checks = "Warnings"
|
|
development.contracts = "Yes"
|
|
development.debug_info = "Yes"
|
|
development.optimization = "Debug"
|
|
development.runtime_checks = "Overflow"
|
|
release.compile_checks = "Warnings"
|
|
release.contracts = "No"
|
|
release.debug_info = "No"
|
|
release.optimization = "Performance"
|
|
release.runtime_checks = "Default"
|
|
validation.compile_checks = "Warnings"
|
|
validation.contracts = "Yes"
|
|
validation.debug_info = "Yes"
|
|
validation.optimization = "Debug"
|
|
validation.runtime_checks = "Everything"
|
|
|
|
[[depends-on]]
|
|
adacl = "^7.1"
|
|
|
|
# [[pins]]
|
|
# adacl = { path = "../adacl" }
|
|
|
|
# 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:33dc6d3df5198bfbeae063f6c1d239feb71a512485b29afe716475c3984b8bd9",
|
|
"sha512:52ce5fa534742a653a96ca0077555b6d64d9301affeee39d4d0637cf8fcfcb401714dbd9478a837a698d63f50a1a96315ad0a5b640e0a988140d9556f07618a0",
|
|
]
|
|
url = "https://sourceforge.net/projects/adacl/files/Alire/adacl_regexp-7.1.2.tgz"
|
|
|