public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2016-12-09 14:44 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2016-12-09 14:44 UTC (permalink / raw
  To: gentoo-commits

commit:     7abbad8f8af5b6688cb3ac8217d83d017933800a
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Dec  9 14:41:14 2016 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Dec  9 14:44:03 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7abbad8f

dev-python/prometheus_client: Initial version

Package-Manager: portage-2.3.3

 dev-python/prometheus_client/Manifest              |  1 +
 dev-python/prometheus_client/metadata.xml          | 15 ++++++++++++
 .../prometheus_client-0.0.18.ebuild                | 28 ++++++++++++++++++++++
 3 files changed, 44 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
new file mode 100644
index 00000000..1f782ae
--- /dev/null
+++ b/dev-python/prometheus_client/Manifest
@@ -0,0 +1 @@
+DIST prometheus_client-0.0.18.tar.gz 38102 SHA256 ea484439f7484af1c9137324a6cb2e920a5b9e968a66dbd02700e0329b631e6d SHA512 97291948b9ccabec7747b1059d30c7707358a95b03d278037a4d7b02ee9d3390d995425891e4c6a59ffb7aedf1f957a31093d14ac1ed254764f5768ec3a7b784 WHIRLPOOL 5e873d242c98e77612a9a5b40872f7760411e6bb7aefe5491077d5e6a778ddccb420830ae32e8ea20e39e7711c7e166a91df1e8e67968a2c454ef4d3f0156242

diff --git a/dev-python/prometheus_client/metadata.xml b/dev-python/prometheus_client/metadata.xml
new file mode 100644
index 00000000..5357dd8
--- /dev/null
+++ b/dev-python/prometheus_client/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>mrueg@gentoo.org</email>
+    <name>Manuel Rüger</name>
+  </maintainer>
+  <maintainer type="project">
+    <email>python@gentoo.org</email>
+    <name>Python</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">prometheus/client_python</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-python/prometheus_client/prometheus_client-0.0.18.ebuild b/dev-python/prometheus_client/prometheus_client-0.0.18.ebuild
new file mode 100644
index 00000000..21760f1
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.0.18.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+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/${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}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+	test? ( ${RDEPEND}
+		dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_test() {
+	pytest || die
+}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2017-01-05 12:45 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2017-01-05 12:45 UTC (permalink / raw
  To: gentoo-commits

commit:     0cb9e0522de7ef51aaff3e8a5de17742b89376e0
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Jan  5 12:44:15 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Jan  5 12:45:17 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cb9e052

dev-python/prometheus_client: Support twisted-web as well

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../prometheus_client-0.0.18-r1.ebuild             | 28 ++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/dev-python/prometheus_client/prometheus_client-0.0.18-r1.ebuild b/dev-python/prometheus_client/prometheus_client-0.0.18-r1.ebuild
new file mode 100644
index 00000000..58681e0
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.0.18-r1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+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/${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-web dev-python/twisted[${PYTHON_USEDEP}] )"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+	test? ( ${RDEPEND}
+		dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_test() {
+	pytest || die
+}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2017-01-05 12:45 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2017-01-05 12:45 UTC (permalink / raw
  To: gentoo-commits

commit:     ad949f21a709f7cefc64a679b7f9706047f897b9
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Jan  5 12:44:32 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Jan  5 12:45:20 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad949f21

dev-python/prometheus_client: Remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../prometheus_client-0.0.18.ebuild                | 28 ----------------------
 1 file changed, 28 deletions(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.0.18.ebuild b/dev-python/prometheus_client/prometheus_client-0.0.18.ebuild
deleted file mode 100644
index 21760f1..00000000
--- a/dev-python/prometheus_client/prometheus_client-0.0.18.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-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/${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}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-	test? ( ${RDEPEND}
-		dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_test() {
-	pytest || die
-}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2017-02-01 13:35 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2017-02-01 13:35 UTC (permalink / raw
  To: gentoo-commits

commit:     9181775cc513c8de1be3b88d171ae7068389f890
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  1 13:35:28 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Feb  1 13:35:28 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9181775c

dev-python/prometheus_client: Version bump to 0.0.19

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.0.19.ebuild                | 28 ++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 1f782ae..358918d 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1 +1,2 @@
 DIST prometheus_client-0.0.18.tar.gz 38102 SHA256 ea484439f7484af1c9137324a6cb2e920a5b9e968a66dbd02700e0329b631e6d SHA512 97291948b9ccabec7747b1059d30c7707358a95b03d278037a4d7b02ee9d3390d995425891e4c6a59ffb7aedf1f957a31093d14ac1ed254764f5768ec3a7b784 WHIRLPOOL 5e873d242c98e77612a9a5b40872f7760411e6bb7aefe5491077d5e6a778ddccb420830ae32e8ea20e39e7711c7e166a91df1e8e67968a2c454ef4d3f0156242
+DIST prometheus_client-0.0.19.tar.gz 39428 SHA256 ba85951f8183bc4992259a8117a5564652a396d236f8cda0ae70fb9aaac71ab4 SHA512 0ee5d95c27f7be5f88d462d8a851f6072af49421788c6b3e9f4f51aa5dd1ecd9324539405c1873a3becd62c0cb03bd540c0c29d8fd2115e865bf53189740b0da WHIRLPOOL 586a3ecc954c2a1e4b2d422888afe9fd7477051841d4f1c11d402261d061a04b96ff5dec5ad51f4f2704fe22b2b4f5648e5c63101338fdb6a5bcbfc2f2c35597

diff --git a/dev-python/prometheus_client/prometheus_client-0.0.19.ebuild b/dev-python/prometheus_client/prometheus_client-0.0.19.ebuild
new file mode 100644
index 00000000..58681e0
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.0.19.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+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/${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-web dev-python/twisted[${PYTHON_USEDEP}] )"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+	test? ( ${RDEPEND}
+		dev-python/pytest[${PYTHON_USEDEP}] )"
+
+python_test() {
+	pytest || die
+}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2017-05-11 12:54 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2017-05-11 12:54 UTC (permalink / raw
  To: gentoo-commits

commit:     7e4a5a74a73def62c0d9f7d45402e5c406310699
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu May 11 12:44:22 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu May 11 12:54:13 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e4a5a74

dev-python/prometheus_client: Add python3_6

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-python/prometheus_client/prometheus_client-0.0.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.0.19.ebuild b/dev-python/prometheus_client/prometheus_client-0.0.19.ebuild
index d343ac5c334..f9081afa281 100644
--- a/dev-python/prometheus_client/prometheus_client-0.0.19.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.0.19.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 inherit distutils-r1
 
 DESCRIPTION="Python client for the Prometheus monitoring system"


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2017-06-29 10:57 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2017-06-29 10:57 UTC (permalink / raw
  To: gentoo-commits

commit:     cf4e5a34a9ede3b6fce0c9afabfc0b18f5fea78a
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 29 10:54:01 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Jun 29 10:54:01 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf4e5a34

dev-python/prometheus_client: Switch dependency order, add missing PYTHON_USEDEP

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/prometheus_client/prometheus_client-0.0.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.0.19.ebuild b/dev-python/prometheus_client/prometheus_client-0.0.19.ebuild
index f9081afa281..1598c0c8d58 100644
--- a/dev-python/prometheus_client/prometheus_client-0.0.19.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.0.19.ebuild
@@ -17,7 +17,7 @@ IUSE="test"
 
 S=${WORKDIR}/client_python-${PV}
 
-RDEPEND="|| ( dev-python/twisted-web dev-python/twisted[${PYTHON_USEDEP}] )"
+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}] )"


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2017-08-01 12:25 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2017-08-01 12:25 UTC (permalink / raw
  To: gentoo-commits

commit:     437a6a411799a35acb017f79ea7bc8fab8a25b42
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  1 12:25:27 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Aug  1 12:25:27 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=437a6a41

dev-python/prometheus_client: Version bump to 0.0.20

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.0.20.ebuild                | 27 ++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index b53cff31143..045f996ff75 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -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
index 00000000000..af5a5b0c716
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.0.20.ebuild
@@ -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
+}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2017-09-19 16:42 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2017-09-19 16:42 UTC (permalink / raw
  To: gentoo-commits

commit:     b9af9313a48fa6dc1edc6f823e35218ac7f68033
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 19 16:23:51 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Sep 19 16:42:23 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9af9313

dev-python/prometheus_client: Remove old

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-python/prometheus_client/Manifest              |  1 -
 .../prometheus_client-0.0.19.ebuild                | 27 ----------------------
 2 files changed, 28 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 045f996ff75..7b66e373058 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1 @@
-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.19.ebuild b/dev-python/prometheus_client/prometheus_client-0.0.19.ebuild
deleted file mode 100644
index 1598c0c8d58..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.0.19.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# 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/${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
-}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2017-09-24 19:02 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2017-09-24 19:02 UTC (permalink / raw
  To: gentoo-commits

commit:     8ab3858a67895f02bfee0296213e308292ba01b7
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 24 19:01:18 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Sep 24 19:02:00 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ab3858a

dev-python/prometheus_client: Version bump to 0.0.21

Package-Manager: Portage-2.3.10, Repoman-2.3.2

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.0.21.ebuild                | 27 ++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 7b66e373058..efbe0216715 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1 +1,2 @@
 DIST prometheus_client-0.0.20.tar.gz 40773 SHA256 2012c4e5ef6fa559881e02c18a191b6dba43950ee8e03def8b4b5ff271eb7e99 SHA512 fa82eafedd6cfbefbad38de87ef556be512cb62e912de135dcba1cf8227302f7650dfb4139dd22ae760793c150db433b505f405c925f07763aece46d66415594 WHIRLPOOL dbe5b8dd33abe3cac4acffcb188160f425de66ae8141ed6ba8d2130eb770f7dbb636fa66bbfb6fe866048f4758b631a2d8b5898fe13281467e1862c390bb12f1
+DIST prometheus_client-0.0.21.tar.gz 40859 SHA256 8836c8e8ac7bed68b22d7b03552ad1c677c8e73821470c541d4733f4b9d13823 SHA512 e948ecc9044bd6a59fdc58bb3dd638c89d210a5856a360b4270eff206b2280ef7a68c1e94aea64f5cfb68a218499e61627e34c71363ff222b1a3d27403396a31 WHIRLPOOL 83746b1ff1c609acd961589c310c820dec6e3015e4174de8e0d71a0849ed439f858e05e7684965678d5f77f1b1a38438432412851b38c651cbbdf511198a3aed

diff --git a/dev-python/prometheus_client/prometheus_client-0.0.21.ebuild b/dev-python/prometheus_client/prometheus_client-0.0.21.ebuild
new file mode 100644
index 00000000000..af5a5b0c716
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.0.21.ebuild
@@ -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
+}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2017-10-06 13:58 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2017-10-06 13:58 UTC (permalink / raw
  To: gentoo-commits

commit:     40664258e2cf40f6d4f75a61bf5125f68dbef3e6
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Oct  6 13:57:20 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Oct  6 13:57:20 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40664258

dev-python/prometheus_client: Remove old

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 dev-python/prometheus_client/Manifest              |  1 -
 .../prometheus_client-0.0.20.ebuild                | 27 ----------------------
 2 files changed, 28 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index efbe0216715..1f7918d212d 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1 @@
-DIST prometheus_client-0.0.20.tar.gz 40773 SHA256 2012c4e5ef6fa559881e02c18a191b6dba43950ee8e03def8b4b5ff271eb7e99 SHA512 fa82eafedd6cfbefbad38de87ef556be512cb62e912de135dcba1cf8227302f7650dfb4139dd22ae760793c150db433b505f405c925f07763aece46d66415594 WHIRLPOOL dbe5b8dd33abe3cac4acffcb188160f425de66ae8141ed6ba8d2130eb770f7dbb636fa66bbfb6fe866048f4758b631a2d8b5898fe13281467e1862c390bb12f1
 DIST prometheus_client-0.0.21.tar.gz 40859 SHA256 8836c8e8ac7bed68b22d7b03552ad1c677c8e73821470c541d4733f4b9d13823 SHA512 e948ecc9044bd6a59fdc58bb3dd638c89d210a5856a360b4270eff206b2280ef7a68c1e94aea64f5cfb68a218499e61627e34c71363ff222b1a3d27403396a31 WHIRLPOOL 83746b1ff1c609acd961589c310c820dec6e3015e4174de8e0d71a0849ed439f858e05e7684965678d5f77f1b1a38438432412851b38c651cbbdf511198a3aed

diff --git a/dev-python/prometheus_client/prometheus_client-0.0.20.ebuild b/dev-python/prometheus_client/prometheus_client-0.0.20.ebuild
deleted file mode 100644
index af5a5b0c716..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.0.20.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# 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
-}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2017-10-26 14:04 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2017-10-26 14:04 UTC (permalink / raw
  To: gentoo-commits

commit:     98b79dca883df31f18a25dc483ea407ae02e5c4b
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 26 14:04:08 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Oct 26 14:04:08 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98b79dca

dev-python/prometheus_client: Stable on amd64

Package-Manager: Portage-2.3.12, Repoman-2.3.3

 dev-python/prometheus_client/prometheus_client-0.0.21.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.0.21.ebuild b/dev-python/prometheus_client/prometheus_client-0.0.21.ebuild
index af5a5b0c716..545c44e416c 100644
--- a/dev-python/prometheus_client/prometheus_client-0.0.21.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.0.21.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/prometheus/client_python/archive/v${PV}.tar.gz -> ${
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="test"
 
 S=${WORKDIR}/client_python-${PV}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2018-02-05 16:31 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2018-02-05 16:31 UTC (permalink / raw
  To: gentoo-commits

commit:     b35288f7963c0fd830699eebbd71cba683bd2928
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Feb  5 16:30:47 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Feb  5 16:30:47 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b35288f7

dev-python/prometheus_client: Version bump to 0.1.1

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.1.1.ebuild                 | 27 ++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index a07643b58eb..f85b662129c 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1 +1,2 @@
 DIST prometheus_client-0.0.21.tar.gz 40859 BLAKE2B 58e7a49e12e4f9c865624de24e51e30d4cee75f2f3afd446aa53d425a9aa9ac20829c043ab29036e4e24ef90e06f5950616745ee8f8d89de20e8b1b01d63579f SHA512 e948ecc9044bd6a59fdc58bb3dd638c89d210a5856a360b4270eff206b2280ef7a68c1e94aea64f5cfb68a218499e61627e34c71363ff222b1a3d27403396a31
+DIST prometheus_client-0.1.1.tar.gz 41513 BLAKE2B 3816b34a809c8e40da6fab221bf020bd3d4169c6d1e96a4c48631133cff4fc2839bf1ee01df67711ed4d8c4a38b6ad53c612cddbbb9a7fe45a9b3887cce900e2 SHA512 ac343f416dc4f9907e4da0de19d2005375102fb552491025d76466dee1fb1be753a8e20380c83276116a1606a32a9373db53e8a2952669d511255438d74ba217

diff --git a/dev-python/prometheus_client/prometheus_client-0.1.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.1.1.ebuild
new file mode 100644
index 00000000000..3f109c2efec
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.1.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 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
+}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2018-04-03 12:20 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2018-04-03 12:20 UTC (permalink / raw
  To: gentoo-commits

commit:     dca92e169738076761044381c489b1d17c10b30a
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Apr  3 12:20:00 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Apr  3 12:20:00 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dca92e16

dev-python/prometheus_client: Version bump to 0.2.0

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.2.0.ebuild                 | 27 ++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index f85b662129c..33d188f27f1 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1,3 @@
 DIST prometheus_client-0.0.21.tar.gz 40859 BLAKE2B 58e7a49e12e4f9c865624de24e51e30d4cee75f2f3afd446aa53d425a9aa9ac20829c043ab29036e4e24ef90e06f5950616745ee8f8d89de20e8b1b01d63579f SHA512 e948ecc9044bd6a59fdc58bb3dd638c89d210a5856a360b4270eff206b2280ef7a68c1e94aea64f5cfb68a218499e61627e34c71363ff222b1a3d27403396a31
 DIST prometheus_client-0.1.1.tar.gz 41513 BLAKE2B 3816b34a809c8e40da6fab221bf020bd3d4169c6d1e96a4c48631133cff4fc2839bf1ee01df67711ed4d8c4a38b6ad53c612cddbbb9a7fe45a9b3887cce900e2 SHA512 ac343f416dc4f9907e4da0de19d2005375102fb552491025d76466dee1fb1be753a8e20380c83276116a1606a32a9373db53e8a2952669d511255438d74ba217
+DIST prometheus_client-0.2.0.tar.gz 41574 BLAKE2B c8e0288f37d1d3e6548283105dd6ba1e4cae5a6f1846c776538de1a68a2eebe6387f8212631c07f2c37839204262d0f555f1a5edb624c0d7418753123c296ca4 SHA512 7336d8294ef91dfebe91f325a882105cdaf947de212bff651d1c3ebfc139d9045b7f637ea44b18e921a9f2ad9af554aee28587e57b1202b5a30c49b1a765ba4c

diff --git a/dev-python/prometheus_client/prometheus_client-0.2.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.2.0.ebuild
new file mode 100644
index 00000000000..3f109c2efec
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.2.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 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
+}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2018-04-03 12:33 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2018-04-03 12:33 UTC (permalink / raw
  To: gentoo-commits

commit:     886d5803d835f9847c5ab05915c8170b8e1fec64
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Apr  3 12:33:13 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Apr  3 12:33:13 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=886d5803

dev-python/prometheus_client: Stable on amd64

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-python/prometheus_client/prometheus_client-0.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.1.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.1.1.ebuild
index 3f109c2efec..375445ac92d 100644
--- a/dev-python/prometheus_client/prometheus_client-0.1.1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.1.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/prometheus/client_python/archive/v${PV}.tar.gz -> ${
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="test"
 
 S=${WORKDIR}/client_python-${PV}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2018-04-03 13:53 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2018-04-03 13:53 UTC (permalink / raw
  To: gentoo-commits

commit:     3f3de2628cf0fa9562b93234c96853dd9483bcc3
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Apr  3 13:53:12 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Apr  3 13:53:12 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f3de262

dev-python/prometheus_client: Remove old

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 dev-python/prometheus_client/Manifest              |  1 -
 .../prometheus_client-0.0.21.ebuild                | 27 ----------------------
 2 files changed, 28 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 33d188f27f1..e7b95219291 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,3 +1,2 @@
-DIST prometheus_client-0.0.21.tar.gz 40859 BLAKE2B 58e7a49e12e4f9c865624de24e51e30d4cee75f2f3afd446aa53d425a9aa9ac20829c043ab29036e4e24ef90e06f5950616745ee8f8d89de20e8b1b01d63579f SHA512 e948ecc9044bd6a59fdc58bb3dd638c89d210a5856a360b4270eff206b2280ef7a68c1e94aea64f5cfb68a218499e61627e34c71363ff222b1a3d27403396a31
 DIST prometheus_client-0.1.1.tar.gz 41513 BLAKE2B 3816b34a809c8e40da6fab221bf020bd3d4169c6d1e96a4c48631133cff4fc2839bf1ee01df67711ed4d8c4a38b6ad53c612cddbbb9a7fe45a9b3887cce900e2 SHA512 ac343f416dc4f9907e4da0de19d2005375102fb552491025d76466dee1fb1be753a8e20380c83276116a1606a32a9373db53e8a2952669d511255438d74ba217
 DIST prometheus_client-0.2.0.tar.gz 41574 BLAKE2B c8e0288f37d1d3e6548283105dd6ba1e4cae5a6f1846c776538de1a68a2eebe6387f8212631c07f2c37839204262d0f555f1a5edb624c0d7418753123c296ca4 SHA512 7336d8294ef91dfebe91f325a882105cdaf947de212bff651d1c3ebfc139d9045b7f637ea44b18e921a9f2ad9af554aee28587e57b1202b5a30c49b1a765ba4c

diff --git a/dev-python/prometheus_client/prometheus_client-0.0.21.ebuild b/dev-python/prometheus_client/prometheus_client-0.0.21.ebuild
deleted file mode 100644
index 545c44e416c..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.0.21.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# 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
-}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2018-06-07 14:22 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2018-06-07 14:22 UTC (permalink / raw
  To: gentoo-commits

commit:     1a73219b1967713ac8c91500325109b94ded2b4e
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  7 14:06:44 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Jun  7 14:20:33 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a73219b

dev-python/prometheus_client: Stabilize on amd64

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/prometheus_client/prometheus_client-0.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.2.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.2.0.ebuild
index a86c3230d43..23d531c51c0 100644
--- a/dev-python/prometheus_client/prometheus_client-0.2.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.2.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/prometheus/client_python/archive/v${PV}.tar.gz -> ${
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="test"
 
 S=${WORKDIR}/client_python-${PV}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2018-07-13 14:57 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2018-07-13 14:57 UTC (permalink / raw
  To: gentoo-commits

commit:     a62266b13833ce250c2639720e766c94e02a4535
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 13 14:57:24 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Jul 13 14:57:24 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a62266b1

dev-python/prometheus_client: Version bump to 0.3.0

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.3.0.ebuild                 | 27 ++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index e7b95219291..d63f87b7f85 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1,3 @@
 DIST prometheus_client-0.1.1.tar.gz 41513 BLAKE2B 3816b34a809c8e40da6fab221bf020bd3d4169c6d1e96a4c48631133cff4fc2839bf1ee01df67711ed4d8c4a38b6ad53c612cddbbb9a7fe45a9b3887cce900e2 SHA512 ac343f416dc4f9907e4da0de19d2005375102fb552491025d76466dee1fb1be753a8e20380c83276116a1606a32a9373db53e8a2952669d511255438d74ba217
 DIST prometheus_client-0.2.0.tar.gz 41574 BLAKE2B c8e0288f37d1d3e6548283105dd6ba1e4cae5a6f1846c776538de1a68a2eebe6387f8212631c07f2c37839204262d0f555f1a5edb624c0d7418753123c296ca4 SHA512 7336d8294ef91dfebe91f325a882105cdaf947de212bff651d1c3ebfc139d9045b7f637ea44b18e921a9f2ad9af554aee28587e57b1202b5a30c49b1a765ba4c
+DIST prometheus_client-0.3.0.tar.gz 42186 BLAKE2B 14b116d89493d6c6f04a598accaf5203e30358e93ab666a3025f4436df8dda22265cf86920b149d345aec74870e416360862f64dac9a34b5e8ceccd61b4100a2 SHA512 fa16108428a8531977c3f56fbe564a965c91048d08035d046de6d80f61744f678872d9f4f4108970a047aa6e3ca1b7aa892015a71f49d146cc0a5a8c7a7eba3b

diff --git a/dev-python/prometheus_client/prometheus_client-0.3.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.3.0.ebuild
new file mode 100644
index 00000000000..a86c3230d43
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.3.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 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.org/project/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
+}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2018-07-13 14:58 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2018-07-13 14:58 UTC (permalink / raw
  To: gentoo-commits

commit:     8f758179eba60d92b79905e3a48560d64735a595
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 13 14:58:24 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Jul 13 14:58:24 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f758179

dev-python/prometheus_client: Remove old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-python/prometheus_client/Manifest              |  1 -
 .../prometheus_client-0.1.1.ebuild                 | 27 ----------------------
 2 files changed, 28 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index d63f87b7f85..f4cf5636520 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,3 +1,2 @@
-DIST prometheus_client-0.1.1.tar.gz 41513 BLAKE2B 3816b34a809c8e40da6fab221bf020bd3d4169c6d1e96a4c48631133cff4fc2839bf1ee01df67711ed4d8c4a38b6ad53c612cddbbb9a7fe45a9b3887cce900e2 SHA512 ac343f416dc4f9907e4da0de19d2005375102fb552491025d76466dee1fb1be753a8e20380c83276116a1606a32a9373db53e8a2952669d511255438d74ba217
 DIST prometheus_client-0.2.0.tar.gz 41574 BLAKE2B c8e0288f37d1d3e6548283105dd6ba1e4cae5a6f1846c776538de1a68a2eebe6387f8212631c07f2c37839204262d0f555f1a5edb624c0d7418753123c296ca4 SHA512 7336d8294ef91dfebe91f325a882105cdaf947de212bff651d1c3ebfc139d9045b7f637ea44b18e921a9f2ad9af554aee28587e57b1202b5a30c49b1a765ba4c
 DIST prometheus_client-0.3.0.tar.gz 42186 BLAKE2B 14b116d89493d6c6f04a598accaf5203e30358e93ab666a3025f4436df8dda22265cf86920b149d345aec74870e416360862f64dac9a34b5e8ceccd61b4100a2 SHA512 fa16108428a8531977c3f56fbe564a965c91048d08035d046de6d80f61744f678872d9f4f4108970a047aa6e3ca1b7aa892015a71f49d146cc0a5a8c7a7eba3b

diff --git a/dev-python/prometheus_client/prometheus_client-0.1.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.1.1.ebuild
deleted file mode 100644
index 23d531c51c0..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.1.1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2018 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.org/project/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
-}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2018-08-21 21:58 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2018-08-21 21:58 UTC (permalink / raw
  To: gentoo-commits

commit:     f06956ab446a31ce83d422fae967b6c7d26b6509
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 21 21:58:18 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Aug 21 21:58:18 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f06956ab

dev-python/prometheus_client: Version bump to 0.3.1

Package-Manager: Portage-2.3.48, Repoman-2.3.10

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.3.1.ebuild                 | 27 ++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index f4cf5636520..97678a2554f 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1,3 @@
 DIST prometheus_client-0.2.0.tar.gz 41574 BLAKE2B c8e0288f37d1d3e6548283105dd6ba1e4cae5a6f1846c776538de1a68a2eebe6387f8212631c07f2c37839204262d0f555f1a5edb624c0d7418753123c296ca4 SHA512 7336d8294ef91dfebe91f325a882105cdaf947de212bff651d1c3ebfc139d9045b7f637ea44b18e921a9f2ad9af554aee28587e57b1202b5a30c49b1a765ba4c
 DIST prometheus_client-0.3.0.tar.gz 42186 BLAKE2B 14b116d89493d6c6f04a598accaf5203e30358e93ab666a3025f4436df8dda22265cf86920b149d345aec74870e416360862f64dac9a34b5e8ceccd61b4100a2 SHA512 fa16108428a8531977c3f56fbe564a965c91048d08035d046de6d80f61744f678872d9f4f4108970a047aa6e3ca1b7aa892015a71f49d146cc0a5a8c7a7eba3b
+DIST prometheus_client-0.3.1.tar.gz 43185 BLAKE2B 07c69ca13f45c502870dd1eb5934413d71b5e53a5fde7c565414b570a20de183ae1bdda11a34e1c84b874cb5b8491128ff47046632913aaae1c865b0868142aa SHA512 939a985bcf6b377d353871333634ab1641f50288c531ab70b3e5e5466362c02012ae6cf0adf889dac96a89fc5ce29462aa62e651ce21c15d40647d6465baab1a

diff --git a/dev-python/prometheus_client/prometheus_client-0.3.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.3.1.ebuild
new file mode 100644
index 00000000000..a86c3230d43
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.3.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 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.org/project/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
+}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2018-10-28 16:09 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2018-10-28 16:09 UTC (permalink / raw
  To: gentoo-commits

commit:     ad8ffe40040b1d65a5854d6c202842713fd17806
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 28 16:08:29 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Oct 28 16:09:30 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad8ffe40

dev-python/prometheus_client: Version bump to 0.4.2

Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.4.2.ebuild                 | 27 ++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 97678a2554f..367498ea76b 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,3 +1,4 @@
 DIST prometheus_client-0.2.0.tar.gz 41574 BLAKE2B c8e0288f37d1d3e6548283105dd6ba1e4cae5a6f1846c776538de1a68a2eebe6387f8212631c07f2c37839204262d0f555f1a5edb624c0d7418753123c296ca4 SHA512 7336d8294ef91dfebe91f325a882105cdaf947de212bff651d1c3ebfc139d9045b7f637ea44b18e921a9f2ad9af554aee28587e57b1202b5a30c49b1a765ba4c
 DIST prometheus_client-0.3.0.tar.gz 42186 BLAKE2B 14b116d89493d6c6f04a598accaf5203e30358e93ab666a3025f4436df8dda22265cf86920b149d345aec74870e416360862f64dac9a34b5e8ceccd61b4100a2 SHA512 fa16108428a8531977c3f56fbe564a965c91048d08035d046de6d80f61744f678872d9f4f4108970a047aa6e3ca1b7aa892015a71f49d146cc0a5a8c7a7eba3b
 DIST prometheus_client-0.3.1.tar.gz 43185 BLAKE2B 07c69ca13f45c502870dd1eb5934413d71b5e53a5fde7c565414b570a20de183ae1bdda11a34e1c84b874cb5b8491128ff47046632913aaae1c865b0868142aa SHA512 939a985bcf6b377d353871333634ab1641f50288c531ab70b3e5e5466362c02012ae6cf0adf889dac96a89fc5ce29462aa62e651ce21c15d40647d6465baab1a
+DIST prometheus_client-0.4.2.tar.gz 57664 BLAKE2B e98e5c91db13a9f06c2df532e7742545a14cb223e04eba27accc3bdcaf2df949eed2a778194b38e1b4b93908de1636a3cc92a18950db54b5b8f0aceda2d4d2cf SHA512 5e0fee9f9fb4376dcf2959e8285b57a9156d3cf8b9d9118c7b95d2ff63f4dd925bc8cea817bf2fc1ba660e6f5c6dd8f4cf494125cf2a3673443abe0f3a4657c4

diff --git a/dev-python/prometheus_client/prometheus_client-0.4.2.ebuild b/dev-python/prometheus_client/prometheus_client-0.4.2.ebuild
new file mode 100644
index 00000000000..b11eea0b1ba
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.4.2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Authors
+# 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.org/project/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 -v || die
+}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2018-12-02  0:43 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2018-12-02  0:43 UTC (permalink / raw
  To: gentoo-commits

commit:     11b2f10aa0d186f5bf5d09cd01017897e14055fd
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  2 00:43:05 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Dec  2 00:43:05 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11b2f10a

dev-python/prometheus_client: Stabilize on amd64

Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
Package-Manager: Portage-2.3.52, Repoman-2.3.11

 dev-python/prometheus_client/prometheus_client-0.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.4.2.ebuild b/dev-python/prometheus_client/prometheus_client-0.4.2.ebuild
index b11eea0b1ba..4cf107dceed 100644
--- a/dev-python/prometheus_client/prometheus_client-0.4.2.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.4.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/prometheus/client_python/archive/v${PV}.tar.gz -> ${
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="test"
 
 S=${WORKDIR}/client_python-${PV}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2018-12-07 19:14 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2018-12-07 19:14 UTC (permalink / raw
  To: gentoo-commits

commit:     653c484ace094a2d523fa95c72c2aa37024d751d
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Dec  7 19:13:16 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Dec  7 19:13:16 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=653c484a

dev-python/prometheus_client: Version bump to 0.5.0

Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
Package-Manager: Portage-2.3.52, Repoman-2.3.11

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.5.0.ebuild                 | 27 ++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 367498ea76b..aa6a866f24e 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -2,3 +2,4 @@ DIST prometheus_client-0.2.0.tar.gz 41574 BLAKE2B c8e0288f37d1d3e6548283105dd6ba
 DIST prometheus_client-0.3.0.tar.gz 42186 BLAKE2B 14b116d89493d6c6f04a598accaf5203e30358e93ab666a3025f4436df8dda22265cf86920b149d345aec74870e416360862f64dac9a34b5e8ceccd61b4100a2 SHA512 fa16108428a8531977c3f56fbe564a965c91048d08035d046de6d80f61744f678872d9f4f4108970a047aa6e3ca1b7aa892015a71f49d146cc0a5a8c7a7eba3b
 DIST prometheus_client-0.3.1.tar.gz 43185 BLAKE2B 07c69ca13f45c502870dd1eb5934413d71b5e53a5fde7c565414b570a20de183ae1bdda11a34e1c84b874cb5b8491128ff47046632913aaae1c865b0868142aa SHA512 939a985bcf6b377d353871333634ab1641f50288c531ab70b3e5e5466362c02012ae6cf0adf889dac96a89fc5ce29462aa62e651ce21c15d40647d6465baab1a
 DIST prometheus_client-0.4.2.tar.gz 57664 BLAKE2B e98e5c91db13a9f06c2df532e7742545a14cb223e04eba27accc3bdcaf2df949eed2a778194b38e1b4b93908de1636a3cc92a18950db54b5b8f0aceda2d4d2cf SHA512 5e0fee9f9fb4376dcf2959e8285b57a9156d3cf8b9d9118c7b95d2ff63f4dd925bc8cea817bf2fc1ba660e6f5c6dd8f4cf494125cf2a3673443abe0f3a4657c4
+DIST prometheus_client-0.5.0.tar.gz 60184 BLAKE2B cc44537b051c053860520d412664d57aaa6d35dd491409de0da72b9859743cc355d67eb260c2381347ad3313df9efa498535ff130df317b103d8c815f34f28eb SHA512 6e6e6c0f859b7b9d593e1059b71fde8eed15ccd95e54c245b4e0e8edb748a4761f0929f2d6c06f1c4656eb81f26959c5cec6a58f4d725a587b433ffbb4582127

diff --git a/dev-python/prometheus_client/prometheus_client-0.5.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.5.0.ebuild
new file mode 100644
index 00000000000..b11eea0b1ba
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.5.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Authors
+# 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.org/project/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 -v || die
+}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2018-12-16 12:15 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2018-12-16 12:15 UTC (permalink / raw
  To: gentoo-commits

commit:     d60b93a562aa12a2d04477384df7b8f11ca19a9e
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 16 12:13:44 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sun Dec 16 12:13:44 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d60b93a5

dev-python/prometheus_client: Remove old

Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
Package-Manager: Portage-2.3.52, Repoman-2.3.11

 dev-python/prometheus_client/Manifest              |  3 ---
 .../prometheus_client-0.2.0.ebuild                 | 27 ----------------------
 .../prometheus_client-0.3.0.ebuild                 | 27 ----------------------
 .../prometheus_client-0.3.1.ebuild                 | 27 ----------------------
 4 files changed, 84 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index aa6a866f24e..971cc07fdd5 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,5 +1,2 @@
-DIST prometheus_client-0.2.0.tar.gz 41574 BLAKE2B c8e0288f37d1d3e6548283105dd6ba1e4cae5a6f1846c776538de1a68a2eebe6387f8212631c07f2c37839204262d0f555f1a5edb624c0d7418753123c296ca4 SHA512 7336d8294ef91dfebe91f325a882105cdaf947de212bff651d1c3ebfc139d9045b7f637ea44b18e921a9f2ad9af554aee28587e57b1202b5a30c49b1a765ba4c
-DIST prometheus_client-0.3.0.tar.gz 42186 BLAKE2B 14b116d89493d6c6f04a598accaf5203e30358e93ab666a3025f4436df8dda22265cf86920b149d345aec74870e416360862f64dac9a34b5e8ceccd61b4100a2 SHA512 fa16108428a8531977c3f56fbe564a965c91048d08035d046de6d80f61744f678872d9f4f4108970a047aa6e3ca1b7aa892015a71f49d146cc0a5a8c7a7eba3b
-DIST prometheus_client-0.3.1.tar.gz 43185 BLAKE2B 07c69ca13f45c502870dd1eb5934413d71b5e53a5fde7c565414b570a20de183ae1bdda11a34e1c84b874cb5b8491128ff47046632913aaae1c865b0868142aa SHA512 939a985bcf6b377d353871333634ab1641f50288c531ab70b3e5e5466362c02012ae6cf0adf889dac96a89fc5ce29462aa62e651ce21c15d40647d6465baab1a
 DIST prometheus_client-0.4.2.tar.gz 57664 BLAKE2B e98e5c91db13a9f06c2df532e7742545a14cb223e04eba27accc3bdcaf2df949eed2a778194b38e1b4b93908de1636a3cc92a18950db54b5b8f0aceda2d4d2cf SHA512 5e0fee9f9fb4376dcf2959e8285b57a9156d3cf8b9d9118c7b95d2ff63f4dd925bc8cea817bf2fc1ba660e6f5c6dd8f4cf494125cf2a3673443abe0f3a4657c4
 DIST prometheus_client-0.5.0.tar.gz 60184 BLAKE2B cc44537b051c053860520d412664d57aaa6d35dd491409de0da72b9859743cc355d67eb260c2381347ad3313df9efa498535ff130df317b103d8c815f34f28eb SHA512 6e6e6c0f859b7b9d593e1059b71fde8eed15ccd95e54c245b4e0e8edb748a4761f0929f2d6c06f1c4656eb81f26959c5cec6a58f4d725a587b433ffbb4582127

diff --git a/dev-python/prometheus_client/prometheus_client-0.2.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.2.0.ebuild
deleted file mode 100644
index 23d531c51c0..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.2.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2018 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.org/project/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
-}

diff --git a/dev-python/prometheus_client/prometheus_client-0.3.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.3.0.ebuild
deleted file mode 100644
index a86c3230d43..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.3.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2018 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.org/project/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
-}

diff --git a/dev-python/prometheus_client/prometheus_client-0.3.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.3.1.ebuild
deleted file mode 100644
index a86c3230d43..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.3.1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2018 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.org/project/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
-}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2019-02-22 13:28 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2019-02-22 13:28 UTC (permalink / raw
  To: gentoo-commits

commit:     90bba8a7c8cb33fd3d7cadb89f6fb5ffdf351f74
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 22 13:27:27 2019 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Feb 22 13:27:27 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90bba8a7

dev-python/prometheus_client: Version bump to 0.6.0

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.6.0.ebuild                 | 27 ++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 971cc07fdd5..a79671899f4 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1,3 @@
 DIST prometheus_client-0.4.2.tar.gz 57664 BLAKE2B e98e5c91db13a9f06c2df532e7742545a14cb223e04eba27accc3bdcaf2df949eed2a778194b38e1b4b93908de1636a3cc92a18950db54b5b8f0aceda2d4d2cf SHA512 5e0fee9f9fb4376dcf2959e8285b57a9156d3cf8b9d9118c7b95d2ff63f4dd925bc8cea817bf2fc1ba660e6f5c6dd8f4cf494125cf2a3673443abe0f3a4657c4
 DIST prometheus_client-0.5.0.tar.gz 60184 BLAKE2B cc44537b051c053860520d412664d57aaa6d35dd491409de0da72b9859743cc355d67eb260c2381347ad3313df9efa498535ff130df317b103d8c815f34f28eb SHA512 6e6e6c0f859b7b9d593e1059b71fde8eed15ccd95e54c245b4e0e8edb748a4761f0929f2d6c06f1c4656eb81f26959c5cec6a58f4d725a587b433ffbb4582127
+DIST prometheus_client-0.6.0.tar.gz 60790 BLAKE2B fa8eaddfedb9598394fec0c6464499ed5bcace9969e843126422414e397d31985a44a626be0257a235f6d5f685fd8d6bb55fc0d92928f0b9729ab9f097f1958b SHA512 a2b92683f939961c567c266a54699de6f37088cd4e61c9d9a5f4451228b4c3bfa4c517e4a5187867f5463d726a8dc6e7fdae30973c1e9aa9aa1a03247b2e99cd

diff --git a/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
new file mode 100644
index 00000000000..9e70c4e5396
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
+inherit distutils-r1
+
+DESCRIPTION="Python client for the Prometheus monitoring system"
+HOMEPAGE="https://pypi.org/project/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 -v || die
+}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2019-02-22 13:28 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2019-02-22 13:28 UTC (permalink / raw
  To: gentoo-commits

commit:     1d1dafda3af204f197da8819acada4c7149c1188
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 22 13:28:09 2019 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Feb 22 13:28:09 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d1dafda

dev-python/prometheus_client: Remove old

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  1 -
 .../prometheus_client-0.4.2.ebuild                 | 27 ----------------------
 2 files changed, 28 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index a79671899f4..e20bdb30409 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,3 +1,2 @@
-DIST prometheus_client-0.4.2.tar.gz 57664 BLAKE2B e98e5c91db13a9f06c2df532e7742545a14cb223e04eba27accc3bdcaf2df949eed2a778194b38e1b4b93908de1636a3cc92a18950db54b5b8f0aceda2d4d2cf SHA512 5e0fee9f9fb4376dcf2959e8285b57a9156d3cf8b9d9118c7b95d2ff63f4dd925bc8cea817bf2fc1ba660e6f5c6dd8f4cf494125cf2a3673443abe0f3a4657c4
 DIST prometheus_client-0.5.0.tar.gz 60184 BLAKE2B cc44537b051c053860520d412664d57aaa6d35dd491409de0da72b9859743cc355d67eb260c2381347ad3313df9efa498535ff130df317b103d8c815f34f28eb SHA512 6e6e6c0f859b7b9d593e1059b71fde8eed15ccd95e54c245b4e0e8edb748a4761f0929f2d6c06f1c4656eb81f26959c5cec6a58f4d725a587b433ffbb4582127
 DIST prometheus_client-0.6.0.tar.gz 60790 BLAKE2B fa8eaddfedb9598394fec0c6464499ed5bcace9969e843126422414e397d31985a44a626be0257a235f6d5f685fd8d6bb55fc0d92928f0b9729ab9f097f1958b SHA512 a2b92683f939961c567c266a54699de6f37088cd4e61c9d9a5f4451228b4c3bfa4c517e4a5187867f5463d726a8dc6e7fdae30973c1e9aa9aa1a03247b2e99cd

diff --git a/dev-python/prometheus_client/prometheus_client-0.4.2.ebuild b/dev-python/prometheus_client/prometheus_client-0.4.2.ebuild
deleted file mode 100644
index 852bd88e42a..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.4.2.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
-inherit distutils-r1
-
-DESCRIPTION="Python client for the Prometheus monitoring system"
-HOMEPAGE="https://pypi.org/project/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 -v || die
-}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2019-02-22 13:28 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2019-02-22 13:28 UTC (permalink / raw
  To: gentoo-commits

commit:     a4624be80b650fc74ca979b672f8ef786d0ffefb
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 22 13:27:51 2019 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Feb 22 13:27:51 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4624be8

dev-python/prometheus_client: Stabilize on amd64

Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.5.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.5.0.ebuild
index 9e70c4e5396..852bd88e42a 100644
--- a/dev-python/prometheus_client/prometheus_client-0.5.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.5.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/prometheus/client_python/archive/v${PV}.tar.gz -> ${
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="test"
 
 S=${WORKDIR}/client_python-${PV}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2019-04-16  9:15 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2019-04-16  9:15 UTC (permalink / raw
  To: gentoo-commits

commit:     8703b1e90aea5d5ea72f65a3e42b4ae7587a6f44
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 16 09:15:34 2019 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Tue Apr 16 09:15:34 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8703b1e9

dev-python/prometheus_client: Stabilize on amd64

Package-Manager: Portage-2.3.63, Repoman-2.3.12
Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
index 9e70c4e5396..852bd88e42a 100644
--- a/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/prometheus/client_python/archive/v${PV}.tar.gz -> ${
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="test"
 
 S=${WORKDIR}/client_python-${PV}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2019-11-21  9:37 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2019-11-21  9:37 UTC (permalink / raw
  To: gentoo-commits

commit:     2cf22213851d9aaab5b541a6ec0785174b5d336a
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 21 09:37:04 2019 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Nov 21 09:37:04 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cf22213

dev-python/prometheus_client: Version bump to 0.7.1

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.7.1.ebuild                 | 27 ++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index e20bdb30409..fdb6da44c8b 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1,3 @@
 DIST prometheus_client-0.5.0.tar.gz 60184 BLAKE2B cc44537b051c053860520d412664d57aaa6d35dd491409de0da72b9859743cc355d67eb260c2381347ad3313df9efa498535ff130df317b103d8c815f34f28eb SHA512 6e6e6c0f859b7b9d593e1059b71fde8eed15ccd95e54c245b4e0e8edb748a4761f0929f2d6c06f1c4656eb81f26959c5cec6a58f4d725a587b433ffbb4582127
 DIST prometheus_client-0.6.0.tar.gz 60790 BLAKE2B fa8eaddfedb9598394fec0c6464499ed5bcace9969e843126422414e397d31985a44a626be0257a235f6d5f685fd8d6bb55fc0d92928f0b9729ab9f097f1958b SHA512 a2b92683f939961c567c266a54699de6f37088cd4e61c9d9a5f4451228b4c3bfa4c517e4a5187867f5463d726a8dc6e7fdae30973c1e9aa9aa1a03247b2e99cd
+DIST prometheus_client-0.7.1.tar.gz 62880 BLAKE2B 8878a6e6a20f96443f1f14ffbb74eda7dc6f1f48151901da047ade6342ddd7858b4dcd808d80af64a3eff449c1c7425f9eb9f3d1283b65e8e6067c6b5fe2f9c4 SHA512 84b145ed191c9903d390b152c72de4f2afcb4c500b8debba59ded081f00cc76109b336ed2d7783d59e9922ea2927632f7ef730f336974294b20048c51e9d58a4

diff --git a/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
new file mode 100644
index 00000000000..de2f35ea9f6
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+inherit distutils-r1
+
+DESCRIPTION="Python client for the Prometheus monitoring system"
+HOMEPAGE="https://pypi.org/project/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 -v || die
+}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2019-11-23 11:58 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2019-11-23 11:58 UTC (permalink / raw
  To: gentoo-commits

commit:     844cb20448bf5aa71e4662aea4dccaaca8bd4fdc
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 23 11:58:00 2019 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Nov 23 11:58:00 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=844cb204

dev-python/prometheus_client: Remove old

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  1 -
 .../prometheus_client-0.5.0.ebuild                 | 27 ----------------------
 2 files changed, 28 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index fdb6da44c8b..9194d2688c1 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,3 +1,2 @@
-DIST prometheus_client-0.5.0.tar.gz 60184 BLAKE2B cc44537b051c053860520d412664d57aaa6d35dd491409de0da72b9859743cc355d67eb260c2381347ad3313df9efa498535ff130df317b103d8c815f34f28eb SHA512 6e6e6c0f859b7b9d593e1059b71fde8eed15ccd95e54c245b4e0e8edb748a4761f0929f2d6c06f1c4656eb81f26959c5cec6a58f4d725a587b433ffbb4582127
 DIST prometheus_client-0.6.0.tar.gz 60790 BLAKE2B fa8eaddfedb9598394fec0c6464499ed5bcace9969e843126422414e397d31985a44a626be0257a235f6d5f685fd8d6bb55fc0d92928f0b9729ab9f097f1958b SHA512 a2b92683f939961c567c266a54699de6f37088cd4e61c9d9a5f4451228b4c3bfa4c517e4a5187867f5463d726a8dc6e7fdae30973c1e9aa9aa1a03247b2e99cd
 DIST prometheus_client-0.7.1.tar.gz 62880 BLAKE2B 8878a6e6a20f96443f1f14ffbb74eda7dc6f1f48151901da047ade6342ddd7858b4dcd808d80af64a3eff449c1c7425f9eb9f3d1283b65e8e6067c6b5fe2f9c4 SHA512 84b145ed191c9903d390b152c72de4f2afcb4c500b8debba59ded081f00cc76109b336ed2d7783d59e9922ea2927632f7ef730f336974294b20048c51e9d58a4

diff --git a/dev-python/prometheus_client/prometheus_client-0.5.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.5.0.ebuild
deleted file mode 100644
index 366c1c2b5ab..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.5.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
-inherit distutils-r1
-
-DESCRIPTION="Python client for the Prometheus monitoring system"
-HOMEPAGE="https://pypi.org/project/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 -v || die
-}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2019-11-23 11:58 Manuel Rüger
  0 siblings, 0 replies; 90+ messages in thread
From: Manuel Rüger @ 2019-11-23 11:58 UTC (permalink / raw
  To: gentoo-commits

commit:     247169a991e101795f6ec8986a4414a3f30b5711
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 23 11:58:24 2019 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Sat Nov 23 11:58:24 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=247169a9

dev-python/prometheus_client: Drop myself as a maintainer

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>

 dev-python/prometheus_client/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/dev-python/prometheus_client/metadata.xml b/dev-python/prometheus_client/metadata.xml
index 5357dd817d6..fda0ec1e591 100644
--- a/dev-python/prometheus_client/metadata.xml
+++ b/dev-python/prometheus_client/metadata.xml
@@ -1,10 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="person">
-    <email>mrueg@gentoo.org</email>
-    <name>Manuel Rüger</name>
-  </maintainer>
   <maintainer type="project">
     <email>python@gentoo.org</email>
     <name>Python</name>


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2019-11-24 16:15 Aaron Bauman
  0 siblings, 0 replies; 90+ messages in thread
From: Aaron Bauman @ 2019-11-24 16:15 UTC (permalink / raw
  To: gentoo-commits

commit:     d0210195aa1e19325bcaa780cd082f2c10497c1f
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 24 16:12:06 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun Nov 24 16:12:06 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0210195

dev-python/prometheus_client: fix QA warning about tests

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.6.0.ebuild | 1 +
 dev-python/prometheus_client/prometheus_client-0.7.1.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
index 366c1c2b5ab..5f11077944f 100644
--- a/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
@@ -14,6 +14,7 @@ LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="amd64"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 S=${WORKDIR}/client_python-${PV}
 

diff --git a/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
index de2f35ea9f6..9dd8eb6a2ba 100644
--- a/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
@@ -14,6 +14,7 @@ LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
 S=${WORKDIR}/client_python-${PV}
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-02-05 19:12 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2020-02-05 19:12 UTC (permalink / raw
  To: gentoo-commits

commit:     6760095d17bf4fe269786c1e179864ece70e8cec
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  5 18:59:49 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb  5 19:12:36 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6760095d

dev-python/prometheus_client: Remove py2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.6.0.ebuild | 2 +-
 dev-python/prometheus_client/prometheus_client-0.7.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
index dc6591f642f..011f982f00f 100644
--- a/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7} )
 inherit distutils-r1
 
 DESCRIPTION="Python client for the Prometheus monitoring system"

diff --git a/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
index 6e9469df602..3feae7277a5 100644
--- a/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7} )
 inherit distutils-r1
 
 DESCRIPTION="Python client for the Prometheus monitoring system"


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-02-12 21:30 Zac Medico
  0 siblings, 0 replies; 90+ messages in thread
From: Zac Medico @ 2020-02-12 21:30 UTC (permalink / raw
  To: gentoo-commits

commit:     aa0b008d20508e58365842844cb86398f2b43bf6
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 12 21:30:22 2020 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Wed Feb 12 21:30:51 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa0b008d

dev-python/prometheus_client: PYTHON_COMPAT+=(python3_8)

Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
index 3feae7277a5..acdeb393457 100644
--- a/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python{3_6,3_7} )
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
 inherit distutils-r1
 
 DESCRIPTION="Python client for the Prometheus monitoring system"


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-02-13 19:18 Patrick McLean
  0 siblings, 0 replies; 90+ messages in thread
From: Patrick McLean @ 2020-02-13 19:18 UTC (permalink / raw
  To: gentoo-commits

commit:     2e1d869be17fb570ff62f93de4510715aea63430
Author:     Patrick McLean <patrick.mclean <AT> sony <DOT> com>
AuthorDate: Thu Feb 13 19:17:53 2020 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Thu Feb 13 19:18:10 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e1d869b

dev-python/prometheus_client-0.7.1-r1: revbump, py38, EAPI=7

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 .../prometheus_client-0.7.1-r1.ebuild               | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/dev-python/prometheus_client/prometheus_client-0.7.1-r1.ebuild b/dev-python/prometheus_client/prometheus_client-0.7.1-r1.ebuild
new file mode 100644
index 00000000000..55559cf445e
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.7.1-r1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+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"
+
+RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-02-13 23:29 Patrick McLean
  0 siblings, 0 replies; 90+ messages in thread
From: Patrick McLean @ 2020-02-13 23:29 UTC (permalink / raw
  To: gentoo-commits

commit:     10c84a52874f57f3d5977050a4ec6382cae0fc77
Author:     Patrick McLean <patrick.mclean <AT> sony <DOT> com>
AuthorDate: Thu Feb 13 23:29:49 2020 +0000
Commit:     Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Thu Feb 13 23:29:49 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10c84a52

dev-python/prometheus_client-0.6.0-r1: revbump add py38 (0.6.0 series)

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.88, Repoman-2.3.20
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>

 .../prometheus_client-0.6.0-r1.ebuild               | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/dev-python/prometheus_client/prometheus_client-0.6.0-r1.ebuild b/dev-python/prometheus_client/prometheus_client-0.6.0-r1.ebuild
new file mode 100644
index 00000000000..55559cf445e
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.6.0-r1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+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"
+
+RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-03-25 14:17 Agostino Sarubbo
  0 siblings, 0 replies; 90+ messages in thread
From: Agostino Sarubbo @ 2020-03-25 14:17 UTC (permalink / raw
  To: gentoo-commits

commit:     59ec5be6886b317768b9117e19e7ecf048754972
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 25 14:15:04 2020 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Mar 25 14:17:28 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59ec5be6

dev-python/prometheus_client: amd64 stable wrt bug #714410

Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.7.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.7.1-r1.ebuild b/dev-python/prometheus_client/prometheus_client-0.7.1-r1.ebuild
index 55559cf445e..1462bdee06b 100644
--- a/dev-python/prometheus_client/prometheus_client-0.7.1-r1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.7.1-r1.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-03-26 17:36 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2020-03-26 17:36 UTC (permalink / raw
  To: gentoo-commits

commit:     8572893f47a363a191f5e243ef87874835883a2f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 26 17:29:25 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Mar 26 17:35:50 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8572893f

dev-python/prometheus_client: Flatten twisted dep

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.6.0.ebuild | 2 +-
 dev-python/prometheus_client/prometheus_client-0.7.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
index 011f982f00f..40d6b4beeb4 100644
--- a/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
@@ -18,7 +18,7 @@ RESTRICT="!test? ( test )"
 
 S=${WORKDIR}/client_python-${PV}
 
-RDEPEND="|| ( dev-python/twisted[${PYTHON_USEDEP}] dev-python/twisted-web[${PYTHON_USEDEP}] )"
+RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
 	test? ( ${RDEPEND}
 		dev-python/pytest[${PYTHON_USEDEP}] )"

diff --git a/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
index acdeb393457..2618852a2b3 100644
--- a/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
@@ -18,7 +18,7 @@ RESTRICT="!test? ( test )"
 
 S=${WORKDIR}/client_python-${PV}
 
-RDEPEND="|| ( dev-python/twisted[${PYTHON_USEDEP}] dev-python/twisted-web[${PYTHON_USEDEP}] )"
+RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
 	test? ( ${RDEPEND}
 		dev-python/pytest[${PYTHON_USEDEP}] )"


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-03-28 12:42 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2020-03-28 12:42 UTC (permalink / raw
  To: gentoo-commits

commit:     103bc4469b49bf5e55bc320fa2c216bda6131292
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 28 12:35:41 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 28 12:42:06 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=103bc446

dev-python/prometheus_client: Remove redundant versions

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  1 -
 .../prometheus_client-0.6.0-r1.ebuild              | 21 ----------------
 .../prometheus_client-0.6.0.ebuild                 | 28 ----------------------
 .../prometheus_client-0.7.1.ebuild                 | 28 ----------------------
 4 files changed, 78 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 9194d2688c1..a627f643d9a 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1 @@
-DIST prometheus_client-0.6.0.tar.gz 60790 BLAKE2B fa8eaddfedb9598394fec0c6464499ed5bcace9969e843126422414e397d31985a44a626be0257a235f6d5f685fd8d6bb55fc0d92928f0b9729ab9f097f1958b SHA512 a2b92683f939961c567c266a54699de6f37088cd4e61c9d9a5f4451228b4c3bfa4c517e4a5187867f5463d726a8dc6e7fdae30973c1e9aa9aa1a03247b2e99cd
 DIST prometheus_client-0.7.1.tar.gz 62880 BLAKE2B 8878a6e6a20f96443f1f14ffbb74eda7dc6f1f48151901da047ade6342ddd7858b4dcd808d80af64a3eff449c1c7425f9eb9f3d1283b65e8e6067c6b5fe2f9c4 SHA512 84b145ed191c9903d390b152c72de4f2afcb4c500b8debba59ded081f00cc76109b336ed2d7783d59e9922ea2927632f7ef730f336974294b20048c51e9d58a4

diff --git a/dev-python/prometheus_client/prometheus_client-0.6.0-r1.ebuild b/dev-python/prometheus_client/prometheus_client-0.6.0-r1.ebuild
deleted file mode 100644
index 55559cf445e..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.6.0-r1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python{3_6,3_7,3_8} )
-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"
-
-RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest

diff --git a/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
deleted file mode 100644
index 40d6b4beeb4..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.6.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{3_6,3_7} )
-inherit distutils-r1
-
-DESCRIPTION="Python client for the Prometheus monitoring system"
-HOMEPAGE="https://pypi.org/project/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"
-RESTRICT="!test? ( test )"
-
-S=${WORKDIR}/client_python-${PV}
-
-RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-	test? ( ${RDEPEND}
-		dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_test() {
-	pytest -v || die
-}

diff --git a/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
deleted file mode 100644
index 2618852a2b3..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.7.1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{3_6,3_7,3_8} )
-inherit distutils-r1
-
-DESCRIPTION="Python client for the Prometheus monitoring system"
-HOMEPAGE="https://pypi.org/project/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"
-RESTRICT="!test? ( test )"
-
-S=${WORKDIR}/client_python-${PV}
-
-RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-	test? ( ${RDEPEND}
-		dev-python/pytest[${PYTHON_USEDEP}] )"
-
-python_test() {
-	pytest -v || die
-}


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-06-09 16:25 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2020-06-09 16:25 UTC (permalink / raw
  To: gentoo-commits

commit:     562fe1bde1383b94ef8bb4bc9f81269c002983f1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  9 16:20:15 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jun  9 16:20:45 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=562fe1bd

dev-python/prometheus_client: Bump to 0.8.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest               |  1 +
 .../prometheus_client-0.8.0.ebuild                  | 21 +++++++++++++++++++++
 2 files changed, 22 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index a627f643d9a..358b4b06a61 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1 +1,2 @@
 DIST prometheus_client-0.7.1.tar.gz 62880 BLAKE2B 8878a6e6a20f96443f1f14ffbb74eda7dc6f1f48151901da047ade6342ddd7858b4dcd808d80af64a3eff449c1c7425f9eb9f3d1283b65e8e6067c6b5fe2f9c4 SHA512 84b145ed191c9903d390b152c72de4f2afcb4c500b8debba59ded081f00cc76109b336ed2d7783d59e9922ea2927632f7ef730f336974294b20048c51e9d58a4
+DIST prometheus_client-0.8.0.tar.gz 67749 BLAKE2B 570c95de0d4e9e8bd625d55eb3dd450cf933ab7c8b6af74ff56414045f4d845c4a74f60d60e8b29f868801de12ebe2d39b5ac11701071c4998aec66719581b3f SHA512 a9d49bc4dac77168f94edf51344042bc5210b07ed01031dc50e323f86ea8292df7370956a4fbd9d9f85a0857a8ec9abaef30c0c2cd4dc5502df7264816eecc8f

diff --git a/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
new file mode 100644
index 00000000000..b795fd68f55
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..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"
+
+RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-06-09 16:25 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2020-06-09 16:25 UTC (permalink / raw
  To: gentoo-commits

commit:     d96b22235cc0d0a8c40c05002af686371dfa3e9a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  9 16:19:48 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jun  9 16:20:44 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d96b2223

dev-python/prometheus_client: Port to py3.9

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.7.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.7.1-r1.ebuild b/dev-python/prometheus_client/prometheus_client-0.7.1-r1.ebuild
index 1462bdee06b..f97aa000cb0 100644
--- a/dev-python/prometheus_client/prometheus_client-0.7.1-r1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.7.1-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+PYTHON_COMPAT=( python3_{6..9} )
 inherit distutils-r1
 
 DESCRIPTION="Python client for the Prometheus monitoring system"


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-06-09 20:00 Mart Raudsepp
  0 siblings, 0 replies; 90+ messages in thread
From: Mart Raudsepp @ 2020-06-09 20:00 UTC (permalink / raw
  To: gentoo-commits

commit:     28eb49c351d0f7d7e49d28f1d80e1e3daf9dc519
Author:     Sam James (sam_c) <sam <AT> cmpct <DOT> info>
AuthorDate: Tue Jun  9 12:08:35 2020 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Tue Jun  9 20:00:27 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28eb49c3

dev-python/prometheus_client: arm64 keyworded (bug #715136)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c) <sam <AT> cmpct.info>
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
index b795fd68f55..582a4363066 100644
--- a/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-06-09 20:07 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2020-06-09 20:07 UTC (permalink / raw
  To: gentoo-commits

commit:     f4012baf4e5527c1387e4724f29dad357c381e81
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  9 20:06:56 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jun  9 20:06:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4012baf

dev-python/prometheus_client: Keyword 0.8.0 x86, #715136

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
index 582a4363066..173bdca64c5 100644
--- a/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-07-07 20:01 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2020-07-07 20:01 UTC (permalink / raw
  To: gentoo-commits

commit:     25216bea39519d3de548f236104191df1806c7e5
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  7 19:58:48 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jul  7 20:01:31 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25216bea

dev-python/prometheus_client: Stabilize 0.8.0 amd64, #715070

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
index 173bdca64c5..885318c1892 100644
--- a/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-07-31  0:50 Sam James
  0 siblings, 0 replies; 90+ messages in thread
From: Sam James @ 2020-07-31  0:50 UTC (permalink / raw
  To: gentoo-commits

commit:     33ea7dbb8c955d12bd0cb03c498e11b0779e8fa2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 31 00:49:14 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 31 00:49:14 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33ea7dbb

dev-python/prometheus_client: x86 stable (bug #715070)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
index 885318c1892..cbe011826f5 100644
--- a/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-11-16 14:59 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2020-11-16 14:59 UTC (permalink / raw
  To: gentoo-commits

commit:     99b614f39d357f21b1cc92407ee11affcc3e0d67
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 16 14:55:55 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Nov 16 14:55:55 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99b614f3

dev-python/prometheus_client: Bump to 0.9.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest               |  1 +
 .../prometheus_client-0.9.0.ebuild                  | 21 +++++++++++++++++++++
 2 files changed, 22 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 05b2f9b7eff..4da206b1177 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1 +1,2 @@
 DIST prometheus_client-0.8.0.tar.gz 67749 BLAKE2B 570c95de0d4e9e8bd625d55eb3dd450cf933ab7c8b6af74ff56414045f4d845c4a74f60d60e8b29f868801de12ebe2d39b5ac11701071c4998aec66719581b3f SHA512 a9d49bc4dac77168f94edf51344042bc5210b07ed01031dc50e323f86ea8292df7370956a4fbd9d9f85a0857a8ec9abaef30c0c2cd4dc5502df7264816eecc8f
+DIST prometheus_client-0.9.0.tar.gz 68176 BLAKE2B e20f599e6a4d39226e48cafeca879b87389fdb5a6eda401161ce448cb0b46a89ce0cccc1b78e2fc8cb60cc461253345b9ba52809c861f0a187171c33095f625a SHA512 1d68ca35169972c50bb56ede88c47408ee27b3e795fcf03798313aed2dbc5db5532fe6886998c118258b76e431c6e49aa0ac19b9206cad63711901497258aaa5

diff --git a/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild
new file mode 100644
index 00000000000..173bdca64c5
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..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


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-12-11 12:55 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2020-12-11 12:55 UTC (permalink / raw
  To: gentoo-commits

commit:     a678fb99047ea7599e46ee8a94946660334cd1d2
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 11 12:30:32 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Dec 11 12:53:27 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a678fb99

dev-python/prometheus_client: Update HOMEPAGE

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/metadata.xml                 | 15 ++++++++-------
 .../prometheus_client/prometheus_client-0.9.0.ebuild      |  4 ++--
 2 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/dev-python/prometheus_client/metadata.xml b/dev-python/prometheus_client/metadata.xml
index fda0ec1e591..61e60a89a84 100644
--- a/dev-python/prometheus_client/metadata.xml
+++ b/dev-python/prometheus_client/metadata.xml
@@ -1,11 +1,12 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="project">
-    <email>python@gentoo.org</email>
-    <name>Python</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">prometheus/client_python</remote-id>
-  </upstream>
+	<maintainer type="project">
+		<email>python@gentoo.org</email>
+		<name>Python</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">prometheus/client_python</remote-id>
+		<remote-id type="pypi">prometheus-client</remote-id>
+	</upstream>
 </pkgmetadata>

diff --git a/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild
index 173bdca64c5..bc359363a55 100644
--- a/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild
@@ -7,8 +7,8 @@ PYTHON_COMPAT=( python3_{6..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"
+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}"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-12-16 11:51 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2020-12-16 11:51 UTC (permalink / raw
  To: gentoo-commits

commit:     02c63ee625f5f4d9846b00a8d7e6c85303108d91
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 16 11:48:42 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Dec 16 11:48:42 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02c63ee6

dev-python/prometheus_client: Mark ALLARCHES

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/prometheus_client/metadata.xml b/dev-python/prometheus_client/metadata.xml
index 61e60a89a84..b128f04ee2b 100644
--- a/dev-python/prometheus_client/metadata.xml
+++ b/dev-python/prometheus_client/metadata.xml
@@ -5,6 +5,7 @@
 		<email>python@gentoo.org</email>
 		<name>Python</name>
 	</maintainer>
+	<stabilize-allarches/>
 	<upstream>
 		<remote-id type="github">prometheus/client_python</remote-id>
 		<remote-id type="pypi">prometheus-client</remote-id>


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2020-12-17 17:09 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2020-12-17 17:09 UTC (permalink / raw
  To: gentoo-commits

commit:     ce76a49d0e56c2cf6f417f8fa3cbce06429a8b33
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 17 16:58:21 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Dec 17 17:09:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce76a49d

dev-python/prometheus_client: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest               |  1 -
 .../prometheus_client-0.8.0.ebuild                  | 21 ---------------------
 2 files changed, 22 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 4da206b1177..e13f0160040 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1 @@
-DIST prometheus_client-0.8.0.tar.gz 67749 BLAKE2B 570c95de0d4e9e8bd625d55eb3dd450cf933ab7c8b6af74ff56414045f4d845c4a74f60d60e8b29f868801de12ebe2d39b5ac11701071c4998aec66719581b3f SHA512 a9d49bc4dac77168f94edf51344042bc5210b07ed01031dc50e323f86ea8292df7370956a4fbd9d9f85a0857a8ec9abaef30c0c2cd4dc5502df7264816eecc8f
 DIST prometheus_client-0.9.0.tar.gz 68176 BLAKE2B e20f599e6a4d39226e48cafeca879b87389fdb5a6eda401161ce448cb0b46a89ce0cccc1b78e2fc8cb60cc461253345b9ba52809c861f0a187171c33095f625a SHA512 1d68ca35169972c50bb56ede88c47408ee27b3e795fcf03798313aed2dbc5db5532fe6886998c118258b76e431c6e49aa0ac19b9206cad63711901497258aaa5

diff --git a/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
deleted file mode 100644
index cbe011826f5..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.8.0.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..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


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-04-02 23:42 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2021-04-02 23:42 UTC (permalink / raw
  To: gentoo-commits

commit:     1bfb182c1107e7a4a4533366af68e6c35a7b4780
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  2 23:10:25 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> 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 <mgorny <AT> 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


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-04-08 22:46 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2021-04-08 22:46 UTC (permalink / raw
  To: gentoo-commits

commit:     2dee7455d0271e1c2c619ff889800783c6f02fa6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Apr  8 22:42:26 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Apr  8 22:42:26 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dee7455

dev-python/prometheus_client: Bump to 0.10.1

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest               |  1 +
 .../prometheus_client-0.10.1.ebuild                 | 21 +++++++++++++++++++++
 2 files changed, 22 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index b44980cdde4..a8c146a3c46 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1,3 @@
 DIST prometheus_client-0.10.0.tar.gz 71598 BLAKE2B 013b73c3f417fc6102ab6ebe77381b34dee1b6bd7a32af88934ba4dcf6652cd73524de0c489aa2adaa02869c17094eedd95cd87858c9cd2f019001c7fea41a0b SHA512 add7f5dae5f3353df755a1cd74d4a4b08f4217c8eed1880f6abf0ac4629e3179afa6298f93b407babd215b8b6aa84587297da68d6625c27088110e615cb0df10
+DIST prometheus_client-0.10.1.tar.gz 71676 BLAKE2B 63a597eca0f7684013ca2de8cda9d9ca7ab64d3ff923e3d328c1e54e794ea9e34771795117a8cd8254063028ceedd9c50d15c89bba48d3994e79629ebae6df14 SHA512 231c86bfeb2a35fbaf172005ead5b790b107c55f3657d94ad417c0036cc72ad6b48ebef7d52d2fdd1bca9b98032d1057250a880b002a29e98efa803886f26766
 DIST prometheus_client-0.9.0.tar.gz 68176 BLAKE2B e20f599e6a4d39226e48cafeca879b87389fdb5a6eda401161ce448cb0b46a89ce0cccc1b78e2fc8cb60cc461253345b9ba52809c861f0a187171c33095f625a SHA512 1d68ca35169972c50bb56ede88c47408ee27b3e795fcf03798313aed2dbc5db5532fe6886998c118258b76e431c6e49aa0ac19b9206cad63711901497258aaa5

diff --git a/dev-python/prometheus_client/prometheus_client-0.10.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.10.1.ebuild
new file mode 100644
index 00000000000..b757b986d36
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.10.1.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


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-05-09  9:15 Agostino Sarubbo
  0 siblings, 0 replies; 90+ messages in thread
From: Agostino Sarubbo @ 2021-05-09  9:15 UTC (permalink / raw
  To: gentoo-commits

commit:     87d4f3e7ab2690faf34bdabece8af67dc2dcf3c0
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun May  9 09:14:29 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun May  9 09:14:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87d4f3e7

dev-python/prometheus_client: amd64/x86 stable (ALLARCHES policy) wrt bug #788523

Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.10.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.10.1.ebuild
index b757b986d36..02008315932 100644
--- a/dev-python/prometheus_client/prometheus_client-0.10.1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.10.1.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-05-09  9:39 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2021-05-09  9:39 UTC (permalink / raw
  To: gentoo-commits

commit:     2fd9a4100f09e6783c06e512f9c327d2c81bf267
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun May  9 09:37:10 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun May  9 09:37:10 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fd9a410

dev-python/prometheus_client: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest               |  2 --
 .../prometheus_client-0.10.0.ebuild                 | 21 ---------------------
 .../prometheus_client-0.9.0.ebuild                  | 21 ---------------------
 3 files changed, 44 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index a8c146a3c46..8317e54b793 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,3 +1 @@
-DIST prometheus_client-0.10.0.tar.gz 71598 BLAKE2B 013b73c3f417fc6102ab6ebe77381b34dee1b6bd7a32af88934ba4dcf6652cd73524de0c489aa2adaa02869c17094eedd95cd87858c9cd2f019001c7fea41a0b SHA512 add7f5dae5f3353df755a1cd74d4a4b08f4217c8eed1880f6abf0ac4629e3179afa6298f93b407babd215b8b6aa84587297da68d6625c27088110e615cb0df10
 DIST prometheus_client-0.10.1.tar.gz 71676 BLAKE2B 63a597eca0f7684013ca2de8cda9d9ca7ab64d3ff923e3d328c1e54e794ea9e34771795117a8cd8254063028ceedd9c50d15c89bba48d3994e79629ebae6df14 SHA512 231c86bfeb2a35fbaf172005ead5b790b107c55f3657d94ad417c0036cc72ad6b48ebef7d52d2fdd1bca9b98032d1057250a880b002a29e98efa803886f26766
-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
deleted file mode 100644
index b757b986d36..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.10.0.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# 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

diff --git a/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild
deleted file mode 100644
index 6d87458153e..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.9.0.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2020 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


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-06-01 22:22 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2021-06-01 22:22 UTC (permalink / raw
  To: gentoo-commits

commit:     7e7f9683e964056df894a0355d5662c4d8b579f1
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  1 21:55:05 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jun  1 22:22:36 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e7f9683

dev-python/prometheus_client: Bump to 0.11.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest               |  1 +
 .../prometheus_client-0.11.0.ebuild                 | 21 +++++++++++++++++++++
 2 files changed, 22 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 8317e54b793..6f6c15159bd 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1 +1,2 @@
 DIST prometheus_client-0.10.1.tar.gz 71676 BLAKE2B 63a597eca0f7684013ca2de8cda9d9ca7ab64d3ff923e3d328c1e54e794ea9e34771795117a8cd8254063028ceedd9c50d15c89bba48d3994e79629ebae6df14 SHA512 231c86bfeb2a35fbaf172005ead5b790b107c55f3657d94ad417c0036cc72ad6b48ebef7d52d2fdd1bca9b98032d1057250a880b002a29e98efa803886f26766
+DIST prometheus_client-0.11.0.tar.gz 72272 BLAKE2B 2526a65acf928ce5f492c6a43276ecb951d8b600eeb5050b92db091919862eb0ec4f41ca41347b4dd70a612f70e8f4a49796572de80b197d21c3a8cf8e303201 SHA512 5e644d781b7fcc3e0e386a2244f524ccaf978f1eab87b1d6d8009ac3f10fe2ca4adf2c76c2a2ffa47b4b54237cd906807d55bd99530a92d82cd3825de93280dc

diff --git a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
new file mode 100644
index 00000000000..dfe3fc49a70
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.11.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..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}.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


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-06-20  1:45 Sam James
  0 siblings, 0 replies; 90+ messages in thread
From: Sam James @ 2021-06-20  1:45 UTC (permalink / raw
  To: gentoo-commits

commit:     9bf438ed0da8c2f6d82971d8482dcc830f065d17
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 20 01:44:10 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 20 01:44:10 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bf438ed

dev-python/prometheus_client: Keyword 0.11.0 arm, #796365

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
index dfe3fc49a70..c1d5757fc61 100644
--- a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-06-20  1:55 Sam James
  0 siblings, 0 replies; 90+ messages in thread
From: Sam James @ 2021-06-20  1:55 UTC (permalink / raw
  To: gentoo-commits

commit:     edcd9e45ee3e574fb4c7847d75b81b76349dbf2a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 20 01:54:25 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 20 01:54:25 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edcd9e45

dev-python/prometheus_client: Keyword 0.11.0 sparc, #796365

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
index c1d5757fc61..5accd5943f5 100644
--- a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~sparc ~x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-07-03  6:17 Agostino Sarubbo
  0 siblings, 0 replies; 90+ messages in thread
From: Agostino Sarubbo @ 2021-07-03  6:17 UTC (permalink / raw
  To: gentoo-commits

commit:     ab20e184c416d2830adf3bbde5054f003b0db6fd
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  3 06:13:47 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Jul  3 06:13:47 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab20e184

dev-python/prometheus_client: amd64/x86 stable (ALLARCHES policy) wrt bug #800016

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
index 5accd5943f5..bb19b2a1a94 100644
--- a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~sparc x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-07-03  6:29 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2021-07-03  6:29 UTC (permalink / raw
  To: gentoo-commits

commit:     66ee764d7d0bdf004a71820a9cf0c9d823dd8583
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  3 06:27:17 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul  3 06:27:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66ee764d

dev-python/prometheus_client: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest               |  1 -
 .../prometheus_client-0.10.1.ebuild                 | 21 ---------------------
 2 files changed, 22 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 6f6c15159bd..ed60370f1bd 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1 @@
-DIST prometheus_client-0.10.1.tar.gz 71676 BLAKE2B 63a597eca0f7684013ca2de8cda9d9ca7ab64d3ff923e3d328c1e54e794ea9e34771795117a8cd8254063028ceedd9c50d15c89bba48d3994e79629ebae6df14 SHA512 231c86bfeb2a35fbaf172005ead5b790b107c55f3657d94ad417c0036cc72ad6b48ebef7d52d2fdd1bca9b98032d1057250a880b002a29e98efa803886f26766
 DIST prometheus_client-0.11.0.tar.gz 72272 BLAKE2B 2526a65acf928ce5f492c6a43276ecb951d8b600eeb5050b92db091919862eb0ec4f41ca41347b4dd70a612f70e8f4a49796572de80b197d21c3a8cf8e303201 SHA512 5e644d781b7fcc3e0e386a2244f524ccaf978f1eab87b1d6d8009ac3f10fe2ca4adf2c76c2a2ffa47b4b54237cd906807d55bd99530a92d82cd3825de93280dc

diff --git a/dev-python/prometheus_client/prometheus_client-0.10.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.10.1.ebuild
deleted file mode 100644
index 02008315932..00000000000
--- a/dev-python/prometheus_client/prometheus_client-0.10.1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# 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


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-07-07  2:17 Sam James
  0 siblings, 0 replies; 90+ messages in thread
From: Sam James @ 2021-07-07  2:17 UTC (permalink / raw
  To: gentoo-commits

commit:     90e4fdfde0a8af722b1d54425e8b3e98132419f5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  6 23:20:51 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul  6 23:20:51 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90e4fdfd

dev-python/prometheus_client: Stabilize 0.11.0 arm64, #797472

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
index bb19b2a1a94..f47841f6cfb 100644
--- a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~sparc x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-07-11 10:14 Georgy Yakovlev
  0 siblings, 0 replies; 90+ messages in thread
From: Georgy Yakovlev @ 2021-07-11 10:14 UTC (permalink / raw
  To: gentoo-commits

commit:     904a6b790d644a88606a22ca236eb34e65b0d33b
Author:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 11 09:09:59 2021 +0000
Commit:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Sun Jul 11 10:13:16 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=904a6b79

dev-python/prometheus_client: ppc64 keyworded

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
index f47841f6cfb..5017d5973b7 100644
--- a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~sparc x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-07-12  6:41 Sam James
  0 siblings, 0 replies; 90+ messages in thread
From: Sam James @ 2021-07-12  6:41 UTC (permalink / raw
  To: gentoo-commits

commit:     f2c8ee9d461f4af9e3fe3a9924965d225ce97930
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 12 06:40:03 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jul 12 06:41:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2c8ee9d

dev-python/prometheus_client: Keyword 0.11.0 ppc, #796365

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
index 5017d5973b7..320d59f1541 100644
--- a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~sparc x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-09-02  0:01 Marek Szuba
  0 siblings, 0 replies; 90+ messages in thread
From: Marek Szuba @ 2021-09-02  0:01 UTC (permalink / raw
  To: gentoo-commits

commit:     7024679e4b01fb7bc79861be0d8fda42d5f663f4
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Sep  1 16:34:32 2021 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Thu Sep  2 00:01:22 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7024679e

dev-python/prometheus_client: keyword 0.11.0 for ~riscv

Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.11.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
index 320d59f1541..437432377ff 100644
--- a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7..10} )
+PYTHON_COMPAT=( python3_{8..10} )
 inherit distutils-r1
 
 DESCRIPTION="Python client for the Prometheus monitoring system"
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv ~sparc x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-09-06  0:18 Sam James
  0 siblings, 0 replies; 90+ messages in thread
From: Sam James @ 2021-09-06  0:18 UTC (permalink / raw
  To: gentoo-commits

commit:     d97a1b621f5c3cecef39cd9c47210cf780b3f651
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  6 00:18:17 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep  6 00:18:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d97a1b62

dev-python/prometheus_client: Keyword 0.11.0 s390, #808378

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
index 437432377ff..cea86994f9d 100644
--- a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-10-29 19:37 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2021-10-29 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     a1e75ec43f681ffd254ee2227263570ffa1e4512
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 29 18:58:10 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Oct 29 19:37:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1e75ec4

dev-python/prometheus_client: Bump to 0.12.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest               |  1 +
 .../prometheus_client-0.12.0.ebuild                 | 21 +++++++++++++++++++++
 2 files changed, 22 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index ed60370f1bd..2522b4c3e7d 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1 +1,2 @@
 DIST prometheus_client-0.11.0.tar.gz 72272 BLAKE2B 2526a65acf928ce5f492c6a43276ecb951d8b600eeb5050b92db091919862eb0ec4f41ca41347b4dd70a612f70e8f4a49796572de80b197d21c3a8cf8e303201 SHA512 5e644d781b7fcc3e0e386a2244f524ccaf978f1eab87b1d6d8009ac3f10fe2ca4adf2c76c2a2ffa47b4b54237cd906807d55bd99530a92d82cd3825de93280dc
+DIST prometheus_client-0.12.0.tar.gz 73521 BLAKE2B eb90c7f3991519fe132f01612d6aadd10193947069b79e67c9e37faa4e174d739ca78b12de028dfc922cb368c7405baeb4fa929b378a91db12e67190ca3561ff SHA512 ebcbbed706a96a9402eb985f5da15ee8fae09de952144a89a3323e147c0d16615ccd9be58b50b5b8ede37d4f66de1e2ce93ed53c4da939ca2e44c7aac687a1f7

diff --git a/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
new file mode 100644
index 00000000000..5c5d5c77db1
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+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}.tar.gz"
+S="${WORKDIR}/client_python-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-11-14  3:43 Sam James
  0 siblings, 0 replies; 90+ messages in thread
From: Sam James @ 2021-11-14  3:43 UTC (permalink / raw
  To: gentoo-commits

commit:     164926f12d98bd25bf9c5d32b63484069474ff7e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 14 03:43:24 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov 14 03:43:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=164926f1

dev-python/prometheus_client: Keyword 0.12.0 ia64, #808378

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
index 5c5d5c77db1b..2ab3d65275ef 100644
--- a/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-11-14 20:35 Sam James
  0 siblings, 0 replies; 90+ messages in thread
From: Sam James @ 2021-11-14 20:35 UTC (permalink / raw
  To: gentoo-commits

commit:     88b4b9ffca057047b1b45218996c5e0ac9ab86d7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 14 20:35:41 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov 14 20:35:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88b4b9ff

dev-python/prometheus_client: Keyword 0.12.0 hppa, #808378

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
index 2ab3d65275ef..035fac3f6100 100644
--- a/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-11-18  5:36 Sam James
  0 siblings, 0 replies; 90+ messages in thread
From: Sam James @ 2021-11-18  5:36 UTC (permalink / raw
  To: gentoo-commits

commit:     2af339d1adf419fbfe5c337cd8a7820fe486adf2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 18 05:35:52 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 18 05:35:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2af339d1

dev-python/prometheus_client: Stabilize 0.11.0 hppa, #811939

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
index cea86994f9dc..ecd09b4420d4 100644
--- a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-11-18  8:10 Sam James
  0 siblings, 0 replies; 90+ messages in thread
From: Sam James @ 2021-11-18  8:10 UTC (permalink / raw
  To: gentoo-commits

commit:     3bb7e0f7a0fe21e33b670dfeaabb6578f247444b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 18 08:10:06 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 18 08:10:06 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bb7e0f7

dev-python/prometheus_client: Stabilize 0.11.0 ppc, #811939

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
index ecd09b4420d4..d0fa21391332 100644
--- a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 hppa ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 hppa ppc ~ppc64 ~riscv ~s390 ~sparc x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-12-15 16:46 Jakov Smolić
  0 siblings, 0 replies; 90+ messages in thread
From: Jakov Smolić @ 2021-12-15 16:46 UTC (permalink / raw
  To: gentoo-commits

commit:     14eee5b3a766bd688b4236fd90951680bde322bd
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 15 16:46:14 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Dec 15 16:46:14 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14eee5b3

dev-python/prometheus_client: Stabilize 0.12.0 ALLARCHES, #829278

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.12.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
index 035fac3f6100..833fba36cb47 100644
--- a/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2021-12-15 16:54 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2021-12-15 16:54 UTC (permalink / raw
  To: gentoo-commits

commit:     e69016a687cd3b834d0edf2e733ab8dad00ac70d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 15 16:53:17 2021 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Dec 15 16:54:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e69016a6

dev-python/prometheus_client: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest               |  1 -
 .../prometheus_client-0.11.0.ebuild                 | 21 ---------------------
 2 files changed, 22 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 2522b4c3e7d9..7e52edad9def 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1 @@
-DIST prometheus_client-0.11.0.tar.gz 72272 BLAKE2B 2526a65acf928ce5f492c6a43276ecb951d8b600eeb5050b92db091919862eb0ec4f41ca41347b4dd70a612f70e8f4a49796572de80b197d21c3a8cf8e303201 SHA512 5e644d781b7fcc3e0e386a2244f524ccaf978f1eab87b1d6d8009ac3f10fe2ca4adf2c76c2a2ffa47b4b54237cd906807d55bd99530a92d82cd3825de93280dc
 DIST prometheus_client-0.12.0.tar.gz 73521 BLAKE2B eb90c7f3991519fe132f01612d6aadd10193947069b79e67c9e37faa4e174d739ca78b12de028dfc922cb368c7405baeb4fa929b378a91db12e67190ca3561ff SHA512 ebcbbed706a96a9402eb985f5da15ee8fae09de952144a89a3323e147c0d16615ccd9be58b50b5b8ede37d4f66de1e2ce93ed53c4da939ca2e44c7aac687a1f7

diff --git a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
deleted file mode 100644
index d0fa21391332..000000000000
--- a/dev-python/prometheus_client/prometheus_client-0.11.0.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-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}.tar.gz"
-S="${WORKDIR}/client_python-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 hppa ppc ~ppc64 ~riscv ~s390 ~sparc x86"
-
-RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-01-26  7:33 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2022-01-26  7:33 UTC (permalink / raw
  To: gentoo-commits

commit:     4ec3aaca6ebea4ad4ab185570ea1f707204e16ac
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 26 06:30:04 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jan 26 07:32:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ec3aaca

dev-python/prometheus_client: Bump to 0.13.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.13.0.ebuild                | 25 ++++++++++++++++++++++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 7e52edad9def..c854755c9683 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1 +1,2 @@
 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

diff --git a/dev-python/prometheus_client/prometheus_client-0.13.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.13.0.ebuild
new file mode 100644
index 000000000000..f15fb9437e92
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.13.0.ebuild
@@ -0,0 +1,25 @@
+# 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}.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


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-01-28 18:38 Arthur Zamarin
  0 siblings, 0 replies; 90+ messages in thread
From: Arthur Zamarin @ 2022-01-28 18:38 UTC (permalink / raw
  To: gentoo-commits

commit:     f71b24643dba56e1cc63306b48a8c5a07dc23a84
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 28 18:36:46 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 28 18:38:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f71b2464

dev-python/prometheus_client: add 0.13.1

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.13.1.ebuild                | 24 ++++++++++++++++++++++
 2 files changed, 25 insertions(+)

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


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-01-29 14:29 James Le Cuirot
  0 siblings, 0 replies; 90+ messages in thread
From: James Le Cuirot @ 2022-01-29 14:29 UTC (permalink / raw
  To: gentoo-commits

commit:     529f1067ccf5460cd387c213ee4e519ac5ef63ac
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 29 14:12:06 2022 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Jan 29 14:29:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=529f1067

dev-python/prometheus_client: Keyword 0.13.1 for ~m68k

The tests pass.

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.13.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
index 6143d1a289d2..9108c38cf80c 100644
--- a/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-02-27 12:23 Jakov Smolić
  0 siblings, 0 replies; 90+ messages in thread
From: Jakov Smolić @ 2022-02-27 12:23 UTC (permalink / raw
  To: gentoo-commits

commit:     ad1ca608beaca4a5253ca745a93d998e740a18fd
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 27 12:16:08 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Feb 27 12:22:40 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad1ca608

dev-python/prometheus_client: Stabilize 0.13.1 ALLARCHES, #834205

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.13.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
index 9108c38cf80c..378fb806c067 100644
--- a/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 ~sparc x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-02-27 18:52 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2022-02-27 18:52 UTC (permalink / raw
  To: gentoo-commits

commit:     44c1c654cf4c5059cbe35557bdeca30cb0807359
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 27 18:51:12 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Feb 27 18:51:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44c1c654

dev-python/prometheus_client: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  2 --
 .../prometheus_client-0.12.0.ebuild                | 21 ------------------
 .../prometheus_client-0.13.0.ebuild                | 25 ----------------------
 3 files changed, 48 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 11b34cbe7c74..88ff9c361f28 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,3 +1 @@
-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.12.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
deleted file mode 100644
index 833fba36cb47..000000000000
--- a/dev-python/prometheus_client/prometheus_client-0.12.0.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-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}.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

diff --git a/dev-python/prometheus_client/prometheus_client-0.13.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.13.0.ebuild
deleted file mode 100644
index f15fb9437e92..000000000000
--- a/dev-python/prometheus_client/prometheus_client-0.13.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# 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}.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


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-03-01 11:30 Agostino Sarubbo
  0 siblings, 0 replies; 90+ messages in thread
From: Agostino Sarubbo @ 2022-03-01 11:30 UTC (permalink / raw
  To: gentoo-commits

commit:     55d9b9f0600364679892cf2effad43e9b88d0fd4
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Mar  1 11:30:10 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Mar  1 11:30:10 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55d9b9f0

dev-python/prometheus_client: sparc stable wrt bug #834205

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.13.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
index 378fb806c067..452d8bf9b9b3 100644
--- a/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-03-05  0:07 Sam James
  0 siblings, 0 replies; 90+ messages in thread
From: Sam James @ 2022-03-05  0:07 UTC (permalink / raw
  To: gentoo-commits

commit:     b420a03bab048aa4f72efc97237bd505fc72b015
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  5 00:06:33 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  5 00:06:33 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b420a03b

dev-python/prometheus_client: Stabilize 0.13.1 ppc64, #834205

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.13.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
index 452d8bf9b9b3..80841845346e 100644
--- a/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ~m68k ppc ~ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-03-12  9:46 Arthur Zamarin
  0 siblings, 0 replies; 90+ messages in thread
From: Arthur Zamarin @ 2022-03-12  9:46 UTC (permalink / raw
  To: gentoo-commits

commit:     5d9868b7b41d9a1f3c82bb16c0dae7207c6218d7
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 12 09:46:06 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 12 09:46:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d9868b7

dev-python/prometheus_client: Stabilize 0.13.1 arm, #834205

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.13.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
index 80841845346e..601b2a89f17d 100644
--- a/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-04-06  6:42 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2022-04-06  6:42 UTC (permalink / raw
  To: gentoo-commits

commit:     6be0deff0727da4d3c3412b45819ef722e29c668
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  6 05:10:18 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr  6 06:42:30 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6be0deff

dev-python/prometheus_client: Bump to 0.14.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.14.0.ebuild                | 30 ++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 88ff9c361f28..c1268c0ab579 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1 +1,2 @@
 DIST prometheus_client-0.13.1.gh.tar.gz 73480 BLAKE2B 53b2572373024a452731c055fc115ddb3c029b905d455cf9dc6289af91866c13187e58008770aa20969b371cd0852ef20651603e153195fb4658d21a628df5a3 SHA512 8d5263ff00fc4797fa65a446bdab4dc3c717cc091f8cee571fdd2130febc480cc61e73e11145ac2bf9bc0eee132efc92d88a4d4facd61d515234748791a92255
+DIST prometheus_client-0.14.0.gh.tar.gz 76115 BLAKE2B 08cffa53fd97be8ee48e91b69f1091ac52179fb48f2001aea23755e0ffd2e09cb34d97f052b0f38762bbe1f6597aed9bc630cda393bf5cd2f723dcb939f2471a SHA512 6543756b7fcd4b4a1734397c3fc25b14e00c9910133afc89f9836591e554c73a4a9fa4f3bc14b4fca2c922b6c160c769a4da435b337d0709f1884bde67008f7e

diff --git a/dev-python/prometheus_client/prometheus_client-0.14.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.14.0.ebuild
new file mode 100644
index 000000000000..4c182f58d21a
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.14.0.ebuild
@@ -0,0 +1,30 @@
+# 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 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+	dev-python/twisted[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-04-08 21:18 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2022-04-08 21:18 UTC (permalink / raw
  To: gentoo-commits

commit:     da32793999c21e305b30732d8b11538514cb6527
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  8 20:53:16 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr  8 21:18:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da327939

dev-python/prometheus_client: Bump to 0.14.1

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.14.1.ebuild                | 30 ++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index c1268c0ab579..33fb685b2af2 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1,3 @@
 DIST prometheus_client-0.13.1.gh.tar.gz 73480 BLAKE2B 53b2572373024a452731c055fc115ddb3c029b905d455cf9dc6289af91866c13187e58008770aa20969b371cd0852ef20651603e153195fb4658d21a628df5a3 SHA512 8d5263ff00fc4797fa65a446bdab4dc3c717cc091f8cee571fdd2130febc480cc61e73e11145ac2bf9bc0eee132efc92d88a4d4facd61d515234748791a92255
 DIST prometheus_client-0.14.0.gh.tar.gz 76115 BLAKE2B 08cffa53fd97be8ee48e91b69f1091ac52179fb48f2001aea23755e0ffd2e09cb34d97f052b0f38762bbe1f6597aed9bc630cda393bf5cd2f723dcb939f2471a SHA512 6543756b7fcd4b4a1734397c3fc25b14e00c9910133afc89f9836591e554c73a4a9fa4f3bc14b4fca2c922b6c160c769a4da435b337d0709f1884bde67008f7e
+DIST prometheus_client-0.14.1.gh.tar.gz 76321 BLAKE2B fd924e80d32df9fceb8898530893148f3f1131a13e97a3bac56540ba2fe3846c5498bb78d3cdcb312827dd8a8db2624e831880c5c1f348da0522db96dd0ef29e SHA512 882e7193cb344d154df8a7b7fbdfb5c635363c1aea8bde1ea174a7614bc868fe337399db7a1fb90a94128d7bdfedbc741f5f6c44d514d1ca9ab684c7527e7317

diff --git a/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild
new file mode 100644
index 000000000000..4c182f58d21a
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild
@@ -0,0 +1,30 @@
+# 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 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+	dev-python/twisted[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-05-06 12:45 Jakov Smolić
  0 siblings, 0 replies; 90+ messages in thread
From: Jakov Smolić @ 2022-05-06 12:45 UTC (permalink / raw
  To: gentoo-commits

commit:     57291dbcd6c0de8170b82f6edbadb9ffefb5956e
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri May  6 12:44:55 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri May  6 12:44:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57291dbc

dev-python/prometheus_client: Stabilize 0.14.1 ALLARCHES, #842978

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.14.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild
index 4c182f58d21a..8f062df5bf59 100644
--- a/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild
@@ -21,7 +21,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
 	dev-python/twisted[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-05-06 13:38 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2022-05-06 13:38 UTC (permalink / raw
  To: gentoo-commits

commit:     7c44a859b28cabab9546e26fb6d06b2bd74f9091
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri May  6 13:32:49 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri May  6 13:32:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c44a859

dev-python/prometheus_client: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  2 --
 .../prometheus_client-0.13.1.ebuild                | 24 -----------------
 .../prometheus_client-0.14.0.ebuild                | 30 ----------------------
 3 files changed, 56 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 33fb685b2af2..569c7f284937 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,3 +1 @@
-DIST prometheus_client-0.13.1.gh.tar.gz 73480 BLAKE2B 53b2572373024a452731c055fc115ddb3c029b905d455cf9dc6289af91866c13187e58008770aa20969b371cd0852ef20651603e153195fb4658d21a628df5a3 SHA512 8d5263ff00fc4797fa65a446bdab4dc3c717cc091f8cee571fdd2130febc480cc61e73e11145ac2bf9bc0eee132efc92d88a4d4facd61d515234748791a92255
-DIST prometheus_client-0.14.0.gh.tar.gz 76115 BLAKE2B 08cffa53fd97be8ee48e91b69f1091ac52179fb48f2001aea23755e0ffd2e09cb34d97f052b0f38762bbe1f6597aed9bc630cda393bf5cd2f723dcb939f2471a SHA512 6543756b7fcd4b4a1734397c3fc25b14e00c9910133afc89f9836591e554c73a4a9fa4f3bc14b4fca2c922b6c160c769a4da435b337d0709f1884bde67008f7e
 DIST prometheus_client-0.14.1.gh.tar.gz 76321 BLAKE2B fd924e80d32df9fceb8898530893148f3f1131a13e97a3bac56540ba2fe3846c5498bb78d3cdcb312827dd8a8db2624e831880c5c1f348da0522db96dd0ef29e SHA512 882e7193cb344d154df8a7b7fbdfb5c635363c1aea8bde1ea174a7614bc868fe337399db7a1fb90a94128d7bdfedbc741f5f6c44d514d1ca9ab684c7527e7317

diff --git a/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
deleted file mode 100644
index 601b2a89f17d..000000000000
--- a/dev-python/prometheus_client/prometheus_client-0.13.1.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# 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 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
-
-RDEPEND="dev-python/twisted[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest

diff --git a/dev-python/prometheus_client/prometheus_client-0.14.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.14.0.ebuild
deleted file mode 100644
index 4c182f58d21a..000000000000
--- a/dev-python/prometheus_client/prometheus_client-0.14.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-
-RDEPEND="
-	dev-python/twisted[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-07-16 12:22 Arthur Zamarin
  0 siblings, 0 replies; 90+ messages in thread
From: Arthur Zamarin @ 2022-07-16 12:22 UTC (permalink / raw
  To: gentoo-commits

commit:     3b8474a3d784fc4d549a8c7500cba9046785a779
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 16 11:13:40 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 16 12:22:33 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b8474a3

dev-python/prometheus_client: enable py3.11

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.14.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild
index 8f062df5bf59..60739a3214ee 100644
--- a/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-10-13 17:09 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2022-10-13 17:09 UTC (permalink / raw
  To: gentoo-commits

commit:     e9ba2c5cd7f23ecb13ec57108c5cb775be4a9edb
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 13 16:56:12 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Oct 13 17:09:25 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9ba2c5c

dev-python/prometheus_client: Bump to 0.15.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.15.0.ebuild                | 30 ++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 569c7f284937..0ab86e722a22 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1 +1,2 @@
 DIST prometheus_client-0.14.1.gh.tar.gz 76321 BLAKE2B fd924e80d32df9fceb8898530893148f3f1131a13e97a3bac56540ba2fe3846c5498bb78d3cdcb312827dd8a8db2624e831880c5c1f348da0522db96dd0ef29e SHA512 882e7193cb344d154df8a7b7fbdfb5c635363c1aea8bde1ea174a7614bc868fe337399db7a1fb90a94128d7bdfedbc741f5f6c44d514d1ca9ab684c7527e7317
+DIST prometheus_client-0.15.0.gh.tar.gz 82056 BLAKE2B d9d94fe823edf99d273e9a85c27a8363c59c24a7d125a62bbadecd9abc81485949a27dacfc5faec31f27fdb263fec412210545b18f72c40a357c24d380242200 SHA512 ea11cb2fc08bd5e10ea97ee3be3068a2c37cbaa45ab3e146f8a0080074f69e7744ff90d1a0fb4f01eaefd1efc5f76428d6c898bead85d5fa37b6a59e9f832134

diff --git a/dev-python/prometheus_client/prometheus_client-0.15.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.15.0.ebuild
new file mode 100644
index 000000000000..06513e319162
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.15.0.ebuild
@@ -0,0 +1,30 @@
+# 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..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python client for the Prometheus monitoring system"
+HOMEPAGE="
+	https://github.com/prometheus/client_python/
+	https://pypi.org/project/prometheus-client/
+"
+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 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+	dev-python/twisted[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-11-19  8:35 Arthur Zamarin
  0 siblings, 0 replies; 90+ messages in thread
From: Arthur Zamarin @ 2022-11-19  8:35 UTC (permalink / raw
  To: gentoo-commits

commit:     4ace3dccbca3165dc004aca6616e55af28fbe9e0
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 19 08:35:31 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 19 08:35:31 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ace3dcc

dev-python/prometheus_client: Stabilize 0.15.0 ALLARCHES, #881917

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.15.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.15.0.ebuild
index 06513e319162..585e8af0d5ff 100644
--- a/dev-python/prometheus_client/prometheus_client-0.15.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.15.0.ebuild
@@ -21,7 +21,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
 	dev-python/twisted[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2022-11-19  8:43 Arthur Zamarin
  0 siblings, 0 replies; 90+ messages in thread
From: Arthur Zamarin @ 2022-11-19  8:43 UTC (permalink / raw
  To: gentoo-commits

commit:     33ed22566b032c55f260d8773af0ffcef0a017c9
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 19 08:43:04 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 19 08:43:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33ed2256

dev-python/prometheus_client: drop 0.14.1

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  1 -
 .../prometheus_client-0.14.1.ebuild                | 30 ----------------------
 2 files changed, 31 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 0ab86e722a22..2e500c89babd 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1 @@
-DIST prometheus_client-0.14.1.gh.tar.gz 76321 BLAKE2B fd924e80d32df9fceb8898530893148f3f1131a13e97a3bac56540ba2fe3846c5498bb78d3cdcb312827dd8a8db2624e831880c5c1f348da0522db96dd0ef29e SHA512 882e7193cb344d154df8a7b7fbdfb5c635363c1aea8bde1ea174a7614bc868fe337399db7a1fb90a94128d7bdfedbc741f5f6c44d514d1ca9ab684c7527e7317
 DIST prometheus_client-0.15.0.gh.tar.gz 82056 BLAKE2B d9d94fe823edf99d273e9a85c27a8363c59c24a7d125a62bbadecd9abc81485949a27dacfc5faec31f27fdb263fec412210545b18f72c40a357c24d380242200 SHA512 ea11cb2fc08bd5e10ea97ee3be3068a2c37cbaa45ab3e146f8a0080074f69e7744ff90d1a0fb4f01eaefd1efc5f76428d6c898bead85d5fa37b6a59e9f832134

diff --git a/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild b/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild
deleted file mode 100644
index 60739a3214ee..000000000000
--- a/dev-python/prometheus_client/prometheus_client-0.14.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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..11} )
-
-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 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
-
-RDEPEND="
-	dev-python/twisted[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2023-01-24  7:04 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2023-01-24  7:04 UTC (permalink / raw
  To: gentoo-commits

commit:     583a8de971c71ca217287508a69184433fa9e3c8
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 24 06:19:27 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jan 24 07:04:09 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=583a8de9

dev-python/prometheus_client: Bump to 0.16.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  1 +
 .../prometheus_client-0.16.0.ebuild                | 30 ++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 2e500c89babd..8329fda62127 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1 +1,2 @@
 DIST prometheus_client-0.15.0.gh.tar.gz 82056 BLAKE2B d9d94fe823edf99d273e9a85c27a8363c59c24a7d125a62bbadecd9abc81485949a27dacfc5faec31f27fdb263fec412210545b18f72c40a357c24d380242200 SHA512 ea11cb2fc08bd5e10ea97ee3be3068a2c37cbaa45ab3e146f8a0080074f69e7744ff90d1a0fb4f01eaefd1efc5f76428d6c898bead85d5fa37b6a59e9f832134
+DIST prometheus_client-0.16.0.gh.tar.gz 82473 BLAKE2B bf285f52ce3de4c55f681871b814fe0be8dbdf61ed3031570983325e193a9b34cafbc8526f545801ac8711cc8331cf3b0c8f157394feb9ad827ac97872397341 SHA512 511936758026b6d6f48f52d27b1cb964a03668054d7a3c5c82c4fa20800be3812150fca74ab46dad11ca12f2c9ce1a6951a82ae2bacf91b3761f7bf7ce75e0d2

diff --git a/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild
new file mode 100644
index 000000000000..ffa7b276ca52
--- /dev/null
+++ b/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python client for the Prometheus monitoring system"
+HOMEPAGE="
+	https://github.com/prometheus/client_python/
+	https://pypi.org/project/prometheus-client/
+"
+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 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+	dev-python/twisted[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2023-02-23 19:43 Arthur Zamarin
  0 siblings, 0 replies; 90+ messages in thread
From: Arthur Zamarin @ 2023-02-23 19:43 UTC (permalink / raw
  To: gentoo-commits

commit:     0c9d0cc353af934154c99acc6bbda7367cbb66fa
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 23 19:43:35 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 23 19:43:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c9d0cc3

dev-python/prometheus_client: Stabilize 0.16.0 ALLARCHES, #896084

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild
index ffa7b276ca52..8edd5ebc00d9 100644
--- a/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild
@@ -21,7 +21,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
 	dev-python/twisted[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2023-02-23 20:53 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2023-02-23 20:53 UTC (permalink / raw
  To: gentoo-commits

commit:     08d9f32a308ee705feae9c3c7c924c422624b72d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 23 20:06:42 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Feb 23 20:53:43 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08d9f32a

dev-python/prometheus_client: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest              |  1 -
 .../prometheus_client-0.15.0.ebuild                | 30 ----------------------
 2 files changed, 31 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index 8329fda62127..e7fd71fbabf7 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1,2 +1 @@
-DIST prometheus_client-0.15.0.gh.tar.gz 82056 BLAKE2B d9d94fe823edf99d273e9a85c27a8363c59c24a7d125a62bbadecd9abc81485949a27dacfc5faec31f27fdb263fec412210545b18f72c40a357c24d380242200 SHA512 ea11cb2fc08bd5e10ea97ee3be3068a2c37cbaa45ab3e146f8a0080074f69e7744ff90d1a0fb4f01eaefd1efc5f76428d6c898bead85d5fa37b6a59e9f832134
 DIST prometheus_client-0.16.0.gh.tar.gz 82473 BLAKE2B bf285f52ce3de4c55f681871b814fe0be8dbdf61ed3031570983325e193a9b34cafbc8526f545801ac8711cc8331cf3b0c8f157394feb9ad827ac97872397341 SHA512 511936758026b6d6f48f52d27b1cb964a03668054d7a3c5c82c4fa20800be3812150fca74ab46dad11ca12f2c9ce1a6951a82ae2bacf91b3761f7bf7ce75e0d2

diff --git a/dev-python/prometheus_client/prometheus_client-0.15.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.15.0.ebuild
deleted file mode 100644
index 8edd5ebc00d9..000000000000
--- a/dev-python/prometheus_client/prometheus_client-0.15.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python client for the Prometheus monitoring system"
-HOMEPAGE="
-	https://github.com/prometheus/client_python/
-	https://pypi.org/project/prometheus-client/
-"
-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 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
-
-RDEPEND="
-	dev-python/twisted[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2023-02-23 22:20 Sam James
  0 siblings, 0 replies; 90+ messages in thread
From: Sam James @ 2023-02-23 22:20 UTC (permalink / raw
  To: gentoo-commits

commit:     ba11b12a80046a0b5100dbe402786a13038395bf
Author:     Matoro Mahri <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Thu Feb 23 22:04:29 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 23 22:20:22 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba11b12a

dev-python/prometheus_client: Keyword 0.16.0 mips, #831219

Signed-off-by: Matoro Mahri <matoro <AT> users.noreply.github.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/prometheus_client/prometheus_client-0.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild
index 8edd5ebc00d9..a644f25e8f12 100644
--- a/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild
@@ -21,7 +21,7 @@ S="${WORKDIR}/client_python-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
 	dev-python/twisted[${PYTHON_USEDEP}]


^ permalink raw reply related	[flat|nested] 90+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
@ 2023-05-25  2:55 Michał Górny
  0 siblings, 0 replies; 90+ messages in thread
From: Michał Górny @ 2023-05-25  2:55 UTC (permalink / raw
  To: gentoo-commits

commit:     ca17796e9727e38704de926a6981f8caae4caf3f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu May 25 02:35:14 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu May 25 02:54:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca17796e

dev-python/prometheus_client: Switch to pypi sdist

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/prometheus_client/Manifest                        | 2 +-
 dev-python/prometheus_client/prometheus_client-0.16.0.ebuild | 7 +------
 2 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
index e7fd71fbabf7..0117eb3715f8 100644
--- a/dev-python/prometheus_client/Manifest
+++ b/dev-python/prometheus_client/Manifest
@@ -1 +1 @@
-DIST prometheus_client-0.16.0.gh.tar.gz 82473 BLAKE2B bf285f52ce3de4c55f681871b814fe0be8dbdf61ed3031570983325e193a9b34cafbc8526f545801ac8711cc8331cf3b0c8f157394feb9ad827ac97872397341 SHA512 511936758026b6d6f48f52d27b1cb964a03668054d7a3c5c82c4fa20800be3812150fca74ab46dad11ca12f2c9ce1a6951a82ae2bacf91b3761f7bf7ce75e0d2
+DIST prometheus_client-0.16.0.tar.gz 117546 BLAKE2B 6b4e6600b352f17620e432edd976c2d26ef71326018bd1fa81f6bf4842f1599b06b11036a3b71c641698ad3d1e2f4422812133b51a34ecc70ec0606e9ea2478c SHA512 12d22963a22511872fbd170e112a743fac02ab1a569934eef5d97f53a292281ef3f589e852f245d083d8555c5cda51c6210fe48e1211431c8fe00b47d571eaf4

diff --git a/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild b/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild
index a644f25e8f12..d13ab19b83f7 100644
--- a/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild
+++ b/dev-python/prometheus_client/prometheus_client-0.16.0.ebuild
@@ -6,18 +6,13 @@ EAPI=8
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{9..11} )
 
-inherit distutils-r1
+inherit distutils-r1 pypi
 
 DESCRIPTION="Python client for the Prometheus monitoring system"
 HOMEPAGE="
 	https://github.com/prometheus/client_python/
 	https://pypi.org/project/prometheus-client/
 "
-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"


^ permalink raw reply related	[flat|nested] 90+ messages in thread

end of thread, other threads:[~2023-05-25  2:55 UTC | newest]

Thread overview: 90+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-25 14:17 [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/ Agostino Sarubbo
  -- strict thread matches above, loose matches on Subject: below --
2023-05-25  2:55 Michał Górny
2023-02-23 22:20 Sam James
2023-02-23 20:53 Michał Górny
2023-02-23 19:43 Arthur Zamarin
2023-01-24  7:04 Michał Górny
2022-11-19  8:43 Arthur Zamarin
2022-11-19  8:35 Arthur Zamarin
2022-10-13 17:09 Michał Górny
2022-07-16 12:22 Arthur Zamarin
2022-05-06 13:38 Michał Górny
2022-05-06 12:45 Jakov Smolić
2022-04-08 21:18 Michał Górny
2022-04-06  6:42 Michał Górny
2022-03-12  9:46 Arthur Zamarin
2022-03-05  0:07 Sam James
2022-03-01 11:30 Agostino Sarubbo
2022-02-27 18:52 Michał Górny
2022-02-27 12:23 Jakov Smolić
2022-01-29 14:29 James Le Cuirot
2022-01-28 18:38 Arthur Zamarin
2022-01-26  7:33 Michał Górny
2021-12-15 16:54 Michał Górny
2021-12-15 16:46 Jakov Smolić
2021-11-18  8:10 Sam James
2021-11-18  5:36 Sam James
2021-11-14 20:35 Sam James
2021-11-14  3:43 Sam James
2021-10-29 19:37 Michał Górny
2021-09-06  0:18 Sam James
2021-09-02  0:01 Marek Szuba
2021-07-12  6:41 Sam James
2021-07-11 10:14 Georgy Yakovlev
2021-07-07  2:17 Sam James
2021-07-03  6:29 Michał Górny
2021-07-03  6:17 Agostino Sarubbo
2021-06-20  1:55 Sam James
2021-06-20  1:45 Sam James
2021-06-01 22:22 Michał Górny
2021-05-09  9:39 Michał Górny
2021-05-09  9:15 Agostino Sarubbo
2021-04-08 22:46 Michał Górny
2021-04-02 23:42 Michał Górny
2020-12-17 17:09 Michał Górny
2020-12-16 11:51 Michał Górny
2020-12-11 12:55 Michał Górny
2020-11-16 14:59 Michał Górny
2020-07-31  0:50 Sam James
2020-07-07 20:01 Michał Górny
2020-06-09 20:07 Michał Górny
2020-06-09 20:00 Mart Raudsepp
2020-06-09 16:25 Michał Górny
2020-06-09 16:25 Michał Górny
2020-03-28 12:42 Michał Górny
2020-03-26 17:36 Michał Górny
2020-02-13 23:29 Patrick McLean
2020-02-13 19:18 Patrick McLean
2020-02-12 21:30 Zac Medico
2020-02-05 19:12 Michał Górny
2019-11-24 16:15 Aaron Bauman
2019-11-23 11:58 Manuel Rüger
2019-11-23 11:58 Manuel Rüger
2019-11-21  9:37 Manuel Rüger
2019-04-16  9:15 Manuel Rüger
2019-02-22 13:28 Manuel Rüger
2019-02-22 13:28 Manuel Rüger
2019-02-22 13:28 Manuel Rüger
2018-12-16 12:15 Manuel Rüger
2018-12-07 19:14 Manuel Rüger
2018-12-02  0:43 Manuel Rüger
2018-10-28 16:09 Manuel Rüger
2018-08-21 21:58 Manuel Rüger
2018-07-13 14:58 Manuel Rüger
2018-07-13 14:57 Manuel Rüger
2018-06-07 14:22 Manuel Rüger
2018-04-03 13:53 Manuel Rüger
2018-04-03 12:33 Manuel Rüger
2018-04-03 12:20 Manuel Rüger
2018-02-05 16:31 Manuel Rüger
2017-10-26 14:04 Manuel Rüger
2017-10-06 13:58 Manuel Rüger
2017-09-24 19:02 Manuel Rüger
2017-09-19 16:42 Manuel Rüger
2017-08-01 12:25 Manuel Rüger
2017-06-29 10:57 Manuel Rüger
2017-05-11 12:54 Manuel Rüger
2017-02-01 13:35 Manuel Rüger
2017-01-05 12:45 Manuel Rüger
2017-01-05 12:45 Manuel Rüger
2016-12-09 14:44 Manuel Rüger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox