-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'alire/master' into feat/unique-version
- Loading branch information
Showing
293 changed files
with
4,074 additions
and
1,832 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
name: CI Docker | ||
# Check builds on supported Linux distributions | ||
|
||
on: | ||
pull_request: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
Log of breaking changes in index or alr. | ||
|
||
### alr 2.0.0 + index 1.2.2 | ||
### alr 3.0.0 + index 1.3.0 | ||
|
||
- alr: removed `ALR_CONFIG` environment variable. | ||
- alr: removed `alr config` command. | ||
|
||
### alr 2.0.0 + index 1.3.0 | ||
|
||
- index:`binary` property required in binary origins. | ||
- index: Paths in `[environment]` must be portable (using forward slashes). | ||
- alr: removed `alr toolchain`'s `--install, --uninstall, --install-dir`. | ||
- alr: deprecated (but still working) `ALR_CONFIG`, `alr config`. | ||
|
||
### alr 1.2.2 + index 1.2.1 | ||
|
||
- Unable to load externals containing regex special characters in the system | ||
- alr: unable to load externals containing regex special characters in the system | ||
package name (fixed in #1545). | ||
- Paths in `[environment]` are not converted to the native platform convention. | ||
- alr: paths in `[environment]` are not converted to the native platform convention. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "alr" | ||
description = "Command-line tool from the Alire project" | ||
|
||
version = "1.3.0-dev" | ||
version = "2.1-dev" | ||
|
||
authors = ["Alejandro R. Mosteo", "Fabien Chouteau", "Pierre-Marie de Rodat"] | ||
maintainers = ["[email protected]", "[email protected]"] | ||
|
@@ -47,27 +47,50 @@ windows = { ALIRE_OS = "windows" } | |
|
||
# Some dependencies require precise versions during the development cycle: | ||
[[pins]] | ||
aaa = { url = "https://github.com/mosteo/aaa", commit = "dff61d2615cc6332fa6205267bae19b4d044b9da" } | ||
ada_toml = { url = "https://github.com/mosteo/ada-toml", commit = "da4e59c382ceb0de6733d571ecbab7ea4919b33d" } | ||
clic = { url = "https://github.com/alire-project/clic", commit = "de0330053584bad4dbb3dbd5e1ba939c4e8c6b55" } | ||
dirty_booleans = { url = "https://github.com/mosteo/dirty_booleans", branch = "main" } | ||
diskflags = { url = "https://github.com/mosteo/diskflags", branch = "main" } | ||
gnatcoll = { url = "https://github.com/alire-project/gnatcoll-core.git", commit = "4e663b87a028252e7e074f054f8f453661397166" } | ||
minirest = { url = "https://github.com/mosteo/minirest.git", commit = "9a9c660f9c6f27f5ef75417e7fac7061dff14d78" } | ||
semantic_versioning = { url = "https://github.com/alire-project/semantic_versioning", commit = "2f23fc5f6b4855b836b599adf292fed9c0ed4144" } | ||
simple_logging = { url = "https://github.com/alire-project/simple_logging", commit = "3505dc645f3eef6799a486aae223d37e88cfc4d5" } | ||
si_units = { url = "https://github.com/mosteo/si_units", branch = "alire" } | ||
stopwatch = { url = "https://github.com/mosteo/stopwatch", commit = "f607a63b714f09bbf6126de9851cbc21cf8666c9" } | ||
|
||
# To disable version updating, export ALR_VERSION_DONT_PATCH with any value (even empty) | ||
|
||
# Before building, we add the commit to the version, for unique identification: | ||
[[actions]] | ||
type = "pre-build" | ||
command = ["python3", "scripts/version-patcher.py"] | ||
|
||
# Afterwards we leave an extra note, so people manually building don't use a | ||
# misleading commit. | ||
[[actions]] | ||
type = "post-build" | ||
command = ["python3", "scripts/version-patcher.py", "_or_later"] | ||
[pins.aaa] | ||
url = "https://github.com/mosteo/aaa" | ||
commit = "dff61d2615cc6332fa6205267bae19b4d044b9da" | ||
|
||
[pins.ada_toml] | ||
url = "https://github.com/mosteo/ada-toml" | ||
commit = "da4e59c382ceb0de6733d571ecbab7ea4919b33d" | ||
|
||
[pins.clic] | ||
url = "https://github.com/alire-project/clic" | ||
commit = "56bbdc008e16996b6f76e443fd0165a240de1b13" | ||
|
||
[pins.dirty_booleans] | ||
url = "https://github.com/mosteo/dirty_booleans" | ||
branch = "alire" | ||
|
||
[pins.diskflags] | ||
url = "https://github.com/mosteo/diskflags" | ||
branch = "alire" | ||
|
||
[pins.gnatcoll] | ||
url = "https://github.com/alire-project/gnatcoll-core.git" | ||
commit = "4e663b87a028252e7e074f054f8f453661397166" | ||
|
||
[pins.minirest] | ||
url = "https://github.com/mosteo/minirest.git" | ||
commit = "9a9c660f9c6f27f5ef75417e7fac7061dff14d78" | ||
|
||
[pins.semantic_versioning] | ||
url = "https://github.com/alire-project/semantic_versioning" | ||
commit = "cc2148cf9c8934fb557b5ae49a3f7947194fa7ee" | ||
|
||
[pins.simple_logging] | ||
url = "https://github.com/alire-project/simple_logging" | ||
commit = "3505dc645f3eef6799a486aae223d37e88cfc4d5" | ||
|
||
[pins.si_units] | ||
url = "https://github.com/mosteo/si_units" | ||
branch = "alire" | ||
|
||
[pins.stopwatch] | ||
url = "https://github.com/mosteo/stopwatch" | ||
commit = "f607a63b714f09bbf6126de9851cbc21cf8666c9" | ||
|
||
[pins.toml_slicer] | ||
url = "https://github.com/mosteo/toml_slicer" | ||
branch = "alire" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Import reusable bits | ||
pushd $( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) > /dev/null || exit 1 | ||
. functions.sh | ||
popd > /dev/null || exit 1 | ||
|
||
export ALIRE_OS=$(get_OS) | ||
|
||
gprclean -f -r -Palr_env.gpr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
# Import reusable bits | ||
pushd $( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) > /dev/null || exit 1 | ||
. functions.sh | ||
popd > /dev/null || exit 1 | ||
|
||
export ALIRE_OS=$(get_OS) | ||
|
||
gnatstudio -P alr_env & >/dev/null 2>&1 |
Oops, something went wrong.