forked from Lainports/freebsd-ports
Experimental new feature: Add TLS and basic authentication to HTTP endpoints. Changelog: https://github.com/prometheus/pushgateway/releases/tag/v1.4.0 PR: 253007 Submitted by: Gabriel Dutra <0xdutra@gmail.com> (maintainer) Approved by: arrowd, tcberner (mentors, implicit)
57 lines
2.7 KiB
Makefile
57 lines
2.7 KiB
Makefile
# Created by: Athanasios Douitsis <aduitsis@cpan.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pushgateway
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.4.0
|
|
CATEGORIES= net-mgmt
|
|
|
|
MAINTAINER= 0xdutra@gmail.com
|
|
COMMENT= Prometheus push acceptor for ephemeral and batch jobs
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= gmake go:modules
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= prometheus
|
|
|
|
GH_TUPLE= \
|
|
alecthomas:kingpin:v2.2.6:alecthomas_kingpin/vendor/gopkg.in/alecthomas/kingpin.v2 \
|
|
alecthomas:template:fb15b899a751:alecthomas_template/vendor/github.com/alecthomas/template \
|
|
alecthomas:units:f65c72e2690d:alecthomas_units/vendor/github.com/alecthomas/units \
|
|
beorn7:perks:v1.0.1:beorn7_perks/vendor/github.com/beorn7/perks \
|
|
cespare:xxhash:v2.1.1:cespare_xxhash_v2/vendor/github.com/cespare/xxhash/v2 \
|
|
go-kit:kit:v0.10.0:go_kit_kit/vendor/github.com/go-kit/kit \
|
|
go-logfmt:logfmt:v0.5.0:go_logfmt_logfmt/vendor/github.com/go-logfmt/logfmt \
|
|
go-yaml:yaml:v2.4.0:go_yaml_yaml/vendor/gopkg.in/yaml.v2 \
|
|
golang:crypto:5f87f3452ae9:golang_crypto/vendor/golang.org/x/crypto \
|
|
golang:net:f5854403a974:golang_net/vendor/golang.org/x/net \
|
|
golang:protobuf:v1.4.3:golang_protobuf/vendor/github.com/golang/protobuf \
|
|
golang:sys:f9fddec55a1e:golang_sys/vendor/golang.org/x/sys \
|
|
golang:text:v0.3.3:golang_text/vendor/golang.org/x/text \
|
|
jpillora:backoff:v1.0.0:jpillora_backoff/vendor/github.com/jpillora/backoff \
|
|
julienschmidt:httprouter:v1.3.0:julienschmidt_httprouter/vendor/github.com/julienschmidt/httprouter \
|
|
matttproud:golang_protobuf_extensions:v1.0.1:matttproud_golang_protobuf_extensions/vendor/github.com/matttproud/golang_protobuf_extensions \
|
|
mwitkow:go-conntrack:2f068394615f:mwitkow_go_conntrack/vendor/github.com/mwitkow/go-conntrack \
|
|
pkg:errors:v0.9.1:pkg_errors/vendor/github.com/pkg/errors \
|
|
prometheus:client_golang:v1.9.0:prometheus_client_golang/vendor/github.com/prometheus/client_golang \
|
|
prometheus:client_model:v0.2.0:prometheus_client_model/vendor/github.com/prometheus/client_model \
|
|
prometheus:common:v0.15.0:prometheus_common/vendor/github.com/prometheus/common \
|
|
prometheus:exporter-toolkit:v0.5.1:prometheus_exporter_toolkit/vendor/github.com/prometheus/exporter-toolkit \
|
|
prometheus:procfs:v0.2.0:prometheus_procfs/vendor/github.com/prometheus/procfs \
|
|
protocolbuffers:protobuf-go:v1.23.0:protocolbuffers_protobuf_go/vendor/google.golang.org/protobuf \
|
|
shurcooL:httpfs:8d4bc4ba7749:shurcool_httpfs/vendor/github.com/shurcooL/httpfs \
|
|
shurcooL:vfsgen:0d455de96546:shurcool_vfsgen/vendor/github.com/shurcooL/vfsgen
|
|
|
|
USE_RC_SUBR= pushgateway
|
|
|
|
USERS= prometheus
|
|
GROUPS= prometheus
|
|
|
|
PLIST_FILES= bin/pushgateway
|
|
|
|
do-test:
|
|
@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GO_ENV} ${GMAKE} test)
|
|
|
|
.include <bsd.port.mk>
|