From 93a5a02a9a59385866e81aab5fb565e07774da20 Mon Sep 17 00:00:00 2001 From: Maxim Reznik Date: Fri, 3 May 2024 18:30:17 +0300 Subject: [PATCH 1/4] Allow zeromq on Mac OS X and Arch Linux (#1050) --- index/li/libzmq/libzmq-external.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index/li/libzmq/libzmq-external.toml b/index/li/libzmq/libzmq-external.toml index b00f4326f..6ad1bd5a6 100644 --- a/index/li/libzmq/libzmq-external.toml +++ b/index/li/libzmq/libzmq-external.toml @@ -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"] From 84d8923eefb144d6761b9f2b1cf836487d3515b5 Mon Sep 17 00:00:00 2001 From: Fabien Chouteau Date: Fri, 10 May 2024 13:06:26 +0200 Subject: [PATCH 2/4] hal 0.3.1 (#1035) --- index/ha/hal/hal-0.3.1.toml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 index/ha/hal/hal-0.3.1.toml diff --git a/index/ha/hal/hal-0.3.1.toml b/index/ha/hal/hal-0.3.1.toml new file mode 100644 index 000000000..f56681ea8 --- /dev/null +++ b/index/ha/hal/hal-0.3.1.toml @@ -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" + From 97c7abe586ad2a807b9d1f1276fe28c7bee0512f Mon Sep 17 00:00:00 2001 From: Alejandro R Mosteo Date: Thu, 16 May 2024 14:20:52 +0200 Subject: [PATCH 3/4] Fixes for CI troubles (#1061) * Use Intel arch machines for macOS tests * Downgrade macOS runners to v12 * Update workflows * Touch test crate --- .github/workflows/authorship.yml | 7 ++----- .github/workflows/build-native-master.yml | 4 ++-- .github/workflows/build-native.yml | 2 +- .github/workflows/build-ports.yml | 9 +++++---- index/li/libhello/libhello-1.0.1.toml | 2 +- 5 files changed, 11 insertions(+), 13 deletions(-) diff --git a/.github/workflows/authorship.yml b/.github/workflows/authorship.yml index 84bbe91f9..dbd1feca0 100644 --- a/.github/workflows/authorship.yml +++ b/.github/workflows/authorship.yml @@ -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 }}" diff --git a/.github/workflows/build-native-master.yml b/.github/workflows/build-native-master.yml index 26a487160..4ccf85332 100644 --- a/.github/workflows/build-native-master.yml +++ b/.github/workflows/build-native-master.yml @@ -28,7 +28,7 @@ jobs: fail-fast: false matrix: os: - - macos-latest + - macos-12 - ubuntu-latest - windows-latest @@ -50,7 +50,7 @@ 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' diff --git a/.github/workflows/build-native.yml b/.github/workflows/build-native.yml index 57fdade0c..ee6bc625d 100644 --- a/.github/workflows/build-native.yml +++ b/.github/workflows/build-native.yml @@ -25,7 +25,7 @@ jobs: fail-fast: false matrix: os: - - macos-latest + - macos-12 - ubuntu-latest - windows-latest diff --git a/.github/workflows/build-ports.yml b/.github/workflows/build-ports.yml index bdcddb0a9..d7ab656c9 100644 --- a/.github/workflows/build-ports.yml +++ b/.github/workflows/build-ports.yml @@ -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) diff --git a/index/li/libhello/libhello-1.0.1.toml b/index/li/libhello/libhello-1.0.1.toml index 0d588c501..7cb44bf88 100644 --- a/index/li/libhello/libhello-1.0.1.toml +++ b/index/li/libhello/libhello-1.0.1.toml @@ -15,4 +15,4 @@ 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-03-21 14:29:00 CET \ No newline at end of file +# Last touch: 2024-05-16 13:40 CET \ No newline at end of file From 473cc1de0c636cf1f4c1ec97babb1248f2bbf435 Mon Sep 17 00:00:00 2001 From: Kevin Chadwick Date: Thu, 16 May 2024 14:04:34 +0100 Subject: [PATCH 4/4] elogs 1.2.0 (#1059) Co-authored-by: Kevin Chadwick Co-authored-by: Alejandro R. Mosteo --- index/el/elogs/elogs-1.2.0.toml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 index/el/elogs/elogs-1.2.0.toml diff --git a/index/el/elogs/elogs-1.2.0.toml b/index/el/elogs/elogs-1.2.0.toml new file mode 100644 index 000000000..d6773d241 --- /dev/null +++ b/index/el/elogs/elogs-1.2.0.toml @@ -0,0 +1,29 @@ +name = "elogs" +description = "Embedded logging, proven absent of runtime errors" +version = "1.2.0" + +authors = ["Kevin Chadwick"] +maintainers = ["Kevin Chadwick "] +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" +