Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
cristifalcas committed Jun 18, 2022
1 parent 9b504c3 commit ad90432
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 13 deletions.
8 changes: 0 additions & 8 deletions tools/BUILD → build_tar/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ py_library(
"archive.py",
],
srcs_version = "PY3",
visibility = [
"//experimental:__pkg__",
"//tests:__pkg__",
],
)

py_library(
Expand All @@ -21,10 +17,6 @@ py_library(
"helpers.py",
],
srcs_version = "PY3",
visibility = [
"//experimental:__pkg__",
"//tests:__pkg__",
],
)

py_binary(
Expand Down
5 changes: 5 additions & 0 deletions build_tar/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# build_tar

Tool to build tar files from a list of inputs.

All files here where copied over from [rules_pkg repo](https://github.com/bazelbuild/rules_pkg/tree/0.4.0/pkg).
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion cacerts/cacerts.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ cacerts = rule(
),
# Implicit dependencies.
"_build_tar": attr.label(
default = Label("//tools:build_tar"),
default = Label("//build_tar"),
cfg = "host",
executable = True,
),
Expand Down
2 changes: 1 addition & 1 deletion cacerts/java.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ file with the JKS file at etc/ssl/certs/java/cacerts.
allow_single_file = True,
),
"_build_tar": attr.label(
default = Label("//tools:build_tar"),
default = Label("//build_tar"),
cfg = "host",
executable = True,
),
Expand Down
2 changes: 1 addition & 1 deletion locale/locale.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ locale = rule(
),
# Implicit dependencies.
"_build_tar": attr.label(
default = Label("//tools:build_tar"),
default = Label("//build_tar"),
cfg = "host",
executable = True,
),
Expand Down
2 changes: 1 addition & 1 deletion os_release/os_release.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ os_release = rule(
),
# Implicit dependencies.
"_build_tar": attr.label(
default = Label("//tools:build_tar"),
default = Label("//build_tar"),
cfg = "host",
executable = True,
),
Expand Down
2 changes: 1 addition & 1 deletion package_manager/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ py_library(
name = "util",
srcs = [
"util.py",
"//tools:build_tar",
"//build_tar",
],
)

Expand Down

0 comments on commit ad90432

Please sign in to comment.