Compare commits
30 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a00eb1231f | |||
| 473cc1de0c | |||
| 97c7abe586 | |||
| 84d8923eef | |||
| 93a5a02a9a | |||
| 134218e476 | |||
| 2f27cde9de | |||
| 2a9c11c27b | |||
| 2a4c06d2da | |||
| 734101706f | |||
| 757405771c | |||
| 310ba0cd79 | |||
| 447945a29a | |||
| da96327126 | |||
| 2b1da5850e | |||
| a2c99729df | |||
| ad964cb014 | |||
| 96128c3076 | |||
| b9c5cd2f98 | |||
| ce263b6d27 | |||
| ec49e924a8 | |||
| 61a86fbd1b | |||
| 4d3fb6cd77 | |||
| 2fd0dc1af7 | |||
| e5919c482a | |||
| fbd2c3351e | |||
| f8706cc907 | |||
| 679fa4f41d | |||
| 06dfe2fb52 | |||
| e04f0d4da2 |
@@ -27,11 +27,8 @@ jobs:
|
||||
ref: ${{github.base_ref}}
|
||||
path: ${{env.CHECKS_REPO}}
|
||||
|
||||
- name: Set up nightly `alr`
|
||||
uses: alire-project/setup-alire@v2
|
||||
with:
|
||||
version: nightly
|
||||
toolchain: --disable-assistant
|
||||
- name: Set up stable `alr`
|
||||
uses: alire-project/setup-alire@v3
|
||||
|
||||
- name: Test authorship
|
||||
run: ${{env.CHECKS_REPO}}/scripts/check-author.sh "${{ github.event.pull_request.user.login }}"
|
||||
|
||||
@@ -7,7 +7,7 @@ name: Build Crate (Distro toolchain)
|
||||
env:
|
||||
CHECKS_ORG: alire-project
|
||||
CHECKS_REPO: alire-index-checks
|
||||
ALR_VERSION: 1.2.2
|
||||
ALR_VERSION: 2.0.1
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
@@ -50,14 +50,14 @@ jobs:
|
||||
|
||||
- name: Set up stable `alr`
|
||||
if: contains(github.base_ref, 'stable-')
|
||||
uses: alire-project/setup-alire@v2
|
||||
uses: alire-project/setup-alire@v3
|
||||
with:
|
||||
toolchain: --disable-assistant # We want to use the external ones in this workflow
|
||||
version: ${{env.ALR_VERSION}}
|
||||
|
||||
- name: Set up devel `alr`
|
||||
if: contains(github.base_ref, 'devel-')
|
||||
uses: alire-project/setup-alire@v2
|
||||
uses: alire-project/setup-alire@v3
|
||||
with:
|
||||
toolchain: --disable-assistant # We want to use the external ones in this workflow
|
||||
branch: master
|
||||
@@ -67,4 +67,4 @@ jobs:
|
||||
with:
|
||||
image: ghcr.io/alire-project/docker/gnat:${{matrix.tag}}
|
||||
command: ${{env.CHECKS_REPO}}/scripts/gh-build-crate.sh
|
||||
params: -v ${{ github.workspace }}/alire_install/bin/alr:/usr/bin/alr
|
||||
params: -v ${{ github.workspace }}/alire_install/bin/alr:/usr/bin/alr
|
||||
|
||||
@@ -10,6 +10,7 @@ name: Build Crate (alr dev)
|
||||
env:
|
||||
CHECKS_ORG: alire-project
|
||||
CHECKS_REPO: alire-index-checks
|
||||
PACMAN: C:\Users\runneradmin\AppData\Local\alire\cache\msys64\usr\bin\pacman
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
@@ -27,7 +28,7 @@ jobs:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os:
|
||||
- macos-latest
|
||||
- macos-12
|
||||
- ubuntu-latest
|
||||
- windows-latest
|
||||
|
||||
@@ -49,13 +50,13 @@ jobs:
|
||||
path: ${{env.CHECKS_REPO}}
|
||||
|
||||
- name: Set up devel `alr`
|
||||
uses: alire-project/setup-alire@v2
|
||||
uses: alire-project/setup-alire@v3
|
||||
with:
|
||||
branch: 'master'
|
||||
|
||||
- name: Install tar from msys2 (Windows) # Git tar in Actions VM does not seem to work)
|
||||
if: matrix.os == 'windows-latest'
|
||||
run: C:\Users\runneradmin\AppData\Local\alire\cache\msys64\usr\bin\pacman --noconfirm -S tar
|
||||
run: ${{env.PACMAN}} --noconfirm -S tar
|
||||
|
||||
- name: Test crate
|
||||
run: ${{env.CHECKS_REPO}}/scripts/gh-build-crate.sh
|
||||
|
||||
@@ -6,7 +6,8 @@ name: Build Crate (Alire toolchain)
|
||||
env:
|
||||
CHECKS_ORG: alire-project
|
||||
CHECKS_REPO: alire-index-checks
|
||||
ALR_VERSION: 1.2.2
|
||||
ALR_VERSION: 2.0.1
|
||||
PACMAN: C:\Users\runneradmin\AppData\Local\alire\cache\msys64\usr\bin\pacman
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
@@ -24,7 +25,7 @@ jobs:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os:
|
||||
- macos-latest
|
||||
- macos-12
|
||||
- ubuntu-latest
|
||||
- windows-latest
|
||||
|
||||
@@ -45,23 +46,23 @@ jobs:
|
||||
ref: ${{github.base_ref}}
|
||||
path: ${{env.CHECKS_REPO}}
|
||||
|
||||
# By default, this sets up the newest indexed native toolchain
|
||||
# By default, this also sets up the newest indexed native toolchain
|
||||
- name: Set up stable `alr`
|
||||
if: contains(github.base_ref, 'stable-')
|
||||
uses: alire-project/setup-alire@v2
|
||||
uses: alire-project/setup-alire@v3
|
||||
with:
|
||||
version: ${{env.ALR_VERSION}}
|
||||
|
||||
# By default, this sets up the newest indexed native toolchain
|
||||
# By default, this also sets up the newest indexed native toolchain
|
||||
- name: Set up devel `alr`
|
||||
if: contains(github.base_ref, 'devel-')
|
||||
uses: alire-project/setup-alire@v2
|
||||
uses: alire-project/setup-alire@v3
|
||||
with:
|
||||
branch: 'master'
|
||||
|
||||
- name: Install tar from msys2 (Windows) # Git tar in Actions VM does not seem to work)
|
||||
if: matrix.os == 'windows-latest'
|
||||
run: C:\Users\runneradmin\.cache\alire\msys64\usr\bin\pacman --noconfirm -S tar
|
||||
run: ${{env.PACMAN}} --noconfirm -S tar
|
||||
|
||||
- name: Test crate
|
||||
run: ${{env.CHECKS_REPO}}/scripts/gh-build-crate.sh
|
||||
|
||||
@@ -9,6 +9,7 @@ name: Build Crate (MacPorts)
|
||||
env:
|
||||
CHECKS_ORG: alire-project
|
||||
CHECKS_REPO: alire-index-checks
|
||||
ALR_VERSION: 2.0.1
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
@@ -26,7 +27,7 @@ jobs:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os:
|
||||
- macos-latest
|
||||
- macos-12
|
||||
|
||||
steps:
|
||||
- name: Check out alire-index
|
||||
@@ -45,10 +46,10 @@ jobs:
|
||||
ref: ${{github.base_ref}}
|
||||
path: ${{env.CHECKS_REPO}}
|
||||
|
||||
- name: Set up devel `alr`
|
||||
uses: alire-project/setup-alire@v2
|
||||
- name: Set up stable `alr`
|
||||
uses: alire-project/setup-alire@v3
|
||||
with:
|
||||
branch: 'master'
|
||||
version: ${{env.ALR_VERSION}}
|
||||
|
||||
- name: Disable Homebrew
|
||||
run: rm -f $(which brew)
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
name: Check Index
|
||||
|
||||
env:
|
||||
ALR_VERSION: 2.0.1
|
||||
|
||||
on: pull_request
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -8,13 +13,13 @@ jobs:
|
||||
|
||||
- name: Set up stable `alr`
|
||||
if: contains(github.base_ref, 'stable-')
|
||||
uses: alire-project/setup-alire@v2
|
||||
uses: alire-project/setup-alire@v3
|
||||
with:
|
||||
version: 1.2.2
|
||||
version: ${{env.ALR_VERSION}}
|
||||
|
||||
- name: Set up devel `alr`
|
||||
if: contains(github.base_ref, 'devel-')
|
||||
uses: alire-project/setup-alire@v2
|
||||
uses: alire-project/setup-alire@v3
|
||||
with:
|
||||
branch: master
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ name: Diff release
|
||||
env:
|
||||
CHECKS_ORG: alire-project
|
||||
CHECKS_REPO: alire-index-checks
|
||||
ALR_VERSION: 1.2.2
|
||||
ALR_VERSION: 2.0.1
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
@@ -39,14 +39,14 @@ jobs:
|
||||
|
||||
- name: Set up stable `alr`
|
||||
if: contains(github.base_ref, 'stable-')
|
||||
uses: alire-project/setup-alire@v2
|
||||
uses: alire-project/setup-alire@v3
|
||||
with:
|
||||
toolchain: --disable-assistant # We don't need the compiler
|
||||
version: ${{env.ALR_VERSION}}
|
||||
|
||||
- name: Set up devel `alr`
|
||||
if: contains(github.base_ref, 'devel-')
|
||||
uses: alire-project/setup-alire@v2
|
||||
uses: alire-project/setup-alire@v3
|
||||
with:
|
||||
toolchain: --disable-assistant # We don't need the compiler
|
||||
branch: master
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
name = "alr2appimage"
|
||||
description = "Tool to create an AppImage executable from an Alire crate"
|
||||
version = "0.9.2"
|
||||
website = "https://github.com/mgrojo/alr2appimage"
|
||||
long-description = """
|
||||
There are two prerequisites for your project to work with this tool:
|
||||
- It has to be a crate with an `executables` field. Its first value
|
||||
has to be the main application program.
|
||||
- It must be installable using Alire, including all the needed resources.
|
||||
|
||||
`alr2appimage` will use the following command for installing it (this requires Alire 2.0):
|
||||
```shell
|
||||
alr install
|
||||
```
|
||||
Or it will run `gprinstall` inside `alr exec`, if the former fails (Alire 1.x).
|
||||
|
||||
If you simply run the tool inside an Alire crate, it will read the
|
||||
metadata from your `alire.toml` file and create a default AppImage
|
||||
from it.
|
||||
|
||||
NOTE: `alr2appimage` is an independent project; it is not
|
||||
affiliated to, nor supported by, the Alire or AppImage projects.
|
||||
|
||||
"""
|
||||
licenses = "GPL-3.0-only"
|
||||
|
||||
tags = ["utility", "appimage", "alire", "linux", "packaging"]
|
||||
|
||||
authors = ["Manuel Gomez"]
|
||||
maintainers = ["Manuel Gomez <mgrojo@gmail.com>"]
|
||||
maintainers-logins = ["mgrojo"]
|
||||
|
||||
executables = ["alr2appimage"]
|
||||
[[depends-on]]
|
||||
ada_toml = "^0.3.0"
|
||||
|
||||
[[depends-on]]
|
||||
spoon = "^1.0.1"
|
||||
|
||||
[[depends-on]]
|
||||
parse_args = "~0.9.0"
|
||||
|
||||
[[depends-on]]
|
||||
resources = "~0.1.0"
|
||||
|
||||
[available.'case(os)']
|
||||
'linux' = true
|
||||
'...' = false
|
||||
|
||||
[build-switches]
|
||||
"*".style_checks = ["-gnaty3abBCrfklM99nptx"]
|
||||
[origin]
|
||||
commit = "71ae65731924e10a675590c2ccec774640820786"
|
||||
url = "git+https://github.com/mgrojo/alr2appimage.git"
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
name = "alr2appimage"
|
||||
description = "Tool to create an AppImage executable from an Alire crate"
|
||||
version = "0.9.3"
|
||||
website = "https://github.com/mgrojo/alr2appimage"
|
||||
long-description = """
|
||||
There are two prerequisites for your project to work with this tool:
|
||||
- It has to be a crate with an `executables` field. Its first value
|
||||
has to be the main application program.
|
||||
- It must be installable using Alire, including all the needed resources.
|
||||
|
||||
`alr2appimage` will use the following command for installing it (this requires Alire 2.0):
|
||||
```shell
|
||||
alr install
|
||||
```
|
||||
Or it will run `gprinstall` inside `alr exec`, if the former fails (Alire 1.x).
|
||||
|
||||
If you simply run the tool inside an Alire crate, it will read the
|
||||
metadata from your `alire.toml` file and create a default AppImage
|
||||
from it.
|
||||
|
||||
NOTE: `alr2appimage` is an independent project; it is not
|
||||
affiliated to, nor supported by, the Alire or AppImage projects.
|
||||
|
||||
"""
|
||||
licenses = "GPL-3.0-only"
|
||||
|
||||
tags = ["utility", "appimage", "alire", "linux", "packaging"]
|
||||
|
||||
authors = ["Manuel Gomez"]
|
||||
maintainers = ["Manuel Gomez <mgrojo@gmail.com>"]
|
||||
maintainers-logins = ["mgrojo"]
|
||||
|
||||
executables = ["alr2appimage"]
|
||||
[[depends-on]]
|
||||
ada_toml = "^0.3.0"
|
||||
|
||||
[[depends-on]]
|
||||
spoon = "^1.0.1"
|
||||
|
||||
[[depends-on]]
|
||||
parse_args = "~0.9.0"
|
||||
|
||||
[[depends-on]]
|
||||
resources = "~0.1.0"
|
||||
|
||||
[available.'case(os)']
|
||||
'linux' = true
|
||||
'...' = false
|
||||
|
||||
[build-switches]
|
||||
"*".style_checks = ["-gnaty3abBCrfklM99nptx"]
|
||||
[origin]
|
||||
commit = "fba60fa7465d49f08ca30eac5e9b121d1ae5e6a4"
|
||||
url = "git+https://github.com/mgrojo/alr2appimage.git"
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
name = "elogs"
|
||||
description = "Embedded logging, proven absent of runtime errors"
|
||||
version = "1.2.0"
|
||||
|
||||
authors = ["Kevin Chadwick"]
|
||||
maintainers = ["Kevin Chadwick <kc-ada@elansys.co>"]
|
||||
maintainers-logins = ["kevlar700"]
|
||||
licenses = "ISC OR BSD-2-Clause"
|
||||
website = "https://github.com/kevlar700/elogs"
|
||||
tags = ["spark", "embedded", "zfp", "logging", "log"]
|
||||
|
||||
[[depends-on]]
|
||||
gnat = "(>=13 & <2000) | ^11 | >=2020"
|
||||
# Ada 2022 was not supported until Gnat 11
|
||||
# Version 12 chokes on Source_Code_Information visibility in Source_Code
|
||||
|
||||
[configuration.variables]
|
||||
Max_Log_Count = {type = "Integer", default = 50}
|
||||
Max_Message_Length = {type = "Integer", default = 200}
|
||||
Device_ID_Length = {type = "Integer", default = 12}
|
||||
Version_Length = {type = "Integer", default = 8}
|
||||
|
||||
[build-switches]
|
||||
"*".ada_version = "Ada2022"
|
||||
|
||||
[origin]
|
||||
commit = "42da537ea13971a33940a47590b39d37fc022d5c"
|
||||
url = "git+https://github.com/kevlar700/elogs.git"
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-1/gnat-arm-elf-linux64-10.3.0-1.tar.gz"
|
||||
hashes = ["sha256:8f71f65acc2eb45adc335318f7c9b33bfe77121fb17b404e252da969de6621a2"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-1/gnat-arm-elf-darwin-10.3.0-1.tar.gz"
|
||||
hashes = ["sha256:2e090fa57235829873f8b3154a80ed890dd11c3d7c7f9a6b1cbb9921cce674f2"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-1/gnat-arm-elf-windows64-10.3.0-1.tar.gz"
|
||||
hashes = ["sha256:7562c6f8beb9732fad32be692abf93e9aa54d39837f8232edeb593ba2cfc29fe"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-2/gnat-arm-elf-linux64-10.3.0-2.tar.gz"
|
||||
hashes = ["sha256:ff53fd8aa25f5f7bfbc139ea25244f2d04a9d3513b3de499f06c2d9e0a26ebf0"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-2/gnat-arm-elf-darwin-10.3.0-2.tar.gz"
|
||||
hashes = ["sha256:f3daf3dcbef8416a45c2910597608214b44b45a9f75e8f8059f409839eff0e1f"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-2/gnat-arm-elf-windows64-10.3.0-2.tar.gz"
|
||||
hashes = ["sha256:add183ea21cae95b3ca12de442d69c418d3f007d972238621f13103f12233967"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-1/gnat-arm-elf-linux64-11.2.0-1.tar.gz"
|
||||
hashes = ["sha256:68f7c5d3e009c156d6c3d274c5da9fd369b1e85743c9bdfe4548e2c376efcebd"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-1/gnat-arm-elf-darwin-11.2.0-1.tar.gz"
|
||||
hashes = ["sha256:9343d45fe3eaa5d7d1cfcf03166c64303adb5524fa03634bb1cada61787a2226"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-1/gnat-arm-elf-windows64-11.2.0-1.tar.gz"
|
||||
hashes = ["sha256:b2d3b1d266b5e13e97809462a6169d690591e81a1b1885e9501f4e1a99c34421"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-2/gnat-arm-elf-linux64-11.2.0-2.tar.gz"
|
||||
hashes = ["sha256:c3c48e322cf14ff1d145392dc4722d9471dae41c5a3845b093130f5a0e373f07"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-2/gnat-arm-elf-darwin-11.2.0-2.tar.gz"
|
||||
hashes = ["sha256:48dbf3535ff6c5ba63eacf16f0603b7797dac23d94db0cde380577ab0f66030e"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-2/gnat-arm-elf-windows64-11.2.0-2.tar.gz"
|
||||
hashes = ["sha256:9bb39396ab4b1214a484a3802c9cc800440e6c7d93df325d3416a0306505fd48"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-3/gnat-arm-elf-linux64-11.2.0-3.tar.gz"
|
||||
hashes = ["sha256:811265cb750f3e1fd96a3dac48cdd190fe06b3fe7feb5bc4f2a44e97296b13fa"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-3/gnat-arm-elf-darwin-11.2.0-3.tar.gz"
|
||||
hashes = ["sha256:ab1035b1649e259cae17bde628a85a4bcaf3f8819adafee0edb76697810b50ee"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-3/gnat-arm-elf-windows64-11.2.0-3.tar.gz"
|
||||
hashes = ["sha256:432ce2fbbeb544e85a3b656fa6dcab16a9c7d9187f36e22461039d082d59296e"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-4/gnat-arm-elf-linux64-11.2.0-4.tar.gz"
|
||||
hashes = ["sha256:ba16d45c9d4a055e759e79692642cc50b537cd87de99dc6a845c92d8fe7380a3"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-4/gnat-arm-elf-darwin-11.2.0-4.tar.gz"
|
||||
hashes = ["sha256:839811c83a395d8c8ef9ffdf5c230089ded61c9dedc5615e0960cb438c6dd0fc"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-4/gnat-arm-elf-windows64-11.2.0-4.tar.gz"
|
||||
hashes = ["sha256:65724f2cd3c1174df8dd1499ae13a5eb4367008e61c3ba0d9cc642a78f9818cf"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-1/gnat-arm-elf-linux64-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:a11c25f884a637ad48b2f5cde81eea7d2598c78ee5058bd8bdb90b2376b6fb47"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-1/gnat-arm-elf-darwin-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:c148f4ec11dcfb702e77f14fad5efc1ca54b76177628be336edabac738d569fb"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-1/gnat-arm-elf-windows64-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:7fb7c7b9689cad9901843f78187e9077f81f887aa0f79af6a6df78362be9d500"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-2/gnat-arm-elf-linux64-12.1.0-2.tar.gz"
|
||||
hashes = ["sha256:89ba9262ad168e2e7bf00efa5348bcae86454a9018d9058f0f5d69cc1c6bb5f0"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-2/gnat-arm-elf-darwin-12.1.0-2.tar.gz"
|
||||
hashes = ["sha256:e76ed3b079109ba620f0d61a9888b1319600c0d802de0b1f106694036e7d7709"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-2/gnat-arm-elf-windows64-12.1.0-2.tar.gz"
|
||||
hashes = ["sha256:a6123685359c70a32bb82cd7cdbc0a9578d35bcbc30c95effdd1a71dbb15ed0a"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.2.0-1/gnat-arm-elf-linux64-12.2.0-1.tar.gz"
|
||||
hashes = ["sha256:9be2ca0ea66cda44cdbbd136f0ef24517c7e25139df80d104b304cad8712d189"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.2.0-1/gnat-arm-elf-darwin-12.2.0-1.tar.gz"
|
||||
hashes = ["sha256:f4bfd822af8428fff63a46e5156f9904867871cf9eeb4d6cbde057aad14c9edb"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.2.0-1/gnat-arm-elf-windows64-12.2.0-1.tar.gz"
|
||||
hashes = ["sha256:351564ba5d651acc0290ec4b27679abffd757cd4f58bd07403f69d3ab94682d5"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.1.0-1/gnat-arm-elf-linux64-13.1.0-1.tar.gz"
|
||||
hashes = ["sha256:94c55ee2ac9b5e6a3e1458f5e63ad35ebd987e9cb8bc7f70cc28ce77f3087d6c"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.1.0-1/gnat-arm-elf-windows64-13.1.0-1.tar.gz"
|
||||
hashes = ["sha256:0f241a5037314c708944196cdb00bfcbaa2aecbd39cdebaffe697cb2cb7da8c9"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.1.0-1/gnat-arm-elf-darwin-13.1.0-1.tar.gz"
|
||||
hashes = ["sha256:fe38c783085b86f32adc1860b2ad89ba16e946930611bd46e57cb6b0355113ec"]
|
||||
binary = true
|
||||
|
||||
@@ -18,11 +18,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-1/gnat-arm-elf-linux64-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:db1e92839c4d987edc4108e2c4416e38d29e6a53df428338bdd814706f25435f"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-1/gnat-arm-elf-windows64-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:c4f85bf8da38e911cd81cf6e767d78267d721f73d25307925450b982bcaecb49"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-1/gnat-arm-elf-darwin-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:0ed860c7dbf3130006771b111aad6535b7fe7e5de61c2f1a1078a55b83e0db09"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-4/gnat-avr-elf-linux64-11.2.0-4.tar.gz"
|
||||
hashes = ["sha256:aa9d26936210036ae062f74232b17ce46a4a4518411960e223dd9c877869eea9"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-4/gnat-avr-elf-darwin-11.2.0-4.tar.gz"
|
||||
hashes = ["sha256:13b466e3cab5c8332d99e7e0054df8b2d9ce6eaf500638fc3ef5cbd5a65790ad"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-4/gnat-avr-elf-windows64-11.2.0-4.tar.gz"
|
||||
hashes = ["sha256:c1a028004606fa01032026d91c66acc0215dad281af95095996827e81220145d"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-1/gnat-avr-elf-linux64-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:92eddc040a15e7ccf73481e535c52d97f420f0038850660a26fe4fe46bacafe4"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-1/gnat-avr-elf-darwin-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:cafdebc5e87f597f7ff20f421acda6e61d490643e505436b748647bcade7df2a"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-1/gnat-avr-elf-windows64-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:ba2194806300047a1dfb557b1b36de2b3689fc1b572cc6b95510ac2394b47194"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-2/gnat-avr-elf-linux64-12.1.0-2.tar.gz"
|
||||
hashes = ["sha256:f5dfa944043e73a884799b7642d95257702538be49b3f9798a89ccf96cb6ca2b"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-2/gnat-avr-elf-darwin-12.1.0-2.tar.gz"
|
||||
hashes = ["sha256:d36bf876c1551c212ad1556d4b3b37cd77e6312d33faff7302240ea11c5c2af6"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-2/gnat-avr-elf-windows64-12.1.0-2.tar.gz"
|
||||
hashes = ["sha256:62925e83166f099222d04eb64dd576ae0ae6b5d8eb904cfb47aa26fc8c116358"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.2.0-1/gnat-avr-elf-linux64-12.2.0-1.tar.gz"
|
||||
hashes = ["sha256:8e59f77f4f5ff0670d4063712d1f4afa9e5793e200c6608007a28ba23f0bcf94"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.2.0-1/gnat-avr-elf-darwin-12.2.0-1.tar.gz"
|
||||
hashes = ["sha256:6bfaa0a85e79c070f2061a4dc20511a3f77ffe62e27843fb3bb96a556cd37c14"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.2.0-1/gnat-avr-elf-windows64-12.2.0-1.tar.gz"
|
||||
hashes = ["sha256:cd4e475d574d0c1164d676fc541f01e3b205f8291b7a9ba8bac6f37c512760f7"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.1.0-1/gnat-avr-elf-linux64-13.1.0-1.tar.gz"
|
||||
hashes = ["sha256:55d633b46c3220a31d2ffb12b409e929bfda0d05b31d8cf32d84b0a001d4d609"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.1.0-1/gnat-avr-elf-windows64-13.1.0-1.tar.gz"
|
||||
hashes = ["sha256:5a9df9bf5916b322171ae0423d21d4877305382ffcedd1c04f7753ab909b9d0c"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.1.0-1/gnat-avr-elf-darwin-13.1.0-1.tar.gz"
|
||||
hashes = ["sha256:9559bc5c25ba0e64d85d10f754f4ff312b7b218bfad5ff341cce9fa42c6750bc"]
|
||||
binary = true
|
||||
|
||||
@@ -18,11 +18,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-1/gnat-avr-elf-linux64-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:e8e44bd7b64d33e006878e20a6fa6e29e0a816cbe6cf81d7301b9915df9b4cd2"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-1/gnat-avr-elf-windows64-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:e30ff1ae665b8726ee5e42900ddb843b4893dd7dc4bb9a12aa1dd15325e14bd2"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-1/gnat-avr-elf-darwin-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:991e8d5f29836e854a22bcf3b2a00811217c156b1ef0bd5e2608fc7fcb569fab"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-1/gnat-x86_64-windows64-10.3.0-1.tar.gz"
|
||||
hashes = ["sha256:6d85b367c642195308440f5b8bdc10b529e2014d58c4ada06e9c8a1f86bf5342"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-1/gnat-x86_64-darwin-10.3.0-1.tar.gz"
|
||||
hashes = ["sha256:20b3092f830adda081737e2d66322da8d4ad2bb9f5aa985bd18312d04fc61458"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-1/gnat-x86_64-linux-10.3.0-1.tar.gz"
|
||||
hashes = ["sha256:8b7c5dcd858ba01bbb66053bcc2899a7015ef426b0f90d47b5b142b90886a6a2"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-2/gnat-x86_64-windows64-10.3.0-2.tar.gz"
|
||||
hashes = ["sha256:b187d9541ce60bbf46d979c638351a501450df1597389cb97e7e996f6aa84d09"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-2/gnat-x86_64-darwin-10.3.0-2.tar.gz"
|
||||
hashes = ["sha256:e112fd3fe78aab5825164830f20f0e2a99557cf2645ad3202da0e2798ec108d3"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-2/gnat-x86_64-linux-10.3.0-2.tar.gz"
|
||||
hashes = ["sha256:d7078088b5ff812e828048c5a50417a7c63724c7181a37ff39cd49e25c154fc6"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-1/gnat-x86_64-windows64-11.2.0-1.tar.gz"
|
||||
hashes = ["sha256:3ed9e2d781e395dcc74544f691fbc15176f853a20d926b7409356c58a89e44ed"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-1/gnat-x86_64-darwin-11.2.0-1.tar.gz"
|
||||
hashes = ["sha256:25e76394ceeadda9a3a689e80e0e22492fc76a3b3d53a54bf90b8b1bdcbc3c7d"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-1/gnat-x86_64-linux-11.2.0-1.tar.gz"
|
||||
hashes = ["sha256:216754299ee9d79a4a1935c29800308007fb1304bfd4833980e0b4a67b2924bb"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-2/gnat-x86_64-windows64-11.2.0-2.tar.gz"
|
||||
hashes = ["sha256:b741ebbc9c2559106e453cd3a180cf5a442e956d68c1812c0d21eedf782bd38a"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-2/gnat-x86_64-darwin-11.2.0-2.tar.gz"
|
||||
hashes = ["sha256:207b1d85d34cb39cf317bb142cdf519f5eb2d6a83981ae985e210bcec6e69c1f"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-2/gnat-x86_64-linux-11.2.0-2.tar.gz"
|
||||
hashes = ["sha256:f1b33dee2865ccd237bda784025962f6331c9b3dfc87ec2b1f798f12641df69d"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-3/gnat-x86_64-windows64-11.2.0-3.tar.gz"
|
||||
hashes = ["sha256:9ac3889918afe98b53ae101d290d940998b72d7a0f0a3ade52b3fc6efb5d3d89"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-3/gnat-x86_64-darwin-11.2.0-3.tar.gz"
|
||||
hashes = ["sha256:f008a8a75922f77ec896f881f51359af9c16380db202dfd6ffd48b999e8cb45d"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-3/gnat-x86_64-linux-11.2.0-3.tar.gz"
|
||||
hashes = ["sha256:d255cfb3263d0a0664850b3fb15d16d400bdb386d460d80e763839308ccdf10a"]
|
||||
binary = true
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-4/gnat-x86_64-windows64-11.2.0-4.tar.gz"
|
||||
hashes = ["sha256:2f9c5d6de6d1c26bb1cee3438dcdf0277d231bfd7129d441b5e7253558da340e"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-4/gnat-x86_64-darwin-11.2.0-4.tar.gz"
|
||||
hashes = ["sha256:9800548db56698e9150252b9382a39953c4a8129d715367c6f787bee48ff1eef"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-4/gnat-x86_64-linux-11.2.0-4.tar.gz"
|
||||
hashes = ["sha256:2f37a10bd215a679b6a4af393b56b2a4fb6ccbedd293a34764e36fea635c58b0"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-1/gnat-x86_64-windows64-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:a0529ef7c4196f5469daa855719c64f2e4d44aa31086c4f0101c3724e9b93fa7"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-1/gnat-x86_64-darwin-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:da46195d3a6b0d8d9c2c5380a8aa82912a6910663377a028be386243c129782a"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-1/gnat-x86_64-linux-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:df1f36b306359d528799b1de8629a793523347a90c9d4b72efd23c62a7279555"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-2/gnat-x86_64-windows64-12.1.0-2.tar.gz"
|
||||
hashes = ["sha256:3126cd6fe82b9428ba1bd50f7d7a5e108668a41da445184a6bbe13d2543fd2d0"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-2/gnat-x86_64-darwin-12.1.0-2.tar.gz"
|
||||
hashes = ["sha256:587b912f42e758a22760fdec972b74bc596273921930f5b369bd9c3b25f298c9"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-2/gnat-x86_64-linux-12.1.0-2.tar.gz"
|
||||
hashes = ["sha256:66b989b5cbb5d19b1207603f6b5fe2c7795e4725ff4b9aed0421859c57829f4f"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.2.0-1/gnat-x86_64-linux-12.2.0-1.tar.gz"
|
||||
hashes = ["sha256:11f3b811e4967bd4924a8236e9e68e0b9464fee016cd9d00c077faec0c27fe99"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.2.0-1/gnat-x86_64-darwin-12.2.0-1.tar.gz"
|
||||
hashes = ["sha256:77267eb19842059c10f6eaf417b75d0483c0f977fb2a2cba0fb1d785fc5bfb78"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.2.0-1/gnat-x86_64-windows64-12.2.0-1.tar.gz"
|
||||
hashes = ["sha256:c210a02294df8521c13ca5d696285985336ddda8c70b555849f96c2ecfcaba86"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.1.0-1/gnat-x86_64-linux-13.1.0-1.tar.gz"
|
||||
hashes = ["sha256:fdf29084a085cca39edc4ec5c6bb81f24f494e8b7ec3a605690831783d5e3a88"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.1.0-1/gnat-x86_64-windows64-13.1.0-1.tar.gz"
|
||||
hashes = ["sha256:84523e4d363c1e7687c51cd8c084ac8e9bededf8c084de73f47b07149a8afdfd"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.1.0-1/gnat-x86_64-darwin-13.1.0-1.tar.gz"
|
||||
hashes = ["sha256:071d715cb06c065633f38e40b896e9c2cd9f6f8c67b6b205459e4534ebf15dce"]
|
||||
binary = true
|
||||
|
||||
@@ -18,11 +18,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-1/gnat-x86_64-linux-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:788a01f91f54259a6a9fb44f0c1f36b83cbf0ef06a8e6a9c601a4c46581a07a8"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-1/gnat-x86_64-windows64-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:fa3c7439b315c0ca5fc0be9bbeead8ce089a0326dffe28c58b43832b5ee898fb"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-1/gnat-x86_64-darwin-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:c21501ad511255d8e4a589f5e2e0aab883e9762617303010e0e82c4c6ec09275"]
|
||||
binary = true
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
|
||||
name = "gnat_native"
|
||||
version = "13.2.2"
|
||||
provides = ["gnat=13.2.2"]
|
||||
description = "The GNAT Ada compiler - Native"
|
||||
maintainers = ["chouteau@adacore.com"]
|
||||
maintainers-logins = ["Fabien-Chouteau"]
|
||||
licenses = "GPL-3.0-or-later AND GPL-3.0-or-later WITH GCC-exception-3.1"
|
||||
|
||||
auto-gpr-with = false
|
||||
|
||||
[configuration]
|
||||
disabled = true
|
||||
|
||||
[environment]
|
||||
PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-2/gnat-x86_64-linux-13.2.0-2.tar.gz"
|
||||
hashes = ["sha256:a27fd7945ac9ead50abdd8e4564d133d00f635536bf9dfdf1e00af5e08a0c494"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-2/gnat-x86_64-windows64-13.2.0-2.tar.gz"
|
||||
hashes = ["sha256:88799c95aedc8a50627c9705ff8c60f78941312c86459352bc88f47786466d23"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-2/gnat-x86_64-darwin-13.2.0-2.tar.gz"
|
||||
hashes = ["sha256:9be96041c0c280d5c78cf3e66ced84203354773f68240cc0f03b087ee109d2b0"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".aarch64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-2/gnat-aarch64-darwin-13.2.0-2.tar.gz"
|
||||
hashes = ["sha256:b2c113d5ac9301e1abc37a45e1f825fe4cb1cb16fbba606fdfe339012ad7a000"]
|
||||
binary = true
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-1/gnat-riscv64-elf-linux64-10.3.0-1.tar.gz"
|
||||
hashes = ["sha256:209ee8df59c3f84412f9cb5121a2df4db45daedce47fbd19f7318461b1a4c00a"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-1/gnat-riscv64-elf-darwin-10.3.0-1.tar.gz"
|
||||
hashes = ["sha256:a64d12884ab5a6892e0263ed136dd73f1917fc21a80c127b9495059dd3c1c70d"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-1/gnat-riscv64-elf-windows64-10.3.0-1.tar.gz"
|
||||
hashes = ["sha256:f20c48b6097529361ab540fa17728292dc304749745e0222e6f17eb710337a22"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-2/gnat-riscv64-elf-linux64-10.3.0-2.tar.gz"
|
||||
hashes = ["sha256:15ce9c58f2871336d944f20d39b230a92da2e21bc9e60b59e693327ba463a83a"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-2/gnat-riscv64-elf-darwin-10.3.0-2.tar.gz"
|
||||
hashes = ["sha256:02b8746589190112a9aa5798f3c38831c423baac26451240432a357a7324ddc1"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-10.3.0-2/gnat-riscv64-elf-windows64-10.3.0-2.tar.gz"
|
||||
hashes = ["sha256:f7f96169b92c5aacc415aa105e4baf40dbd49a0ba75eed0a97e3586bdf2aa5da"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-1/gnat-riscv64-elf-linux64-11.2.0-1.tar.gz"
|
||||
hashes = ["sha256:71151d7902b127f5f68d206f6134d1c18d203f8269e11970cab28e0ff5ff801e"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-1/gnat-riscv64-elf-darwin-11.2.0-1.tar.gz"
|
||||
hashes = ["sha256:359f6d99dc55b01432dc8fa8190ba8bfe7f2e6a78b458cca45fa41bbcd04a9c7"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-1/gnat-riscv64-elf-windows64-11.2.0-1.tar.gz"
|
||||
hashes = ["sha256:a04a8bd99ac1ec576aba2a69b6608fd78d805c737de59c30f570bd5dd5a82a97"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-2/gnat-riscv64-elf-linux64-11.2.0-2.tar.gz"
|
||||
hashes = ["sha256:5d0c03e8df93c716476d423bbdc4c1150a370f769be30c3e6a1d909197cb6b1d"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-2/gnat-riscv64-elf-darwin-11.2.0-2.tar.gz"
|
||||
hashes = ["sha256:b2cba6792286e082194d8759d652c2cf51b5c715a52f90bb8c311b34c4e4e084"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-2/gnat-riscv64-elf-windows64-11.2.0-2.tar.gz"
|
||||
hashes = ["sha256:37b33190b9db1ac9cf6b608b50bc176d314895105ef5f626b0efb6846360c40a"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-3/gnat-riscv64-elf-linux64-11.2.0-3.tar.gz"
|
||||
hashes = ["sha256:591103c4d3bba69ed86e0f3b99c48eab268bc3a817201d3717e68d1d65db03f6"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-3/gnat-riscv64-elf-darwin-11.2.0-3.tar.gz"
|
||||
hashes = ["sha256:09cc51a67b542d035a31c86be1eade2f6a2a665d00f366cef2d71956d9879bcd"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-3/gnat-riscv64-elf-windows64-11.2.0-3.tar.gz"
|
||||
hashes = ["sha256:3f0c25f24f0a54acd2877e4e76aa4ea7b4c4ffc27d973d5447e0d91a79bf46bf"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-4/gnat-riscv64-elf-linux64-11.2.0-4.tar.gz"
|
||||
hashes = ["sha256:f4a370b52e490ce7ed1e27be5ea70d1e75cc14f70439fa0f2207ea691c9d95dc"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-4/gnat-riscv64-elf-darwin-11.2.0-4.tar.gz"
|
||||
hashes = ["sha256:69c6306ef68d50eb8c55677e8f2179920a33562b193f7a5c7bb2877b17f3fd7d"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-11.2.0-4/gnat-riscv64-elf-windows64-11.2.0-4.tar.gz"
|
||||
hashes = ["sha256:b21d71cae05dd13309684fc0d6d60d1e440265fe1682ee70789e734037550c27"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-1/gnat-riscv64-elf-linux64-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:6655a23f37716b89b241ad601035a14128196ef6da4201aed86b9d5fc9acc7d5"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-1/gnat-riscv64-elf-darwin-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:6db1755b1915da538733e313df54c77a052661c77edd0a76054da814be896a5b"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-1/gnat-riscv64-elf-windows64-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:62e3f80530ebc97154f9272a4a89b8be4420fe34467972eff2e1a9152109735d"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-2/gnat-riscv64-elf-linux64-12.1.0-2.tar.gz"
|
||||
hashes = ["sha256:1ab4ce44c6333b7bae31f29cf9b3b4ede90a6c7664c31205398d1dba507d7cd0"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-2/gnat-riscv64-elf-darwin-12.1.0-2.tar.gz"
|
||||
hashes = ["sha256:7f267afeb5e0d0a7440c4ea5241bd86a116801d771ccf63c9a0f8bd2124e4535"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.1.0-2/gnat-riscv64-elf-windows64-12.1.0-2.tar.gz"
|
||||
hashes = ["sha256:0e1ea31e9b8b14a7876f24a3b049095f3939b87cc6af7227c5ca17c166baf944"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.2.0-1/gnat-riscv64-elf-linux64-12.2.0-1.tar.gz"
|
||||
hashes = ["sha256:fc4a4d081ff7350c55f960fbb8bc9b0985c55464cd7abfa43626e31f26a45dc8"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.2.0-1/gnat-riscv64-elf-darwin-12.2.0-1.tar.gz"
|
||||
hashes = ["sha256:dc06e76582f53dcca00d660e9472b734d73a5fc188988beb653bde5ad530211e"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-12.2.0-1/gnat-riscv64-elf-windows64-12.2.0-1.tar.gz"
|
||||
hashes = ["sha256:9c33153ae5f389149c501225a17eb3743cbca178214a1f3542e0ea6f2b79f933"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.1.0-1/gnat-riscv64-elf-linux64-13.1.0-1.tar.gz"
|
||||
hashes = ["sha256:eda9e6f7bac3fdeb79f9b652542568c4e1665fe8f31ad6585f55863beaf445e9"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.1.0-1/gnat-riscv64-elf-windows64-13.1.0-1.tar.gz"
|
||||
hashes = ["sha256:4ac38b80e22d233ac9f5dcf9d7ad054a43b7c99f14f7c525dfb845e90585bc53"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.1.0-1/gnat-riscv64-elf-darwin-13.1.0-1.tar.gz"
|
||||
hashes = ["sha256:ff12ec976a850d370054f82bf1ced2ff2febfd3c7b7573550cf3d48d8d3e0955"]
|
||||
binary = true
|
||||
|
||||
@@ -18,11 +18,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-1/gnat-riscv64-elf-linux64-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:938f208c4b70f02885290def1ac98fd3bea3877a72616c108780f306479c6d25"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-1/gnat-riscv64-elf-windows64-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:acf4ed042e84e24159317f8250cf2a48f5175084162fa2a67066bf2e6cf44542"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnat-13.2.0-1/gnat-riscv64-elf-darwin-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:79453eb5b205a8daa2245b17567ad622a2173e325d76cf982b4d202b99414bc4"]
|
||||
binary = true
|
||||
|
||||
@@ -15,11 +15,14 @@ GPR_PROJECT_PATH.append= "${CRATE_ROOT}/share/gnatcoverage/gnatcov_rts/"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatcov-21.0-1/gnatcov-x86_64-linux-21.0-1.tar.gz"
|
||||
hashes = ["sha256:a1f859a747df7d6451776c9d32a51ba9e47f7fabeeb9749511cdd69fbe28ebef"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatcov-21.0-1/gnatcov-x86_64-darwin-21.0-1.tar.gz"
|
||||
hashes = ["sha256:9aadf309133481d72bba5512b63b16d360a04ae960c2047484b71d47c39e3d2a"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatcov-21.0-1/gnatcov-x86_64-windows64-21.0-1.tar.gz"
|
||||
hashes = ["sha256:8b38e414fde33549c177fe7e263e3a8a7276c4721a9138597a5d341296d41768"]
|
||||
binary = true
|
||||
|
||||
@@ -15,11 +15,14 @@ GPR_PROJECT_PATH.append= "${CRATE_ROOT}/share/gnatcoverage/gnatcov_rts/"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatcov-21.0-2/gnatcov-x86_64-linux-21.0-2.tar.gz"
|
||||
hashes = ["sha256:7f9c225e36ba277c35ac2fd053190a8a1c36f47cdb3e8b68d74178d7c903dcb3"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatcov-21.0-2/gnatcov-x86_64-darwin-21.0-2.tar.gz"
|
||||
hashes = ["sha256:b02987db79b51f5c815d5550b8688337c7706105cd713179d2a7a5657a78fcaa"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatcov-21.0-2/gnatcov-x86_64-windows64-21.0-2.tar.gz"
|
||||
hashes = ["sha256:154a9bab22cc5656d6d282a0a998c74dd2ebc9a3aff38b9c7a765950db5321d6"]
|
||||
binary = true
|
||||
|
||||
@@ -18,11 +18,14 @@ disabled = true
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatcov-22.0-1/gnatcov-x86_64-linux-22.0-1.tar.gz"
|
||||
hashes = ["sha256:eae687f0fb100524933ae37123a1de5ec26e5fca7fe2355cf2b267c9ccc0989a"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatcov-22.0-1/gnatcov-x86_64-darwin-22.0-1.tar.gz"
|
||||
hashes = ["sha256:a69a9af451dbeaa1ab8c9d8c430ea25ae9e05b7595073c38e1576241f0630371"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatcov-22.0-1/gnatcov-x86_64-windows64-22.0-1.tar.gz"
|
||||
hashes = ["sha256:29e99b2faf507bf5919e7f60fa052694666de9326bd89a06eea18bad590a0448"]
|
||||
binary = true
|
||||
|
||||
@@ -16,11 +16,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatprove-11.2.0-3/gnatprove-x86_64-windows64-11.2.0-3.tar.gz"
|
||||
hashes = ["sha256:cd184fa03d5f85927711d5c775b8d1017afa2857b69f33b07f36a3a3fccc98ef"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatprove-11.2.0-3/gnatprove-x86_64-darwin-11.2.0-3.tar.gz"
|
||||
hashes = ["sha256:454d37adc3c7b094d75e8d6050b27ca4387a4a420b3e0b99e32c0fe86c296d4a"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatprove-11.2.0-3/gnatprove-x86_64-linux-11.2.0-3.tar.gz"
|
||||
hashes = ["sha256:f7ece6d3edec1c6378054938614428e2f2f3a86ec994537b3e6943bb42fe2d22"]
|
||||
binary = true
|
||||
|
||||
@@ -16,11 +16,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatprove-12.1.0-1/gnatprove-x86_64-windows64-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:571a96b388d4c39989045bbe6678c04908d32f03ba2c316c7be92349e0276371"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatprove-12.1.0-1/gnatprove-x86_64-darwin-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:eaf963490fc0b8c4467854b8f4a7659e4df39094699b014b90d9cd87b46cb987"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatprove-12.1.0-1/gnatprove-x86_64-linux-12.1.0-1.tar.gz"
|
||||
hashes = ["sha256:e1e1ce47c7097b0a7a8cecbb132784f6e6cbcc0550ad8d96cf3dce39db47464d"]
|
||||
binary = true
|
||||
|
||||
@@ -17,11 +17,14 @@ GPR_PROJECT_PATH.prepend = "${CRATE_ROOT}/lib/gnat"
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatprove-13.2.0-1/gnatprove-x86_64-windows64-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:c7d44efa4167551935eab485a38a5d3a592004c1553e7a32c02187602c2a5b01"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatprove-13.2.0-1/gnatprove-x86_64-darwin-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:d088f8a188658aa0befcb5a4a5b9211fccf7d14ba5d5a49189ba70303d5201d7"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gnatprove-13.2.0-1/gnatprove-x86_64-linux-13.2.0-1.tar.gz"
|
||||
hashes = ["sha256:28fc3583d2364c1e10790fe258c408faffa42d7ff77bb81dc18d4907608f4017"]
|
||||
binary = true
|
||||
|
||||
@@ -12,11 +12,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gprbuild-21.0.0-1/gprbuild-x86_64-linux-21.0.0-1.tar.gz"
|
||||
hashes = ["sha256:349f6f95165901e9f5099e2046e62fdb2290745a6f984e15e1759f456362d646"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gprbuild-21.0.0-1/gprbuild-x86_64-darwin-21.0.0-1.tar.gz"
|
||||
hashes = ["sha256:0193f1acb608045539f5568e22395007892cb2a44c89fb9eb170293621c66309"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gprbuild-21.0.0-1/gprbuild-x86_64-windows64-21.0.0-1.tar.gz"
|
||||
hashes = ["sha256:c75588476b295107dddcd302b44e9eef86feebcb0c5168518335da6122264c8f"]
|
||||
binary = true
|
||||
|
||||
@@ -12,11 +12,14 @@ PATH.prepend = "${CRATE_ROOT}/bin"
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gprbuild-21.0.0-2/gprbuild-x86_64-linux-21.0.0-2.tar.gz"
|
||||
hashes = ["sha256:6675f899832a17fdcf4e09ada8844cc519cd5070dca3c9c6b28a7eac6085114e"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gprbuild-21.0.0-2/gprbuild-x86_64-darwin-21.0.0-2.tar.gz"
|
||||
hashes = ["sha256:4f77240c83373412c62f55bda8cbf1136b53e9706dabcaab6c400b52cbadeaf3"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gprbuild-21.0.0-2/gprbuild-x86_64-windows64-21.0.0-2.tar.gz"
|
||||
hashes = ["sha256:9ac7bb44268e0f8d4dcf1666e9ba1aa3d93309f22bd010d352a17575c25fd5d6"]
|
||||
binary = true
|
||||
|
||||
@@ -15,11 +15,14 @@ disabled = true
|
||||
[origin."case(os)".linux."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gprbuild-22.0.0-1/gprbuild-x86_64-linux-22.0.0-1.tar.gz"
|
||||
hashes = ["sha256:24dfc1b54655edd4f85589e7e7dbd0bee24d087f25d5b0f13d3224fe7acf85b8"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".macos."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gprbuild-22.0.0-1/gprbuild-x86_64-darwin-22.0.0-1.tar.gz"
|
||||
hashes = ["sha256:b1220e2b24ce8fdb28344ed9c79c81c1fd2e7e3b05839d35167ceda54050def3"]
|
||||
binary = true
|
||||
|
||||
[origin."case(os)".windows."case(host-arch)".x86-64]
|
||||
url = "https://github.com/alire-project/GNAT-FSF-builds/releases/download/gprbuild-22.0.0-1/gprbuild-x86_64-windows64-22.0.0-1.tar.gz"
|
||||
hashes = ["sha256:c842bbc58b28ad0f1c1f7ba147d59e2c9fc4b8f74355ac734831bc779159b47e"]
|
||||
binary = true
|
||||
|
||||
@@ -0,0 +1,67 @@
|
||||
name = "gwindows"
|
||||
version = "1.4.2"
|
||||
description = "GWindows - Ada Framework for Windows Development"
|
||||
authors = [
|
||||
"David Botton",
|
||||
"Gautier de Montmollin"
|
||||
]
|
||||
maintainers = [
|
||||
"Felix Patschkowski <felix.patschkowski@nexperia.com>",
|
||||
"gdemont@hotmail.com"
|
||||
]
|
||||
maintainers-logins = [
|
||||
"patschkowski",
|
||||
"zertovitch"
|
||||
]
|
||||
|
||||
long-description = """
|
||||
**GWindows** is a full Microsoft Windows Rapid Application Development
|
||||
framework for programming GUIs (Graphical User Interfaces) with Ada.
|
||||
|
||||
Key features of GWindows:
|
||||
|
||||
* Complete Windows framework
|
||||
* Pure Ada code, standalone
|
||||
* Object-Oriented
|
||||
* Code generator (GWenerator)
|
||||
* **Free**, Open-Source
|
||||
* License: GMGPL
|
||||
* Builds to 32 bit and to 64 bit native Windows applications
|
||||
* Works on both ANSI and Unicode character modes
|
||||
* Includes GNATCOM, an ActiveX/COM framework
|
||||
* Tests, demos, samples and tutorials included
|
||||
"""
|
||||
|
||||
licenses = "LGPL-2.0-or-later"
|
||||
|
||||
project-files = [
|
||||
"gnatcom/gnatcom.gpr",
|
||||
"gnatcom/gnatcom_tools.gpr",
|
||||
"gwindows/gwindows.gpr",
|
||||
"gwindows/gwindows_contrib.gpr",
|
||||
"gwindows/gwindows_samples.gpr"
|
||||
]
|
||||
executables = [
|
||||
"game_of_life_interactive",
|
||||
"mdi_example",
|
||||
"sci_example",
|
||||
"demo_exlv1",
|
||||
"demo_exlv2",
|
||||
"demo_exlv3",
|
||||
"bindcom",
|
||||
"comscope",
|
||||
"createcom",
|
||||
"makeguid"
|
||||
]
|
||||
tags = [
|
||||
"gui", "rad", "windows"
|
||||
]
|
||||
website = "https://sourceforge.net/projects/gnavi/"
|
||||
|
||||
[available.'case(os)']
|
||||
windows = true
|
||||
'...' = false
|
||||
|
||||
[origin]
|
||||
commit = "407adc2e77bd3f3fc43522c5c73256495c29406d"
|
||||
url = "git+https://github.com/zertovitch/gwindows.git"
|
||||
@@ -0,0 +1,74 @@
|
||||
name = "gwindows"
|
||||
version = "1.4.3"
|
||||
description = "GWindows - Ada Framework for Windows Development"
|
||||
authors = [
|
||||
"David Botton",
|
||||
"Gautier de Montmollin"
|
||||
]
|
||||
maintainers = [
|
||||
"Felix Patschkowski <felix.patschkowski@nexperia.com>",
|
||||
"gdemont@hotmail.com"
|
||||
]
|
||||
maintainers-logins = [
|
||||
"patschkowski",
|
||||
"zertovitch"
|
||||
]
|
||||
|
||||
long-description = """
|
||||
<img src="https://a.fsdn.com/con/app/proj/gnavi/screenshots/elsch_2022_1000px-2eaf2d5e.jpg" alt="GWindows screenshot 1" width="auto" height="100">
|
||||
<img src="https://a.fsdn.com/con/app/proj/gnavi/screenshots/pfm-c11ec1a6.png" alt="GWindows screenshot 2" width="auto" height="100">
|
||||
<img src="https://a.fsdn.com/con/app/proj/gnavi/screenshots/krikos_win11-4baad1ca.png" alt="GWindows screenshot 3" width="auto" height="100">
|
||||
|
||||
**GWindows** is a full Microsoft Windows Rapid Application Development
|
||||
framework for programming GUIs (Graphical User Interfaces) with Ada.
|
||||
|
||||
Key features of GWindows:
|
||||
|
||||
* Complete Windows framework
|
||||
* Pure Ada code, standalone
|
||||
* Object-Oriented
|
||||
* Code generator (GWenerator)
|
||||
* License: GMGPL
|
||||
* Builds to 32 bit and to 64 bit native Windows applications
|
||||
* Works on both ANSI and Unicode character modes
|
||||
* Includes GNATCOM, an ActiveX/COM framework
|
||||
* Tests, demos, samples and tutorials included
|
||||
* **Free**, Open-Source
|
||||
"""
|
||||
|
||||
licenses = "LGPL-2.0-or-later"
|
||||
|
||||
project-files = [
|
||||
"gnatcom/gnatcom.gpr",
|
||||
"gnatcom/gnatcom_tools.gpr",
|
||||
"gwindows/gwindows.gpr",
|
||||
"gwindows/gwindows_contrib.gpr",
|
||||
"gwindows/gwindows_samples.gpr"
|
||||
]
|
||||
executables = [
|
||||
"game_of_life_interactive",
|
||||
"mdi_example",
|
||||
"sci_example",
|
||||
"demo_exlv1",
|
||||
"demo_exlv2",
|
||||
"demo_exlv3",
|
||||
"bindcom",
|
||||
"comscope",
|
||||
"createcom",
|
||||
"makeguid"
|
||||
]
|
||||
tags = [
|
||||
"gui", "rad", "windows"
|
||||
]
|
||||
website = "https://sourceforge.net/projects/gnavi/"
|
||||
|
||||
[available.'case(os)']
|
||||
windows = true
|
||||
'...' = false
|
||||
|
||||
[environment.PATH]
|
||||
prepend = "${CRATE_ROOT}/alire/build/gnatcom/tools"
|
||||
|
||||
[origin]
|
||||
url = "https://sourceforge.net/projects/gnavi/files/GWindows%20Archive%2013-Apr-2024%20%28Root%20Dir%20and%20Zip%202.0%29.zip"
|
||||
hashes = ["sha512:a13ac6e34ad5c278b5f8c341298edc748aa2ea0554fa38c3831765f2f58932fad373d583f76288a0e9acb9e1afa9463f85992a8d86ea7035e375125f77b035f3"]
|
||||
@@ -0,0 +1,34 @@
|
||||
description = "HAC Ada Compiler: a small, quick Ada compiler covering a subset of Ada"
|
||||
name = "hac"
|
||||
version = "0.30.0"
|
||||
authors = ["Gautier de Montmollin"]
|
||||
website = "https://hacadacompiler.sourceforge.io/"
|
||||
licenses = "MIT"
|
||||
maintainers = ["gdemont@hotmail.com"]
|
||||
maintainers-logins = ["zertovitch"]
|
||||
project-files = ["hac.gpr"]
|
||||
executables = ["hac"]
|
||||
tags = ["hac", "compiler"]
|
||||
long-description = """
|
||||
<img src="https://hacadacompiler.sourceforge.io/hac_anim.gif" alt="hac logo" width="464" height="auto">
|
||||
|
||||
HAC (HAC Ada Compiler) is a small, quickly compiled, open-source Ada compiler, covering a subset of the Ada language.
|
||||
HAC is perhaps the first open-source (albeit partial) Ada compiler fully programmed in Ada itself.
|
||||
|
||||
Features:
|
||||
|
||||
* **Quick**: short programming-compilation-run-test cycles.
|
||||
* Perfect for scripting jobs.
|
||||
* Compiles Ada sources from any stream - file, internet, editor data, Zip archive, ...
|
||||
* Compilation leaves zero compilation temp file - all is done in memory!
|
||||
* Portable, fully programmed in Ada.
|
||||
* Can be embedded into another software - see the [**LEA**](https://l-e-a.sourceforge.io/) editor - and even exchange data with it - see the src/apps/exchange_native_side.adb demo.
|
||||
* **Free**, open-source.
|
||||
"""
|
||||
|
||||
[gpr-externals]
|
||||
HAC_Build_Mode = ["Debug", "Fast", "Small"]
|
||||
|
||||
[origin]
|
||||
url = "https://sourceforge.net/projects/hacadacompiler/files/hac-2024-03-21-v.0.30.zip"
|
||||
hashes = ["sha512:ba4b43415fd548730d4c987029565abc3c89b0de5d9afc095709089016e7e88be82906773d13d576f8ef0d0a01830e4d86a3b2d914e969669519d57d4765025a"]
|
||||
@@ -0,0 +1,27 @@
|
||||
description = "Hardware Abstraction Layer (HAL)"
|
||||
|
||||
long-description = '''# hal
|
||||
|
||||
Hardware Abstraction Layer: interfaces definitions to abstract access to common
|
||||
hardware devices and protocols
|
||||
|
||||
This crate is a snapshot of the `hal` in [Ada Drivers
|
||||
Library](https://github.com/AdaCore/Ada_Drivers_Library/tree/master/hal/src).
|
||||
|
||||
Any bug report, issue, contribution must be adressed to the [Ada Drivers
|
||||
Library](https://github.com/AdaCore/Ada_Drivers_Library/) repo.
|
||||
|
||||
'''
|
||||
|
||||
name = "hal"
|
||||
version = "0.3.1"
|
||||
licenses = "BSD-3-Clause"
|
||||
maintainers = ["chouteau@adacore.com"]
|
||||
maintainers-logins = ["Fabien-Chouteau"]
|
||||
project-files = ["hal.gpr"]
|
||||
tags = ["embedded", "hal", "nostd"]
|
||||
|
||||
[origin]
|
||||
commit = "58bb6bd72fc276ba1128451e3b4784b6029be0a8"
|
||||
url = "git+https://github.com/Fabien-Chouteau/hal.git"
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
description = "Hardware Abstraction Layer (HAL)"
|
||||
|
||||
long-description = '''# hal
|
||||
|
||||
Hardware Abstraction Layer: interfaces definitions to abstract access to common
|
||||
hardware devices and protocols
|
||||
|
||||
This crate is a snapshot of the `hal` in [Ada Drivers
|
||||
Library](https://github.com/AdaCore/Ada_Drivers_Library/tree/master/hal/src).
|
||||
|
||||
Any bug report, issue, contribution must be adressed to the [Ada Drivers
|
||||
Library](https://github.com/AdaCore/Ada_Drivers_Library/) repo.
|
||||
|
||||
'''
|
||||
|
||||
name = "hal"
|
||||
version = "0.4.0"
|
||||
licenses = "BSD-3-Clause"
|
||||
maintainers = ["chouteau@adacore.com"]
|
||||
maintainers-logins = ["Fabien-Chouteau"]
|
||||
project-files = ["hal.gpr"]
|
||||
tags = ["embedded", "hal", "nostd"]
|
||||
|
||||
[origin]
|
||||
commit = "730aa937d954f030cd54cbb2b1457884a75f5e73"
|
||||
url = "git+https://github.com/Fabien-Chouteau/hal.git"
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
version = "1.2.1"
|
||||
version = "1.3.0"
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
name = "journada"
|
||||
description = "Simple and nice configurable logging"
|
||||
version = "1.0.0"
|
||||
|
||||
authors = ["Léo Germond"]
|
||||
maintainers = ["Léo Germond <leo.germond@gmail.com>"]
|
||||
maintainers-logins = ["leogermond"]
|
||||
licenses = "Apache-2.0"
|
||||
website = "https://gitlab.com/leogermond/journada"
|
||||
tags = ["log", "logging", "vt100"]
|
||||
|
||||
[origin]
|
||||
commit = "e0bf321572520077b597bc70a8fe54e733e3f3ae"
|
||||
url = "git+https://gitlab.com/leogermond/journada.git"
|
||||
|
||||
@@ -0,0 +1,70 @@
|
||||
description = "LEA is a Lightweight Editor for Ada "
|
||||
name = "lea"
|
||||
version = "0.90.0"
|
||||
|
||||
authors = ["Gautier de Montmollin"]
|
||||
maintainers = ["gdemont@hotmail.com"]
|
||||
maintainers-logins = ["zertovitch"]
|
||||
website = "https://l-e-a.sourceforge.io/"
|
||||
licenses = "MIT"
|
||||
tags = ["lea", "editor"]
|
||||
long-description = """
|
||||
<a target="_blank" href="https://a.fsdn.com/con/app/proj/l-e-a/screenshots/sudo_new-0c7d4c58.png" ><img src="https://a.fsdn.com/con/app/proj/l-e-a/screenshots/sudo_new-0c7d4c58.png" alt="lea screenshot 1" width="auto" height="140"></a>
|
||||
<a target="_blank" href="https://a.fsdn.com/con/app/proj/l-e-a/screenshots/mandel_new-f3219868.png" ><img src="https://a.fsdn.com/con/app/proj/l-e-a/screenshots/mandel_new-f3219868.png" alt="lea screenshot 2" width="auto" height="140"></a>
|
||||
<a target="_blank" href="https://a.fsdn.com/con/app/proj/l-e-a/screenshots/lea_ubu-912c5456.png" ><img src="https://a.fsdn.com/con/app/proj/l-e-a/screenshots/lea_ubu-912c5456.png" alt="lea screenshot 3" width="auto" height="140"></a>
|
||||
<a target="_blank" href="https://a.fsdn.com/con/app/proj/l-e-a/screenshots/ext_edit_new-28fcf374.png"><img src="https://a.fsdn.com/con/app/proj/l-e-a/screenshots/ext_edit_new-28fcf374.png" alt="lea screenshot 4" width="auto" height="140"></a>
|
||||
|
||||
**LEA**, a **Lightweight Editor for Ada**, aims to provide an easy, script-world-like, "look & feel" for developing Ada projects of any size and level, while enabling access to full-scale development tools like GNAT.
|
||||
|
||||
Features:
|
||||
|
||||
* Quick start and reactivity
|
||||
* Uses the Scintilla editor widget (like Notepad++)
|
||||
* Multi-document
|
||||
* Multiple undo's & redo's
|
||||
* Multi-line, multi-point editing; rectangular selections
|
||||
* Duplication of lines and selections
|
||||
* Color themes
|
||||
* Syntax highlighting, parenthesis matching
|
||||
* Bookmarks
|
||||
* Smart editor features (auto-completion, navigation, mouse-hover infos)
|
||||
* Includes HAC, the HAC Ada Compiler
|
||||
* Includes numerous examples of Ada programs, ready to be run
|
||||
* Single executable, runs without installation
|
||||
* Programmed in Ada
|
||||
* **Free**, Open-Source
|
||||
"""
|
||||
|
||||
project-files = ["lea_project_tree.gpr"]
|
||||
executables = ["lea"]
|
||||
|
||||
[available.'case(os)']
|
||||
windows = true
|
||||
'...' = false
|
||||
|
||||
[gpr-externals]
|
||||
LEA_Build_Mode = ["Debug", "Fast", "Small"]
|
||||
|
||||
[gpr-set-externals]
|
||||
HAC_Build_Mode = "Small"
|
||||
LEA_Build_Mode = "Small"
|
||||
Zip_Build_Mode = "Small"
|
||||
|
||||
[[depends-on]]
|
||||
ini_files = "^10.0.0"
|
||||
[[depends-on]]
|
||||
gwindows = "^1.4.3"
|
||||
[[depends-on]]
|
||||
zipada = "^58.0.0"
|
||||
[[depends-on]]
|
||||
gnat = "/=10.3.2"
|
||||
[[depends-on]]
|
||||
hac = "~0.30.0"
|
||||
|
||||
[[actions.'case(os)'.windows]]
|
||||
type = "post-build"
|
||||
command = ["cmd", "/c copy /B lea_without_data.exe + _lea_data.zip lea.exe"]
|
||||
|
||||
[origin]
|
||||
url = "https://sourceforge.net/projects/l-e-a/files/lea-2024-04-14-v.0.90.zip"
|
||||
hashes = ["sha512:397e4d89eb944c261007c548cdb3024eb30fc6e08099ea6dc3ee3de7329263acf7efc2b883142ebee8b1c2644d1d0b1d181b631ea428a166132dfb9b89f24f28"]
|
||||
@@ -13,3 +13,6 @@ maintainers-logins = ["mosteo"]
|
||||
commit = "3c15bc7f3df22298077c9e96f178adc2829feb42"
|
||||
url = "git+https://github.com/alire-project/libhello.git"
|
||||
|
||||
# We use this crate as a trigger to conveniently test minor changes to
|
||||
# metaprocesses of the CI of the repository itself.
|
||||
# Last touch: 2024-05-17 15:11 CET
|
||||
@@ -8,6 +8,7 @@ maintainers-logins = ["pmunts"]
|
||||
[[external]]
|
||||
kind = "system"
|
||||
[external.origin."case(distribution)"]
|
||||
"centos|fedora|rhel" = ["hidapi-devel"]
|
||||
"debian|ubuntu" = ["libhidapi-dev"]
|
||||
arch = ["hidapi"]
|
||||
homebrew = ["hidapi"]
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
name = "libsimpleio"
|
||||
description = "Linux Simple I/O Library"
|
||||
version = "2.22299.1"
|
||||
licenses = "BSD-1-Clause"
|
||||
website = "https://github.com/pmunts/libsimpleio"
|
||||
|
||||
authors = ["Philip Munts"]
|
||||
maintainers = ["Philip Munts <phil@munts.net>"]
|
||||
maintainers-logins = ["pmunts"]
|
||||
|
||||
project-files = ["libsimpleio.gpr"]
|
||||
|
||||
tags = ["embedded", "linux", "libsimpleio", "remoteio", "beaglebone",
|
||||
"pocketbeagle", "raspberrypi", "raspberry", "pi", "adc", "dac", "gpio",
|
||||
"hid", "i2c", "motor", "pwm", "sensor", "serial", "servo", "spi", "stepper",
|
||||
"watchdog"]
|
||||
|
||||
[available."case(os)"]
|
||||
'linux' = true
|
||||
"..." = false
|
||||
|
||||
[[actions."case(os)".linux]]
|
||||
type = "post-fetch"
|
||||
command = ["sh", "-c", "./src/scripts/postfetch.linux"]
|
||||
|
||||
[origin]
|
||||
hashes = [
|
||||
"sha256:e27435ce15f77bfcf7078b6b292948771a6086853a6fbe947d90bb24e5ad227f",
|
||||
"sha512:ef31e6279b70c08f86f1a54e3de054217612eac88ecab0d6f0f50d88b4dff9b016059a54a3d0f3c87451a9b02e1671760f3981bb73e6616ca5f7aa61c7c26ef5",
|
||||
]
|
||||
url = "https://raw.githubusercontent.com/pmunts/alire-crates/001af5fec3ac58584467b2aef49a9a8efc0ec9d4/libsimpleio/libsimpleio-2.22299.1.tbz2"
|
||||
|
||||
@@ -8,7 +8,8 @@ maintainers-logins = ["pmunts"]
|
||||
[[external]]
|
||||
kind = "system"
|
||||
[external.origin."case(distribution)"]
|
||||
"arch" = ["libusb"]
|
||||
"centos|rhel" = ["libusbx-devel"]
|
||||
"debian|ubuntu" = ["libusb-1.0-0-dev"]
|
||||
arch = ["libusb"]
|
||||
homebrew = ["libusb"]
|
||||
macports = ["libusb"]
|
||||
"fedora" = ["libusb1-devel"]
|
||||
"homebrew|macports" = ["libusb"]
|
||||
|
||||
@@ -9,3 +9,6 @@ kind = "system"
|
||||
[external.origin."case(distribution)"]
|
||||
"debian|ubuntu" = ["libzmq3-dev"]
|
||||
msys2 = ["mingw-w64-x86_64-zeromq"]
|
||||
arch = ["zeromq"]
|
||||
homebrew = ["zeromq"]
|
||||
macports = ["zmq"]
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
name = "list_image"
|
||||
description = "helper to dump iterable containers with customizable style"
|
||||
version = "1.0.0"
|
||||
|
||||
authors = ["Lionel Draghi"]
|
||||
maintainers = ["Lionel Draghi <lionel.draghi@free.fr>"]
|
||||
maintainers-logins = ["LionelDraghi"]
|
||||
licenses = "Apache-2.0"
|
||||
website = "https://github.com/LionelDraghi/List_Image"
|
||||
tags = ["list", "iterator", "container", "markdown", "html"]
|
||||
|
||||
executables = ["test_list_image"]
|
||||
|
||||
[configuration]
|
||||
disabled = true
|
||||
|
||||
|
||||
[origin]
|
||||
commit = "329dd78b6d2097e22c5917a0d8ad56d9399b18b8"
|
||||
url = "git+https://github.com/LionelDraghi/List_Image.git"
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
name = "raylib"
|
||||
description = "Ada bindings for Raylib"
|
||||
version = "0.1.0"
|
||||
|
||||
authors = ["Fabien Chouteau"]
|
||||
maintainers = ["Fabien Chouteau <fabien.chouteau@gmail.com>"]
|
||||
maintainers-logins = ["Fabien-Chouteau"]
|
||||
licenses = "MIT OR Apache-2.0 WITH LLVM-exception"
|
||||
website = ""
|
||||
tags = ["raylib", "gamedev", "binding"]
|
||||
|
||||
[[depends-on]]
|
||||
gnat = ">=12 & <2000"
|
||||
|
||||
[origin]
|
||||
commit = "d5a6702eec1774ee3753672e62fbb99d88ef893a"
|
||||
url = "git+https://github.com/Fabien-Chouteau/raylib-ada.git"
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
description = "SPI based driver for the ST7789 TFT display"
|
||||
name = "st7789"
|
||||
version = "0.1.0"
|
||||
licenses = "MIT"
|
||||
maintainers = ["jk@jkliemann.de"]
|
||||
maintainers-logins = ["jklmnn"]
|
||||
tags = ["embedded", "nostd", "framebuffer", "bitmap", "display", "driver", "drivers", "spi"]
|
||||
|
||||
[[depends-on]]
|
||||
hal = "~0.3.0"
|
||||
adl_middleware = "~0.2.0"
|
||||
|
||||
[origin]
|
||||
url = "https://github.com/jklmnn/st7789-ada/archive/refs/tags/0.1.0.tar.gz"
|
||||
hashes = ["sha512:59369e69a04701d4efafd34d233a7794322799a6e26320e68d8d6f26cbcdcd92655f11a675a0f5bf51e1552eb922b7a14a503917c507311e5727ceace6472fc6"]
|
||||
@@ -0,0 +1,18 @@
|
||||
name = "tiny_text"
|
||||
description = "Low resolution bitmap font with a small memory footprint"
|
||||
version = "1.3.0"
|
||||
|
||||
authors = ["Jeremy Grosser"]
|
||||
maintainers = ["Jeremy Grosser <jeremy@synack.me>"]
|
||||
maintainers-logins = ["JeremyGrosser"]
|
||||
licenses = "MIT"
|
||||
website = ["https://github.com/JeremyGrosser/tiny_text"]
|
||||
tags = ["font", "hal", "bitmap", "text"]
|
||||
|
||||
[[depends-on]]
|
||||
hal = "~0.3.0"
|
||||
|
||||
[origin]
|
||||
commit = "a249a2d12f50c459f288595b734029beb9ef6251"
|
||||
url = "git+https://github.com/JeremyGrosser/tiny_text.git"
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
name = "wikibook"
|
||||
description = "WikiBook Ada Programing"
|
||||
long-description = """WikiBook Ada Programing
|
||||
|
||||
Follwing crates are incuded:
|
||||
|
||||
hello_world
|
||||
: classic hello world samples
|
||||
|
||||
"""
|
||||
version = "1.0.0"
|
||||
authors = ["Martin Krischik"]
|
||||
maintainers = ["Martin Krischik <krischik@users.sourceforge.net>"]
|
||||
maintainers-logins = ["krischik"]
|
||||
licenses = "GPL-3.0-or-later"
|
||||
website = "https://wikibook-ada.sourceforge.net/"
|
||||
tags = ["tutorial", "wikibook"]
|
||||
|
||||
[build-switches]
|
||||
development.runtime_checks = "Overflow"
|
||||
release.runtime_checks = "Default"
|
||||
validation.runtime_checks = "Everything"
|
||||
development.contracts = "Yes"
|
||||
release.contracts = "No"
|
||||
validation.contracts = "Yes"
|
||||
|
||||
[[depends-on]]
|
||||
gnat = ">=13"
|
||||
|
||||
[[actions]]
|
||||
type = "post-build"
|
||||
command = ["alr", "build"]
|
||||
directory = "hello_world"
|
||||
|
||||
[origin]
|
||||
hashes = [
|
||||
"sha256:6932817154d8dc64d99bfbd22bce8ba2eb7f72f36b81a7df1a37d526a5c20d95",
|
||||
"sha512:2324b7e1f1385ddbe9bd5a5644b2462b13aa3ede14a0c797fcd0be5dc64d7f1be1af8b2c39767db9f8dfe57239d8fcc1998ef3d4d7c05dddb7b839691e81e688",
|
||||
]
|
||||
url = "https://sourceforge.net/projects/wikibook-ada/files/Alire/wikibook-1.0.0.tgz"
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
name = "wikibook"
|
||||
description = "WikiBook Ada Programing"
|
||||
long-description = """WikiBook Ada Programing
|
||||
|
||||
Follwing crates are incuded:
|
||||
|
||||
basic: Chapter Basic Ada
|
||||
pragmas_restrictions: Chapter Pragmas Restrictions
|
||||
|
||||
"""
|
||||
version = "1.0.1"
|
||||
authors = ["Martin Krischik"]
|
||||
maintainers = ["Martin Krischik <krischik@users.sourceforge.net>"]
|
||||
maintainers-logins = ["krischik"]
|
||||
licenses = "GPL-3.0-or-later"
|
||||
website = "https://wikibook-ada.sourceforge.net/"
|
||||
tags = ["tutorial", "wikibook"]
|
||||
|
||||
[build-switches]
|
||||
development.runtime_checks = "Overflow"
|
||||
release.runtime_checks = "Default"
|
||||
validation.runtime_checks = "Everything"
|
||||
development.contracts = "Yes"
|
||||
release.contracts = "No"
|
||||
validation.contracts = "Yes"
|
||||
|
||||
[[depends-on]]
|
||||
gnat = ">=13"
|
||||
|
||||
[[actions]]
|
||||
type = "post-build"
|
||||
command = ["alr", "build"]
|
||||
directory = "basic"
|
||||
|
||||
[[actions]]
|
||||
type = "post-build"
|
||||
command = ["alr", "build"]
|
||||
directory = "pragmas_restrictions"
|
||||
|
||||
[origin]
|
||||
hashes = [
|
||||
"sha256:780ee70ff379fbe281e03795898e85b3aa5c6b0e776b81539b1c6d678ce2eeeb",
|
||||
"sha512:4f3be2aa3c88850ed0315e8a4ae2fdd66bf9eb68ffeeff40221eeb0fd8a5b81ab3fb1e7ed803338c5695b78a93c0961087b040bb9888f50a869f6707300c47b6",
|
||||
]
|
||||
url = "https://sourceforge.net/projects/wikibook-ada/files/Alire/wikibook-1.0.1.tgz"
|
||||
|
||||
Reference in New Issue
Block a user