ab63e4666c
* Ada Utility Library 2.8.1 crates
* Remove the AWS support because AWS is broken as usual
Now, it fails when building libgpr which is imported by GNATCOLL:
```
[Ada] gpr-env.adb
gpr-util-put_resource_usage__unix.adb:34:24: error: "Timeval" not declared in "Thin_Common"
gpr-util-put_resource_usage__unix.adb:35:24: error: "Timeval" not declared in "Thin_Common"
gpr-util-put_resource_usage__unix.adb:69:34: error: "Timeval" not declared in "Thin_Common"
gpr-util-put_resource_usage__unix.adb:78:34: error: "Timeval" not declared in "Thin_Common"
gpr-util-put_resource_usage__unix.adb:84:50: error: invalid prefix in selected component "This"
gpr-util-put_resource_usage__unix.adb:86:20: error: invalid prefix in selected component "This"
gpr-util-put_resource_usage__unix.adb:34:24: error: "Timeval" not declared in "Thin_Common"
gpr-util-put_resource_usage__unix.adb:35:24: error: "Timeval" not declared in "Thin_Common"
gpr-util-put_resource_usage__unix.adb:69:34: error: "Timeval" not declared in "Thin_Common"
gpr-util-put_resource_usage__unix.adb:78:34: error: "Timeval" not declared in "Thin_Common"
gpr-util-put_resource_usage__unix.adb:84:50: error: invalid prefix in selected component "This"
gpr-util-put_resource_usage__unix.adb:86:20: error: invalid prefix in selected component "This"
compilation of gpr-env.adb failed
compilation of gpr-util-aux.adb failed
gprbuild: *** compilation phase failed
make: *** [Makefile:188: build-awsres-tool-native] Error 4
```
43 lines
1.5 KiB
TOML
43 lines
1.5 KiB
TOML
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.8.1"
|
|
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.8.0"
|
|
|
|
[gpr-externals]
|
|
UTIL_UNIT = ["ahven-unix", "ahven-windows", "aunit"]
|
|
|
|
[gpr-set-externals.'case(os)'.windows]
|
|
UTIL_UNIT = "ahven-windows"
|
|
|
|
[gpr-set-externals.'case(os)'.linux]
|
|
UTIL_UNIT = "ahven-unix"
|
|
|
|
[gpr-set-externals.'case(os)'.macos]
|
|
UTIL_UNIT = "ahven-unix"
|
|
|
|
[gpr-set-externals.'case(os)'.freebsd]
|
|
UTIL_UNIT = "ahven-unix"
|
|
|
|
[gpr-set-externals.'case(os)'.openbsd]
|
|
UTIL_UNIT = "ahven-unix"
|
|
|
|
[configuration]
|
|
disabled = true
|
|
|
|
|
|
[origin]
|
|
commit = "c1db1e85625238de14c37231699d11beb1215ee1"
|
|
subdir = "./unit/"
|
|
url = "git+https://gitlab.com/stcarrez/ada-util.git"
|
|
|