Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/prometheus_client/
Date: Fri, 22 Feb 2019 13:28:31
Message-Id: 1550842089.1d1dafda3af204f197da8819acada4c7149c1188.mrueg@gentoo
1 commit: 1d1dafda3af204f197da8819acada4c7149c1188
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 22 13:28:09 2019 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 22 13:28:09 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d1dafda
7
8 dev-python/prometheus_client: Remove old
9
10 Package-Manager: Portage-2.3.59, Repoman-2.3.12
11 Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
12
13 dev-python/prometheus_client/Manifest | 1 -
14 .../prometheus_client-0.4.2.ebuild | 27 ----------------------
15 2 files changed, 28 deletions(-)
16
17 diff --git a/dev-python/prometheus_client/Manifest b/dev-python/prometheus_client/Manifest
18 index a79671899f4..e20bdb30409 100644
19 --- a/dev-python/prometheus_client/Manifest
20 +++ b/dev-python/prometheus_client/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST prometheus_client-0.4.2.tar.gz 57664 BLAKE2B e98e5c91db13a9f06c2df532e7742545a14cb223e04eba27accc3bdcaf2df949eed2a778194b38e1b4b93908de1636a3cc92a18950db54b5b8f0aceda2d4d2cf SHA512 5e0fee9f9fb4376dcf2959e8285b57a9156d3cf8b9d9118c7b95d2ff63f4dd925bc8cea817bf2fc1ba660e6f5c6dd8f4cf494125cf2a3673443abe0f3a4657c4
23 DIST prometheus_client-0.5.0.tar.gz 60184 BLAKE2B cc44537b051c053860520d412664d57aaa6d35dd491409de0da72b9859743cc355d67eb260c2381347ad3313df9efa498535ff130df317b103d8c815f34f28eb SHA512 6e6e6c0f859b7b9d593e1059b71fde8eed15ccd95e54c245b4e0e8edb748a4761f0929f2d6c06f1c4656eb81f26959c5cec6a58f4d725a587b433ffbb4582127
24 DIST prometheus_client-0.6.0.tar.gz 60790 BLAKE2B fa8eaddfedb9598394fec0c6464499ed5bcace9969e843126422414e397d31985a44a626be0257a235f6d5f685fd8d6bb55fc0d92928f0b9729ab9f097f1958b SHA512 a2b92683f939961c567c266a54699de6f37088cd4e61c9d9a5f4451228b4c3bfa4c517e4a5187867f5463d726a8dc6e7fdae30973c1e9aa9aa1a03247b2e99cd
25
26 diff --git a/dev-python/prometheus_client/prometheus_client-0.4.2.ebuild b/dev-python/prometheus_client/prometheus_client-0.4.2.ebuild
27 deleted file mode 100644
28 index 852bd88e42a..00000000000
29 --- a/dev-python/prometheus_client/prometheus_client-0.4.2.ebuild
30 +++ /dev/null
31 @@ -1,27 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6,3_7} )
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Python client for the Prometheus monitoring system"
41 -HOMEPAGE="https://pypi.org/project/prometheus_client/"
42 -SRC_URI="https://github.com/prometheus/client_python/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="Apache-2.0"
45 -SLOT="0"
46 -KEYWORDS="amd64"
47 -IUSE="test"
48 -
49 -S=${WORKDIR}/client_python-${PV}
50 -
51 -RDEPEND="|| ( dev-python/twisted[${PYTHON_USEDEP}] dev-python/twisted-web[${PYTHON_USEDEP}] )"
52 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
53 - test? ( ${RDEPEND}
54 - dev-python/pytest[${PYTHON_USEDEP}] )"
55 -
56 -python_test() {
57 - pytest -v || die
58 -}