diff options
author | William Hubbs <william.hubbs@sony.com> | 2019-08-13 14:48:16 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2019-08-13 14:49:50 -0500 |
commit | fa8574e1bbec6d29ffbac3f5835476b55a6eebfe (patch) | |
tree | cfc4115395eaa5a8a256811d1ce500e02bd6338d /www-apps/karma-bin/karma-bin-0.43.ebuild | |
parent | dev-util/kdevelop-python: 5.4.1 version bump (diff) | |
download | gentoo-fa8574e1bbec6d29ffbac3f5835476b55a6eebfe.tar.gz gentoo-fa8574e1bbec6d29ffbac3f5835476b55a6eebfe.tar.bz2 gentoo-fa8574e1bbec6d29ffbac3f5835476b55a6eebfe.zip |
www-apps/karma-bin: 0.43 bump
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: William Hubbs <williamh@gentoo.org>
Diffstat (limited to 'www-apps/karma-bin/karma-bin-0.43.ebuild')
-rw-r--r-- | www-apps/karma-bin/karma-bin-0.43.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/www-apps/karma-bin/karma-bin-0.43.ebuild b/www-apps/karma-bin/karma-bin-0.43.ebuild new file mode 100644 index 000000000000..208ce387b321 --- /dev/null +++ b/www-apps/karma-bin/karma-bin-0.43.ebuild @@ -0,0 +1,40 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +MY_PN=${PN%-bin} + +inherit user + +DESCRIPTION="Alerts dashboard for Prometheus Alertmanager" +HOMEPAGE="https://github.com/prymitive/karma" +SRC_URI="https://github.com/prymitive/${MY_PN}/releases/download/v${PV}/${MY_PN}-linux-amd64.tar.gz -> ${P}-amd64.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +QA_PREBUILT="usr/bin/*" +RESTRICT="strip" +S="${WORKDIR}" + +pkg_setup() { + enewgroup ${MY_PN} + enewuser ${MY_PN} -1 -1 -1 ${MY_PN} +} + +src_install() { + dobin karma-linux-amd64 + dosym karma-linux-amd64 /usr/bin/karma + insinto /etc/${MY_PN} + newins "${FILESDIR}"/${MY_PN}-0.24.yaml ${MY_PN}.yaml + newinitd "${FILESDIR}"/${MY_PN}.initd ${MY_PN} +keepdir /var/log/${MY_PN} +fowners ${MY_PN}:${MY_PN} /var/log/${MY_PN} +} + +pkg_postinst() { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + elog "Please edit ${EROOT}/etc/karma/karma.yaml to match your system." + fi +} |