From: "Zac Medico" <zmedico@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-metrics/redis_exporter/
Date: Sun, 22 Sep 2019 20:55:31 +0000 (UTC) [thread overview]
Message-ID: <1569185724.56ce58af67167f1c59a5767ba1284de071299d9b.zmedico@gentoo> (raw)
commit: 56ce58af67167f1c59a5767ba1284de071299d9b
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 22 20:54:40 2019 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sun Sep 22 20:55:24 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56ce58af
app-metrics/redis_exporter: Bump to version 1.2.0
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
app-metrics/redis_exporter/Manifest | 1 +
.../redis_exporter/redis_exporter-1.2.0.ebuild | 75 ++++++++++++++++++++++
2 files changed, 76 insertions(+)
diff --git a/app-metrics/redis_exporter/Manifest b/app-metrics/redis_exporter/Manifest
index 8ccbd89d564..a1bc11c294d 100644
--- a/app-metrics/redis_exporter/Manifest
+++ b/app-metrics/redis_exporter/Manifest
@@ -1,2 +1,3 @@
DIST redis_exporter-0.20.2.tar.gz 970030 BLAKE2B 55bee727f196fad642944a444220d9f71958d812f5f5f4d79a0c741cada25f29690ff4f185ec4028cf5216139e5351022a134fb1b0f2b5b45b384a831dbf1802 SHA512 eee4cc9de79ea256571c9650abae6b044fc78b7683abef544d5313dad5d46d3516c55e939c33f87849cc52ed2465797d20b606e386aa4fe187dd16d30354173e
DIST redis_exporter-1.1.1.tar.gz 1415085 BLAKE2B 0a687d68864ae00e52c46839c15b24f3ec394e2865ee9ca6fe158f9405da8e7641c8b1e7328e80074aa919c4b28c9cf6bd296bf213de5ff6d1c9c5c62f8c1ce9 SHA512 13d5cbb20b4b52e0d8eb71437f81c2aae10599e1bd2f3e6cd0a907197078298e8d2d8b9d068c0872894a581c1feb0656875f88338acace9c61842033c2d20e35
+DIST redis_exporter-1.2.0.tar.gz 1415085 BLAKE2B 6f5f7ebca89da96d4d6fb26cb64598d18b854557e7b4eaf4ce9e311d3e0308172b2f892f09645e534f9739e8d333243b20d4436daf0f5ef4edb478ee36177f91 SHA512 163d48f0728c5c1ab9cb14b69b6073ab1bd2a2ff8293838f528eefff0b6ae8fb8b9e6579d91d0cf195ad03361ca3bbccc39f893d08e6fd2b8e4b697a6e0cdb65
diff --git a/app-metrics/redis_exporter/redis_exporter-1.2.0.ebuild b/app-metrics/redis_exporter/redis_exporter-1.2.0.ebuild
new file mode 100644
index 00000000000..cb331c1f473
--- /dev/null
+++ b/app-metrics/redis_exporter/redis_exporter-1.2.0.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit user golang-build golang-vcs-snapshot systemd
+
+EGO_PN="github.com/oliver006/redis_exporter"
+EGIT_COMMIT="2436f66e35c2ea6876ac857e25ae13ce909e8c3a"
+ARCHIVE_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Prometheus Exporter for Redis Metrics. Supports Redis 2.x, 3.x and 4.x"
+HOMEPAGE="https://github.com/oliver006/redis_exporter"
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="MIT Apache-2.0 BSD"
+SLOT="0"
+IUSE=""
+S=${WORKDIR}/${P}/src/${EGO_PN}
+
+pkg_setup() {
+ enewgroup ${PN}
+ enewuser ${PN} -1 -1 -1 ${PN}
+}
+
+src_prepare() {
+ default
+ sed -e "s|\(^[[:space:]]*VERSION[[:space:]]*=[[:space:]]*\).*|\1\"${PV}\"|" \
+ -e "s|\(^[[:space:]]*BUILD_DATE[[:space:]]*=[[:space:]]*\).*|\1\"$(LC_ALL=C date -u)\"|" \
+ -e "s|\(^[[:space:]]*COMMIT_SHA1[[:space:]]*=[[:space:]]*\).*|\1\"${EGIT_COMMIT}\"|" \
+ -i main.go || die
+
+ sed -e 's:TestCommandStats(:_\0:' \
+ -e 's:TestExportClientList(:_\0:' \
+ -e 's:TestGetKeyInfo(:_\0:' \
+ -e 's:TestGetKeysFromPatterns(:_\0:' \
+ -e 's:TestHTTPEndpoints(:_\0:' \
+ -e 's:TestHostVariations(:_\0:' \
+ -e 's:TestIncludeSystemMemoryMetric(:_\0:' \
+ -e 's:TestKeySizeList(:_\0:' \
+ -e 's:TestKeysReset(:_\0:' \
+ -e 's:TestKeyValuesAndSizes(:_\0:' \
+ -e 's:TestLatencySpike(:_\0:' \
+ -e 's:TestLuaScript(:_\0:' \
+ -e 's:TestScanForKeys(:_\0:' \
+ -e 's:TestSimultaneousRequests(:_\0:' \
+ -e 's:TestSlowLog(:_\0:' \
+ -i exporter_test.go || die
+}
+
+src_compile() {
+ export -n GOCACHE XDG_CACHE_HOME #684052
+ export GO111MODULE=on GOFLAGS="-mod=vendor -v -x" GOBIN="${WORKDIR}/${P}/bin"
+ go install -work ${EGO_BUILD_FLAGS} \
+ -ldflags="-X main.BuildVersion=${PV} -X main.BuildCommitSha=${EGIT_COMMIT} -X main.BuildDate=$(date +%F-%T)" \
+ "${EGO_PN}" || die
+}
+
+src_test() {
+ go test -work "${EGO_PN}" || die
+}
+
+src_install() {
+ dobin "${GOBIN}/redis_exporter"
+ dodoc README.md
+ local dir
+ for dir in /var/{lib,log}/${PN}; do
+ keepdir "${dir}"
+ fowners ${PN}:${PN} "${dir}"
+ done
+ newinitd "${FILESDIR}"/${PN}.initd ${PN}
+ newconfd "${FILESDIR}"/${PN}.confd ${PN}
+ insinto /etc/logrotate.d
+ newins "${FILESDIR}/${PN}.logrotated" "${PN}"
+ systemd_dounit "${FILESDIR}/${PN}.service"
+}
next reply other threads:[~2019-09-22 20:55 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-09-22 20:55 Zac Medico [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-12-15 21:36 [gentoo-commits] repo/gentoo:master commit in: app-metrics/redis_exporter/ Zac Medico
2024-08-11 22:45 Zac Medico
2024-06-16 23:24 Zac Medico
2024-06-16 23:12 Zac Medico
2022-08-26 21:20 Zac Medico
2022-06-18 20:30 Zac Medico
2022-06-18 20:30 Zac Medico
2022-06-10 20:02 Zac Medico
2022-06-02 2:47 Zac Medico
2022-05-16 3:21 Zac Medico
2022-05-16 3:21 Zac Medico
2022-03-18 18:26 Zac Medico
2022-03-12 19:14 Zac Medico
2022-03-12 19:14 Zac Medico
2022-02-18 19:16 Zac Medico
2022-02-18 19:16 Zac Medico
2022-02-04 21:15 Zac Medico
2022-01-24 3:27 Zac Medico
2021-12-05 19:02 Zac Medico
2021-12-05 19:00 Zac Medico
2021-11-12 3:16 Zac Medico
2021-11-11 23:54 Zac Medico
2021-11-11 1:02 Zac Medico
2021-11-10 23:21 Zac Medico
2021-11-07 3:25 Zac Medico
2021-04-01 2:54 Zac Medico
2021-04-01 2:47 Zac Medico
2021-04-01 2:46 Zac Medico
2021-04-01 2:44 Zac Medico
2020-07-10 18:00 William Hubbs
2019-09-24 17:03 Zac Medico
2019-09-21 4:04 Zac Medico
2019-09-21 2:58 Zac Medico
2019-04-21 22:29 Zac Medico
2019-04-21 22:20 Zac Medico
2018-07-17 16:28 Manuel Rüger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1569185724.56ce58af67167f1c59a5767ba1284de071299d9b.zmedico@gentoo \
--to=zmedico@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox