Skip to content

Commit

Permalink
Merge branch 'stable-1.3.0' into release/a0b_atsam3x8e-0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabien-Chouteau authored Dec 9, 2024
2 parents 7d0909c + ba24c93 commit 189f7d3
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 0 deletions.
73 changes: 73 additions & 0 deletions index/ad/adacl/adacl-6.0.0.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name = "adacl"
description = "Ada Class Library (String, Trace, AUnit, Smart Pointer. GetOpt)"
long-description = """A class library for Ada for those who like OO programming.
Currently the following functionality is migrated to Ada 2022:
* Getopt commandline argument parser - with wide character support.
* String utilities - with wide character support.
* Trace utility - with wide character support.
* Smart pointer
* Reference counted
* Unique pointer
* Shared pointer
* AUnit compatible informative asserts
* generic for access types
* generic for arrays types
* generic for discrete types
* generic for floating point types
* generic for fixed point types
* generic for decimal fixed point types
* generic for vector types
* AUnit parameter
* Call one test with multipe input and expected values
See [GNATdoc](https://adacl.sourceforge.net/gnatdoc/adacl/index.html) for details.
Development versions and testsuite available using the follwowing index:
```sh
alr index --add "git+https://github.com/krischik/alire-index.git#develop" --name krischik
```
Source code and testsuite available on [SourceForge](https://git.code.sf.net/p/adacl/git)
"""
version = "6.0.0"
licenses = "GPL-3.0-or-later"
authors = ["Martin Krischik <[email protected]>"]
maintainers = ["Martin Krischik <[email protected]>"]
maintainers-logins = ["krischik"]
website = "https://sourceforge.net/projects/adacl/"
tags = ["library", "command-line", "trace", "logging", "string", "aunit", "assert", "container", "smart-pointer", "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"
aunit = "24.0.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:efd190e25b6b60d460ff4b5553f0eb96037d8065fad20fd1066806e2eaafeeda",
"sha512:a0735f2e5823bdbbdb930026730027fa89fe777bdd1201016e5b8400210af8575f5f4266459904c1e597bdf5cd8158f7747adfa99154d8e6bd2ca7d17e6ac911",
]
url = "https://sourceforge.net/projects/adacl/files/Alire/adacl-6.0.0.tgz"

22 changes: 22 additions & 0 deletions index/gn/gnat_math_extensions/gnat_math_extensions-1.2.0.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name = "gnat_math_extensions"
description = "Eigenvalues, eigenvectors for non-symmetric, non-Hermitian matrices"
website = "https://github.com/simonjwright/gnat_math_extensions"
version = "1.2.0"
licenses= "GPL-3.0-or-later WITH GCC-exception-3.1"

authors = ["Simon Wright"]
maintainers = ["Simon Wright <[email protected]>"]
maintainers-logins = ["simonjwright"]

project-files = ["gnat_math_extensions.gpr"]

tags = ["matrices", "blas", "lapack"]

[[depends-on]]
"libblas" = "*"
"liblapack" = "*"

[origin]
commit = "b3183459264bf07e44c6d445ac1d5388944d6e58"
url = "git+https://github.com/simonjwright/gnat_math_extensions.git"

15 changes: 15 additions & 0 deletions index/ji/jintp/jintp-0.2.0.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name = "jintp"
description = "Template parser in Ada based on Jinja2"
version = "0.2.0"

authors = ["Rene Hartmann"]
maintainers = ["Rene Hartmann <[email protected]>"]
maintainers-logins = ["rehartmann"]
licenses = "BSD-2-Clause"
website = "https://github.com/rehartmann/JinTP"
tags = ["templates", "jinja", "jinja2"]

[origin]
commit = "f1c20f3682d784e76dc213eec32e46a35a8bb518"
url = "git+https://github.com/rehartmann/JinTP.git"

0 comments on commit 189f7d3

Please sign in to comment.