Skip to content

Commit c7a171f

Browse files
authored
Upgraded to newest bingo. (thanos-io#3718)
Signed-off-by: Bartlomiej Plotka <[email protected]>
1 parent 855c508 commit c7a171f

9 files changed

+73
-203
lines changed

.bingo/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ This is directory which stores Go modules with pinned buildable package that is
55
* Run `bingo get` to install all tools having each own module file in this directory.
66
* Run `bingo get <tool>` to install <tool> that have own module file in this directory.
77
* For Makefile: Make sure to put `include .bingo/Variables.mk` in your Makefile, then use $(<upper case tool name>) variable where <tool> is the .bingo/<tool>.mod.
8-
* For shell: Run `source .bingo/variables.env` to source all environment variable for each tool
8+
* For shell: Run `source .bingo/variables.env` to source all environment variable for each tool.
9+
* For go: Import `.bingo/variables.go` to for variable names.
910
* See https://github.com/bwplotka/bingo or -h on how to add, remove or change binaries dependencies.
1011

1112
## Requirements

.bingo/Variables.mk

+41-40
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.2.2. DO NOT EDIT.
1+
# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.3.0. DO NOT EDIT.
22
# All tools are designed to be build inside $GOBIN.
3+
BINGO_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
34
GOPATH ?= $(shell go env GOPATH)
45
GOBIN ?= $(firstword $(subst :, ,${GOPATH}))/bin
56
GO ?= $(shell which go)
@@ -17,112 +18,112 @@ GO ?= $(shell which go)
1718
# @$(ALERTMANAGER) <flags/args..>
1819
#
1920
ALERTMANAGER := $(GOBIN)/alertmanager-v0.20.0
20-
$(ALERTMANAGER): .bingo/alertmanager.mod
21+
$(ALERTMANAGER): $(BINGO_DIR)/alertmanager.mod
2122
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
2223
@echo "(re)installing $(GOBIN)/alertmanager-v0.20.0"
23-
@cd .bingo && $(GO) build -modfile=alertmanager.mod -o=$(GOBIN)/alertmanager-v0.20.0 "github.com/prometheus/alertmanager/cmd/alertmanager"
24+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=alertmanager.mod -o=$(GOBIN)/alertmanager-v0.20.0 "github.com/prometheus/alertmanager/cmd/alertmanager"
2425

25-
BINGO := $(GOBIN)/bingo-v0.2.2
26-
$(BINGO): .bingo/bingo.mod
26+
BINGO := $(GOBIN)/bingo-v0.3.0
27+
$(BINGO): $(BINGO_DIR)/bingo.mod
2728
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
28-
@echo "(re)installing $(GOBIN)/bingo-v0.2.2"
29-
@cd .bingo && $(GO) build -modfile=bingo.mod -o=$(GOBIN)/bingo-v0.2.2 "github.com/bwplotka/bingo"
29+
@echo "(re)installing $(GOBIN)/bingo-v0.3.0"
30+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=bingo.mod -o=$(GOBIN)/bingo-v0.3.0 "github.com/bwplotka/bingo"
3031

3132
EMBEDMD := $(GOBIN)/embedmd-v0.0.0-20181127031020-97c13d6e4160
32-
$(EMBEDMD): .bingo/embedmd.mod
33+
$(EMBEDMD): $(BINGO_DIR)/embedmd.mod
3334
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
3435
@echo "(re)installing $(GOBIN)/embedmd-v0.0.0-20181127031020-97c13d6e4160"
35-
@cd .bingo && $(GO) build -modfile=embedmd.mod -o=$(GOBIN)/embedmd-v0.0.0-20181127031020-97c13d6e4160 "github.com/campoy/embedmd"
36+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=embedmd.mod -o=$(GOBIN)/embedmd-v0.0.0-20181127031020-97c13d6e4160 "github.com/campoy/embedmd"
3637

3738
FAILLINT := $(GOBIN)/faillint-v1.5.0
38-
$(FAILLINT): .bingo/faillint.mod
39+
$(FAILLINT): $(BINGO_DIR)/faillint.mod
3940
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
4041
@echo "(re)installing $(GOBIN)/faillint-v1.5.0"
41-
@cd .bingo && $(GO) build -modfile=faillint.mod -o=$(GOBIN)/faillint-v1.5.0 "github.com/fatih/faillint"
42+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=faillint.mod -o=$(GOBIN)/faillint-v1.5.0 "github.com/fatih/faillint"
4243

4344
GO_BINDATA := $(GOBIN)/go-bindata-v3.1.1+incompatible
44-
$(GO_BINDATA): .bingo/go-bindata.mod
45+
$(GO_BINDATA): $(BINGO_DIR)/go-bindata.mod
4546
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
4647
@echo "(re)installing $(GOBIN)/go-bindata-v3.1.1+incompatible"
47-
@cd .bingo && $(GO) build -modfile=go-bindata.mod -o=$(GOBIN)/go-bindata-v3.1.1+incompatible "github.com/go-bindata/go-bindata/go-bindata"
48+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=go-bindata.mod -o=$(GOBIN)/go-bindata-v3.1.1+incompatible "github.com/go-bindata/go-bindata/go-bindata"
4849

4950
GOIMPORTS := $(GOBIN)/goimports-v0.0.0-20200526224456-8b020aee10d2
50-
$(GOIMPORTS): .bingo/goimports.mod
51+
$(GOIMPORTS): $(BINGO_DIR)/goimports.mod
5152
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
5253
@echo "(re)installing $(GOBIN)/goimports-v0.0.0-20200526224456-8b020aee10d2"
53-
@cd .bingo && $(GO) build -modfile=goimports.mod -o=$(GOBIN)/goimports-v0.0.0-20200526224456-8b020aee10d2 "golang.org/x/tools/cmd/goimports"
54+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=goimports.mod -o=$(GOBIN)/goimports-v0.0.0-20200526224456-8b020aee10d2 "golang.org/x/tools/cmd/goimports"
5455

5556
GOJSONTOYAML := $(GOBIN)/gojsontoyaml-v0.0.0-20191212081931-bf2969bbd742
56-
$(GOJSONTOYAML): .bingo/gojsontoyaml.mod
57+
$(GOJSONTOYAML): $(BINGO_DIR)/gojsontoyaml.mod
5758
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
5859
@echo "(re)installing $(GOBIN)/gojsontoyaml-v0.0.0-20191212081931-bf2969bbd742"
59-
@cd .bingo && $(GO) build -modfile=gojsontoyaml.mod -o=$(GOBIN)/gojsontoyaml-v0.0.0-20191212081931-bf2969bbd742 "github.com/brancz/gojsontoyaml"
60+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=gojsontoyaml.mod -o=$(GOBIN)/gojsontoyaml-v0.0.0-20191212081931-bf2969bbd742 "github.com/brancz/gojsontoyaml"
6061

6162
GOLANGCI_LINT := $(GOBIN)/golangci-lint-v1.29.0
62-
$(GOLANGCI_LINT): .bingo/golangci-lint.mod
63+
$(GOLANGCI_LINT): $(BINGO_DIR)/golangci-lint.mod
6364
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
6465
@echo "(re)installing $(GOBIN)/golangci-lint-v1.29.0"
65-
@cd .bingo && $(GO) build -modfile=golangci-lint.mod -o=$(GOBIN)/golangci-lint-v1.29.0 "github.com/golangci/golangci-lint/cmd/golangci-lint"
66+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=golangci-lint.mod -o=$(GOBIN)/golangci-lint-v1.29.0 "github.com/golangci/golangci-lint/cmd/golangci-lint"
6667

6768
HUGO := $(GOBIN)/hugo-v0.80.0
68-
$(HUGO): .bingo/hugo.mod
69+
$(HUGO): $(BINGO_DIR)/hugo.mod
6970
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
7071
@echo "(re)installing $(GOBIN)/hugo-v0.80.0"
71-
@cd .bingo && $(GO) build -modfile=hugo.mod -o=$(GOBIN)/hugo-v0.80.0 "github.com/gohugoio/hugo"
72+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=hugo.mod -o=$(GOBIN)/hugo-v0.80.0 "github.com/gohugoio/hugo"
7273

7374
JB := $(GOBIN)/jb-v0.4.0
74-
$(JB): .bingo/jb.mod
75+
$(JB): $(BINGO_DIR)/jb.mod
7576
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
7677
@echo "(re)installing $(GOBIN)/jb-v0.4.0"
77-
@cd .bingo && $(GO) build -modfile=jb.mod -o=$(GOBIN)/jb-v0.4.0 "github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb"
78+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=jb.mod -o=$(GOBIN)/jb-v0.4.0 "github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb"
7879

7980
JSONNET := $(GOBIN)/jsonnet-v0.16.0
80-
$(JSONNET): .bingo/jsonnet.mod
81+
$(JSONNET): $(BINGO_DIR)/jsonnet.mod
8182
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
8283
@echo "(re)installing $(GOBIN)/jsonnet-v0.16.0"
83-
@cd .bingo && $(GO) build -modfile=jsonnet.mod -o=$(GOBIN)/jsonnet-v0.16.0 "github.com/google/go-jsonnet/cmd/jsonnet"
84+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=jsonnet.mod -o=$(GOBIN)/jsonnet-v0.16.0 "github.com/google/go-jsonnet/cmd/jsonnet"
8485

8586
JSONNETFMT := $(GOBIN)/jsonnetfmt-v0.16.0
86-
$(JSONNETFMT): .bingo/jsonnetfmt.mod
87+
$(JSONNETFMT): $(BINGO_DIR)/jsonnetfmt.mod
8788
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
8889
@echo "(re)installing $(GOBIN)/jsonnetfmt-v0.16.0"
89-
@cd .bingo && $(GO) build -modfile=jsonnetfmt.mod -o=$(GOBIN)/jsonnetfmt-v0.16.0 "github.com/google/go-jsonnet/cmd/jsonnetfmt"
90+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=jsonnetfmt.mod -o=$(GOBIN)/jsonnetfmt-v0.16.0 "github.com/google/go-jsonnet/cmd/jsonnetfmt"
9091

9192
MINIO := $(GOBIN)/minio-v0.0.0-20200527010300-cccf2de129da
92-
$(MINIO): .bingo/minio.mod
93+
$(MINIO): $(BINGO_DIR)/minio.mod
9394
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
9495
@echo "(re)installing $(GOBIN)/minio-v0.0.0-20200527010300-cccf2de129da"
95-
@cd .bingo && $(GO) build -modfile=minio.mod -o=$(GOBIN)/minio-v0.0.0-20200527010300-cccf2de129da "github.com/minio/minio"
96+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=minio.mod -o=$(GOBIN)/minio-v0.0.0-20200527010300-cccf2de129da "github.com/minio/minio"
9697

9798
PROMETHEUS_ARRAY := $(GOBIN)/prometheus-v2.4.3+incompatible $(GOBIN)/prometheus-v1.8.2-0.20200724121523-657ba532e42f
98-
$(PROMETHEUS_ARRAY): .bingo/prometheus.mod .bingo/prometheus.1.mod
99+
$(PROMETHEUS_ARRAY): $(BINGO_DIR)/prometheus.mod $(BINGO_DIR)/prometheus.1.mod
99100
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
100101
@echo "(re)installing $(GOBIN)/prometheus-v2.4.3+incompatible"
101-
@cd .bingo && $(GO) build -modfile=prometheus.mod -o=$(GOBIN)/prometheus-v2.4.3+incompatible "github.com/prometheus/prometheus/cmd/prometheus"
102+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=prometheus.mod -o=$(GOBIN)/prometheus-v2.4.3+incompatible "github.com/prometheus/prometheus/cmd/prometheus"
102103
@echo "(re)installing $(GOBIN)/prometheus-v1.8.2-0.20200724121523-657ba532e42f"
103-
@cd .bingo && $(GO) build -modfile=prometheus.1.mod -o=$(GOBIN)/prometheus-v1.8.2-0.20200724121523-657ba532e42f "github.com/prometheus/prometheus/cmd/prometheus"
104+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=prometheus.1.mod -o=$(GOBIN)/prometheus-v1.8.2-0.20200724121523-657ba532e42f "github.com/prometheus/prometheus/cmd/prometheus"
104105

105106
PROMTOOL := $(GOBIN)/promtool-v1.8.2-0.20200522113006-f4dd45609a05
106-
$(PROMTOOL): .bingo/promtool.mod
107+
$(PROMTOOL): $(BINGO_DIR)/promtool.mod
107108
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
108109
@echo "(re)installing $(GOBIN)/promtool-v1.8.2-0.20200522113006-f4dd45609a05"
109-
@cd .bingo && $(GO) build -modfile=promtool.mod -o=$(GOBIN)/promtool-v1.8.2-0.20200522113006-f4dd45609a05 "github.com/prometheus/prometheus/cmd/promtool"
110+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=promtool.mod -o=$(GOBIN)/promtool-v1.8.2-0.20200522113006-f4dd45609a05 "github.com/prometheus/prometheus/cmd/promtool"
110111

111112
PROMU := $(GOBIN)/promu-v0.5.0
112-
$(PROMU): .bingo/promu.mod
113+
$(PROMU): $(BINGO_DIR)/promu.mod
113114
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
114115
@echo "(re)installing $(GOBIN)/promu-v0.5.0"
115-
@cd .bingo && $(GO) build -modfile=promu.mod -o=$(GOBIN)/promu-v0.5.0 "github.com/prometheus/promu"
116+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=promu.mod -o=$(GOBIN)/promu-v0.5.0 "github.com/prometheus/promu"
116117

117118
PROTOC_GEN_GOGOFAST := $(GOBIN)/protoc-gen-gogofast-v1.3.1
118-
$(PROTOC_GEN_GOGOFAST): .bingo/protoc-gen-gogofast.mod
119+
$(PROTOC_GEN_GOGOFAST): $(BINGO_DIR)/protoc-gen-gogofast.mod
119120
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
120121
@echo "(re)installing $(GOBIN)/protoc-gen-gogofast-v1.3.1"
121-
@cd .bingo && $(GO) build -modfile=protoc-gen-gogofast.mod -o=$(GOBIN)/protoc-gen-gogofast-v1.3.1 "github.com/gogo/protobuf/protoc-gen-gogofast"
122+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=protoc-gen-gogofast.mod -o=$(GOBIN)/protoc-gen-gogofast-v1.3.1 "github.com/gogo/protobuf/protoc-gen-gogofast"
122123

123124
SHFMT := $(GOBIN)/shfmt-v3.1.2
124-
$(SHFMT): .bingo/shfmt.mod
125+
$(SHFMT): $(BINGO_DIR)/shfmt.mod
125126
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies.
126127
@echo "(re)installing $(GOBIN)/shfmt-v3.1.2"
127-
@cd .bingo && $(GO) build -modfile=shfmt.mod -o=$(GOBIN)/shfmt-v3.1.2 "mvdan.cc/sh/v3/cmd/shfmt"
128+
@cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=shfmt.mod -o=$(GOBIN)/shfmt-v3.1.2 "mvdan.cc/sh/v3/cmd/shfmt"
128129

.bingo/bingo.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT
22

33
go 1.14
44

5-
require github.com/bwplotka/bingo v0.2.2
5+
require github.com/bwplotka/bingo v0.3.0

.bingo/golangci-lint.mod

+1-34
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT
22

33
go 1.14
44

5-
require (
6-
github.com/Djarvur/go-err113 v0.1.0 // indirect
7-
github.com/coreos/go-etcd v2.0.0+incompatible // indirect
8-
github.com/cpuguy83/go-md2man v1.0.10 // indirect
9-
github.com/gogo/protobuf v1.3.1 // indirect
10-
github.com/golangci/golangci-lint v1.29.0 // cmd/golangci-lint
11-
github.com/golangci/misspell v0.3.5 // indirect
12-
github.com/golangci/revgrep v0.0.0-20180812185044-276a5c0a1039 // indirect
13-
github.com/google/go-cmp v0.5.1 // indirect
14-
github.com/gostaticanalysis/analysisutil v0.1.0 // indirect
15-
github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect
16-
github.com/klauspost/cpuid v1.2.0 // indirect
17-
github.com/mitchellh/mapstructure v1.3.3 // indirect
18-
github.com/pelletier/go-toml v1.8.0 // indirect
19-
github.com/quasilyte/go-ruleguard v0.1.3 // indirect
20-
github.com/quasilyte/regex/syntax v0.0.0-20200419152657-af9db7f4a3ab // indirect
21-
github.com/securego/gosec/v2 v2.4.0 // indirect
22-
github.com/spf13/afero v1.3.2 // indirect
23-
github.com/spf13/cast v1.3.1 // indirect
24-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
25-
github.com/stretchr/objx v0.3.0 // indirect
26-
github.com/tdakkota/asciicheck v0.0.0-20200416200610-e657995f937b // indirect
27-
github.com/tetafro/godot v0.4.8 // indirect
28-
github.com/timakin/bodyclose v0.0.0-20200424151742-cb6215831a94 // indirect
29-
github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8 // indirect
30-
golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1 // indirect
31-
golang.org/x/text v0.3.3 // indirect
32-
golang.org/x/tools v0.0.0-20200731060945-b5fad4ed8dd6 // indirect
33-
gopkg.in/ini.v1 v1.57.0 // indirect
34-
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
35-
honnef.co/go/tools v0.0.1-2020.1.5 // indirect
36-
mvdan.cc/unparam v0.0.0-20200501210554-b37ab49443f7 // indirect
37-
sourcegraph.com/sqs/pbtypes v1.0.0 // indirect
38-
)
5+
require github.com/golangci/golangci-lint v1.29.0 // cmd/golangci-lint

.bingo/hugo.mod

+1-27
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT
22

33
go 1.14
44

5-
require (
6-
contrib.go.opencensus.io/exporter/ocagent v0.4.12 // indirect
7-
github.com/Azure/azure-amqp-common-go v1.1.4 // indirect
8-
github.com/Azure/go-autorest v11.1.2+incompatible // indirect
9-
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 // indirect
10-
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect
11-
github.com/coreos/go-etcd v2.0.0+incompatible // indirect
12-
github.com/cpuguy83/go-md2man v1.0.10 // indirect
13-
github.com/gobuffalo/envy v1.9.0 // indirect
14-
// v0.74.3 This needs to match with version in netlify.toml
15-
github.com/gohugoio/hugo v0.80.0
16-
github.com/golang/snappy v0.0.1 // indirect
17-
github.com/kyokomi/emoji v2.2.1+incompatible // indirect
18-
github.com/nicksnyder/go-i18n v1.10.0 // indirect
19-
github.com/opentracing/opentracing-go v1.0.2 // indirect
20-
github.com/tidwall/pretty v0.0.0-20190325153808-1166b9ac2b65 // indirect
21-
github.com/uber-go/atomic v1.3.2 // indirect
22-
github.com/uber/jaeger-client-go v2.15.0+incompatible // indirect
23-
github.com/uber/jaeger-lib v1.5.0 // indirect
24-
github.com/ugorji/go v1.1.4 // indirect
25-
github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8 // indirect
26-
github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c // indirect
27-
github.com/xdg/stringprep v1.0.0 // indirect
28-
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 // indirect
29-
go.mongodb.org/mongo-driver v1.0.1 // indirect
30-
pack.ag/amqp v0.11.0 // indirect
31-
)
5+
require github.com/gohugoio/hugo v0.80.0

.bingo/prometheus.1.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT
22

33
go 1.14
44

5-
require github.com/prometheus/prometheus v1.8.2-0.20200724121523-657ba532e42f // cmd/prometheus
6-
75
replace (
86
// Mitigation for: https://github.com/Azure/go-autorest/issues/414
97
github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.3.0+incompatible
@@ -13,3 +11,5 @@ replace (
1311
k8s.io/klog => github.com/simonpasquier/klog-gokit v0.1.0
1412
k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20190228160746-b3a7cee44a30
1513
)
14+
15+
require github.com/prometheus/prometheus v1.8.2-0.20200724121523-657ba532e42f // cmd/prometheus

.bingo/prometheus.mod

+1-49
Original file line numberDiff line numberDiff line change
@@ -19,52 +19,4 @@ replace (
1919
k8s.io/klog => github.com/simonpasquier/klog-gokit v0.1.0
2020
)
2121

22-
require (
23-
github.com/Azure/azure-sdk-for-go v0.0.0-00010101000000-000000000000 // indirect
24-
github.com/Azure/go-autorest v0.0.0-00010101000000-000000000000 // indirect
25-
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
26-
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
27-
github.com/aws/aws-sdk-go v1.31.5 // indirect
28-
github.com/beorn7/perks v1.0.1 // indirect
29-
github.com/certifi/gocertifi v0.0.0-20200211180108-c7c1fbc02894 // indirect
30-
github.com/cespare/xxhash v1.1.0 // indirect
31-
github.com/cockroachdb/cmux v0.0.0-20170110192607-30d10be49292 // indirect
32-
github.com/cockroachdb/cockroach v20.1.1+incompatible // indirect
33-
github.com/cockroachdb/errors v1.2.4 // indirect
34-
github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f // indirect
35-
github.com/cockroachdb/ttycolor v0.0.0-20180709150743-a1d5aaeb377d // indirect
36-
github.com/getsentry/raven-go v0.2.0 // indirect
37-
github.com/go-kit/kit v0.10.0 // indirect
38-
github.com/googleapis/gnostic v0.0.0-00010101000000-000000000000 // indirect
39-
github.com/gophercloud/gophercloud v0.11.0 // indirect
40-
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
41-
github.com/grpc-ecosystem/grpc-gateway v1.14.6 // indirect
42-
github.com/hashicorp/consul/api v1.4.0 // indirect
43-
github.com/jaegertracing/jaeger v1.18.0 // indirect
44-
github.com/jpillora/backoff v1.0.0 // indirect
45-
github.com/julienschmidt/httprouter v1.3.0 // indirect
46-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
47-
github.com/miekg/dns v1.1.29 // indirect
48-
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
49-
github.com/oklog/ulid v1.3.1 // indirect
50-
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
51-
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect
52-
github.com/prometheus/client_golang v1.6.0 // indirect
53-
github.com/prometheus/common v0.10.0 // indirect
54-
github.com/prometheus/prometheus v2.4.3+incompatible // cmd/prometheus
55-
github.com/prometheus/tsdb v0.10.0 // indirect
56-
github.com/sasha-s/go-deadlock v0.2.0 // indirect
57-
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect
58-
github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd // indirect
59-
golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2 // indirect
60-
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1 // indirect
61-
google.golang.org/api v0.25.0 // indirect
62-
google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece // indirect
63-
gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect
64-
gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect
65-
gopkg.in/yaml.v2 v2.3.0 // indirect
66-
k8s.io/api v0.18.3 // indirect
67-
k8s.io/apimachinery v0.18.3 // indirect
68-
k8s.io/client-go v11.0.0+incompatible // indirect
69-
k8s.io/utils v0.0.0-20200520001619-278ece378a50 // indirect
70-
)
22+
require github.com/prometheus/prometheus v2.4.3+incompatible // cmd/prometheus

0 commit comments

Comments
 (0)