Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hypothesis/
Date: Fri, 05 Jan 2018 07:28:53
Message-Id: 1515136918.62e74b60a6b85c051c6e1ccdd4077f9e9eb92d8f.radhermit@gentoo
1 commit: 62e74b60a6b85c051c6e1ccdd4077f9e9eb92d8f
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 5 07:21:58 2018 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 07:21:58 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62e74b60
7
8 dev-python/hypothesis: version bump to 3.44.7
9
10 dev-python/hypothesis/Manifest | 1 +
11 dev-python/hypothesis/hypothesis-3.44.7.ebuild | 34 ++++++++++++++++++++++++++
12 2 files changed, 35 insertions(+)
13
14 diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest
15 index 89b984e905b..436783fd81b 100644
16 --- a/dev-python/hypothesis/Manifest
17 +++ b/dev-python/hypothesis/Manifest
18 @@ -1,2 +1,3 @@
19 DIST hypothesis-3.38.5.tar.gz 474087 BLAKE2B a3182701463e03383cf4d5fb16605d494c5339a23ea77d789d27eaaf576ee3c2c81a7ebfcb4641b15b9c19755d85a6f0d36555f8091bef8986e8afb290eedc85 SHA512 bd13bda0adf2fc1629c41c6b5b63744f1b33b0b9cfbcd4b78c73b8ab9cde2db50e2c084216c4123f93efc2355d4d45d3d6e51b079d8722341deb5df24fedf6b1
20 +DIST hypothesis-3.44.7.tar.gz 403113 BLAKE2B a929322db86a9f769dff43c668609ad18407d1e3456cb1b0057f846d1e3c807f1198f23d6a182b48fc39b2e716780d07433cfffbc636de9b9456e4f335e07b60 SHA512 07c21480457c70c2d57e7036296a4c2c418f0380608f28790f7c2269d003b227a2038fbac8b8370e3178bb77fea8ce2e13bb6f14296486ea6eae2fdef5870567
21 DIST hypothesis-3.6.0.tar.gz 73586 BLAKE2B b0ec133e8c71f752114211061155c15a7d536e771ba85eab6489440b2063d3083018bf8502d9e9dbc73105ee5f03060e3189e64574a3dfa052b091040e7e7915 SHA512 cb885628e5c38ab9312cfb177ebc3c014617d21031737f5fba343ba485c1b8ff82b1302e7bc1d3e79192bfd8324fd0501498c968f3ac8343829f8965f6354389
22
23 diff --git a/dev-python/hypothesis/hypothesis-3.44.7.ebuild b/dev-python/hypothesis/hypothesis-3.44.7.ebuild
24 new file mode 100644
25 index 00000000000..4869c0b7b9e
26 --- /dev/null
27 +++ b/dev-python/hypothesis/hypothesis-3.44.7.ebuild
28 @@ -0,0 +1,34 @@
29 +# Copyright 1999-2017 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +
34 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
35 +PYTHON_REQ_USE="threads(+),sqlite"
36 +
37 +inherit distutils-r1 eutils
38 +
39 +DESCRIPTION="A library for property based testing"
40 +HOMEPAGE="https://github.com/HypothesisWorks/hypothesis-python https://pypi.python.org/pypi/hypothesis"
41 +SRC_URI="https://github.com/HypothesisWorks/hypothesis-python/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="MPL-2.0"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
46 +IUSE=""
47 +
48 +RDEPEND="
49 + dev-python/attrs[${PYTHON_USEDEP}]
50 + dev-python/coverage[${PYTHON_USEDEP}]
51 + $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' 'python2*' pypy)"
52 +DEPEND="${RDEPEND}
53 + dev-python/setuptools[${PYTHON_USEDEP}]"
54 +
55 +S=${WORKDIR}/${PN}-python-${PV}
56 +
57 +pkg_postinst() {
58 + optfeature "datetime support" dev-python/pytz
59 + optfeature "numpy support" dev-python/numpy
60 + optfeature "django support" dev-python/django dev-python/pytz
61 + optfeature "pytest support" dev-python/pytest
62 +}