aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar dannark <dannark@google.com>2018-07-02 03:10:30 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-07-02 03:12:12 -0700
commite5a7db9a97f4a5be7a6584678592bad777aa6139 (patch)
tree9c2744f3a1c890ae6465aa92f563b7eae843b97a /tools
parentf45c22407e6b00fcba706eb62141cb9036bd38d7 (diff)
Delete git_repositories.bzl. The file has been a simple redirect to git.bzl for well over a year and a half.
RELNOTES[INC]: Loading @bazel_tools//tools/build_defs/repo:git_repositories.bzl no longer works. Load @bazel_tools//tools/build_defs/repo:git.bzl instead. PiperOrigin-RevId: 202923049
Diffstat (limited to 'tools')
-rw-r--r--tools/build_defs/repo/git_repositories.bzl32
1 files changed, 0 insertions, 32 deletions
diff --git a/tools/build_defs/repo/git_repositories.bzl b/tools/build_defs/repo/git_repositories.bzl
deleted file mode 100644
index 14d2815e37..0000000000
--- a/tools/build_defs/repo/git_repositories.bzl
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 2015 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.
-"""Redirects for git repository rules."""
-
-load(
- ":git.bzl",
- original_git_repository = "git_repository",
- original_new_git_repository = "new_git_repository",
-)
-
-def git_repository(**kwargs):
- print("The git_repository rule has been moved. Please load " +
- "@bazel_tools//tools/build_defs/repo:git.bzl instead. This redirect " +
- "will be removed in the future.")
- original_git_repository(**kwargs)
-
-def new_git_repository(**kwargs):
- print("The new_git_repository rule has been moved. Please load " +
- "@bazel_tools//tools/build_defs/repo:git.bzl instead. This redirect " +
- "will be removed in the future.")
- original_new_git_repository(**kwargs)