Replace calls to `third_party_http_archive` with calls to `tf_http_archive` alias. Disable 'mirror.tensorflow.org' check. A number of users don't seem to follow the requirements, which were not checked correctly before. This wasn't discovered by presubmits because the check is in the repo rule, which only triggers if the repo is actually used. PiperOrigin-RevId: 359355039 Change-Id: Ieddab6fd91b96e6e22afccdad21c8fa30b795ff4
18 lines
710 B
Python
18 lines
710 B
Python
"""Loads a lightweight subset of the ICU library for Unicode processing."""
|
|
|
|
load("//third_party:repo.bzl", "tf_http_archive")
|
|
|
|
def repo():
|
|
tf_http_archive(
|
|
name = "icu",
|
|
strip_prefix = "icu-release-64-2",
|
|
sha256 = "dfc62618aa4bd3ca14a3df548cd65fe393155edd213e49c39f3a30ccd618fc27",
|
|
urls = [
|
|
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/unicode-org/icu/archive/release-64-2.zip",
|
|
"https://github.com/unicode-org/icu/archive/release-64-2.zip",
|
|
],
|
|
build_file = "//third_party/icu:BUILD.bazel",
|
|
system_build_file = "//third_party/icu:BUILD.system",
|
|
patch_file = "//third_party/icu:udata.patch",
|
|
)
|