-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathBUILD
More file actions
117 lines (105 loc) · 2.9 KB
/
BUILD
File metadata and controls
117 lines (105 loc) · 2.9 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Copyright 2019 The Bazel Authors. All rights reserved.
#
# 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
#
# http://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.
# -*- coding: utf-8 -*-
load("@rules_python//python:defs.bzl", "py_binary", "py_library")
package(default_applicable_licenses = ["//:license"])
exports_files(
glob([
"*.bzl",
]),
visibility = ["//visibility:public"],
)
constraint_setting(name = "not_compatible_setting")
constraint_value(
name = "not_compatible",
constraint_setting = ":not_compatible_setting",
visibility = ["//visibility:public"],
)
filegroup(
name = "standard_package",
srcs = glob([
"*.bzl",
"*.py",
"*.tpl",
]) + [
"BUILD",
"//pkg/legacy:standard_package",
"//pkg/rpm:standard_package",
],
visibility = [
"//distro:__pkg__",
"//pkg:__pkg__",
],
)
filegroup(
name = "rules_pkg_lib",
srcs = [
":standard_package",
"//pkg:install.bzl",
"//pkg:pkg.bzl",
"//pkg:rpm_pfg.bzl",
"//pkg/private:standard_package",
"//pkg/private/deb:standard_package",
"//pkg/private/tar:standard_package",
"//pkg/private/zip:standard_package",
"//pkg/releasing:standard_package",
"@bazel_skylib//lib:paths",
"@rules_python//python:defs.bzl",
],
visibility = ["//visibility:public"],
)
# Used by pkg_rpm in rpm.bzl.
py_binary(
name = "make_rpm",
srcs = ["make_rpm.py"],
imports = [".."],
python_version = "PY3",
srcs_version = "PY3",
target_compatible_with = select({
"//toolchains/rpm:have_rpmbuild": [],
"//conditions:default": [":not_compatible"],
}),
visibility = ["//visibility:public"],
deps = [
"//pkg:make_rpm_lib",
"//pkg/private:archive",
],
)
py_library(
name = "make_rpm_lib",
srcs = ["make_rpm.py"],
imports = [".."],
srcs_version = "PY3",
visibility = [
"//experimental:__subpackages__",
"//tests:__subpackages__",
],
deps = [
"//pkg/private:archive",
"//pkg/private:helpers",
],
)
py_binary(
name = "filter_directory",
srcs = ["filter_directory.py"],
python_version = "PY3",
visibility = ["//visibility:public"],
)
py_library(
name = "filter_directory_lib",
srcs = ["filter_directory.py"],
srcs_version = "PY3",
visibility = ["//visibility:public"],
)
exports_files(["verify_archive_test_main.py.tpl"])