commit: 913909c5978d356956006235a8525d115cc95e30
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 15 06:23:16 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jan 15 07:14:19 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=913909c5
dev-python/prometheus-client: Bump to 0.24.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/prometheus-client/Manifest | 1 +
.../prometheus-client-0.24.1.ebuild | 38 ++++++++++++++++++++++
2 files changed, 39 insertions(+)
diff --git a/dev-python/prometheus-client/Manifest
b/dev-python/prometheus-client/Manifest
index 1693ab00b2b7..76c046f42ec3 100644
--- a/dev-python/prometheus-client/Manifest
+++ b/dev-python/prometheus-client/Manifest
@@ -1,2 +1,3 @@
DIST client_python-0.23.1.gh.tar.gz 4654078 BLAKE2B
1345dd59445b4b20fd86c60f07cbb1f2f3c7c792f02994c197de79d91ea0fd8964c77f9f1a5a10c3d262ce6436ad70e3baa004115a960fa7730ea35e530ab81e
SHA512
475fa17b7f97c57ca0f062b6c5790245987ade455e02f090282273460002b38ca3327357d59b25d522e43436af7656e7b1806125d2bb5c382d3a29422561b7b0
DIST client_python-0.24.0.gh.tar.gz 4660333 BLAKE2B
4c721468269832c6686f5662f4b6c48332a894d2f745d936a4e4b9c83f955d7c724ec80d38b913465c402477cd199acc408d2e4944207abcecfb9bbf02e00f80
SHA512
3e4d5c2fd3263eacfd79c52c0e7b86d301fb053539cd99de5940cae4166d720495c399c45ba417c2602fac6ad283f52c9bc85028a0802f0e289bda5a6adb87bb
+DIST client_python-0.24.1.gh.tar.gz 4660308 BLAKE2B
f0e41480b6e37f9cdbf95cd219b757196eaa38cd368130c88944ba1da8cd29df9a4a5437da8a4ddd1982afaf82fede7c237bac9bdb55f87a37427d0cdaf10618
SHA512
5188472d93fe0e2a2ba36431d08dfd3af42dee5f39c32d600f8de4728ba8d9396ca4f3a35fc7370b4f23f9ba733d2c81db9464c9b8e6ce515523470edc8b8001
diff --git a/dev-python/prometheus-client/prometheus-client-0.24.1.ebuild
b/dev-python/prometheus-client/prometheus-client-0.24.1.ebuild
new file mode 100644
index 000000000000..4c8885067780
--- /dev/null
+++ b/dev-python/prometheus-client/prometheus-client-0.24.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
+
+inherit distutils-r1
+
+MY_P=client_python-${PV}
+DESCRIPTION="Python client for the Prometheus monitoring system"
+HOMEPAGE="
+ https://github.com/prometheus/client_python/
+ https://pypi.org/project/prometheus-client/
+"
+# missing test data in sdist
+# https://github.com/prometheus/client_python/issues/1112
+SRC_URI="
+ https://github.com/prometheus/client_python/archive/v${PV}.tar.gz
+ -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390
~sparc ~x86"
+
+RDEPEND="
+ dev-python/twisted[${PYTHON_USEDEP}]
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+ tests/test_parser.py::test_benchmark_text_string_to_metric_families
+)