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/PyContracts/
Date: Mon, 04 May 2020 09:45:59
Message-Id: 1588585496.31e87878d4b4917f2957961dc55883b7fa7fc6ad.mgorny@gentoo
1 commit: 31e87878d4b4917f2957961dc55883b7fa7fc6ad
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 4 09:44:56 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 4 09:44:56 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31e87878
7
8 dev-python/PyContracts: Remove redundant
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/PyContracts/Manifest | 1 -
13 dev-python/PyContracts/PyContracts-1.7.9.ebuild | 36 -------------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/dev-python/PyContracts/Manifest b/dev-python/PyContracts/Manifest
17 index fbdd688b99f..16e9a1b5eed 100644
18 --- a/dev-python/PyContracts/Manifest
19 +++ b/dev-python/PyContracts/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST PyContracts-1.7.9.tar.gz 61033 BLAKE2B 5202d39c91d7dff6e07058f3f7dcc29baa750f69ed9b4abb059de67f3be98e568270eb3d977a6e7a18f232880225fcc532fbd576e94dc3483bde9b8fbe68d526 SHA512 1db6491d4be3df96753dcdd6f85329d47409a2424177a52d1e35f5a1d58f671290d22d807b70f632f0376c86c58c093118f7223b7ad59893a85dccdb91d29f50
22 DIST PyContracts-1.8.0.tar.gz 90577 BLAKE2B 988662274e3bbea1ede6d00f4a69b3eb23dad439f5355a9b0a2c5a2f76a6250254303b060ef720d13d9a297ded77f7713271a79a810227aa883dc6d4d46ea725 SHA512 7de933dc8b5992be670b4b34fce7d6f51769d3d2dd02a2400eff5991e9e686e36791234588d2dbdeccf437fd5d6abc6461240645e6d3f665394f390bb727413a
23 DIST PyContracts-1.8.12.tar.gz 91393 BLAKE2B 083c836a547540f2505cbc02c8696ad2ae236a9ba46529cc60d237c01bd113cb5a9d2729a70038e28f4a6f776cb17b119bdf9ae8dcd6269cbcd05412413aa758 SHA512 9abd5ab5203687ddd8a738998e63e8f3e397b9ba9b9ee22bda945dab4f0d460115ed8e825c9c551d4c067b0f39dbb5b8ca51d365623b10ee8e210efc4edcbf15
24 DIST PyContracts-1.8.14.tar.gz 92346 BLAKE2B 507fdfb313347d6650f21326b6b70b73f17cd702f25d06d97e5d84f84c9bf7f23cceb48d918727158d02081115344a4194e307caed59510265dacbf267774ab4 SHA512 95f8c76e35cc7549fefa069d9c354fc1d4a55dcab0f3fd322cb86aed92c7bfa75a06eabb7540ff991d590a90cdec781906b856291002a82ee5ab0072cdcf6ccd
25
26 diff --git a/dev-python/PyContracts/PyContracts-1.7.9.ebuild b/dev-python/PyContracts/PyContracts-1.7.9.ebuild
27 deleted file mode 100644
28 index 3cab565e3cb..00000000000
29 --- a/dev-python/PyContracts/PyContracts-1.7.9.ebuild
30 +++ /dev/null
31 @@ -1,36 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -PYTHON_COMPAT=( python2_7 python3_6 pypy3 )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Declare constraints on function parameters and return values"
42 -HOMEPAGE="https://andreacensi.github.com/contracts/ https://pypi.org/project/PyContracts/"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -SLOT="0"
46 -LICENSE="LGPL-2"
47 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
48 -IUSE="test"
49 -
50 -RDEPEND="
51 - dev-python/decorator[${PYTHON_USEDEP}]
52 - dev-python/pyparsing[${PYTHON_USEDEP}]
53 - dev-python/six[${PYTHON_USEDEP}]
54 -"
55 -DEPEND="${RDEPEND}
56 - dev-python/setuptools[${PYTHON_USEDEP}]
57 - test? ( dev-python/nose[${PYTHON_USEDEP}] )
58 -"
59 -
60 -# Upstream allows tests to fail
61 -RESTRICT=test
62 -
63 -python_test() {
64 - nosetests \
65 - $(python_is_python3 || echo "--ignore-files=test_py3k_annotations.py") \
66 - || die
67 -}