summaryrefslogtreecommitdiff
path: root/dev-python/prometheus-client
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-07-25 03:04:48 -0500
committerroot <root@alpha.trunkmasters.com>2026-07-25 03:04:48 -0500
commitf1b8e4e12c5e5f7dc09790bb9915ce4855b5d9ea (patch)
treea8f221e1b40a4169606eaa061aeec4488ee413a5 /dev-python/prometheus-client
parent76c83b2d707f66d67a31960e9cc086753d88cd0d (diff)
downloadbaldeagleos-repo-f1b8e4e12c5e5f7dc09790bb9915ce4855b5d9ea.tar.gz
baldeagleos-repo-f1b8e4e12c5e5f7dc09790bb9915ce4855b5d9ea.tar.xz
baldeagleos-repo-f1b8e4e12c5e5f7dc09790bb9915ce4855b5d9ea.zip
Adding metadata
Diffstat (limited to 'dev-python/prometheus-client')
-rw-r--r--dev-python/prometheus-client/Manifest1
-rw-r--r--dev-python/prometheus-client/prometheus-client-0.26.0.ebuild43
2 files changed, 44 insertions, 0 deletions
diff --git a/dev-python/prometheus-client/Manifest b/dev-python/prometheus-client/Manifest
index 2871424a800b..67e9039ddc7b 100644
--- a/dev-python/prometheus-client/Manifest
+++ b/dev-python/prometheus-client/Manifest
@@ -1 +1,2 @@
DIST client_python-0.25.0.gh.tar.gz 4665091 BLAKE2B bf02b18d6be594c7c755e1ed839a456ed2f1b002686cfc602aff8fb37beb71c34b317d8ae4a654cc3bd9a26b2c2b3efbbc44eaf563140f885866304aabb961ff SHA512 58658326c58544c3bfafec6d5209c49baea9d3dc43d6bfae6c630dac73d91d7cace9a8740c1a18c65505a7dc5ac84b0feffa93babcd9ca68007ecf3cefb09bad
+DIST client_python-0.26.0.gh.tar.gz 4678373 BLAKE2B d14c5db5f70cbb435a8b9b39b41bea20d1403a4ae142f01fef643ef2a16c96c51f3ba2efd67fdd7d40336cb7c430c666bba0c65defd83824cadc5d91a5de3a60 SHA512 307f098f4f9bb5c1578e4e605e336e89118c3870c8a02727680c04c342ddd967cc3544c979cff10447934d4af93fc8231e13a9641b1b3d6b7db3292ca685b730
diff --git a/dev-python/prometheus-client/prometheus-client-0.26.0.ebuild b/dev-python/prometheus-client/prometheus-client-0.26.0.ebuild
new file mode 100644
index 000000000000..a04fde1e2504
--- /dev/null
+++ b/dev-python/prometheus-client/prometheus-client-0.26.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{13..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
+)
+
+EPYTEST_IGNORE=(
+ # Optional testdep on dev-python/asgiref
+ tests/test_asgi.py
+)