From 33548d3b7be6f5291a64bdbf6b8ef20589612978 Mon Sep 17 00:00:00 2001 From: Alexander Soelberg Heidarsson <89837986+alex5517@users.noreply.github.com> Date: Thu, 4 Jul 2024 12:44:03 +0200 Subject: [PATCH] remove deps.bzl --- BUILD | 11 ----------- deps.bzl | 45 --------------------------------------------- 2 files changed, 56 deletions(-) delete mode 100644 deps.bzl diff --git a/BUILD b/BUILD index 9f3a116..a3cf969 100644 --- a/BUILD +++ b/BUILD @@ -4,14 +4,3 @@ load("@bazel_gazelle//:def.bzl", "gazelle") # gazelle:go_naming_convention go_default_library # gazelle:prefix github.com/neticdk/go-zenoss gazelle(name = "gazelle") - -gazelle( - name = "gazelle-update-repos", - args = [ - "-from_file=go.mod", - "-to_macro=deps.bzl%go_dependencies", - "-build_file_proto_mode=disable_global", - "-prune", - ], - command = "update-repos", -) diff --git a/deps.bzl b/deps.bzl deleted file mode 100644 index 42252e6..0000000 --- a/deps.bzl +++ /dev/null @@ -1,45 +0,0 @@ -load("@bazel_gazelle//:deps.bzl", "go_repository") - -def go_dependencies(): - go_repository( - name = "com_github_davecgh_go_spew", - build_file_proto_mode = "disable_global", - importpath = "github.com/davecgh/go-spew", - sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=", - version = "v1.1.1", - ) - go_repository( - name = "com_github_pmezard_go_difflib", - build_file_proto_mode = "disable_global", - importpath = "github.com/pmezard/go-difflib", - sum = "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=", - version = "v1.0.0", - ) - go_repository( - name = "com_github_stretchr_objx", - build_file_proto_mode = "disable_global", - importpath = "github.com/stretchr/objx", - sum = "h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c=", - version = "v0.5.0", - ) - go_repository( - name = "com_github_stretchr_testify", - build_file_proto_mode = "disable_global", - importpath = "github.com/stretchr/testify", - sum = "h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=", - version = "v1.8.2", - ) - go_repository( - name = "in_gopkg_check_v1", - build_file_proto_mode = "disable_global", - importpath = "gopkg.in/check.v1", - sum = "h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=", - version = "v0.0.0-20161208181325-20d25e280405", - ) - go_repository( - name = "in_gopkg_yaml_v3", - build_file_proto_mode = "disable_global", - importpath = "gopkg.in/yaml.v3", - sum = "h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=", - version = "v3.0.1", - )