afa6d2a4a2
* Add Ada Utility Library 2.7.0 crate * Update utilada_aws crate to disable Windows because AWS is broken on that host * Submit update Ada Utility Crate 2.7.0 with Windows re-enabled for AWS * Try to use AWS 23.0 on Windows since AWS 24.0 is broken
61 lines
2.1 KiB
TOML
61 lines
2.1 KiB
TOML
description = "Utility Library REST support on top of AWS"
|
|
name = "utilada_aws"
|
|
version = "2.7.0"
|
|
authors = ["Stephane.Carrez@gmail.com"]
|
|
licenses = "Apache-2.0"
|
|
maintainers = ["Stephane.Carrez@gmail.com"]
|
|
maintainers-logins = ["stcarrez"]
|
|
project-files = ["utilada_aws.gpr"]
|
|
tags = ["web", "http"]
|
|
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 small library provides an HTTP backend on top of AWS.
|
|
It can be used by the `Util.Http` package.
|
|
|
|
An alternate HTTP backend is provided by CURL with `utilada_curl`.
|
|
|
|
# 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)
|
|
|
|
"""
|
|
|
|
[[depends-on]]
|
|
utilada = "^2.7.0"
|
|
|
|
[[depends-on]]
|
|
# See https://github.com/AdaCore/aws/issues/380
|
|
# and https://github.com/alire-project/alire/issues/1710
|
|
[depends-on.'case(os)'.windows]
|
|
aws = "^23.0.0"
|
|
xmlada = "^23.0.0"
|
|
gnatcoll = "^23.0.0"
|
|
|
|
[depends-on.'case(os)'.'...']
|
|
aws = "^24.0.0"
|
|
xmlada = "^24.0.0"
|
|
gnatcoll = "^24.0.0"
|
|
|
|
[gpr-externals]
|
|
UTIL_BUILD = ["distrib", "debug", "optimize", "profile", "coverage"]
|
|
UTIL_LIBRARY_TYPE = ["relocatable", "static", "static-pic"]
|
|
UTIL_AWS_IMPL = ["1", "2", "3"]
|
|
|
|
[gpr-set-externals]
|
|
UTIL_AWS_IMPL = "3"
|
|
|
|
[configuration]
|
|
disabled = true
|
|
|
|
[origin]
|
|
commit = "f98f7d02798d00e10660ec49d46e175f8748be56"
|
|
subdir = "./.alire/aws/"
|
|
url = "git+https://gitlab.com/stcarrez/ada-util.git"
|
|
|