Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/lazy-object-proxy/
Date: Mon, 04 May 2020 11:21:19
Message-Id: 1588591219.389122b49077e24993eadf00c6aaa409aa30f73d.mgorny@gentoo
1 commit: 389122b49077e24993eadf00c6aaa409aa30f73d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 11:20:19 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 11:20:19 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=389122b4
7
8 dev-python/lazy-object-proxy: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/lazy-object-proxy/Manifest | 1 -
13 .../lazy-object-proxy-1.3.1.ebuild | 41 ----------------------
14 2 files changed, 42 deletions(-)
15
16 diff --git a/dev-python/lazy-object-proxy/Manifest b/dev-python/lazy-object-proxy/Manifest
17 index f6c2ba7fb7f..efe646515ed 100644
18 --- a/dev-python/lazy-object-proxy/Manifest
19 +++ b/dev-python/lazy-object-proxy/Manifest
20 @@ -1,2 +1 @@
21 -DIST lazy-object-proxy-1.3.1.tar.gz 32237 BLAKE2B 3052c6952d80365c6698f50c5f4508d7448a68b33ca899d251477e9a728fa740a0bd1d3a85f5ccab63905fbd062e5c37da59a827ca58e25268e7ced6fd9a961c SHA512 9ea4fa0185431859ff79fd6dc59106c2b64e372b5052d034b3638e362695f10b27b59f57c5aed73bb2350d3963f98190e3069f9129b9f3f4932212f9b5460962
22 DIST lazy-object-proxy-1.4.3.tar.gz 34888 BLAKE2B 43f64fcd6573d4a4cdc2208bcd882714cb21474e4274d53b955664b05525ed5d1305ed4121f6ee319aefb3ab7827bc9b2073d32dc4c67e969adb5367a16d4cc1 SHA512 c2c8ad8286776d61def222b394cab27647b7a1bf4b3915e169b65c6022cb26d5ef286f1041adfddaf8a78a2410c11424983b3580a019561eda5f2e4c3a88620f
23
24 diff --git a/dev-python/lazy-object-proxy/lazy-object-proxy-1.3.1.ebuild b/dev-python/lazy-object-proxy/lazy-object-proxy-1.3.1.ebuild
25 deleted file mode 100644
26 index cd116907a40..00000000000
27 --- a/dev-python/lazy-object-proxy/lazy-object-proxy-1.3.1.ebuild
28 +++ /dev/null
29 @@ -1,41 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -PYTHON_COMPAT=( python3_{6,7} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="A fast and thorough lazy object proxy"
40 -HOMEPAGE="
41 - https://github.com/ionelmc/python-lazy-object-proxy
42 - https://pypi.org/project/lazy-object-proxy/
43 - https://python-lazy-object-proxy.readthedocs.org/"
44 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
49 -IUSE="test"
50 -RESTRICT="!test? ( test )"
51 -
52 -RDEPEND=""
53 -DEPEND="${RDEPEND}
54 - dev-python/setuptools[${PYTHON_USEDEP}]
55 - test? (
56 - dev-python/pytest[${PYTHON_USEDEP}]
57 - )"
58 -
59 -python_prepare_all() {
60 - # No need to benchmark
61 - sed \
62 - -e '/benchmark/s:test_:_&:g' \
63 - -e '/pytest.mark.benchmark/d' \
64 - -i tests/test_lazy_object_proxy.py || die
65 - distutils-r1_python_prepare_all
66 -}
67 -
68 -python_test() {
69 - py.test -v -v --ignore=src || die "Fails for ${EPYTHON}"
70 -}