bazelbuild / bazel-central-registry

The central registry of Bazel modules for the Bzlmod external dependency system.
https://registry.bazel.build
Apache License 2.0
252 stars 319 forks source link

feat: add `rules_tar@1.0.0-beta.1` #2467

Closed mattyclarkson closed 3 months ago

mattyclarkson commented 3 months ago
load("@rules_tar//tar/unpack:defs.bzl", "tar_unpack")
load("@rules_tar//tar/extract:defs.bzl", "tar_extract")

tar_unpack(
    name = "unpack",
    src = "some.tar.bz2",
)

tar_extract(
    name = "extract",
    src = "some.tar.zst",
    outs = [
        "a/specific/member.txt",
        "another/member.txt",
    ]
)

Does not perform any ceation: rules_pkg for that (at least for the foreseeable future)

bazel-io commented 3 months ago

Hello @bazelbuild/bcr-maintainers, modules without existing maintainers (rules_tar) have been updated in this PR. Please review the changes.