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/pyhamcrest/
Date: Thu, 30 Jul 2020 20:46:40
Message-Id: 1596141990.c89876eb36c1c4d0ab77550b1564f03c715e2e1e.mgorny@gentoo
1 commit: c89876eb36c1c4d0ab77550b1564f03c715e2e1e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 30 20:43:48 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 30 20:46:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c89876eb
7
8 dev-python/pyhamcrest: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyhamcrest/Manifest | 1 -
13 dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild | 60 ------------------------
14 2 files changed, 61 deletions(-)
15
16 diff --git a/dev-python/pyhamcrest/Manifest b/dev-python/pyhamcrest/Manifest
17 index 935a77e4c4a..deaea02caa3 100644
18 --- a/dev-python/pyhamcrest/Manifest
19 +++ b/dev-python/pyhamcrest/Manifest
20 @@ -1,3 +1,2 @@
21 DIST PyHamcrest-1.10.1.gh.tar.gz 59019 BLAKE2B 1a090533ea8fe2dff9ad232b2e6dbf82841c38f3699e57750e2309b06a46e70ae5a9c7d087baf06de53e17323a5e36edee1a01d7a4442374d15b76a7723c2031 SHA512 f7e79f7d26c4c6add042052e451898bbf5adf21b05a234cc62bce890d68f5997693b042a9daf136f7026040a8ab7bf28b829288417b947973dcb959bf613a37b
22 -DIST PyHamcrest-1.9.0.gh.tar.gz 57650 BLAKE2B c497688f03ec3b072d8ab076fc096a442d5cbbd94493eae57779879ccb6f281477aeeb7f7a67e539442010e60194f9f04a6deddd1d2267e9743742b45433f124 SHA512 3a878637ed5138365416c170871a63640f089047b723c7ec8db893dd716c0b1cdad16a98584700405693b954af7d4868a8543d1a3fc58ded22b493c8c61661b4
23 DIST PyHamcrest-2.0.2.gh.tar.gz 55491 BLAKE2B 749f227b8cb1180a64e24cdbf97b6f610b9871b21215a761642d19fdd43ad8e175718b12cfb0de2cdb5c6ae8c3c5271e04b7c3b489e01ac689769e24202ece56 SHA512 d6e510ca1e6533b425b424d411e23c4ee2a6bad2d635695e4e68f991fbdc57269c3a433361e431cb5dda7891278951d5de7a05f5c1c167714eecdaf74644d1c8
24
25 diff --git a/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild b/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild
26 deleted file mode 100644
27 index 6c7080cb324..00000000000
28 --- a/dev-python/pyhamcrest/pyhamcrest-1.9.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,60 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python2_7 python3_{6..9} )
37 -
38 -inherit distutils-r1
39 -
40 -MY_PN="PyHamcrest"
41 -
42 -DESCRIPTION="Hamcrest framework for matcher objects"
43 -HOMEPAGE="https://github.com/hamcrest/PyHamcrest"
44 -SRC_URI="https://github.com/hamcrest/PyHamcrest/archive/V${PV}.tar.gz -> ${MY_PN}-${PV}.gh.tar.gz"
45 -S="${WORKDIR}/${MY_PN}-${PV}"
46 -
47 -LICENSE="BSD"
48 -SLOT="0"
49 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux"
50 -IUSE="examples test"
51 -RESTRICT="!test? ( test )"
52 -
53 -RDEPEND=">=dev-python/six-1.4[${PYTHON_USEDEP}]"
54 -DEPEND="
55 - test? (
56 - ${RDEPEND}
57 - >=dev-python/pytest-2.6[${PYTHON_USEDEP}]
58 - dev-python/mock[${PYTHON_USEDEP}]
59 - )"
60 -
61 -distutils_enable_sphinx doc \
62 - dev-python/sphinx_rtd_theme
63 -
64 -python_prepare_all() {
65 - # enables coverage testing which we don't want
66 - rm pytest.ini || die
67 -
68 - # Known test failures. Remove them for now.
69 - rm tests/hamcrest_unit_test/base_description_test.py || die "removing test #1 failed"
70 - rm tests/hamcrest_unit_test/core/is_test.py || die "removing test #2 failed"
71 - rm tests/hamcrest_unit_test/core/isinstanceof_test.py || die "removing test #3 failed"
72 -
73 - # These fail on HPPA. Drop them too.
74 - if use hppa; then
75 - rm tests/hamcrest_unit_test/base_matcher_test.py || die "removing test #4 failed"
76 - rm tests/hamcrest_unit_test/core/described_as_test.py || die "removing test #5 failed"
77 - fi
78 -
79 - distutils-r1_python_prepare_all
80 -}
81 -
82 -python_test() {
83 - pytest -vv || die "Tests failed under ${EPYTHON}"
84 - "${EPYTHON}" tests/object_import.py || die "Tests failed under ${EPYTHON}"
85 -}
86 -
87 -python_install_all() {
88 - use examples && dodoc -r examples
89 - distutils-r1_python_install_all
90 -}