commit:     a583b1f12d6320925bd51a3f6bbb452c788e838d
Author:     Patrick Lauer <patrick <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  8 17:35:15 2021 +0000
Commit:     罗百科 <patrick <AT> gentoo <DOT> org>
CommitDate: Tue Jun  8 17:35:47 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a583b1f1

www-apps/grafana-bin: Bump to 8.0.0 7.5.7

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Patrick Lauer <patrick <AT> gentoo.org>

 www-apps/grafana-bin/Manifest                 |  2 +
 www-apps/grafana-bin/grafana-bin-7.5.7.ebuild | 64 +++++++++++++++++++++++++++
 www-apps/grafana-bin/grafana-bin-8.0.0.ebuild | 64 +++++++++++++++++++++++++++
 3 files changed, 130 insertions(+)

diff --git a/www-apps/grafana-bin/Manifest b/www-apps/grafana-bin/Manifest
index cafa1b0dc83..c25267eccf9 100644
--- a/www-apps/grafana-bin/Manifest
+++ b/www-apps/grafana-bin/Manifest
@@ -3,3 +3,5 @@ DIST grafana-bin-7.5.1.tar.gz 55420645 BLAKE2B 
1100f68eeaeda5dd4d7928c0e16bcefe6
 DIST grafana-bin-7.5.2.tar.gz 52181388 BLAKE2B 
7203ffb42169d9b92b2f251015195373abe58619ec7da7e65037d30a7a856e02dd07abc93c41b4f911fa1bd8b382d29e753f75b6717e65f211687127f0ce7ad9
 SHA512 
4eeff81371149f22f0c708d467623ace32ef1c9cd812d232c21323eeeb9bfa4e54658bca875b6c40c9b25caa4a56ea43e39b5389753348cc79710228ae135309
 DIST grafana-bin-7.5.4.tar.gz 52194914 BLAKE2B 
d2a6666d0d45116fe8b3241d38bef837e306c621fd9eb1b4e3b99ece17465e93643a9a0ba98504255b32826a97d91559bc04ba2eed9bfa9398d7346e8147439e
 SHA512 
690038d39269341f435b79d430e11d8e1a54367ae2ccf3b5f625b8e7b87bbce2f9c650e1b446522a475c7c3b7da91786e93d5964150c9c208471febc1e498300
 DIST grafana-bin-7.5.6.tar.gz 52195022 BLAKE2B 
e74d54600813905d380b39adb12caf04aebd40e2ba1f9079eb36aa71f6b4813f89e1c68a5dd54149f06774aeba49d17009c751ef2dfd5de5cd4ec0ece9a90847
 SHA512 
f5472c6e12e9f67d96ef50e7646efc994cfe706837ffc38c0e35caae6aac309fa4a28f2ac7eb40ad2a829ea84c84d59ee76149793bf9e025f1e038276521174b
+DIST grafana-bin-7.5.7.tar.gz 52194760 BLAKE2B 
4cc60188bb750c0d36d8b50336f51f8410cca5a730a93cd1536479dabefba79c955cddec554e7fabed782bdcbdf751c33794f893b4e0981214f3fc1041ee976a
 SHA512 
ea5e9eef7a013e770abe827029bbb2b8b3ccfe28db985541597677671510e4c76b42009ceddfc687d23c249be792b99f1e8d5d518a271f36c4497d38380f0b54
+DIST grafana-bin-8.0.0.tar.gz 55509260 BLAKE2B 
1341781f711a8f554f502bc312663be20eee6f5c6ba2f0817eaf1ca5daf2f6f9b29dcff1a23f053692a320281f0f8c208670f14b334559c2d0dc1ad35cf13127
 SHA512 
778e3c8fce0ec4ed29af4c095baf25e4641477a2fc5fe91ff45d75ecc74ae7a65b29e62708137479628eff00e454d03fb92344692ec05484f8f1c7949527a516

diff --git a/www-apps/grafana-bin/grafana-bin-7.5.7.ebuild 
b/www-apps/grafana-bin/grafana-bin-7.5.7.ebuild
new file mode 100644
index 00000000000..229e2a789b9
--- /dev/null
+++ b/www-apps/grafana-bin/grafana-bin-7.5.7.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit 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="acct-group/grafana
+       acct-user/grafana"
+RDEPEND="${DEPEND}
+       media-libs/fontconfig"
+
+QA_PREBUILT="usr/bin/grafana-*"
+QA_PRESTRIPPED=${QA_PREBUILT}
+
+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
+
+       newconfd "${FILESDIR}"/grafana-r1.confd grafana
+       newinitd "${FILESDIR}"/grafana.initd 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() {
+       if [[ -z "${REPLACING_VERSIONS}" ]]; then
+               # This is a new installation
+
+               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."
+       fi
+}

diff --git a/www-apps/grafana-bin/grafana-bin-8.0.0.ebuild 
b/www-apps/grafana-bin/grafana-bin-8.0.0.ebuild
new file mode 100644
index 00000000000..229e2a789b9
--- /dev/null
+++ b/www-apps/grafana-bin/grafana-bin-8.0.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit 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="acct-group/grafana
+       acct-user/grafana"
+RDEPEND="${DEPEND}
+       media-libs/fontconfig"
+
+QA_PREBUILT="usr/bin/grafana-*"
+QA_PRESTRIPPED=${QA_PREBUILT}
+
+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
+
+       newconfd "${FILESDIR}"/grafana-r1.confd grafana
+       newinitd "${FILESDIR}"/grafana.initd 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() {
+       if [[ -z "${REPLACING_VERSIONS}" ]]; then
+               # This is a new installation
+
+               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."
+       fi
+}

Reply via email to