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: Tue, 04 Aug 2020 12:01:32
Message-Id: 1596542386.86631c326eb5580a31b9256a59c133309a5daad8.mgorny@gentoo
1 commit: 86631c326eb5580a31b9256a59c133309a5daad8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 1 21:09:54 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 4 11:59:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86631c32
7
8 dev-python/pyhamcrest: Remove old (py2.7)
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.10.1.ebuild | 36 --------------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/dev-python/pyhamcrest/Manifest b/dev-python/pyhamcrest/Manifest
17 index deaea02caa3..a5c41a92764 100644
18 --- a/dev-python/pyhamcrest/Manifest
19 +++ b/dev-python/pyhamcrest/Manifest
20 @@ -1,2 +1 @@
21 -DIST PyHamcrest-1.10.1.gh.tar.gz 59019 BLAKE2B 1a090533ea8fe2dff9ad232b2e6dbf82841c38f3699e57750e2309b06a46e70ae5a9c7d087baf06de53e17323a5e36edee1a01d7a4442374d15b76a7723c2031 SHA512 f7e79f7d26c4c6add042052e451898bbf5adf21b05a234cc62bce890d68f5997693b042a9daf136f7026040a8ab7bf28b829288417b947973dcb959bf613a37b
22 DIST PyHamcrest-2.0.2.gh.tar.gz 55491 BLAKE2B 749f227b8cb1180a64e24cdbf97b6f610b9871b21215a761642d19fdd43ad8e175718b12cfb0de2cdb5c6ae8c3c5271e04b7c3b489e01ac689769e24202ece56 SHA512 d6e510ca1e6533b425b424d411e23c4ee2a6bad2d635695e4e68f991fbdc57269c3a433361e431cb5dda7891278951d5de7a05f5c1c167714eecdaf74644d1c8
23
24 diff --git a/dev-python/pyhamcrest/pyhamcrest-1.10.1.ebuild b/dev-python/pyhamcrest/pyhamcrest-1.10.1.ebuild
25 deleted file mode 100644
26 index 333017e06de..00000000000
27 --- a/dev-python/pyhamcrest/pyhamcrest-1.10.1.ebuild
28 +++ /dev/null
29 @@ -1,36 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python2_7 python3_{6..9} )
36 -
37 -inherit distutils-r1
38 -
39 -MY_PN="PyHamcrest"
40 -
41 -DESCRIPTION="Hamcrest framework for matcher objects"
42 -HOMEPAGE="https://github.com/hamcrest/PyHamcrest"
43 -SRC_URI="https://github.com/hamcrest/PyHamcrest/archive/V${PV}.tar.gz -> ${MY_PN}-${PV}.gh.tar.gz"
44 -S="${WORKDIR}/${MY_PN}-${PV}"
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux"
49 -IUSE="examples test"
50 -RESTRICT="!test? ( test )"
51 -
52 -RDEPEND=">=dev-python/six-1.4[${PYTHON_USEDEP}]"
53 -BDEPEND="
54 - test? (
55 - dev-python/mock[${PYTHON_USEDEP}]
56 - )"
57 -
58 -distutils_enable_sphinx doc \
59 - dev-python/sphinx_rtd_theme
60 -distutils_enable_tests pytest
61 -
62 -python_install_all() {
63 - use examples && dodoc -r examples
64 - distutils-r1_python_install_all
65 -}