63 lines
3.6 KiB
Makefile
63 lines
3.6 KiB
Makefile
PORTNAME= php-fpm_exporter
|
|
DISTVERSIONPREFIX=v
|
|
DISTVERSION= 2.2.0
|
|
PORTREVISION= 6
|
|
CATEGORIES= net-mgmt
|
|
|
|
MAINTAINER= freebsd.org@neant.ro
|
|
COMMENT= Export php-fpm metrics in Prometheus format
|
|
WWW= https://github.com/hipages/php-fpm_exporter
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go:modules
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= hipages
|
|
GH_PROJECT= php-fpm_exporter
|
|
GH_TUPLE= \
|
|
beorn7:perks:v1.0.1:beorn7_perks/vendor/github.com/beorn7/perks \
|
|
cespare:xxhash:v2.1.2:cespare_xxhash_v2/vendor/github.com/cespare/xxhash/v2 \
|
|
davecgh:go-spew:v1.1.1:davecgh_go_spew/vendor/github.com/davecgh/go-spew \
|
|
fatih:color:v1.13.0:fatih_color/vendor/github.com/fatih/color \
|
|
fsnotify:fsnotify:v1.5.1:fsnotify_fsnotify/vendor/github.com/fsnotify/fsnotify \
|
|
go-ini:ini:v1.66.4:go_ini_ini/vendor/gopkg.in/ini.v1 \
|
|
go-yaml:yaml:496545a6307b:go_yaml_yaml_1/vendor/gopkg.in/yaml.v3 \
|
|
go-yaml:yaml:v2.4.0:go_yaml_yaml/vendor/gopkg.in/yaml.v2 \
|
|
golang:protobuf:v1.5.2:golang_protobuf/vendor/github.com/golang/protobuf \
|
|
golang:sys:33da011f77ad:golang_sys/vendor/golang.org/x/sys \
|
|
golang:text:v0.3.7:golang_text/vendor/golang.org/x/text \
|
|
gosuri:uitable:v0.0.4:gosuri_uitable/vendor/github.com/gosuri/uitable \
|
|
hashicorp:hcl:v1.0.0:hashicorp_hcl/vendor/github.com/hashicorp/hcl \
|
|
inconshreveable:mousetrap:v1.0.0:inconshreveable_mousetrap/vendor/github.com/inconshreveable/mousetrap \
|
|
magiconair:properties:v1.8.6:magiconair_properties/vendor/github.com/magiconair/properties \
|
|
mattn:go-colorable:v0.1.12:mattn_go_colorable/vendor/github.com/mattn/go-colorable \
|
|
mattn:go-isatty:v0.0.14:mattn_go_isatty/vendor/github.com/mattn/go-isatty \
|
|
mattn:go-runewidth:v0.0.8:mattn_go_runewidth/vendor/github.com/mattn/go-runewidth \
|
|
matttproud:golang_protobuf_extensions:v1.0.1:matttproud_golang_protobuf_extensions/vendor/github.com/matttproud/golang_protobuf_extensions \
|
|
mitchellh:go-homedir:v1.1.0:mitchellh_go_homedir/vendor/github.com/mitchellh/go-homedir \
|
|
mitchellh:mapstructure:v1.4.3:mitchellh_mapstructure/vendor/github.com/mitchellh/mapstructure \
|
|
pelletier:go-toml:v1.9.4:pelletier_go_toml/vendor/github.com/pelletier/go-toml \
|
|
pelletier:go-toml:v2.0.0-beta.8:pelletier_go_toml_v2/vendor/github.com/pelletier/go-toml/v2 \
|
|
pmezard:go-difflib:v1.0.0:pmezard_go_difflib/vendor/github.com/pmezard/go-difflib \
|
|
prometheus:client_golang:v1.12.1: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.32.1:prometheus_common/vendor/github.com/prometheus/common \
|
|
prometheus:procfs:v0.7.3:prometheus_procfs/vendor/github.com/prometheus/procfs \
|
|
protocolbuffers:protobuf-go:v1.28.0:protocolbuffers_protobuf_go/vendor/google.golang.org/protobuf \
|
|
sirupsen:logrus:v1.8.1:sirupsen_logrus/vendor/github.com/sirupsen/logrus \
|
|
spf13:afero:v1.8.2:spf13_afero/vendor/github.com/spf13/afero \
|
|
spf13:cast:v1.4.1:spf13_cast/vendor/github.com/spf13/cast \
|
|
spf13:cobra:v1.4.0:spf13_cobra/vendor/github.com/spf13/cobra \
|
|
spf13:jwalterweatherman:v1.1.0:spf13_jwalterweatherman/vendor/github.com/spf13/jwalterweatherman \
|
|
spf13:pflag:v1.0.5:spf13_pflag/vendor/github.com/spf13/pflag \
|
|
spf13:viper:v1.11.0:spf13_viper/vendor/github.com/spf13/viper \
|
|
stretchr:testify:v1.7.1:stretchr_testify/vendor/github.com/stretchr/testify \
|
|
subosito:gotenv:v1.2.0:subosito_gotenv/vendor/github.com/subosito/gotenv \
|
|
tomasen:fcgi_client:2bb3d819fd19:tomasen_fcgi_client/vendor/github.com/tomasen/fcgi_client
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
USE_RC_SUBR= php_fpm_exporter
|
|
|
|
.include <bsd.port.mk>
|