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: Wed, 06 May 2020 07:12:26
Message-Id: 1588749132.5d25036d85d5826ccfc8d6c96f5ab4b9c79bb531.mgorny@gentoo
1 commit: 5d25036d85d5826ccfc8d6c96f5ab4b9c79bb531
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 6 06:58:30 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 6 07:12:12 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d25036d
7
8 dev-python/PyContracts: Remove old
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.8.0.ebuild | 36 -------------------------
14 2 files changed, 37 deletions(-)
15
16 diff --git a/dev-python/PyContracts/Manifest b/dev-python/PyContracts/Manifest
17 index 16e9a1b5eed..75d05e23488 100644
18 --- a/dev-python/PyContracts/Manifest
19 +++ b/dev-python/PyContracts/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST PyContracts-1.8.0.tar.gz 90577 BLAKE2B 988662274e3bbea1ede6d00f4a69b3eb23dad439f5355a9b0a2c5a2f76a6250254303b060ef720d13d9a297ded77f7713271a79a810227aa883dc6d4d46ea725 SHA512 7de933dc8b5992be670b4b34fce7d6f51769d3d2dd02a2400eff5991e9e686e36791234588d2dbdeccf437fd5d6abc6461240645e6d3f665394f390bb727413a
22 DIST PyContracts-1.8.12.tar.gz 91393 BLAKE2B 083c836a547540f2505cbc02c8696ad2ae236a9ba46529cc60d237c01bd113cb5a9d2729a70038e28f4a6f776cb17b119bdf9ae8dcd6269cbcd05412413aa758 SHA512 9abd5ab5203687ddd8a738998e63e8f3e397b9ba9b9ee22bda945dab4f0d460115ed8e825c9c551d4c067b0f39dbb5b8ca51d365623b10ee8e210efc4edcbf15
23 DIST PyContracts-1.8.14.tar.gz 92346 BLAKE2B 507fdfb313347d6650f21326b6b70b73f17cd702f25d06d97e5d84f84c9bf7f23cceb48d918727158d02081115344a4194e307caed59510265dacbf267774ab4 SHA512 95f8c76e35cc7549fefa069d9c354fc1d4a55dcab0f3fd322cb86aed92c7bfa75a06eabb7540ff991d590a90cdec781906b856291002a82ee5ab0072cdcf6ccd
24
25 diff --git a/dev-python/PyContracts/PyContracts-1.8.0.ebuild b/dev-python/PyContracts/PyContracts-1.8.0.ebuild
26 deleted file mode 100644
27 index 3a7cdd3ec58..00000000000
28 --- a/dev-python/PyContracts/PyContracts-1.8.0.ebuild
29 +++ /dev/null
30 @@ -1,36 +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,7} pypy3 )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Declare constraints on function parameters and return values"
41 -HOMEPAGE="https://andreacensi.github.com/contracts/ https://pypi.org/project/PyContracts/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 -
44 -SLOT="0"
45 -LICENSE="LGPL-2"
46 -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"
47 -IUSE="test"
48 -
49 -RDEPEND="
50 - dev-python/decorator[${PYTHON_USEDEP}]
51 - dev-python/pyparsing[${PYTHON_USEDEP}]
52 - dev-python/six[${PYTHON_USEDEP}]
53 -"
54 -DEPEND="${RDEPEND}
55 - dev-python/setuptools[${PYTHON_USEDEP}]
56 - test? ( dev-python/nose[${PYTHON_USEDEP}] )
57 -"
58 -
59 -# Upstream allows tests to fail
60 -RESTRICT=test
61 -
62 -python_test() {
63 - nosetests \
64 - $(python_is_python3 || echo "--ignore-files=test_py3k_annotations.py") \
65 - || die
66 -}