forked from bazelbuild/bazel-central-registry
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main'
- Loading branch information
Showing
1,355 changed files
with
42,830 additions
and
445 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.4.0 | ||
7.0.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Dismiss Stale PR Approvals | ||
on: | ||
pull_request_target: | ||
types: [opened, synchronize, reopened] | ||
branches: | ||
- main | ||
|
||
jobs: | ||
dismiss_approvals: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Harden Runner | ||
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1 | ||
with: | ||
egress-policy: audit | ||
|
||
- name: Run BCR PR Reviewer | ||
uses: bazelbuild/continuous-integration/actions/bcr-pr-reviewer@4b83ef1d08decb055ac7a6f864c3759fa22984a4 # master | ||
with: | ||
# This token needs to be updated annually on Feb 05. | ||
token: ${{ secrets.BCR_PR_REVIEW_HELPER_TOKEN }} | ||
action-type: dismiss_approvals |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Notify Module Maintainers For PR Review | ||
on: | ||
pull_request_target: | ||
branches: | ||
- main | ||
paths: | ||
- 'modules/**' | ||
|
||
jobs: | ||
notify_maintainers: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Harden Runner | ||
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1 | ||
with: | ||
egress-policy: audit | ||
|
||
- name: Run BCR PR Reviewer | ||
uses: bazelbuild/continuous-integration/actions/bcr-pr-reviewer@4b83ef1d08decb055ac7a6f864c3759fa22984a4 # master | ||
with: | ||
# This token needs to be updated annually on Feb 05. | ||
token: ${{ secrets.BCR_PR_REVIEW_HELPER_TOKEN }} | ||
action-type: notify_maintainers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Review BCR Pull Requests | ||
on: | ||
schedule: | ||
- cron: "*/10 * * * *" # Run this action every 10 mins | ||
workflow_dispatch: # So that this can be triggered manually | ||
|
||
jobs: | ||
review_prs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Harden Runner | ||
if: github.repository_owner == 'bazelbuild' | ||
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1 | ||
with: | ||
egress-policy: audit | ||
|
||
- name: Run BCR PR Reviewer | ||
if: github.repository_owner == 'bazelbuild' | ||
uses: bazelbuild/continuous-integration/actions/bcr-pr-reviewer@4b83ef1d08decb055ac7a6f864c3759fa22984a4 # master | ||
with: | ||
# This token needs to be updated annually on Feb 05. | ||
token: ${{ secrets.BCR_PR_REVIEW_HELPER_TOKEN }} | ||
action-type: review_prs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
tools/__pycache__ | ||
tools/node_modules | ||
.vscode | ||
/bazel-* | ||
.vscode | ||
MODULE.bazel.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
"""Module definition for Abseil LTS 20230802.1.""" | ||
module( | ||
name = "abseil-cpp", | ||
version = "20230802.1", | ||
compatibility_level = 1, | ||
) | ||
bazel_dep(name = "rules_cc", version = "0.0.8") | ||
bazel_dep(name = "platforms", version = "0.0.7") | ||
bazel_dep(name = "bazel_skylib", version = "1.4.1") | ||
bazel_dep(name = "googletest", version = "1.14.0", repo_name = "com_google_googletest") | ||
bazel_dep(name = "google_benchmark", version = "1.8.2", repo_name = "com_github_google_benchmark", dev_dependency=True) |
14 changes: 14 additions & 0 deletions
14
modules/abseil-cpp/20230802.1/patches/module_dot_bazel.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- MODULE.bazel | ||
+++ MODULE.bazel | ||
@@ -0,0 +1,11 @@ | ||
+"""Module definition for Abseil LTS 20230802.1.""" | ||
+module( | ||
+ name = "abseil-cpp", | ||
+ version = "20230802.1", | ||
+ compatibility_level = 1, | ||
+) | ||
+bazel_dep(name = "rules_cc", version = "0.0.8") | ||
+bazel_dep(name = "platforms", version = "0.0.7") | ||
+bazel_dep(name = "bazel_skylib", version = "1.4.1") | ||
+bazel_dep(name = "googletest", version = "1.14.0", repo_name = "com_google_googletest") | ||
+bazel_dep(name = "google_benchmark", version = "1.8.2", repo_name = "com_github_google_benchmark", dev_dependency=True) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
matrix: | ||
platform: | ||
- centos7_java11_devtoolset10 | ||
- debian10 | ||
- ubuntu2004 | ||
- macos | ||
- windows | ||
tasks: | ||
verify_targets: | ||
name: Verify build targets | ||
platform: ${{ platform }} | ||
build_flags: | ||
- '--cxxopt=-std=c++14' | ||
build_targets: | ||
- '@abseil-cpp//absl/strings' | ||
- '@abseil-cpp//absl/flags:flag' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"url": "https://github.com/abseil/abseil-cpp/archive/refs/tags/20230802.1.tar.gz", | ||
"integrity": "sha256-mHzpjwLu+6+TDW44qxaqBXNyNNevurLVxOp62+UMKO0=", | ||
"strip_prefix": "abseil-cpp-20230802.1", | ||
"patch_strip": 0, | ||
"patches": { | ||
"module_dot_bazel.patch": "sha256-QRZ3pjptCi+f7kEUY9rJZYln4tTl6bZu11laagT0YDk=" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright 2024 The Abseil Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# https://bazel.build/external/overview#bzlmod | ||
|
||
module( | ||
name = "abseil-cpp", | ||
version = "20240116.0", | ||
compatibility_level = 1, | ||
) | ||
|
||
# Only direct dependencies need to be listed below. | ||
# Please keep the versions in sync with the versions in the WORKSPACE file. | ||
|
||
bazel_dep(name = "bazel_skylib", | ||
version = "1.5.0") | ||
|
||
bazel_dep(name = "google_benchmark", | ||
version = "1.8.3", | ||
repo_name = "com_github_google_benchmark", | ||
dev_dependency = True) | ||
|
||
bazel_dep(name = "googletest", | ||
version = "1.14.0.bcr.1", | ||
repo_name = "com_google_googletest") | ||
|
||
bazel_dep(name = "platforms", | ||
version = "0.0.8") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
matrix: | ||
platform: | ||
- centos7_java11_devtoolset10 | ||
- debian10 | ||
- ubuntu2004 | ||
- macos | ||
- windows | ||
tasks: | ||
verify_targets: | ||
name: Verify build targets | ||
platform: ${{ platform }} | ||
build_flags: | ||
- '--cxxopt=-std=c++14' | ||
build_targets: | ||
- '@abseil-cpp//absl/strings' | ||
- '@abseil-cpp//absl/flags:flag' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"url": "https://github.com/abseil/abseil-cpp/releases/download/20240116.0/abseil-cpp-20240116.0.tar.gz", | ||
"integrity": "sha256-M4QgRIsUDw39Gh6jw85xs7wXIHHyT02aV9WbRQN9pEA=", | ||
"strip_prefix": "abseil-cpp-20240116.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright 2024 The Abseil Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# https://bazel.build/external/overview#bzlmod | ||
|
||
module( | ||
name = "abseil-cpp", | ||
version = "20240116.1", | ||
compatibility_level = 1, | ||
) | ||
|
||
# Only direct dependencies need to be listed below. | ||
# Please keep the versions in sync with the versions in the WORKSPACE file. | ||
|
||
bazel_dep(name = "bazel_skylib", | ||
version = "1.5.0") | ||
|
||
bazel_dep(name = "google_benchmark", | ||
version = "1.8.3", | ||
repo_name = "com_github_google_benchmark", | ||
dev_dependency = True) | ||
|
||
bazel_dep(name = "googletest", | ||
version = "1.14.0.bcr.1", | ||
repo_name = "com_google_googletest") | ||
|
||
bazel_dep(name = "platforms", | ||
version = "0.0.8") |
11 changes: 11 additions & 0 deletions
11
modules/abseil-cpp/20240116.1/patches/module_dot_bazel.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- MODULE.bazel | ||
+++ MODULE.bazel | ||
@@ -16,7 +16,7 @@ | ||
|
||
module( | ||
name = "abseil-cpp", | ||
- version = "20240116.0", | ||
+ version = "20240116.1", | ||
compatibility_level = 1, | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
matrix: | ||
bazel: | ||
- 6.x | ||
- 7.x | ||
platform: | ||
- centos7_java11_devtoolset10 | ||
- debian10 | ||
- ubuntu2004 | ||
- macos | ||
- windows | ||
tasks: | ||
verify_targets: | ||
name: Verify build targets | ||
platform: ${{ platform }} | ||
bazel: ${{ bazel }} | ||
build_flags: | ||
- '--cxxopt=-std=c++14' | ||
build_targets: | ||
- '@abseil-cpp//absl/strings' | ||
- '@abseil-cpp//absl/flags:flag' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"url": "https://github.com/abseil/abseil-cpp/releases/download/20240116.1/abseil-cpp-20240116.1.tar.gz", | ||
"integrity": "sha256-PHQyBN94NmrS6vI21mMdg/a8ko0XBd0AALhy5Ttz3Go=", | ||
"strip_prefix": "abseil-cpp-20240116.1", | ||
"patch_strip": 0, | ||
"patches": { | ||
"module_dot_bazel.patch": "sha256-H6J0U5xTQRVVGFkTsBioOCeWetuCfpavigN8YvpQkIQ=" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
{ | ||
"homepage": "https://github.com/abseil/abseil-cpp", | ||
"maintainers": [], | ||
"maintainers": [ | ||
{ | ||
"email": "[email protected]", | ||
"github": "derekmauro", | ||
"name": "Derek Mauro" | ||
} | ||
], | ||
"repository": [ | ||
"github:abseil/abseil-cpp" | ||
], | ||
|
@@ -10,7 +16,10 @@ | |
"20220623.1", | ||
"20230125.1", | ||
"20230802.0", | ||
"20230802.0.bcr.1" | ||
"20230802.0.bcr.1", | ||
"20230802.1", | ||
"20240116.0", | ||
"20240116.1" | ||
], | ||
"yanked_versions": {} | ||
} |
Oops, something went wrong.