From a7563126a0a2e607356bb2c17f8a3838542ee5ec Mon Sep 17 00:00:00 2001 From: Christoph Blecker Date: Wed, 20 Mar 2019 16:05:59 -0700 Subject: Convert to use go modules --- Gopkg.lock | 24 ------------------------ Gopkg.toml | 6 ------ go.mod | 8 ++++++++ go.sum | 6 ++++++ 4 files changed, 14 insertions(+), 30 deletions(-) delete mode 100644 Gopkg.lock delete mode 100644 Gopkg.toml create mode 100644 go.mod create mode 100644 go.sum diff --git a/Gopkg.lock b/Gopkg.lock deleted file mode 100644 index 53091521..00000000 --- a/Gopkg.lock +++ /dev/null @@ -1,24 +0,0 @@ -# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. - - -[[projects]] - name = "github.com/client9/misspell" - packages = [ - ".", - "cmd/misspell" - ] - revision = "b90dc15cfd220ecf8bbc9043ecb928cef381f011" - version = "v0.3.4" - -[[projects]] - name = "gopkg.in/yaml.v2" - packages = ["."] - revision = "5420a8b6744d3b0345ab293f6fcba19c978f1183" - version = "v2.2.1" - -[solve-meta] - analyzer-name = "dep" - analyzer-version = 1 - inputs-digest = "15876bcf5bae26a3d8ca6af5a0463be3842912808256ce8818c2f34e0b3859fd" - solver-name = "gps-cdcl" - solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml deleted file mode 100644 index a9c8f5c1..00000000 --- a/Gopkg.toml +++ /dev/null @@ -1,6 +0,0 @@ -required = ["github.com/client9/misspell/cmd/misspell"] - -[prune] - go-tests = true - unused-packages = true - non-go = true diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..60ce7117 --- /dev/null +++ b/go.mod @@ -0,0 +1,8 @@ +module k8s.io/community + +go 1.12 + +require ( + github.com/client9/misspell v0.3.4 + gopkg.in/yaml.v2 v2.2.2 +) diff --git a/go.sum b/go.sum new file mode 100644 index 00000000..36e682e6 --- /dev/null +++ b/go.sum @@ -0,0 +1,6 @@ +github.com/client9/misspell v0.3.4 h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -- cgit v1.2.3