dev-python/prometheus_client: Version bump to 0.0.20
authorManuel Rüger <mrueg@gentoo.org>
Tue, 1 Aug 2017 12:25:27 +0000 (14:25 +0200)
committerManuel Rüger <mrueg@gentoo.org>
Tue, 1 Aug 2017 12:25:27 +0000 (14:25 +0200)
Package-Manager: Portage-2.3.6, Repoman-2.3.2

dev-python/prometheus_client/Manifest
dev-python/prometheus_client/prometheus_client-0.0.20.ebuild [new file with mode: 0644]

index b53cff31143a001316e166ffdd9171ac2d4b76f8..045f996ff75334e5c1a1ed7d2ae892b4072e865f 100644 (file)
@@ -1 +1,2 @@
 DIST prometheus_client-0.0.19.tar.gz 39428 SHA256 ba85951f8183bc4992259a8117a5564652a396d236f8cda0ae70fb9aaac71ab4 SHA512 0ee5d95c27f7be5f88d462d8a851f6072af49421788c6b3e9f4f51aa5dd1ecd9324539405c1873a3becd62c0cb03bd540c0c29d8fd2115e865bf53189740b0da WHIRLPOOL 586a3ecc954c2a1e4b2d422888afe9fd7477051841d4f1c11d402261d061a04b96ff5dec5ad51f4f2704fe22b2b4f5648e5c63101338fdb6a5bcbfc2f2c35597
+DIST prometheus_client-0.0.20.tar.gz 40773 SHA256 2012c4e5ef6fa559881e02c18a191b6dba43950ee8e03def8b4b5ff271eb7e99 SHA512 fa82eafedd6cfbefbad38de87ef556be512cb62e912de135dcba1cf8227302f7650dfb4139dd22ae760793c150db433b505f405c925f07763aece46d66415594 WHIRLPOOL dbe5b8dd33abe3cac4acffcb188160f425de66ae8141ed6ba8d2130eb770f7dbb636fa66bbfb6fe866048f4758b631a2d8b5898fe13281467e1862c390bb12f1
diff --git a/dev-python/prometheus_client/prometheus_client-0.0.20.ebuild b/dev-python/prometheus_client/prometheus_client-0.0.20.ebuild
new file mode 100644 (file)
index 0000000..af5a5b0
--- /dev/null
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+inherit distutils-r1
+
+DESCRIPTION="Python client for the Prometheus monitoring system"
+HOMEPAGE="https://pypi.python.org/pypi/prometheus_client"
+SRC_URI="https://github.com/prometheus/client_python/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+S=${WORKDIR}/client_python-${PV}
+
+RDEPEND="|| ( dev-python/twisted[${PYTHON_USEDEP}] dev-python/twisted-web[${PYTHON_USEDEP}] )"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+       test? ( ${RDEPEND}
+               dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_test() {
+       pytest || die
+}