* lispcli 0.1.0 (via `alr publish --submit`)
* Update hash to point to later commit with fix.
* Build fails on OpenSuSe so make crate unavailable for suse.
* Adjust syntax to exclude OpenSuse.
* Update libmariadb Debian/Ubuntu package name
The Debian package was renamed into libmariadb-dev
* Keep both package names
---------
Co-authored-by: Alejandro R. Mosteo <amosteo@unizar.es>
This release updates the year-old documentation in 1.0.0 to better
address macOS issues, mainly by suggesting how to deal with the
standard langkit_support & libadalang crates, and offering a
mcOS-specific alternative.
* Add macOS support to libreadline.
"brew info readline" shows that the library is "keg-only", i.e. it's
not symlinked into Homebrew's normally-visible include/, lib/
folders. This doesn't matter for the main usage in Alire
(gnatcoll_readline), because it's only requirement is to link against
"-lreadline". On macOS this is provided by BSD libedit.
In that case, why bother installing it? To stop alr warning
"Generating possibly incomplete environment because of missing
dependencies".
* index/li/libreadline/libreadline-external.toml: For Homebrew & MacPorts,
the external package is "readline".
* Add libreadline support for Centos, Fedora
* index/li/libreadline/libreadline-external.toml: as summary.
* Add externals for libgtk3 on macOS.
* Add check from alr devel branch
* Add specific Ports CI test
---------
Co-authored-by: Alejandro R. Mosteo <amosteo@unizar.es>
As indicated in the open issue [#1320](https://github.com/alire-project/alire/issues/1320) the detection of `gmp` does not work with `alr` with the Fedora Linux OS. This PR adds the suggested missing config line to detect the Fedora `gmp-devel` library.
Tested by editing the local cache file `~/.config/alire/indexes/community/repo/index/li/libgmp/libgmp-external.toml` to add the line suggested in the open issue:
```
fedora = ["gmp-devel"]
````
The detection then works as expected, and the previously failing build of `libadalang` on Fedora 38 (x86_64) now works.