-
Notifications
You must be signed in to change notification settings - Fork 19
/
deps.bzl
40 lines (33 loc) · 1.11 KB
/
deps.bzl
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
"""legacy API for bazeldnf dependencies"""
load(
"@bazeldnf//bazeldnf:defs.bzl",
_rpmtree = "rpmtree",
_tar2files = "tar2files",
_xattrs = "xattrs",
)
load(
"@bazeldnf//bazeldnf:deps.bzl",
_bazeldnf_dependencies = "bazeldnf_dependencies",
_rpm = "rpm",
)
def rpm(*args, **kwargs):
# buildifier: disable=print
print("import rpm method from @bazeldnf//bazeldnf:defs.bzl")
_rpm(*args, **kwargs)
def rpmtree(*args, **kwargs):
# buildifier: disable=print
print("import rpmtree method from @bazeldnf//bazeldnf:defs.bzl")
_rpmtree(*args, **kwargs)
def tar2files(*args, **kwargs):
# buildifier: disable=print
print("import tar2files method from @bazeldnf//bazeldnf:defs.bzl")
_tar2files(*args, **kwargs)
def xattrs(*args, **kwargs):
# buildifier: disable=print
print("import xattrs method from @bazeldnf//bazeldnf:defs.bzl")
_xattrs(*args, **kwargs)
def bazeldnf_dependencies():
"""Download bazeldnf dependencies"""
# buildifier: disable=print
print("import bazeldnf_dependencies method from @bazeldnf//bazeldnf:deps.bzl")
_bazeldnf_dependencies()