summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Blecker <admin@toph.ca>2019-03-20 16:05:59 -0700
committerChristoph Blecker <admin@toph.ca>2019-03-20 16:05:59 -0700
commita7563126a0a2e607356bb2c17f8a3838542ee5ec (patch)
tree69cdc440618a656e52b4bd599f8073946f942b82
parent3b8b7b729959421f81972ae841f632299c049bc2 (diff)
Convert to use go modules
-rw-r--r--Gopkg.lock24
-rw-r--r--Gopkg.toml6
-rw-r--r--go.mod8
-rw-r--r--go.sum6
4 files changed, 14 insertions, 30 deletions
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=