summaryrefslogtreecommitdiff
path: root/pkg/releasing/BUILD
blob: 4036c0fd838154f952c485dc222eaf704e5a0e1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
load("@rules_python//python:defs.bzl", "py_binary", "py_library", "py_test")

package(
    default_applicable_licenses = ["//:license"],
    default_visibility = ["//visibility:public"],
)

# WARNING: 2021-06-28. This is experimental and subject to change.

# Sample usage:
# load("@rules_pkg//releasing:defs.bzl", "print_rel_notes")
# print_rel_notes(
#     name = "relnotes",
#     repo = "rules_pkg",
#     version = "2.1",
#     outs = ["relnotes.txt"],
# )

filegroup(
    name = "standard_package",
    srcs = ["BUILD"] + glob([
        "*.bzl",
        "*.py",
    ]),
    visibility = [
        "//distro:__pkg__",
        "//pkg:__pkg__",
    ],
)

py_library(
    name = "release_utils",
    srcs = [
        "__init__.py",
        "release_tools.py",
    ],
    imports = ["../.."],
    srcs_version = "PY3",
)

py_binary(
    name = "print_rel_notes",
    srcs = [
        "print_rel_notes.py",
    ],
    imports = ["../.."],
    python_version = "PY3",
    deps = [
        ":release_utils",
    ],
)

py_test(
    name = "release_tools_test",
    srcs = ["release_tools_test.py"],
    python_version = "PY3",
    deps = [
        ":release_utils",
    ],
)

# This is an internal tool. Use at your own risk.
py_binary(
    name = "git_changelog_private",
    srcs = [
        "git_changelog_private.py",
    ],
    srcs_version = "PY3",
    # TODO(https://github.com/bazelbuild/bazel/issues/7377): Make this private.
    visibility = ["//visibility:public"],
)