Skip to content

Commit d04fb9d

Browse files
chore(deps): update dependency tar.bzl to v0.9.0 (#679)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [tar.bzl](https://redirect.github.com/bazel-contrib/tar.bzl) | http_archive | minor | `v0.8.1` → `v0.9.0` | --- ### Release Notes <details> <summary>bazel-contrib/tar.bzl (tar.bzl)</summary> ### [`v0.9.0`](https://redirect.github.com/bazel-contrib/tar.bzl/releases/tag/v0.9.0) [Compare Source](https://redirect.github.com/bazel-contrib/tar.bzl/compare/v0.8.1...v0.9.0) #### Using Bzlmod with Bazel 6 or greater 1. (Bazel 6 only) Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "tar.bzl", version = "0.9.0") ``` #### Using WORKSPACE Paste this snippet into your `WORKSPACE.bazel` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "tar.bzl", sha256 = "4bd59d41aac03b6c4cf3f6acd8c1c50355a19d2887a140e793da54d40e116913", strip_prefix = "tar.bzl-0.9.0", url = "https://github.com/bazel-contrib/tar.bzl/releases/download/v0.9.0/tar.bzl-v0.9.0.tar.gz", ) load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") ###################### # tar.bzl dependencies # ###################### http_archive( name = "bazel_skylib", sha256 = "bc283cdfcd526a52c3201279cda4bc298652efa898b10b4db0837dc51652756f", urls = [ "https://github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz", "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.7.1/bazel-skylib-1.7.1.tar.gz", ], ) http_archive( name = "aspect_bazel_lib", sha256 = "db7da732db4dece80cd6d368220930950c9306ff356ebba46498fe64e65a3945", strip_prefix = "bazel-lib-2.19.3", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.19.3/bazel-lib-v2.19.3.tar.gz", ) http_archive( name = "bazel_lib", sha256 = "6fd3b1e1a38ca744f9664be4627ced80895c7d2ee353891c172f1ab61309c933", strip_prefix = "bazel-lib-3.0.0", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.0.0/bazel-lib-v3.0.0.tar.gz", ) # Back-port https://github.com/bazelbuild/bazel-central-registry/blob/main/modules/gawk/5.3.2.bcr.1/source.json # to WORKSPACE semantics http_archive( name = "gawk", integrity = "sha256-+MNIZQnecFGSE4sA7ywAu73Q6Eww1cB9I/xzqdxMycw=", remote_file_integrity = { "BUILD.bazel": "sha256-dt89+9IJ3UzQvoKzyXOiBoF6ok/4u4G0cb0Ja+plFy0=", "posix/config_darwin.h": "sha256-gPVRlvtdXPw4Ikwd5S89wPPw5AaiB2HTHa1KOtj40mU=", "posix/config_linux.h": "sha256-iEaeXYBUCvprsIEEi5ipwqt0JV8d73+rLgoBYTegC6Q=", }, remote_file_urls = { f: ["https://raw.githubusercontent.com/bazelbuild/bazel-central-registry/refs/heads/main/modules/gawk/5.3.2.bcr.1/overlay/" + f] for f in [ "BUILD.bazel", "posix/config_darwin.h", "posix/config_linux.h", ] }, strip_prefix = "gawk-5.3.2", urls = ["https://ftpmirror.gnu.org/gnu/gawk/gawk-5.3.2.tar.xz"], ) ###################### # setup # ###################### load("@&#8203;tar.bzl//tar:extensions.bzl", "create_repositories") create_repositories() register_toolchains("@&#8203;bsd_tar_toolchains//:all") load("@&#8203;bazel_lib//lib:repositories.bzl", "bazel_lib_dependencies", "bazel_lib_register_toolchains") bazel_lib_dependencies() bazel_lib_register_toolchains() load("@&#8203;bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") load("@&#8203;platforms//host:extension.bzl", "host_platform_repo") maybe( host_platform_repo, name = "host_platform", ) ``` #### What's Changed - feat: bump gawk package by [@&#8203;manuelnaranjo](https://redirect.github.com/manuelnaranjo) in [#&#8203;94](https://redirect.github.com/bazel-contrib/tar.bzl/pull/94) #### New Contributors - [@&#8203;manuelnaranjo](https://redirect.github.com/manuelnaranjo) made their first contribution in [#&#8203;94](https://redirect.github.com/bazel-contrib/tar.bzl/pull/94) **Full Changelog**: <bazel-contrib/tar.bzl@v0.8.0...v0.9.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/bazel-contrib/toolchains_llvm). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My44LjUiLCJ1cGRhdGVkSW5WZXIiOiI0My44LjUiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent bd8b32c commit d04fb9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ http_archive(
4141

4242
http_archive(
4343
name = "tar.bzl",
44-
sha256 = "8bac5a2b43f9988e4e69bb03a242b9cbed2c53f9cd4c989f879aaa441bda03f4",
45-
strip_prefix = "tar.bzl-0.8.1",
46-
url = "https://github.com/bazel-contrib/tar.bzl/releases/download/v0.8.1/tar.bzl-v0.8.1.tar.gz",
44+
sha256 = "4bd59d41aac03b6c4cf3f6acd8c1c50355a19d2887a140e793da54d40e116913",
45+
strip_prefix = "tar.bzl-0.9.0",
46+
url = "https://github.com/bazel-contrib/tar.bzl/releases/download/v0.9.0/tar.bzl-v0.9.0.tar.gz",
4747
)
4848

4949
load("@tar.bzl//tar:extensions.bzl", "create_repositories")

0 commit comments

Comments
 (0)