From c2548603bcb1df70dc7855b264e398500b4972cd Mon Sep 17 00:00:00 2001 From: eclipse-score-bot <187756813+eclipse-score-bot@users.noreply.github.com> Date: Wed, 18 Mar 2026 12:54:01 +0000 Subject: [PATCH] Update modules --- .../score_communication/0.1.4/MODULE.bazel | 312 +++++++++++++++ .../patches/module_dot_bazel_version.patch | 11 + modules/score_communication/0.1.4/source.json | 9 + modules/score_communication/metadata.json | 1 + modules/score_crates/0.0.8/MODULE.bazel | 359 ++++++++++++++++++ .../patches/module_dot_bazel_version.patch | 11 + modules/score_crates/0.0.8/source.json | 9 + modules/score_crates/metadata.json | 1 + 8 files changed, 713 insertions(+) create mode 100644 modules/score_communication/0.1.4/MODULE.bazel create mode 100644 modules/score_communication/0.1.4/patches/module_dot_bazel_version.patch create mode 100644 modules/score_communication/0.1.4/source.json create mode 100644 modules/score_crates/0.0.8/MODULE.bazel create mode 100644 modules/score_crates/0.0.8/patches/module_dot_bazel_version.patch create mode 100644 modules/score_crates/0.0.8/source.json diff --git a/modules/score_communication/0.1.4/MODULE.bazel b/modules/score_communication/0.1.4/MODULE.bazel new file mode 100644 index 0000000..1463652 --- /dev/null +++ b/modules/score_communication/0.1.4/MODULE.bazel @@ -0,0 +1,312 @@ +# ******************************************************************************* +# Copyright (c) 2024-2026 Contributors to the Eclipse Foundation +# +# See the NOTICE file(s) distributed with this work for additional +# information regarding copyright ownership. +# +# This program and the accompanying materials are made available under the +# terms of the Apache License Version 2.0 which is available at +# https://www.apache.org/licenses/LICENSE-2.0 +# +# SPDX-License-Identifier: Apache-2.0 +# ******************************************************************************* +module(name = "score_communication") + +bazel_dep(name = "platforms", version = "0.1.4") + +bazel_dep(name = "gcc_toolchain", version = "0.9.0", dev_dependency = True) + +gcc_toolchains = use_extension("@gcc_toolchain//toolchain:module_extensions.bzl", "gcc_toolchains", dev_dependency = True) +gcc_toolchains.toolchain( + name = "gcc_toolchain_x86_64", + extra_ldflags = [ + "-lstdc++", + "-lrt", + "-latomic", + ], + gcc_version = "15.2.0", + target_arch = "x86_64", +) +use_repo(gcc_toolchains, "gcc_toolchain_x86_64") + +bazel_dep(name = "score_bazel_cpp_toolchains", version = "0.3.0", dev_dependency = True) +git_override( + module_name = "score_bazel_cpp_toolchains", + commit = "79982259df6dfa9d82cc458163a6d9b08bd24471", + remote = "https://github.com/eclipse-score/bazel_cpp_toolchains.git", +) + +score_gcc = use_extension("@score_bazel_cpp_toolchains//extensions:gcc.bzl", "gcc", dev_dependency = True) +score_gcc.toolchain( + name = "score_gcc_x86_64_toolchain", + target_cpu = "x86_64", + target_os = "linux", + use_base_constraints_only = True, + use_default_package = True, + version = "12.2.0", +) +score_gcc.toolchain( + name = "score_qcc_x86_64_toolchain", + sdp_version = "8.0.0", + target_cpu = "x86_64", + target_os = "qnx", + use_default_package = True, + version = "12.2.0", +) +score_gcc.toolchain( + name = "score_qcc_aarch64_toolchain", + sdp_version = "8.0.0", + target_cpu = "aarch64", + target_os = "qnx", + use_default_package = True, + version = "12.2.0", +) +use_repo( + score_gcc, + "score_gcc_x86_64_toolchain", + "score_qcc_aarch64_toolchain", + "score_qcc_x86_64_toolchain", +) + +# For the moment we still need the old toolchain for ifs generation. +# Migrate once rules_imagefs is ready to be used (https://github.com/eclipse-score/rules_imagefs/pull/1). +bazel_dep(name = "score_toolchains_qnx", version = "0.0.7", dev_dependency = True) + +toolchains_qnx = use_extension( + "@score_toolchains_qnx//:extensions.bzl", + "toolchains_qnx", + dev_dependency = True, +) +toolchains_qnx.sdp( + sha256 = "f2e0cb21c6baddbcb65f6a70610ce498e7685de8ea2e0f1648f01b327f6bac63", + strip_prefix = "installation", + url = "https://www.qnx.com/download/download/79858/installation.tgz", +) +use_repo(toolchains_qnx, "toolchains_qnx_ifs") + +bazel_dep(name = "toolchains_llvm", version = "1.5.0", dev_dependency = True) + +llvm = use_extension( + "@toolchains_llvm//toolchain/extensions:llvm.bzl", + "llvm", + dev_dependency = True, +) +llvm.toolchain( + compile_flags = {"": [ + "-march=nehalem", + "-ffp-model=strict", + # Security + "-U_FORTIFY_SOURCE", # https://github.com/google/sanitizers/issues/247 + "-fstack-protector", + "-fno-omit-frame-pointer", + # Diagnostics + "-fcolor-diagnostics", + "-Wno-deprecated-declarations", + "-Wno-error=self-assign-overloaded", + "-Wthread-safety", + ]}, + cxx_standard = {"": "c++17"}, + link_libs = {"": [ + "-lrt", + # This is the agreed way to ensure linking for targets using std::atomic operations. + "-latomic", + ]}, + llvm_version = "19.1.7", +) +use_repo(llvm, "llvm_toolchain") + +bazel_dep(name = "score_toolchains_rust", version = "0.7.0", dev_dependency = True) + +gcc_ferrocene = use_extension( + "@score_toolchains_rust//extensions:ferrocene_toolchain_ext.bzl", + "ferrocene_toolchain_ext", + dev_dependency = True, +) +gcc_ferrocene.toolchain( + name = "ferrocene_x86_64_unknown_linux_gnu_llvm", + coverage_tools_sha256 = "497958e925bc94833ea226d68f6d5ba38bd890f571c73e230141d2923e30dd94", + coverage_tools_strip_prefix = "779fbed05ae9e9fe2a04137929d99cc9b3d516fd/x86_64-unknown-linux-gnu", + coverage_tools_url = "https://github.com/eclipse-score/ferrocene_toolchain_builder/releases/download/1.0.1/coverage-tools-779fbed05ae9e9fe2a04137929d99cc9b3d516fd-x86_64-unknown-linux-gnu.tar.gz", + exec_triple = "x86_64-unknown-linux-gnu", + extra_rustc_flags = [ + "-Clink-arg=-Wl,--no-as-needed", + "-Clink-arg=-lc++", + "-Clink-arg=-lm", + "-Clink-arg=-lc", + ], + sha256 = "4c08b41eaafd39cff66333ca4d4646a5331c780050b8b9a8447353fcd301dddc", + target_compatible_with = [ + "@platforms//cpu:x86_64", + "@platforms//os:linux", + ], + target_triple = "x86_64-unknown-linux-gnu", + url = "https://github.com/eclipse-score/ferrocene_toolchain_builder/releases/download/1.0.1/ferrocene-779fbed05ae9e9fe2a04137929d99cc9b3d516fd-x86_64-unknown-linux-gnu.tar.gz", +) +use_repo( + gcc_ferrocene, + "ferrocene_x86_64_unknown_linux_gnu_llvm", +) + +# We use here a pre-compiled fully static and hermetic clang_format binary +# and not the one provided by llvm_toolchain, because the one from llvm_toolchain is not fully hermetic (and different version for now) +download_file = use_repo_rule("@download_utils//download/file:defs.bzl", "download_file") + +download_file( + name = "clang_format", + executable = True, + output = "executable", + urls = ["https://github.com/muttleyxd/clang-tools-static-binaries/releases/download/master-2da3e7b/clang-format-19_linux-amd64"], +) + +bazel_dep(name = "rules_cc", version = "0.1.5") + +bazel_dep(name = "aspect_rules_lint", version = "2.2.0", dev_dependency = True) +bazel_dep(name = "googletest", version = "1.17.0.bcr.2", dev_dependency = True) +bazel_dep(name = "google_benchmark", version = "1.9.5", dev_dependency = True) + +bazel_dep(name = "rules_rust", version = "0.68.1-score") + +bazel_dep(name = "buildifier_prebuilt", version = "8.2.1.2", dev_dependency = True) + +bazel_dep(name = "score_crates", version = "0.0.7", repo_name = "score_communication_crate_index") +bazel_dep(name = "boost.program_options", version = "1.87.0") +bazel_dep(name = "boost.interprocess", version = "1.87.0") + +bazel_dep(name = "download_utils", version = "1.2.2", dev_dependency = True) + +download_archive = use_repo_rule("@download_utils//download/archive:defs.bzl", "download_archive") + +download_archive( + name = "json_schema_validator", + build = "//third_party/json_schema_validator:json_schema_validator.BUILD", + strip_prefix = "json-schema-validator-2.1.0", + urls = ["https://github.com/pboettch/json-schema-validator/archive/refs/tags/2.1.0.tar.gz"], +) + +download_archive( + name = "jsonschema", + build = "//third_party/jsonschema:jsonschema.BUILD", + strip_prefix = "jsonschema-4.23.0", + urls = ["https://github.com/python-jsonschema/jsonschema/archive/refs/tags/v4.23.0.tar.gz"], +) + +bazel_dep(name = "nlohmann_json", version = "3.11.3") +bazel_dep(name = "bazel_skylib", version = "1.8.1") + +bazel_dep(name = "rules_doxygen", version = "2.6.1", dev_dependency = True) +bazel_dep(name = "score_docs_as_code", version = "3.0.1", dev_dependency = True) + +# Force score_docs_as_code to 3.0.1 to resolve compatibility conflict between score_logging and score_baselibs +single_version_override( + module_name = "score_docs_as_code", + version = "3.0.1", +) + +# Apply patch to fix Doxyfile template for our use cases +single_version_override( + module_name = "rules_doxygen", + patch_strip = 1, + patches = ["//third_party/rule_doxygen:Doxyfile.patch"], +) + +# Apply patch to fix visibility issue with interprocess_notification target +bazel_dep(name = "score_baselibs", version = "0.2.4") +bazel_dep(name = "score_logging", version = "0.1.0") +bazel_dep(name = "score_baselibs_rust", version = "0.1.0") + +# Doxygen extension for documentation generation +doxygen_extension = use_extension("@rules_doxygen//:extensions.bzl", "doxygen_extension", dev_dependency = True) +use_repo(doxygen_extension, "doxygen") + +# Python 3.12 toolchain for Bazel +bazel_dep(name = "rules_python", version = "1.5.1") + +python = use_extension("@rules_python//python/extensions:python.bzl", "python", dev_dependency = True) +python.toolchain( + python_version = "3.12", +) + +# Python pip dependencies +pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip", dev_dependency = True) +pip.parse( + hub_name = "score_communication_pip", + python_version = "3.12", + requirements_lock = "//:requirements_lock.txt", +) +use_repo(pip, "score_communication_pip") + +pip.parse( + hub_name = "codeql_coding_standards_pip_hub", + python_version = "3.12", + requirements_lock = "//third_party/codeql:requirements_lock.txt", +) +use_repo(pip, "codeql_coding_standards_pip_hub") + +# TRLC dependency for requirements traceability +bazel_dep(name = "trlc", version = "0.0.0", dev_dependency = True) +git_override( + module_name = "trlc", + commit = "a4f7e95210d8093ba208b91cbc5b681eae8d502b", # trlc-2.0.3 release + remote = "https://github.com/bmw-software-engineering/trlc.git", +) + +lobster_ext = use_extension("//third_party/lobster:lobster.bzl", "lobster_ext") +use_repo(lobster_ext, "lobster") + +# Use lobster's upstream requirements.txt directly for this module's Python hub +pip.parse( + hub_name = "lobster_dependencies", + python_version = "3.12", + requirements_lock = "@lobster//:requirements.txt", +) +use_repo(pip, "lobster_dependencies") + +bazel_dep(name = "score_bazel_platforms", version = "0.1.1") + +bazel_dep(name = "rules_oci", version = "1.8.0", dev_dependency = True) + +oci = use_extension("@rules_oci//oci:extensions.bzl", "oci", dev_dependency = True) +oci.pull( + name = "ubuntu_24_04", + digest = "sha256:2e863c44b718727c860746568e1d54afd13b2fa71b160f5cd9058fc436217b30", + image = "ubuntu", + platforms = ["linux/amd64"], + tag = "24.04", +) +use_repo(oci, "ubuntu_24_04") + +bazel_dep(name = "rules_distroless", version = "0.6.2", dev_dependency = True) + +apt = use_extension( + "@rules_distroless//apt:extensions.bzl", + "apt", + dev_dependency = True, +) +apt.install( + name = "ubuntu24_04", + lock = "@@//quality/integration_testing/environments/ubuntu24_04_docker:ubuntu24_04.lock.json", + manifest = "//quality/integration_testing/environments/ubuntu24_04_docker:ubuntu24_04.yaml", +) +use_repo(apt, "ubuntu24_04") + +bazel_dep(name = "rules_pkg", version = "1.2.0", dev_dependency = True) + +bazel_dep(name = "score_tooling", version = "1.1.2") + +http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") + +http_archive( + name = "codeql_bundle", + build_file = "//third_party/codeql:codeql.BUILD", + sha256 = "", + url = "https://github.com/github/codeql-action/releases/download/codeql-bundle-v2.23.6/codeql-bundle-linux64.tar.gz", +) + +git_repository = use_repo_rule("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") + +git_repository( + name = "codeql_coding_standards", + build_file = "//third_party/codeql:codeql_coding_standards.BUILD", + commit = "781f1eecfa2fc9970fb08447588a0b4d19a7908d", + remote = "https://github.com/github/codeql-coding-standards.git", +) diff --git a/modules/score_communication/0.1.4/patches/module_dot_bazel_version.patch b/modules/score_communication/0.1.4/patches/module_dot_bazel_version.patch new file mode 100644 index 0000000..f714f33 --- /dev/null +++ b/modules/score_communication/0.1.4/patches/module_dot_bazel_version.patch @@ -0,0 +1,11 @@ +--- a/MODULE.bazel ++++ b/MODULE.bazel +@@ -12,7 +12,7 @@ + # ******************************************************************************* + module(name = "score_communication") + +-bazel_dep(name = "platforms", version = "1.0.0") ++bazel_dep(name = "platforms", version = "0.1.4") + + bazel_dep(name = "gcc_toolchain", version = "0.9.0", dev_dependency = True) + diff --git a/modules/score_communication/0.1.4/source.json b/modules/score_communication/0.1.4/source.json new file mode 100644 index 0000000..b9cb184 --- /dev/null +++ b/modules/score_communication/0.1.4/source.json @@ -0,0 +1,9 @@ +{ + "integrity": "sha256-183x4Mn0/WXstiKYjFs5r9zGttdcF1/O/4uEKbd4k08=", + "strip_prefix": "communication-0.1.4", + "url": "https://github.com/eclipse-score/communication/archive/refs/tags/v0.1.4.tar.gz", + "patch_strip": 1, + "patches": { + "module_dot_bazel_version.patch": "sha256-R2bO/OhPjdsLeiel0TDbDha+jzQ6e4dK1vrwo0VJMg0=" + } +} diff --git a/modules/score_communication/metadata.json b/modules/score_communication/metadata.json index ad77527..7052241 100644 --- a/modules/score_communication/metadata.json +++ b/modules/score_communication/metadata.json @@ -13,6 +13,7 @@ "github:eclipse-score/communication" ], "versions": [ + "0.1.4", "0.1.3", "0.1.2", "0.1.1", diff --git a/modules/score_crates/0.0.8/MODULE.bazel b/modules/score_crates/0.0.8/MODULE.bazel new file mode 100644 index 0000000..d57ddf9 --- /dev/null +++ b/modules/score_crates/0.0.8/MODULE.bazel @@ -0,0 +1,359 @@ +# ******************************************************************************* +# Copyright (c) 2024 Contributors to the Eclipse Foundation +# +# See the NOTICE file(s) distributed with this work for additional +# information regarding copyright ownership. +# +# This program and the accompanying materials are made available under the +# terms of the Apache License Version 2.0 which is available at +# https://www.apache.org/licenses/LICENSE-2.0 +# +# SPDX-License-Identifier: Apache-2.0 +# ******************************************************************************* +module( + name = "score_crates", + version = "0.0.8", + compatibility_level = 0, +) + +bazel_dep(name = "platforms", version = "0.0.11") +bazel_dep(name = "rules_rust", version = "0.61.0") + +crate = use_extension("@rules_rust//crate_universe:extensions.bzl", "crate") +crate.spec( + package = "futures", + version = "0.3.31", +) +crate.spec( + package = "libc", + version = "0.2.155", +) +crate.spec( + features = ["derive"], + package = "clap", + version = "4.5.4", +) +crate.spec( + package = "anyhow", + version = "1.0.99", +) +crate.spec( + package = "argh", + version = "0.1.13", +) +crate.spec( + package = "async-stream", + version = "0.3.6", +) +crate.spec( + package = "bytes", + version = "1.10.1", +) +crate.spec( + package = "cc", + version = "1.2.34", +) +crate.spec( + package = "console", + version = "0.16.0", +) +crate.spec( + package = "env_logger", + version = "0.11.8", +) +crate.spec( + package = "human_bytes", + version = "0.4.3", +) +crate.spec( + package = "iceoryx2", + version = "0.5.0", +) +crate.spec( + git = "https://github.com/qorix-group/iceoryx2.git", + package = "iceoryx2-qnx8", + rev = "9f5622f554de48a7a296e1a5a71200b01e35a502", +) +crate.spec( + git = "https://github.com/qorix-group/iceoryx2.git", + package = "iceoryx2-bb-elementary-traits-qnx8", + rev = "9f5622f554de48a7a296e1a5a71200b01e35a502", +) +crate.spec( + git = "https://github.com/qorix-group/iceoryx2.git", + package = "iceoryx2-bb-container-qnx8", + rev = "9f5622f554de48a7a296e1a5a71200b01e35a502", +) +crate.spec( + git = "https://github.com/qorix-group/iceoryx2.git", + package = "iceoryx2-bb-derive-macros-qnx8", + rev = "9f5622f554de48a7a296e1a5a71200b01e35a502", +) +crate.annotation( + crate = "iceoryx2-bb-derive-macros-qnx8", + patches = ["//patches:iceoryx2_bb_derive_macros_readme.patch"], + repositories = ["crate_index"], +) +crate.spec( + git = "https://github.com/qorix-group/iceoryx2.git", + package = "iceoryx2-bb-elementary-qnx8", + rev = "9f5622f554de48a7a296e1a5a71200b01e35a502", +) +crate.spec( + git = "https://github.com/qorix-group/iceoryx2.git", + package = "iceoryx2-bb-lock-free-qnx8", + rev = "9f5622f554de48a7a296e1a5a71200b01e35a502", +) +crate.spec( + git = "https://github.com/qorix-group/iceoryx2.git", + package = "iceoryx2-bb-memory-qnx8", + rev = "9f5622f554de48a7a296e1a5a71200b01e35a502", +) +crate.spec( + git = "https://github.com/qorix-group/iceoryx2.git", + package = "iceoryx2-bb-posix-qnx8", + rev = "9f5622f554de48a7a296e1a5a71200b01e35a502", +) + +#iceoryx2 does not yet support QNX8 correctly so we patch +crate.annotation( + crate = "iceoryx2-pal-posix-qnx8", + patches = ["//patches:qnx8_iceoryx2.patch"], + repositories = ["crate_index"], +) +crate.spec( + git = "https://github.com/qorix-group/iceoryx2.git", + package = "iceoryx2-bb-system-types-qnx8", + rev = "9f5622f554de48a7a296e1a5a71200b01e35a502", +) +crate.spec( + git = "https://github.com/qorix-group/iceoryx2.git", + package = "iceoryx2-bb-testing-qnx8", + rev = "9f5622f554de48a7a296e1a5a71200b01e35a502", +) +crate.spec( + git = "https://github.com/qorix-group/iceoryx2.git", + package = "iceoryx2-bb-threadsafe-qnx8", + rev = "9f5622f554de48a7a296e1a5a71200b01e35a502", +) +crate.spec( + git = "https://github.com/qorix-group/iceoryx2.git", + package = "iceoryx2-pal-concurrency-sync-qnx8", + rev = "9f5622f554de48a7a296e1a5a71200b01e35a502", +) +crate.spec( + git = "https://github.com/qorix-group/iceoryx2.git", + package = "iceoryx2-cal-qnx8", + rev = "9f5622f554de48a7a296e1a5a71200b01e35a502", +) +crate.spec( + package = "indicatif", + version = "0.18.0", +) +crate.spec( + package = "indicatif-log-bridge", + version = "0.2.3", +) +crate.spec( + features = ["std"], + package = "log", + version = "0.4.27", +) +crate.spec( + features = ["checkpoint"], + package = "loom", + version = "0.7.2", +) +crate.spec( + features = [ + "net", + "os-poll", + ], + package = "mio", + version = "1.0.4", +) +crate.spec( + features = [ + "fs", + "mman", + "process", + "signal", + ], + package = "nix", + version = "0.30.1", +) +crate.spec( + package = "cliclack", + version = "0.3.8", +) +crate.spec( + features = ["experimental-derive"], + package = "postcard", + version = "1.1.3", +) +crate.spec( + package = "proc-macro2", + version = "1.0", +) +crate.spec( + package = "prost", + version = "0.14.1", +) +crate.spec( + package = "prost-build", + version = "0.14.1", +) +crate.spec( + package = "prost-types", + version = "0.14.1", +) +crate.spec( + package = "tonic", + version = "0.14.2", +) +crate.spec( + package = "protoc-gen-prost", + version = "0.4.0", +) +crate.annotation( + crate = "protoc-gen-prost", + gen_binaries = ["protoc-gen-prost"], +) +crate.spec( + package = "protoc-gen-tonic", + version = "0.4.1", +) +crate.annotation( + crate = "protoc-gen-tonic", + gen_binaries = ["protoc-gen-tonic"], +) +crate.spec( + package = "quote", + version = "1.0", +) +crate.spec( + package = "rand", + version = "0.9.2", +) +crate.spec( + package = "serde", + version = "1.0.219", +) +crate.spec( + package = "serde_json", + version = "1.0.143", +) +crate.spec( + package = "socket2", + version = "0.6.0", +) +crate.spec( + features = ["full"], + package = "syn", + version = "2.0", +) +crate.spec( + features = [ + "formatting", + "macros", + "serde", + ], + package = "time", + version = "0.3.41", +) +crate.spec( + features = [ + "rt", + "macros", + "sync", + "net", + "time", + "signal", + "rt-multi-thread", + ], + package = "tokio", + version = "1.47.1", +) +crate.spec( + package = "tokio-seqpacket", + version = "0.8.0", +) +crate.spec( + features = [ + "codec", + "net", + ], + package = "tokio-util", + version = "0.7.16", +) +crate.spec( + default_features = False, + features = [ + "attributes", + ], + package = "tracing", + version = "0.1.41", +) +crate.spec( + default_features = False, + features = [ + "json", + "smallvec", + "fmt", + "ansi", + "tracing-log", + "std", + ], + package = "tracing-subscriber", + version = "0.3.19", +) +crate.spec( + package = "signal-hook", + version = "0.3.18", +) +crate.spec( + features = ["termination"], + package = "ctrlc", + version = "3.4.4", +) +crate.spec( + package = "paste", + version = "1.0.15", +) +crate.spec( + package = "arrayvec", + version = "0.7.6", +) +crate.spec( + package = "ipc-channel", + version = "0.20.2", +) +crate.spec( + package = "tinyjson", + version = "2.5.1", +) +crate.spec( + package = "adler32", + version = "1.2.0", +) +crate.spec( + package = "pico-args", + version = "0.5.0", +) +crate.spec( + package = "tempfile", + version = "3.20.0", +) +crate.from_specs( + name = "crate_index", + # This shall not be here but rules_rust 0.61.0 or even 0.67.0 does not correct finds out that when we use out platform it shall append + # aarch64-unknown-nto-qnx710 or best aarch64-unknown-nto00 which is not fully supported in any rust_rules version for now (even if rustc 1.86.0 already supports it) + supported_platform_triples = [ + "aarch64-unknown-nto-qnx710", # This enables also QNX8 becasue OS and CPU for platform matches.... + "x86_64-pc-nto-qnx710", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-none", + "aarch64-unknown-linux-gnu", + ], +) +use_repo(crate, "crate_index") diff --git a/modules/score_crates/0.0.8/patches/module_dot_bazel_version.patch b/modules/score_crates/0.0.8/patches/module_dot_bazel_version.patch new file mode 100644 index 0000000..f899f58 --- /dev/null +++ b/modules/score_crates/0.0.8/patches/module_dot_bazel_version.patch @@ -0,0 +1,11 @@ +--- a/MODULE.bazel ++++ b/MODULE.bazel +@@ -12,7 +12,7 @@ + # ******************************************************************************* + module( + name = "score_crates", +- version = "0.0.6", ++ version = "0.0.8", + compatibility_level = 0, + ) + diff --git a/modules/score_crates/0.0.8/source.json b/modules/score_crates/0.0.8/source.json new file mode 100644 index 0000000..e83b4cf --- /dev/null +++ b/modules/score_crates/0.0.8/source.json @@ -0,0 +1,9 @@ +{ + "integrity": "sha256-w63MQtGZgWgFSXo7qgVtyENUhvfT+3L/XzILLHmTc1k=", + "strip_prefix": "score-crates-0.0.8", + "url": "https://github.com/eclipse-score/score-crates/archive/refs/tags/v0.0.8.tar.gz", + "patch_strip": 1, + "patches": { + "module_dot_bazel_version.patch": "sha256-qprXbI1zANh6wuf1+fPJD8lA9g0Wv/rYk7d5ynXnQgM=" + } +} diff --git a/modules/score_crates/metadata.json b/modules/score_crates/metadata.json index 83e6ce0..dc9c959 100644 --- a/modules/score_crates/metadata.json +++ b/modules/score_crates/metadata.json @@ -5,6 +5,7 @@ "github:eclipse-score/score-crates" ], "versions": [ + "0.0.8", "0.0.7", "0.0.6", "0.0.5",