diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-01-28 20:36:46 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-01-28 20:38:42 +0200 |
commit | f71b24643dba56e1cc63306b48a8c5a07dc23a84 (patch) | |
tree | 372af85ea606554b5a977a5d50f19fccec26e046 /dev-python/prometheus_client | |
parent | dev-python/rich: add 11.1.0 (diff) | |
download | gentoo-f71b24643dba56e1cc63306b48a8c5a07dc23a84.tar.gz gentoo-f71b24643dba56e1cc63306b48a8c5a07dc23a84.tar.bz2 gentoo-f71b24643dba56e1cc63306b48a8c5a07dc23a84.zip |
dev-python/prometheus_client: add 0.13.1
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/prometheus_client')
-rw-r--r-- | dev-python/prometheus_client/Manifest | 1 | ||||
-rw-r--r-- | dev-python/prometheus_client/prometheus_client-0.13.1.ebuild | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest index c854755c9683..11b34cbe7c74 100644 --- a/dev-python/prometheus_client/Manifest +++ b/dev-python/prometheus_client/Manifest @@ -1,2 +1,3 @@ DIST prometheus_client-0.12.0.tar.gz 73521 BLAKE2B eb90c7f3991519fe132f01612d6aadd10193947069b79e67c9e37faa4e174d739ca78b12de028dfc922cb368c7405baeb4fa929b378a91db12e67190ca3561ff SHA512 ebcbbed706a96a9402eb985f5da15ee8fae09de952144a89a3323e147c0d16615ccd9be58b50b5b8ede37d4f66de1e2ce93ed53c4da939ca2e44c7aac687a1f7 DIST prometheus_client-0.13.0.tar.gz 73277 BLAKE2B 547966c22efdaaa76b821918e8e22ebc14f3a43b7f712c6c8be13d0a6ab3d94d56dd92576e63d1a9a0ba62a5ff662b717c5b6294f48a5e28fd40dfe4693706a2 SHA512 4991e534a78b08686f46ff7214cf2e19a97e302977a696460adfde1e0245d4cc115502a2cc9cb5d5f34401712ab6f84f9b77bb0f88aefaf9c534eadfe66803f3 +DIST prometheus_client-0.13.1.gh.tar.gz 73480 BLAKE2B 53b2572373024a452731c055fc115ddb3c029b905d455cf9dc6289af91866c13187e58008770aa20969b371cd0852ef20651603e153195fb4658d21a628df5a3 SHA512 8d5263ff00fc4797fa65a446bdab4dc3c717cc091f8cee571fdd2130febc480cc61e73e11145ac2bf9bc0eee132efc92d88a4d4facd61d515234748791a92255 diff --git a/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild new file mode 100644 index 000000000000..6143d1a289d2 --- /dev/null +++ b/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="Python client for the Prometheus monitoring system" +HOMEPAGE="https://pypi.org/project/prometheus-client/ + https://github.com/prometheus/client_python/" +SRC_URI=" + https://github.com/prometheus/client_python/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz" +S="${WORKDIR}/client_python-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest |