Update node_exporter to v1.1.1
This update now uses go mod and requires 100+ dependencies to build. Quite sad for a simple system value collector. Also the amd64 version does not correctly report the memory used by the buffer cache. This is a defect from building OpenBSD/amd64 binaries without cgo. This no longer uses promu for builds but passes the same build vars to go build via MODGO_LDFLAGS. With help and OK sthen@ abieber@
This commit is contained in:
parent
06b4f9dd26
commit
639dff41be
@ -1,18 +1,15 @@
|
||||
# $OpenBSD: Makefile,v 1.7 2020/11/20 21:17:21 sthen Exp $
|
||||
|
||||
BROKEN-aarch64 = looks like the vendored golang.org/x/net/internal/socket is too old for aarch64
|
||||
# try removing above with next update
|
||||
# $OpenBSD: Makefile,v 1.8 2021/02/16 13:28:19 claudio Exp $
|
||||
|
||||
COMMENT = prometheus exporter for hardware and OS metrics
|
||||
|
||||
GH_ACCOUNT = prometheus
|
||||
GH_PROJECT = node_exporter
|
||||
GH_TAGNAME = v1.0.1
|
||||
REVISION = 0
|
||||
MODGO_MODNAME = github.com/prometheus/node_exporter
|
||||
MODGO_VERSION = v1.1.1
|
||||
|
||||
DISTNAME = node_exporter-${MODGO_VERSION}
|
||||
|
||||
CATEGORIES = sysutils
|
||||
|
||||
HOMEPAGE = http://prometheus.io/
|
||||
HOMEPAGE = https://prometheus.io/
|
||||
|
||||
MAINTAINER = Claudio Jeker <claudio@openbsd.org>
|
||||
|
||||
@ -21,26 +18,469 @@ PERMIT_PACKAGE = Yes
|
||||
|
||||
WANTLIB = c pthread
|
||||
|
||||
BUILD_DEPENDS = devel/promu
|
||||
TEST_DEPENDS = shells/bash
|
||||
|
||||
USE_GMAKE = Yes
|
||||
|
||||
MODULES= lang/go
|
||||
MODGO_GOPATH= ${MODGO_WORKSPACE}
|
||||
|
||||
# promu doesn't like the default PREFIX
|
||||
do-build:
|
||||
cd ${WRKSRC} && ${MAKE_ENV} GOMAXPROCS=${MAKE_JOBS} PREFIX=. ${MAKE_PROGRAM} \
|
||||
PROMU="${LOCALBASE}/bin/promu --config \$$(PROMU_CONF) -v" build
|
||||
MODGO_LDFLAGS = -X github.com/prometheus/common/version.Version=${MODGO_VERSION:S/v//} \
|
||||
-X github.com/prometheus/common/version.Revision=non-git \
|
||||
-X github.com/prometheus/common/version.Branch=non-git \
|
||||
-X github.com/prometheus/common/version.BuildDate=`date +%F` \
|
||||
-X github.com/prometheus/common/version.BuildUser=openbsd_ports
|
||||
|
||||
MODGO_MODULES = \
|
||||
cloud.google.com/go v0.34.0 \
|
||||
github.com/!burnt!sushi/toml v0.3.1 \
|
||||
github.com/!knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible \
|
||||
github.com/!shopify/sarama v1.19.0 \
|
||||
github.com/!shopify/toxiproxy v2.1.4+incompatible \
|
||||
github.com/!vivid!cortex/gohistogram v1.0.0 \
|
||||
github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5 \
|
||||
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 \
|
||||
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d \
|
||||
github.com/apache/thrift v0.13.0 \
|
||||
github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e \
|
||||
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da \
|
||||
github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310 \
|
||||
github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a \
|
||||
github.com/aws/aws-lambda-go v1.13.3 \
|
||||
github.com/aws/aws-sdk-go v1.27.0 \
|
||||
github.com/aws/aws-sdk-go-v2 v0.18.0 \
|
||||
github.com/beevik/ntp v0.3.0 \
|
||||
github.com/beorn7/perks v1.0.1 \
|
||||
github.com/bgentry/speakeasy v0.1.0 \
|
||||
github.com/casbin/casbin/v2 v2.1.2 \
|
||||
github.com/cenkalti/backoff v2.2.1+incompatible \
|
||||
github.com/census-instrumentation/opencensus-proto v0.2.1 \
|
||||
github.com/cespare/xxhash/v2 v2.1.1 \
|
||||
github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec \
|
||||
github.com/client9/misspell v0.3.4 \
|
||||
github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa \
|
||||
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd \
|
||||
github.com/coreos/go-semver v0.2.0 \
|
||||
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf \
|
||||
github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf \
|
||||
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d \
|
||||
github.com/creack/pty v1.1.7 \
|
||||
github.com/davecgh/go-spew v1.1.1 \
|
||||
github.com/dgrijalva/jwt-go v3.2.0+incompatible \
|
||||
github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4 \
|
||||
github.com/eapache/go-resiliency v1.1.0 \
|
||||
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 \
|
||||
github.com/eapache/queue v1.1.0 \
|
||||
github.com/edsrzf/mmap-go v1.0.0 \
|
||||
github.com/ema/qdisc v0.0.0-20200603082823-62d0308e3e00 \
|
||||
github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473 \
|
||||
github.com/envoyproxy/protoc-gen-validate v0.1.0 \
|
||||
github.com/fatih/color v1.7.0 \
|
||||
github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db \
|
||||
github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8 \
|
||||
github.com/fsnotify/fsnotify v1.4.7 \
|
||||
github.com/ghodss/yaml v1.0.0 \
|
||||
github.com/go-kit/kit v0.10.0 \
|
||||
github.com/go-logfmt/logfmt v0.5.0 \
|
||||
github.com/go-sql-driver/mysql v1.4.0 \
|
||||
github.com/go-stack/stack v1.8.0 \
|
||||
github.com/godbus/dbus v0.0.0-20190402143921-271e53dc4968 \
|
||||
github.com/gogo/googleapis v1.1.0 \
|
||||
github.com/gogo/protobuf v1.2.1 \
|
||||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b \
|
||||
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 \
|
||||
github.com/golang/mock v1.1.1 \
|
||||
github.com/golang/protobuf v1.4.3 \
|
||||
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db \
|
||||
github.com/google/btree v1.0.0 \
|
||||
github.com/google/go-cmp v0.5.4 \
|
||||
github.com/google/gofuzz v1.0.0 \
|
||||
github.com/google/renameio v0.1.0 \
|
||||
github.com/google/uuid v1.0.0 \
|
||||
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 \
|
||||
github.com/gorilla/context v1.1.1 \
|
||||
github.com/gorilla/mux v1.7.3 \
|
||||
github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c \
|
||||
github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4 \
|
||||
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 \
|
||||
github.com/grpc-ecosystem/grpc-gateway v1.9.5 \
|
||||
github.com/hashicorp/consul/api v1.3.0 \
|
||||
github.com/hashicorp/consul/sdk v0.3.0 \
|
||||
github.com/hashicorp/errwrap v1.0.0 \
|
||||
github.com/hashicorp/go-cleanhttp v0.5.1 \
|
||||
github.com/hashicorp/go-immutable-radix v1.0.0 \
|
||||
github.com/hashicorp/go-msgpack v0.5.3 \
|
||||
github.com/hashicorp/go-multierror v1.0.0 \
|
||||
github.com/hashicorp/go-rootcerts v1.0.0 \
|
||||
github.com/hashicorp/go-sockaddr v1.0.0 \
|
||||
github.com/hashicorp/go-syslog v1.0.0 \
|
||||
github.com/hashicorp/go-uuid v1.0.1 \
|
||||
github.com/hashicorp/go-version v1.2.0 \
|
||||
github.com/hashicorp/go.net v0.0.1 \
|
||||
github.com/hashicorp/golang-lru v0.5.1 \
|
||||
github.com/hashicorp/logutils v1.0.0 \
|
||||
github.com/hashicorp/mdns v1.0.0 \
|
||||
github.com/hashicorp/memberlist v0.1.3 \
|
||||
github.com/hashicorp/serf v0.8.2 \
|
||||
github.com/hodgesds/perf-utils v0.2.5 \
|
||||
github.com/hpcloud/tail v1.0.0 \
|
||||
github.com/hudl/fargo v1.3.0 \
|
||||
github.com/inconshreveable/mousetrap v1.0.0 \
|
||||
github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d \
|
||||
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af \
|
||||
github.com/jonboulle/clockwork v0.1.0 \
|
||||
github.com/josharian/native v0.0.0-20200817173448-b6b71def0850 \
|
||||
github.com/jpillora/backoff v1.0.0 \
|
||||
github.com/jsimonetti/rtnetlink v0.0.0-20210122163228-8d122574c736 \
|
||||
github.com/json-iterator/go v1.1.10 \
|
||||
github.com/jtolds/gls v4.20.0+incompatible \
|
||||
github.com/julienschmidt/httprouter v1.3.0 \
|
||||
github.com/kisielk/errcheck v1.1.0 \
|
||||
github.com/kisielk/gotool v1.0.0 \
|
||||
github.com/konsorten/go-windows-terminal-sequences v1.0.3 \
|
||||
github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 \
|
||||
github.com/kr/pretty v0.1.0 \
|
||||
github.com/kr/pty v1.1.1 \
|
||||
github.com/kr/text v0.1.0 \
|
||||
github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743 \
|
||||
github.com/lightstep/lightstep-tracer-go v0.18.1 \
|
||||
github.com/lufia/iostat v1.1.0 \
|
||||
github.com/lyft/protoc-gen-validate v0.0.13 \
|
||||
github.com/mattn/go-colorable v0.0.9 \
|
||||
github.com/mattn/go-isatty v0.0.4 \
|
||||
github.com/mattn/go-runewidth v0.0.2 \
|
||||
github.com/mattn/go-xmlrpc v0.0.3 \
|
||||
github.com/matttproud/golang_protobuf_extensions v1.0.1 \
|
||||
github.com/mdlayher/genetlink v1.0.0 \
|
||||
github.com/mdlayher/netlink v1.2.1 \
|
||||
github.com/mdlayher/wifi v0.0.0-20200527114002-84f0b9457fdd \
|
||||
github.com/miekg/dns v1.0.14 \
|
||||
github.com/mitchellh/cli v1.0.0 \
|
||||
github.com/mitchellh/go-homedir v1.0.0 \
|
||||
github.com/mitchellh/go-testing-interface v1.0.0 \
|
||||
github.com/mitchellh/gox v0.4.0 \
|
||||
github.com/mitchellh/iochan v1.0.0 \
|
||||
github.com/mitchellh/mapstructure v1.1.2 \
|
||||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd \
|
||||
github.com/modern-go/reflect2 v1.0.1 \
|
||||
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f \
|
||||
github.com/nats-io/jwt v0.3.2 \
|
||||
github.com/nats-io/nats-server/v2 v2.1.2 \
|
||||
github.com/nats-io/nats.go v1.9.1 \
|
||||
github.com/nats-io/nkeys v0.1.3 \
|
||||
github.com/nats-io/nuid v1.0.1 \
|
||||
github.com/oklog/oklog v0.3.2 \
|
||||
github.com/oklog/run v1.0.0 \
|
||||
github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5 \
|
||||
github.com/onsi/ginkgo v1.7.0 \
|
||||
github.com/onsi/gomega v1.4.3 \
|
||||
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7 \
|
||||
github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492 \
|
||||
github.com/opentracing/basictracer-go v1.0.0 \
|
||||
github.com/opentracing/opentracing-go v1.1.0 \
|
||||
github.com/openzipkin-contrib/zipkin-go-opentracing v0.4.5 \
|
||||
github.com/openzipkin/zipkin-go v0.2.2 \
|
||||
github.com/pact-foundation/pact-go v1.0.4 \
|
||||
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c \
|
||||
github.com/pborman/uuid v1.2.0 \
|
||||
github.com/performancecopilot/speed v3.0.0+incompatible \
|
||||
github.com/pierrec/lz4 v2.0.5+incompatible \
|
||||
github.com/pkg/errors v0.9.1 \
|
||||
github.com/pkg/profile v1.2.1 \
|
||||
github.com/pmezard/go-difflib v1.0.0 \
|
||||
github.com/posener/complete v1.1.1 \
|
||||
github.com/prometheus/client_golang v1.9.0 \
|
||||
github.com/prometheus/client_model v0.2.0 \
|
||||
github.com/prometheus/common v0.15.0 \
|
||||
github.com/prometheus/exporter-toolkit v0.5.1 \
|
||||
github.com/prometheus/procfs v0.6.0 \
|
||||
github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a \
|
||||
github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af \
|
||||
github.com/rogpeppe/go-internal v1.3.0 \
|
||||
github.com/russross/blackfriday/v2 v2.0.1 \
|
||||
github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f \
|
||||
github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da \
|
||||
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 \
|
||||
github.com/shurcoo!l/sanitized_anchor_name v1.0.0 \
|
||||
github.com/siebenmann/go-kstat v0.0.0-20200303194639-4e8294f9e9d5 \
|
||||
github.com/sirupsen/logrus v1.6.0 \
|
||||
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d \
|
||||
github.com/smartystreets/goconvey v1.6.4 \
|
||||
github.com/soheilhy/cmux v0.1.4 \
|
||||
github.com/sony/gobreaker v0.4.1 \
|
||||
github.com/soundcloud/go-runit v0.0.0-20150630195641-06ad41a06c4a \
|
||||
github.com/spf13/cobra v0.0.3 \
|
||||
github.com/spf13/pflag v1.0.1 \
|
||||
github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271 \
|
||||
github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a \
|
||||
github.com/stretchr/objx v0.1.1 \
|
||||
github.com/stretchr/testify v1.4.0 \
|
||||
github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8 \
|
||||
github.com/urfave/cli v1.22.1 \
|
||||
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 \
|
||||
go.etcd.io/bbolt v1.3.3 \
|
||||
go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738 \
|
||||
go.opencensus.io v0.22.2 \
|
||||
go.uber.org/atomic v1.7.0 \
|
||||
go.uber.org/multierr v1.6.0 \
|
||||
go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee \
|
||||
go.uber.org/zap v1.13.0 \
|
||||
golang.org/x/crypto v0.0.0-20201208171446-5f87f3452ae9 \
|
||||
golang.org/x/exp v0.0.0-20190121172915-509febef88a4 \
|
||||
golang.org/x/lint v0.0.0-20190930215403-16217165b5de \
|
||||
golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee \
|
||||
golang.org/x/net v0.0.0-20201224014010-6772e930b67b \
|
||||
golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421 \
|
||||
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a \
|
||||
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c \
|
||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 \
|
||||
golang.org/x/text v0.3.3 \
|
||||
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 \
|
||||
golang.org/x/tools v0.0.0-20200103221440-774c71fcf114 \
|
||||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 \
|
||||
google.golang.org/api v0.3.1 \
|
||||
google.golang.org/appengine v1.4.0 \
|
||||
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 \
|
||||
google.golang.org/grpc v1.26.0 \
|
||||
google.golang.org/protobuf v1.23.0 \
|
||||
gopkg.in/alecthomas/kingpin.v2 v2.2.6 \
|
||||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 \
|
||||
gopkg.in/cheggaaa/pb.v1 v1.0.25 \
|
||||
gopkg.in/errgo.v2 v2.1.0 \
|
||||
gopkg.in/fsnotify.v1 v1.4.7 \
|
||||
gopkg.in/gcfg.v1 v1.2.3 \
|
||||
gopkg.in/resty.v1 v1.12.0 \
|
||||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 \
|
||||
gopkg.in/warnings.v0 v0.1.2 \
|
||||
gopkg.in/yaml.v2 v2.4.0 \
|
||||
honnef.co/go/tools v0.0.1-2019.2.3 \
|
||||
sigs.k8s.io/yaml v1.1.0 \
|
||||
sourcegraph.com/sourcegraph/appdash v0.0.0-20190731080439-ebfcffb1b5c0
|
||||
|
||||
MODGO_MODFILES = \
|
||||
cloud.google.com/go v0.26.0 \
|
||||
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc \
|
||||
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf \
|
||||
github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4 \
|
||||
github.com/apache/thrift v0.12.0 \
|
||||
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 \
|
||||
github.com/beorn7/perks v1.0.0 \
|
||||
github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7 \
|
||||
github.com/davecgh/go-spew v1.1.0 \
|
||||
github.com/envoyproxy/go-control-plane v0.6.9 \
|
||||
github.com/go-kit/kit v0.8.0 \
|
||||
github.com/go-kit/kit v0.9.0 \
|
||||
github.com/go-logfmt/logfmt v0.3.0 \
|
||||
github.com/go-logfmt/logfmt v0.4.0 \
|
||||
github.com/gogo/protobuf v1.1.1 \
|
||||
github.com/gogo/protobuf v1.2.0 \
|
||||
github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903 \
|
||||
github.com/golang/protobuf v1.2.0 \
|
||||
github.com/golang/protobuf v1.3.1 \
|
||||
github.com/golang/protobuf v1.3.2 \
|
||||
github.com/golang/protobuf v1.4.0 \
|
||||
github.com/golang/protobuf v1.4.0-rc.1 \
|
||||
github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208 \
|
||||
github.com/golang/protobuf v1.4.0-rc.2 \
|
||||
github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0 \
|
||||
github.com/golang/protobuf v1.4.2 \
|
||||
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c \
|
||||
github.com/google/go-cmp v0.2.0 \
|
||||
github.com/google/go-cmp v0.3.0 \
|
||||
github.com/google/go-cmp v0.3.1 \
|
||||
github.com/google/go-cmp v0.4.0 \
|
||||
github.com/google/go-cmp v0.5.2 \
|
||||
github.com/gorilla/mux v1.6.2 \
|
||||
github.com/hashicorp/go-uuid v1.0.0 \
|
||||
github.com/hashicorp/golang-lru v0.5.0 \
|
||||
github.com/jsimonetti/rtnetlink v0.0.0-20190606172950-9527aa82566a \
|
||||
github.com/jsimonetti/rtnetlink v0.0.0-20190830100107-3784a6c7c552 \
|
||||
github.com/jsimonetti/rtnetlink v0.0.0-20200117123717-f846d4f6c1f4 \
|
||||
github.com/jsimonetti/rtnetlink v0.0.0-20201009170750-9c6f07d100c1 \
|
||||
github.com/jsimonetti/rtnetlink v0.0.0-20201216134343-bde56ed16391 \
|
||||
github.com/jsimonetti/rtnetlink v0.0.0-20201220180245-69540ac93943 \
|
||||
github.com/json-iterator/go v1.1.6 \
|
||||
github.com/json-iterator/go v1.1.7 \
|
||||
github.com/json-iterator/go v1.1.8 \
|
||||
github.com/julienschmidt/httprouter v1.2.0 \
|
||||
github.com/konsorten/go-windows-terminal-sequences v1.0.1 \
|
||||
github.com/mattn/go-isatty v0.0.3 \
|
||||
github.com/mdlayher/netlink v0.0.0-20190409211403-11939a169225 \
|
||||
github.com/mdlayher/netlink v0.0.0-20190828143259-340058475d09 \
|
||||
github.com/mdlayher/netlink v1.0.0 \
|
||||
github.com/mdlayher/netlink v1.1.0 \
|
||||
github.com/mdlayher/netlink v1.1.1 \
|
||||
github.com/mdlayher/netlink v1.2.0 \
|
||||
github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee \
|
||||
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 \
|
||||
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 \
|
||||
github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223 \
|
||||
github.com/nats-io/jwt v0.3.0 \
|
||||
github.com/nats-io/nkeys v0.1.0 \
|
||||
github.com/onsi/ginkgo v1.6.0 \
|
||||
github.com/opentracing/opentracing-go v1.0.2 \
|
||||
github.com/openzipkin/zipkin-go v0.1.6 \
|
||||
github.com/openzipkin/zipkin-go v0.2.1 \
|
||||
github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1 \
|
||||
github.com/pkg/errors v0.8.0 \
|
||||
github.com/pkg/errors v0.8.1 \
|
||||
github.com/prometheus/client_golang v0.9.1 \
|
||||
github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829 \
|
||||
github.com/prometheus/client_golang v1.0.0 \
|
||||
github.com/prometheus/client_golang v1.3.0 \
|
||||
github.com/prometheus/client_golang v1.7.1 \
|
||||
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 \
|
||||
github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f \
|
||||
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 \
|
||||
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 \
|
||||
github.com/prometheus/client_model v0.1.0 \
|
||||
github.com/prometheus/common v0.10.0 \
|
||||
github.com/prometheus/common v0.2.0 \
|
||||
github.com/prometheus/common v0.4.1 \
|
||||
github.com/prometheus/common v0.7.0 \
|
||||
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d \
|
||||
github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1 \
|
||||
github.com/prometheus/procfs v0.0.2 \
|
||||
github.com/prometheus/procfs v0.0.8 \
|
||||
github.com/prometheus/procfs v0.1.3 \
|
||||
github.com/prometheus/procfs v0.2.0 \
|
||||
github.com/sirupsen/logrus v1.2.0 \
|
||||
github.com/sirupsen/logrus v1.4.2 \
|
||||
github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94 \
|
||||
github.com/stretchr/objx v0.1.0 \
|
||||
github.com/stretchr/testify v1.2.2 \
|
||||
github.com/stretchr/testify v1.3.0 \
|
||||
github.com/urfave/cli v1.20.0 \
|
||||
go.opencensus.io v0.20.1 \
|
||||
go.opencensus.io v0.20.2 \
|
||||
go.uber.org/atomic v1.3.2 \
|
||||
go.uber.org/atomic v1.5.0 \
|
||||
go.uber.org/multierr v1.1.0 \
|
||||
go.uber.org/multierr v1.3.0 \
|
||||
go.uber.org/zap v1.10.0 \
|
||||
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793 \
|
||||
golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3 \
|
||||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 \
|
||||
golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529 \
|
||||
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 \
|
||||
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 \
|
||||
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 \
|
||||
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3 \
|
||||
golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961 \
|
||||
golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f \
|
||||
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3 \
|
||||
golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e \
|
||||
golang.org/x/net v0.0.0-20180724234803-3673e40ba225 \
|
||||
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d \
|
||||
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd \
|
||||
golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519 \
|
||||
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a \
|
||||
golang.org/x/net v0.0.0-20181201002055-351d144fa1fc \
|
||||
golang.org/x/net v0.0.0-20181220203305-927f97764cc3 \
|
||||
golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e \
|
||||
golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3 \
|
||||
golang.org/x/net v0.0.0-20190213061140-3a22650c66bd \
|
||||
golang.org/x/net v0.0.0-20190311183353-d8887717615a \
|
||||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 \
|
||||
golang.org/x/net v0.0.0-20190603091049-60506f45cf65 \
|
||||
golang.org/x/net v0.0.0-20190613194153-d28f0bde5980 \
|
||||
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 \
|
||||
golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 \
|
||||
golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297 \
|
||||
golang.org/x/net v0.0.0-20191007182048-72f939374954 \
|
||||
golang.org/x/net v0.0.0-20200202094626-16171245cfb2 \
|
||||
golang.org/x/net v0.0.0-20200625001655-4c5254603344 \
|
||||
golang.org/x/net v0.0.0-20201010224723-4f7140c49acb \
|
||||
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b \
|
||||
golang.org/x/net v0.0.0-20201216054612-986b41b23924 \
|
||||
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be \
|
||||
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f \
|
||||
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f \
|
||||
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4 \
|
||||
golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6 \
|
||||
golang.org/x/sync v0.0.0-20190423024810-112230192c58 \
|
||||
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e \
|
||||
golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc \
|
||||
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522 \
|
||||
golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33 \
|
||||
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e \
|
||||
golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5 \
|
||||
golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8 \
|
||||
golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5 \
|
||||
golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b \
|
||||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a \
|
||||
golang.org/x/sys v0.0.0-20190219203350-90b0e4468f99 \
|
||||
golang.org/x/sys v0.0.0-20190312061237-fead79001313 \
|
||||
golang.org/x/sys v0.0.0-20190411185658-b44545bcd369 \
|
||||
golang.org/x/sys v0.0.0-20190412213103-97732733099d \
|
||||
golang.org/x/sys v0.0.0-20190422165155-953cdadca894 \
|
||||
golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd \
|
||||
golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e \
|
||||
golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456 \
|
||||
golang.org/x/sys v0.0.0-20190902133755-9109b7679e13 \
|
||||
golang.org/x/sys v0.0.0-20191008105621-543471e840be \
|
||||
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037 \
|
||||
golang.org/x/sys v0.0.0-20191220142924-d4481acd189f \
|
||||
golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e \
|
||||
golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5 \
|
||||
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd \
|
||||
golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1 \
|
||||
golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae \
|
||||
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f \
|
||||
golang.org/x/sys v0.0.0-20201009025420-dfb3f7c4e634 \
|
||||
golang.org/x/sys v0.0.0-20201118182958-a01c418693c7 \
|
||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 \
|
||||
golang.org/x/sys v0.0.0-20201214210602-f9fddec55a1e \
|
||||
golang.org/x/sys v0.0.0-20201218084310-7d0127a74742 \
|
||||
golang.org/x/sys v0.0.0-20210110051926-789bb1bd4061 \
|
||||
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221 \
|
||||
golang.org/x/text v0.3.0 \
|
||||
golang.org/x/text v0.3.2 \
|
||||
golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2 \
|
||||
golang.org/x/tools v0.0.0-20180221164845-07fd8470d635 \
|
||||
golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52 \
|
||||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e \
|
||||
golang.org/x/tools v0.0.0-20190114222345-bf090417da8b \
|
||||
golang.org/x/tools v0.0.0-20190226205152-f727befe758c \
|
||||
golang.org/x/tools v0.0.0-20190311212946-11955173bddd \
|
||||
golang.org/x/tools v0.0.0-20190312170243-e65039ee4138 \
|
||||
golang.org/x/tools v0.0.0-20190328211700-ab21143f2384 \
|
||||
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135 \
|
||||
golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac \
|
||||
golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c \
|
||||
golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5 \
|
||||
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 \
|
||||
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898 \
|
||||
google.golang.org/appengine v1.1.0 \
|
||||
google.golang.org/appengine v1.2.0 \
|
||||
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8 \
|
||||
google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19 \
|
||||
google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb \
|
||||
google.golang.org/genproto v0.0.0-20190530194941-fb225487d101 \
|
||||
google.golang.org/grpc v1.17.0 \
|
||||
google.golang.org/grpc v1.19.0 \
|
||||
google.golang.org/grpc v1.20.0 \
|
||||
google.golang.org/grpc v1.20.1 \
|
||||
google.golang.org/grpc v1.21.0 \
|
||||
google.golang.org/grpc v1.22.1 \
|
||||
google.golang.org/grpc v1.23.0 \
|
||||
google.golang.org/grpc v1.23.1 \
|
||||
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd \
|
||||
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64 \
|
||||
google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60 \
|
||||
google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967 \
|
||||
google.golang.org/protobuf v1.21.0 \
|
||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 \
|
||||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 \
|
||||
gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7 \
|
||||
gopkg.in/yaml.v2 v2.2.1 \
|
||||
gopkg.in/yaml.v2 v2.2.2 \
|
||||
gopkg.in/yaml.v2 v2.2.4 \
|
||||
gopkg.in/yaml.v2 v2.2.5 \
|
||||
gopkg.in/yaml.v2 v2.3.0 \
|
||||
honnef.co/go/tools v0.0.0-20180728063816-88497007e858 \
|
||||
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099 \
|
||||
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/node_exporter
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/node_exporter ${PREFIX}/bin
|
||||
${INSTALL_PROGRAM} ${MODGO_WORKSPACE}/bin/node_exporter ${PREFIX}/bin
|
||||
${INSTALL_DATA} ${WRKSRC}/LICENSE ${PREFIX}/share/doc/node_exporter/
|
||||
${INSTALL_DATA} ${WRKSRC}/NOTICE ${PREFIX}/share/doc/node_exporter/
|
||||
|
||||
do-test:
|
||||
cd ${WRKSRC} && ${MAKE_ENV} ${MAKE_PROGRAM} test
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,18 +0,0 @@
|
||||
$OpenBSD: patch-Makefile_common,v 1.2 2019/10/16 06:50:09 claudio Exp $
|
||||
|
||||
Index: Makefile.common
|
||||
--- Makefile.common.orig
|
||||
+++ Makefile.common
|
||||
@@ -233,11 +233,7 @@ common-docker-manifest:
|
||||
promu: $(PROMU)
|
||||
|
||||
$(PROMU):
|
||||
- $(eval PROMU_TMP := $(shell mktemp -d))
|
||||
- curl -s -L $(PROMU_URL) | tar -xvzf - -C $(PROMU_TMP)
|
||||
- mkdir -p $(FIRST_GOPATH)/bin
|
||||
- cp $(PROMU_TMP)/promu-$(PROMU_VERSION).$(GO_BUILD_PLATFORM)/promu $(FIRST_GOPATH)/bin/promu
|
||||
- rm -r $(PROMU_TMP)
|
||||
+ @true
|
||||
|
||||
.PHONY: proto
|
||||
proto:
|
@ -1,14 +0,0 @@
|
||||
$OpenBSD: patch-_promu-cgo_yml,v 1.1 2019/10/16 06:50:09 claudio Exp $
|
||||
|
||||
Index: .promu-cgo.yml
|
||||
--- .promu-cgo.yml.orig
|
||||
+++ .promu-cgo.yml
|
||||
@@ -10,7 +10,7 @@ build:
|
||||
-X github.com/prometheus/common/version.Version={{.Version}}
|
||||
-X github.com/prometheus/common/version.Revision={{.Revision}}
|
||||
-X github.com/prometheus/common/version.Branch={{.Branch}}
|
||||
- -X github.com/prometheus/common/version.BuildUser={{user}}@{{host}}
|
||||
+ -X github.com/prometheus/common/version.BuildUser=OpenBSD
|
||||
-X github.com/prometheus/common/version.BuildDate={{date "20060102-15:04:05"}}
|
||||
tarball:
|
||||
files:
|
@ -1,14 +0,0 @@
|
||||
$OpenBSD: patch-_promu_yml,v 1.1 2019/10/16 06:50:09 claudio Exp $
|
||||
|
||||
Index: .promu.yml
|
||||
--- .promu.yml.orig
|
||||
+++ .promu.yml
|
||||
@@ -12,7 +12,7 @@ build:
|
||||
-X github.com/prometheus/common/version.Version={{.Version}}
|
||||
-X github.com/prometheus/common/version.Revision={{.Revision}}
|
||||
-X github.com/prometheus/common/version.Branch={{.Branch}}
|
||||
- -X github.com/prometheus/common/version.BuildUser={{user}}@{{host}}
|
||||
+ -X github.com/prometheus/common/version.BuildUser=OpenBSD
|
||||
-X github.com/prometheus/common/version.BuildDate={{date "20060102-15:04:05"}}
|
||||
tarball:
|
||||
files:
|
Loading…
x
Reference in New Issue
Block a user