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/sure/
Date: Sun, 25 Jul 2021 08:41:42
Message-Id: 1627202476.42e54b097f144ab88cf8c1bd5a4c09aad7b53d6d.mgorny@gentoo
1 commit: 42e54b097f144ab88cf8c1bd5a4c09aad7b53d6d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 25 06:53:26 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 25 08:41:16 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42e54b09
7
8 dev-python/sure: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sure/Manifest | 1 -
13 dev-python/sure/sure-1.4.11.ebuild | 31 -------------------------------
14 2 files changed, 32 deletions(-)
15
16 diff --git a/dev-python/sure/Manifest b/dev-python/sure/Manifest
17 index 1c6c8c5edd8..0b8dc59777a 100644
18 --- a/dev-python/sure/Manifest
19 +++ b/dev-python/sure/Manifest
20 @@ -1,2 +1 @@
21 -DIST sure-1.4.11.tar.gz 45933 BLAKE2B b2146ee56237f4575cab5122279023066a1b9ba20493ced7d729b1afa456f71a38071b721c39594c3ef2fcc912ba934e85e5cb5da576c3b2d20fa7d4926b56b7 SHA512 ed067385bf9cf317a5d55f6c5fc6ee54ee3d592825be398e47c37d31fc9c010cb9316d4e2bcf1d72d53d7e53fd470792d64348aa2bfa5dc43510daaff97742da
22 DIST sure-2.0.0.tar.gz 46747 BLAKE2B 631923bf2fc0a972e276fbfd1918abbafec28e662669993b40ff8ca72944952d092ac662728f98a286fc9b5c8e3765d10a4d6ef1f17b17655802b971b97410af SHA512 8286846374c2bfc773444e90bf4f9c0b0d66d0229afa53af63025bfec690bf8bcc959f86c238ca5244c6a29099e955691771b0eb954af479bde2f17e51f6f1de
23
24 diff --git a/dev-python/sure/sure-1.4.11.ebuild b/dev-python/sure/sure-1.4.11.ebuild
25 deleted file mode 100644
26 index 496ccaa734e..00000000000
27 --- a/dev-python/sure/sure-1.4.11.ebuild
28 +++ /dev/null
29 @@ -1,31 +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=( python3_{7..9} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="idiomatic assertion toolkit with human-friendly failure messages"
40 -HOMEPAGE="https://github.com/gabrielfalcao/sure"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="GPL-3+"
44 -SLOT="0"
45 -KEYWORDS="amd64 arm arm64 ppc ppc64 sparc x86"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND="
50 - dev-python/mock[${PYTHON_USEDEP}]
51 - >=dev-python/nose-1.3.0[${PYTHON_USEDEP}]
52 - dev-python/six[${PYTHON_USEDEP}]
53 -"
54 -BDEPEND="
55 - test? ( ${RDEPEND} )
56 -"
57 -
58 -python_test() {
59 - nosetests -v tests || die "Tests failed under ${EPYTHON}"
60 -}