Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.

Commit 5c47502

Browse files
committed
use go mod for vendoring
1 parent 3e8d6c5 commit 5c47502

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+508
-902
lines changed

Makefile

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
.PHONY: all build test release
1+
.PHONY: all build test vendor release
22

33
all: build test
44

55
build:
6-
go build
6+
go build -mod=vendor
77

88
test:
9-
go test
9+
go test -mod=vendor
10+
11+
vendor:
12+
go mod vendor
1013

1114
release:
1215
goreleaser --rm-dist

go.mod

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
module github.com/alicebob/asprom
2+
3+
require (
4+
github.com/aerospike/aerospike-client-go v1.29.0
5+
github.com/beorn7/perks v0.0.0-20160804104726-4c0e84591b9a // indirect
6+
github.com/golang/protobuf v0.0.0-20170902000452-17ce1425424a // indirect
7+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
8+
github.com/prometheus/client_golang v0.0.0-20170907150625-671c87b04728
9+
github.com/prometheus/client_model v0.0.0-20170216185247-6f3806018612
10+
github.com/prometheus/common v0.0.0-20170908161822-2f17f4a9d485 // indirect
11+
github.com/prometheus/procfs v0.0.0-20170703101242-e645f4e5aaa8 // indirect
12+
github.com/yuin/gopher-lua v0.0.0-20181214045814-db9ae37725ec // indirect
13+
)

go.sum

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
github.com/aerospike/aerospike-client-go v1.29.0 h1:XwrKzVw6CDXdHi1a4TDQDql3hx00YR6XjI5C9OcjUJ0=
2+
github.com/aerospike/aerospike-client-go v1.29.0/go.mod h1:zj8LBEnWBDOVEIJt8LvaRvDG5ARAoa5dBeHaB472NRc=
3+
github.com/beorn7/perks v0.0.0-20160804104726-4c0e84591b9a h1:BtpsbiV638WQZwhA98cEZw2BsbnQJrbd0BI7tsy0W1c=
4+
github.com/beorn7/perks v0.0.0-20160804104726-4c0e84591b9a/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q=
5+
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI=
6+
github.com/golang/protobuf v0.0.0-20170902000452-17ce1425424a h1:pklYnGCcDc7eaFCzmrTM4fiNgWT5z49peC8hOVdDG88=
7+
github.com/golang/protobuf v0.0.0-20170902000452-17ce1425424a/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
8+
github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=
9+
github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0=
10+
github.com/prometheus/client_golang v0.0.0-20170907150625-671c87b04728 h1:yNp9yRYg4pzicwWfndinGmVpP9Ip8EI1U93MtZWCdwg=
11+
github.com/prometheus/client_golang v0.0.0-20170907150625-671c87b04728/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
12+
github.com/prometheus/client_model v0.0.0-20170216185247-6f3806018612 h1:13pIdM2tpaDi4OVe24fgoIS7ZTqMt0QI+bwQsX5hq+g=
13+
github.com/prometheus/client_model v0.0.0-20170216185247-6f3806018612/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=
14+
github.com/prometheus/common v0.0.0-20170908161822-2f17f4a9d485 h1:ELypU1kBAPEzqcj8hphDyZWTJw5TIFgepXU983BEkD0=
15+
github.com/prometheus/common v0.0.0-20170908161822-2f17f4a9d485/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro=
16+
github.com/prometheus/procfs v0.0.0-20170703101242-e645f4e5aaa8 h1:uZfczEBIA1FZfOQo4/JWgGnMNd/4HVsM9A+B30wtlkA=
17+
github.com/prometheus/procfs v0.0.0-20170703101242-e645f4e5aaa8/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
18+
github.com/yuin/gopher-lua v0.0.0-20181214045814-db9ae37725ec h1:vpF8Kxql6/3OvGH4y2SKtpN3WsB17mvJ8f8H1o2vucQ=
19+
github.com/yuin/gopher-lua v0.0.0-20181214045814-db9ae37725ec/go.mod h1:fFiAh+CowNFr0NK5VASokuwKwkbacRmHsVA7Yb1Tqac=

vendor/github.com/aerospike/aerospike-client-go/.build.yml

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/aerospike/aerospike-client-go/.gitignore

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/aerospike/aerospike-client-go/.travis.yml

+65
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/aerospike/aerospike-client-go/pkg/bcrypt/.gitignore

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/golang/protobuf/AUTHORS

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/golang/protobuf/CONTRIBUTORS

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/matttproud/golang_protobuf_extensions/pbutil/.gitignore

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/prometheus/client_golang/prometheus/.gitignore

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/prometheus/procfs/.travis.yml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/prometheus/procfs/ttar

100755100644
File mode changed.

vendor/github.com/yuin/gopher-lua/.travis.yml

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/yuin/gopher-lua/Makefile

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/yuin/gopher-lua/README.rst

+62-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/yuin/gopher-lua/_state.go

+5-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/yuin/gopher-lua/_vm.go

+8-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)