* [gentoo-commits] repo/gentoo:master commit in: app-metrics/consul_exporter/
@ 2019-12-03 9:48 Michał Górny
0 siblings, 0 replies; 4+ messages in thread
From: Michał Górny @ 2019-12-03 9:48 UTC (permalink / raw
To: gentoo-commits
commit: 4cfc626f41b85cde22b253bfbde3484e9edf8a47
Author: Holger Hoffstätte <holger <AT> applied-asynchrony <DOT> com>
AuthorDate: Mon Dec 2 22:31:37 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Dec 3 09:47:34 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cfc626f
app-metrics/consul_exporter: add licenses for transitive go dependencies
Bug: https://bugs.gentoo.org/695212
Signed-off-by: Holger Hoffstätte <holger <AT> applied-asynchrony.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-metrics/consul_exporter/consul_exporter-0.4.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-metrics/consul_exporter/consul_exporter-0.4.0.ebuild b/app-metrics/consul_exporter/consul_exporter-0.4.0.ebuild
index 12823ba01c9..d713d1ae991 100644
--- a/app-metrics/consul_exporter/consul_exporter-0.4.0.ebuild
+++ b/app-metrics/consul_exporter/consul_exporter-0.4.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Prometheus exporter for consul metrics"
HOMEPAGE="https://github.com/prometheus/consul_exporter"
SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-LICENSE="Apache-2.0"
+LICENSE="Apache-2.0 BSD BSD-2 MIT MPL-2.0"
SLOT="0"
KEYWORDS="~amd64"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-metrics/consul_exporter/
@ 2020-04-08 21:03 William Hubbs
0 siblings, 0 replies; 4+ messages in thread
From: William Hubbs @ 2020-04-08 21:03 UTC (permalink / raw
To: gentoo-commits
commit: 8aba6fde0b958ef78c5d94caed902e72aedfde8a
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 8 21:01:48 2020 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Apr 8 21:03:04 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8aba6fde
app-metrics/consul_exporter: 0.6.0 bump
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
app-metrics/consul_exporter/Manifest | 1 +
.../consul_exporter/consul_exporter-0.6.0.ebuild | 45 ++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/app-metrics/consul_exporter/Manifest b/app-metrics/consul_exporter/Manifest
index 1cf6b3f6f0c..195a6999b34 100644
--- a/app-metrics/consul_exporter/Manifest
+++ b/app-metrics/consul_exporter/Manifest
@@ -1 +1,2 @@
DIST consul_exporter-0.4.0.tar.gz 1107092 BLAKE2B 7f3d6ce797252e5895387d3bbd2a3ad41777bf4d98a4a7a4efc3e8caa0c71fd29be91675ae6fe304016f1cbf87ecf4ee3442b49d3bc08939d471326d4e5d4cd4 SHA512 faac0dfeec5b6fadf73ef68c0d24c059c89891918e498e145a50512b8c961764a02388b2bcce305e12ecf703fa76afdf5634b35aecbee0ac37926d78ce0b1e93
+DIST consul_exporter-0.6.0.tar.gz 617536 BLAKE2B eee039209fd4563c50c229bc18dd57ca31356a33bfba2644781f728eadbbaaee8ba594a1556ddb2dc4612ae7f4b27429b274fec5872a18c34d2a2cb8374839b1 SHA512 b941b8c15f20b696af3d121bb4de63b0cebd9ad1257f3cfa0dff7e7f3877c315567053042a7c88da5ae7830b9143e01751a6b561dcaff209f157be4cde1c4c49
diff --git a/app-metrics/consul_exporter/consul_exporter-0.6.0.ebuild b/app-metrics/consul_exporter/consul_exporter-0.6.0.ebuild
new file mode 100644
index 00000000000..15002532b5a
--- /dev/null
+++ b/app-metrics/consul_exporter/consul_exporter-0.6.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit go-module user
+CONSUL_EXPORTER_COMMIT=78be2c3
+MY_PV="v${PV/_rc/-rc.}"
+
+DESCRIPTION="Prometheus exporter for consul metrics"
+HOMEPAGE="https://github.com/prometheus/consul_exporter"
+SRC_URI="https://github.com/prometheus/consul_exporter/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0 BSD BSD-2 MIT MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="dev-util/promu"
+
+RESTRICT+=" test"
+
+pkg_setup() {
+ enewgroup ${PN}
+ enewuser ${PN} -1 -1 -1 ${PN}
+}
+
+src_prepare() {
+ default
+ sed -i -e "s/{{.Revision}}/${CONSUL_EXPORTER_COMMIT}/" \
+ -e "s/{{.Version}}/${PV}/" \
+ -e "s/-tags netgo/-mod vendor -tags netgo/" \
+ "${S}"/.promu.yml || die "Sed failed"
+}
+
+src_compile() {
+ promu build -v || die
+}
+
+src_install() {
+ newbin ${P} ${PN}
+ dodoc {README,CONTRIBUTING}.md
+ keepdir /var/log/consul_exporter
+ fowners ${PN}:${PN} /var/log/consul_exporter
+ newinitd "${FILESDIR}"/${PN}.initd ${PN}
+ newconfd "${FILESDIR}"/${PN}.confd ${PN}
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-metrics/consul_exporter/
@ 2020-09-13 5:24 William Hubbs
0 siblings, 0 replies; 4+ messages in thread
From: William Hubbs @ 2020-09-13 5:24 UTC (permalink / raw
To: gentoo-commits
commit: c9e5267cf18fa3020028cb17099943dced3b64e3
Author: William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 13 05:22:40 2020 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sun Sep 13 05:23:59 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9e5267c
app-metrics/consul_exporter: 0.7.1 bump
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
app-metrics/consul_exporter/Manifest | 1 +
.../consul_exporter/consul_exporter-0.7.1.ebuild | 44 ++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/app-metrics/consul_exporter/Manifest b/app-metrics/consul_exporter/Manifest
index 195a6999b34..24515cdeb90 100644
--- a/app-metrics/consul_exporter/Manifest
+++ b/app-metrics/consul_exporter/Manifest
@@ -1,2 +1,3 @@
DIST consul_exporter-0.4.0.tar.gz 1107092 BLAKE2B 7f3d6ce797252e5895387d3bbd2a3ad41777bf4d98a4a7a4efc3e8caa0c71fd29be91675ae6fe304016f1cbf87ecf4ee3442b49d3bc08939d471326d4e5d4cd4 SHA512 faac0dfeec5b6fadf73ef68c0d24c059c89891918e498e145a50512b8c961764a02388b2bcce305e12ecf703fa76afdf5634b35aecbee0ac37926d78ce0b1e93
DIST consul_exporter-0.6.0.tar.gz 617536 BLAKE2B eee039209fd4563c50c229bc18dd57ca31356a33bfba2644781f728eadbbaaee8ba594a1556ddb2dc4612ae7f4b27429b274fec5872a18c34d2a2cb8374839b1 SHA512 b941b8c15f20b696af3d121bb4de63b0cebd9ad1257f3cfa0dff7e7f3877c315567053042a7c88da5ae7830b9143e01751a6b561dcaff209f157be4cde1c4c49
+DIST consul_exporter-0.7.1.tar.gz 1583526 BLAKE2B 8c3211f1d75a767e18e47e16eef056dc07403abbd1cdb165a45b8d0830124e3e91b7dac67301e1b5d1ed564a94dfe9ff05c43267dbeb950ca1ff9b698ebd25ce SHA512 bc5ef24151d53abefd4b975f1ca3a18c98837c6c650c4bf6851fbc1299620db6e8e79a05d2355579ee78c1d2721ceec4bc946ee76d6bf7acdecb6f76957f5984
diff --git a/app-metrics/consul_exporter/consul_exporter-0.7.1.ebuild b/app-metrics/consul_exporter/consul_exporter-0.7.1.ebuild
new file mode 100644
index 00000000000..b081f85524e
--- /dev/null
+++ b/app-metrics/consul_exporter/consul_exporter-0.7.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit go-module
+CONSUL_EXPORTER_COMMIT=ae46e2e
+MY_PV="v${PV/_rc/-rc.}"
+
+DESCRIPTION="Prometheus exporter for consul metrics"
+HOMEPAGE="https://github.com/prometheus/consul_exporter"
+SRC_URI="https://github.com/prometheus/consul_exporter/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0 BSD BSD-2 MIT MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="dev-util/promu"
+COMMON_DEPEND="acct-group/consul_exporter
+ acct-user/consul_exporter"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}"
+
+RESTRICT+=" test"
+
+src_prepare() {
+ default
+ sed -i \
+ -e "s/{{.Revision}}/${CONSUL_EXPORTER_COMMIT}/" \
+ -e "s/{{.Version}}/${PV}/" \
+ .promu.yml || die "Sed failed"
+}
+
+src_compile() {
+ promu build -v || die
+}
+
+src_install() {
+ newbin ${P} ${PN}
+ dodoc {README,CONTRIBUTING}.md
+ keepdir /var/log/consul_exporter
+ fowners ${PN}:${PN} /var/log/consul_exporter
+ newinitd "${FILESDIR}"/${PN}.initd ${PN}
+ newconfd "${FILESDIR}"/${PN}.confd ${PN}
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-metrics/consul_exporter/
@ 2022-03-15 15:44 Conrad Kostecki
0 siblings, 0 replies; 4+ messages in thread
From: Conrad Kostecki @ 2022-03-15 15:44 UTC (permalink / raw
To: gentoo-commits
commit: 488daa7558954d435cce1edd289f093424a95cb1
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 15 15:39:24 2022 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 15:43:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=488daa75
app-metrics/consul_exporter: drop 0.4.0, 0.6.0
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-metrics/consul_exporter/Manifest | 2 -
.../consul_exporter/consul_exporter-0.4.0.ebuild | 52 ----------------------
.../consul_exporter/consul_exporter-0.6.0.ebuild | 45 -------------------
3 files changed, 99 deletions(-)
diff --git a/app-metrics/consul_exporter/Manifest b/app-metrics/consul_exporter/Manifest
index 24515cdeb90a..818784ebf4b6 100644
--- a/app-metrics/consul_exporter/Manifest
+++ b/app-metrics/consul_exporter/Manifest
@@ -1,3 +1 @@
-DIST consul_exporter-0.4.0.tar.gz 1107092 BLAKE2B 7f3d6ce797252e5895387d3bbd2a3ad41777bf4d98a4a7a4efc3e8caa0c71fd29be91675ae6fe304016f1cbf87ecf4ee3442b49d3bc08939d471326d4e5d4cd4 SHA512 faac0dfeec5b6fadf73ef68c0d24c059c89891918e498e145a50512b8c961764a02388b2bcce305e12ecf703fa76afdf5634b35aecbee0ac37926d78ce0b1e93
-DIST consul_exporter-0.6.0.tar.gz 617536 BLAKE2B eee039209fd4563c50c229bc18dd57ca31356a33bfba2644781f728eadbbaaee8ba594a1556ddb2dc4612ae7f4b27429b274fec5872a18c34d2a2cb8374839b1 SHA512 b941b8c15f20b696af3d121bb4de63b0cebd9ad1257f3cfa0dff7e7f3877c315567053042a7c88da5ae7830b9143e01751a6b561dcaff209f157be4cde1c4c49
DIST consul_exporter-0.7.1.tar.gz 1583526 BLAKE2B 8c3211f1d75a767e18e47e16eef056dc07403abbd1cdb165a45b8d0830124e3e91b7dac67301e1b5d1ed564a94dfe9ff05c43267dbeb950ca1ff9b698ebd25ce SHA512 bc5ef24151d53abefd4b975f1ca3a18c98837c6c650c4bf6851fbc1299620db6e8e79a05d2355579ee78c1d2721ceec4bc946ee76d6bf7acdecb6f76957f5984
diff --git a/app-metrics/consul_exporter/consul_exporter-0.4.0.ebuild b/app-metrics/consul_exporter/consul_exporter-0.4.0.ebuild
deleted file mode 100644
index d713d1ae9911..000000000000
--- a/app-metrics/consul_exporter/consul_exporter-0.4.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# 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
-
-EGO_PN="github.com/prometheus/consul_exporter"
-EGIT_COMMIT="v${PV/_rc/-rc.}"
-CONSUL_EXPORTER_COMMIT=75f02d8
-
-DESCRIPTION="Prometheus exporter for consul metrics"
-HOMEPAGE="https://github.com/prometheus/consul_exporter"
-SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0 BSD BSD-2 MIT MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND=">=dev-lang/go-1.11
- dev-util/promu"
-
-RESTRICT="strip test"
-
-pkg_setup() {
- enewgroup ${PN}
- enewuser ${PN} -1 -1 -1 ${PN}
-}
-
-src_prepare() {
- default
- sed -i -e "s/{{.Revision}}/${CONSUL_EXPORTER_COMMIT}/" \
- -e "s/{{.Version}}/${PV}/" \
- -e "s/-tags netgo/-mod vendor -tags netgo/" \
- src/${EGO_PN}/.promu.yml || die "Sed failed"
-}
-
-src_compile() {
- pushd src/${EGO_PN} || die
- GO111MODULE=on GOCACHE="${T}/go-cache" promu build -v || die
- popd || die
-}
-
-src_install() {
- pushd src/${EGO_PN} || die
- dobin consul_exporter
- dodoc {README,CONTRIBUTING}.md
- popd || die
- keepdir /var/log/consul_exporter
- fowners ${PN}:${PN} /var/log/consul_exporter
- newinitd "${FILESDIR}"/${PN}.initd ${PN}
- newconfd "${FILESDIR}"/${PN}.confd ${PN}
-}
diff --git a/app-metrics/consul_exporter/consul_exporter-0.6.0.ebuild b/app-metrics/consul_exporter/consul_exporter-0.6.0.ebuild
deleted file mode 100644
index 15002532b5a0..000000000000
--- a/app-metrics/consul_exporter/consul_exporter-0.6.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit go-module user
-CONSUL_EXPORTER_COMMIT=78be2c3
-MY_PV="v${PV/_rc/-rc.}"
-
-DESCRIPTION="Prometheus exporter for consul metrics"
-HOMEPAGE="https://github.com/prometheus/consul_exporter"
-SRC_URI="https://github.com/prometheus/consul_exporter/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0 BSD BSD-2 MIT MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-BDEPEND="dev-util/promu"
-
-RESTRICT+=" test"
-
-pkg_setup() {
- enewgroup ${PN}
- enewuser ${PN} -1 -1 -1 ${PN}
-}
-
-src_prepare() {
- default
- sed -i -e "s/{{.Revision}}/${CONSUL_EXPORTER_COMMIT}/" \
- -e "s/{{.Version}}/${PV}/" \
- -e "s/-tags netgo/-mod vendor -tags netgo/" \
- "${S}"/.promu.yml || die "Sed failed"
-}
-
-src_compile() {
- promu build -v || die
-}
-
-src_install() {
- newbin ${P} ${PN}
- dodoc {README,CONTRIBUTING}.md
- keepdir /var/log/consul_exporter
- fowners ${PN}:${PN} /var/log/consul_exporter
- newinitd "${FILESDIR}"/${PN}.initd ${PN}
- newconfd "${FILESDIR}"/${PN}.confd ${PN}
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-03-15 15:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-12-03 9:48 [gentoo-commits] repo/gentoo:master commit in: app-metrics/consul_exporter/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2020-04-08 21:03 William Hubbs
2020-09-13 5:24 William Hubbs
2022-03-15 15:44 Conrad Kostecki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox