forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
www-apps/grafana-bin: Version bump to 6.2.5
Package-Manager: Portage-2.3.67, Repoman-2.3.16 Signed-off-by: Manuel Rüger <[email protected]>
- Loading branch information
Showing
2 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# Copyright 1999-2019 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
inherit user systemd | ||
|
||
MY_PN=${PN/-bin/} | ||
MY_PV=${PV/_beta/-beta} | ||
S=${WORKDIR}/${MY_PN}-${MY_PV} | ||
|
||
DESCRIPTION="Gorgeous metric viz, dashboards & editors for Graphite, InfluxDB & OpenTSDB" | ||
HOMEPAGE="https://grafana.org" | ||
SRC_URI="https://dl.grafana.com/oss/release/grafana-${PV}.linux-amd64.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
DEPEND="" | ||
RDEPEND="${DEPEND} | ||
media-libs/fontconfig" | ||
|
||
QA_EXECSTACK="usr/share/grafana/tools/phantomjs/phantomjs" | ||
QA_PREBUILT="usr/bin/grafana-* ${QA_EXECSTACK}" | ||
QA_PRESTRIPPED=${QA_PREBUILT} | ||
|
||
pkg_setup() { | ||
enewgroup grafana | ||
enewuser grafana -1 -1 /usr/share/grafana grafana | ||
} | ||
|
||
src_install() { | ||
keepdir /etc/grafana | ||
insinto /etc/grafana | ||
newins "${S}"/conf/sample.ini grafana.ini | ||
rm "${S}"/conf/sample.ini || die | ||
|
||
# Frontend assets | ||
insinto /usr/share/${MY_PN} | ||
doins -r public conf | ||
|
||
dobin bin/grafana-cli | ||
dobin bin/grafana-server | ||
|
||
exeinto /usr/share/grafana/tools/phantomjs | ||
doexe tools/phantomjs/phantomjs | ||
|
||
insinto /usr/share/grafana/tools/phantomjs | ||
doins tools/phantomjs/render.js | ||
|
||
newconfd "${FILESDIR}"/grafana.confd grafana | ||
newinitd "${FILESDIR}"/grafana.initd.3 grafana | ||
systemd_newunit "${FILESDIR}"/grafana.service grafana.service | ||
|
||
keepdir /var/{lib,log}/grafana | ||
keepdir /var/lib/grafana/{dashboards,plugins} | ||
fowners grafana:grafana /var/{lib,log}/grafana | ||
fowners grafana:grafana /var/lib/grafana/{dashboards,plugins} | ||
fperms 0750 /var/{lib,log}/grafana | ||
fperms 0750 /var/lib/grafana/{dashboards,plugins} | ||
} | ||
|
||
postinst() { | ||
elog "${PN} has built-in log rotation. Please see [log.file] section of" | ||
elog "/etc/grafana/grafana.ini for related settings." | ||
elog | ||
elog "You may add your own custom configuration for app-admin/logrotate if you" | ||
elog "wish to use external rotation of logs. In this case, you also need to make" | ||
elog "sure the built-in rotation is turned off." | ||
} |