From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 024F713835A for ; Fri, 2 Apr 2021 23:42:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3EF1E085E; Fri, 2 Apr 2021 23:42:51 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88482E0867 for ; Fri, 2 Apr 2021 23:42:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D5EB0340C35 for ; Fri, 2 Apr 2021 23:42:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 318D963D for ; Fri, 2 Apr 2021 23:42:48 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1617406956.1bfb182c1107e7a4a4533366af68e6c35a7b4780.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/prometheus_client/Manifest dev-python/prometheus_client/prometheus_client-0.10.0.ebuild X-VCS-Directories: dev-python/prometheus_client/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1bfb182c1107e7a4a4533366af68e6c35a7b4780 X-VCS-Branch: master Date: Fri, 2 Apr 2021 23:42:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 408fb72e-d50d-4f92-a9ce-f15cfb61d8e5 X-Archives-Hash: 80229f4818db519ea24749bc3529e19d commit: 1bfb182c1107e7a4a4533366af68e6c35a7b4780 Author: Michał Górny gentoo org> AuthorDate: Fri Apr 2 23:10:25 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Apr 2 23:42:36 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bfb182c dev-python/prometheus_client: Bump to 0.10.0 Signed-off-by: Michał Górny gentoo.org> dev-python/prometheus_client/Manifest | 1 + .../prometheus_client-0.10.0.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest index e13f0160040..b44980cdde4 100644 --- a/dev-python/prometheus_client/Manifest +++ b/dev-python/prometheus_client/Manifest @@ -1 +1,2 @@ +DIST prometheus_client-0.10.0.tar.gz 71598 BLAKE2B 013b73c3f417fc6102ab6ebe77381b34dee1b6bd7a32af88934ba4dcf6652cd73524de0c489aa2adaa02869c17094eedd95cd87858c9cd2f019001c7fea41a0b SHA512 add7f5dae5f3353df755a1cd74d4a4b08f4217c8eed1880f6abf0ac4629e3179afa6298f93b407babd215b8b6aa84587297da68d6625c27088110e615cb0df10 DIST prometheus_client-0.9.0.tar.gz 68176 BLAKE2B e20f599e6a4d39226e48cafeca879b87389fdb5a6eda401161ce448cb0b46a89ce0cccc1b78e2fc8cb60cc461253345b9ba52809c861f0a187171c33095f625a SHA512 1d68ca35169972c50bb56ede88c47408ee27b3e795fcf03798313aed2dbc5db5532fe6886998c118258b76e431c6e49aa0ac19b9206cad63711901497258aaa5 diff --git a/dev-python/prometheus_client/prometheus_client-0.10.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.10.0.ebuild new file mode 100644 index 00000000000..b757b986d36 --- /dev/null +++ b/dev-python/prometheus_client/prometheus_client-0.10.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +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}.tar.gz" +S="${WORKDIR}/client_python-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest