blob: 009608d472b2090885284f04d2e452ff264ae631 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
# $NetBSD: Makefile,v 1.69 2022/07/21 19:12:58 tnn Exp $
# Important: UI has to be manually built when updating. See instructions below.
DISTNAME= prometheus-2.37.0
MASTER_SITES= ${MASTER_SITE_GITHUB:=prometheus/}
CATEGORIES= databases
GITHUB_TAG= v${PKGVERSION_NOREV}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://prometheus.io/
COMMENT= The Prometheus monitoring system and time series database
LICENSE= apache-2.0
.include "go-modules.mk"
# How to rebuild UI after bumping version:
# 1. install lang/npm
# 2. comment out the DISTFILES=... line
# 3. run "make distinfo extract update-ui"
# 4. publish the resulting distfile on MASTER_SITE_LOCAL
# 5. uncomment the DISTFILES=... line and regen distinfo
.PHONY: update-ui
update-ui:
cd ${WRKSRC}/web/ui && \
npm install && \
npm run build && \
${CHMOD} -x static/react/favicon.ico static/react/manifest.json && \
cd ../../.. && \
${TOOLS_PLATFORM.tar} -czf ${REACT_UI_DIST} ${DISTNAME}/web/ui/static/react && \
${CP} ${REACT_UI_DIST} ${DISTDIR}/${REACT_UI_DIST} && \
${ECHO} "UI built. Run this command:" && \
${ECHO} "# scp ${DISTDIR}/${REACT_UI_DIST} ftp.netbsd.org:/pub/pkgsrc/distfiles/LOCAL_PORTS/."
REACT_UI_DIST= ${DISTNAME}-react-ui.tar.gz
SITES.${REACT_UI_DIST}= ${MASTER_SITE_LOCAL}
# comment out this when running make update-ui
DISTFILES= ${DEFAULT_DISTFILES} ${REACT_UI_DIST}
GO_DIST_BASE= ${DISTNAME}
GO_SRCPATH= github.com/prometheus/prometheus
GO_BUILD_DATE_cmd= ${DATE} "+%Y-%m-%d"
GO_XFLAG_PREFIX= -X github.com/prometheus/common/version
GO_LDFLAGS= -s
GO_LDFLAGS+= ${GO_XFLAG_PREFIX}.Branch=release-${PKGVERSION_NOREV:R}
GO_LDFLAGS+= ${GO_XFLAG_PREFIX}.BuildDate=${GO_BUILD_DATE_cmd:sh}
GO_LDFLAGS+= ${GO_XFLAG_PREFIX}.BuildUser=pkgsrc
GO_LDFLAGS+= ${GO_XFLAG_PREFIX}.Revision=${GITHUB_TAG}
GO_LDFLAGS+= ${GO_XFLAG_PREFIX}.Version=${PKGVERSION_NOREV}
PKG_SYSCONFSUBDIR= prometheus
USE_TOOLS+= pax
BUILD_DEFS+= VARBASE PKG_SYSCONFDIR
SUBST_CLASSES+= paths
SUBST_FILES.paths+= cmd/prometheus/main.go
SUBST_STAGE.paths= post-configure
SUBST_VARS.paths= PKG_SYSCONFDIR VARBASE
SUBST_CLASSES+= webui
SUBST_FILES.webui= web/ui/ui.go
SUBST_STAGE.webui= post-configure
SUBST_VARS.webui= WEBUI_DIR
MAKE_DIRS+= ${PKG_SYSCONFDIR}/consoles ${PKG_SYSCONFDIR}/console_libraries
EXAMPLE_DIR= share/examples/prometheus
EXAMPLE_FILES= prometheus.yml
EXAMPLE_FILES+= consoles/index.html.example consoles/node-cpu.html \
consoles/node-disk.html consoles/node-overview.html \
consoles/node.html consoles/prometheus-overview.html \
consoles/prometheus.html
EXAMPLE_FILES+= console_libraries/menu.lib console_libraries/prom.lib
WEBUI_DIR= ${PREFIX}/share/prometheus
INSTALLATION_DIRS+= ${EXAMPLE_DIR} ${WEBUI_DIR}
.for f in ${EXAMPLE_FILES}
CONF_FILES+= ${EXAMPLE_DIR}/${f} ${PKG_SYSCONFDIR}/${f}
.endfor
do-build:
.for f in prometheus promtool
${RUN} cd ${WRKSRC} && ${_ULIMIT_CMD} ${PKGSRC_SETENV} ${MAKE_ENV} \
${GO} install -v -ldflags ${GO_LDFLAGS:Q} ./cmd/${f}/...
.endfor
post-install:
${INSTALL_DATA} ${WRKSRC}/documentation/examples/prometheus.yml \
${DESTDIR}${PREFIX}/${EXAMPLE_DIR}
.for f in consoles console_libraries
cd ${WRKSRC} && ${PAX} -rw ${f} ${DESTDIR}${PREFIX}/${EXAMPLE_DIR}
.endfor
cd ${WRKSRC}/web/ui && ${PAX} -rw static ${DESTDIR}${WEBUI_DIR}
${CHMOD} -R g-w ${DESTDIR}${WEBUI_DIR}/static
.for f in ${EXAMPLE_FILES}
${CHMOD} ${NONBINMODE} ${DESTDIR}${PREFIX}/${EXAMPLE_DIR}/${f}
.endfor
.include "../../lang/go/go-module.mk"
.include "../../mk/bsd.pkg.mk"
|