Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hypothesis/
Date: Wed, 30 Nov 2022 19:42:09
Message-Id: 1669837317.83c17cd9bcfd4cca547c57356152a6d3a4b1435a.arthurzam@gentoo
1 commit: 83c17cd9bcfd4cca547c57356152a6d3a4b1435a
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 30 19:34:26 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 30 19:41:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83c17cd9
7
8 dev-python/hypothesis: add 6.58.2
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/hypothesis/Manifest | 1 +
13 dev-python/hypothesis/hypothesis-6.58.2.ebuild | 77 ++++++++++++++++++++++++++
14 2 files changed, 78 insertions(+)
15
16 diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest
17 index 3b59d9acd236..f8b8512996a9 100644
18 --- a/dev-python/hypothesis/Manifest
19 +++ b/dev-python/hypothesis/Manifest
20 @@ -2,3 +2,4 @@ DIST hypothesis-6.56.4.gh.tar.gz 9333399 BLAKE2B abe041212cff7ab1d6c2684706ae4d2
21 DIST hypothesis-6.57.1.gh.tar.gz 9334332 BLAKE2B 5516e9ff84f11909eadc7888f2727f13731ef9d3ad91c15666d5ee11d32bafbc9361171b35d31c5231fe50ac9a734eb3a8edd612ed3f47d3bd6f2a851f751a65 SHA512 3cb24416a10cc1a1419844565913f8bdd95063d12e9ea7cbed16e6583e5d7da8a83d34d1fdb4060cf190341d21947a58f5871f44bc45bc0e84316111d530251d
22 DIST hypothesis-6.58.0.gh.tar.gz 9335693 BLAKE2B 8e72b1ddd2a0c3bd07e5e865147e0befc7bbb42eb16e02704dbb79372e94161b6cc8f1f989b8541331e8488244c3d07e87d118ee43ba07a123de31cdb7b58bbb SHA512 91f128f333144859331e9a841d47d8414964955e14071a49e3d4504a9c9970e5f737c9036be8f20bdda1e620bb428809301d1008bfbd4b0aaa05757abeb8687d
23 DIST hypothesis-6.58.1.gh.tar.gz 9335673 BLAKE2B 2f4c34f89547c3e05bc9238b9daee864335b89e1c2aab81765aeb0f806c730c33a52fe4820a718df078bb502e507cb954abe4f8528ec8566a366994cadb45d2d SHA512 efcddb49239b10ae851d3c3331629fd41f19d78e30f52f7d672735b397d4cc21fc5e3cabac824046cb391d999605e80abd014d837437593215a3d71aa60b407e
24 +DIST hypothesis-6.58.2.gh.tar.gz 9336284 BLAKE2B 404265e82d5b2e7e131cde9a97ef08a8bbfc482ba58f44fcfca4650b59529b51968c8eba1156b0b397bafa429cfa4b4e3c9d8988a6dbecad40d96c3736a5c2da SHA512 3bfd11c2f10e2075ad756247af6ef8f7e47a79746c6103db2158a3e569319226064f108170018f3455c542308a36bcb9e46d63ec9a66d8d081fdafdb82dfe65f
25
26 diff --git a/dev-python/hypothesis/hypothesis-6.58.2.ebuild b/dev-python/hypothesis/hypothesis-6.58.2.ebuild
27 new file mode 100644
28 index 000000000000..bbb3ede19663
29 --- /dev/null
30 +++ b/dev-python/hypothesis/hypothesis-6.58.2.ebuild
31 @@ -0,0 +1,77 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DISTUTILS_USE_PEP517=setuptools
38 +CLI_COMPAT=( python3_{8..10} )
39 +PYTHON_COMPAT=( "${CLI_COMPAT[@]}" python3_11 pypy3 )
40 +PYTHON_REQ_USE="threads(+),sqlite"
41 +
42 +inherit distutils-r1 multiprocessing optfeature
43 +
44 +TAG=hypothesis-python-${PV}
45 +MY_P=hypothesis-${TAG}
46 +DESCRIPTION="A library for property based testing"
47 +HOMEPAGE="
48 + https://github.com/HypothesisWorks/hypothesis/
49 + https://pypi.org/project/hypothesis/
50 +"
51 +SRC_URI="
52 + https://github.com/HypothesisWorks/hypothesis/archive/${TAG}.tar.gz
53 + -> ${P}.gh.tar.gz
54 +"
55 +S="${WORKDIR}/${MY_P}/hypothesis-python"
56 +
57 +LICENSE="MPL-2.0"
58 +SLOT="0"
59 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
60 +IUSE="cli"
61 +
62 +RDEPEND="
63 + >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
64 + >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}]
65 + $(python_gen_cond_dep '
66 + >=dev-python/exceptiongroup-1.0.0_rc8[${PYTHON_USEDEP}]
67 + ' 3.8 3.9 3.10)
68 + cli? (
69 + $(python_gen_cond_dep '
70 + dev-python/black[${PYTHON_USEDEP}]
71 + dev-python/click[${PYTHON_USEDEP}]
72 + ' "${CLI_COMPAT[@]}")
73 + )
74 +"
75 +BDEPEND="
76 + test? (
77 + dev-python/mock[${PYTHON_USEDEP}]
78 + dev-python/pexpect[${PYTHON_USEDEP}]
79 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
80 + !!<dev-python/requests-toolbelt-0.10.1
81 + )
82 +"
83 +
84 +distutils_enable_tests pytest
85 +
86 +python_test() {
87 + # subtests are broken by warnings from random plugins
88 + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
89 + local -x PYTEST_PLUGINS=xdist.plugin,pytest_forked,_hypothesis_pytestplugin
90 +
91 + epytest tests/cover tests/pytest tests/quality -n "$(makeopts_jobs)"
92 +}
93 +
94 +python_install() {
95 + distutils-r1_python_install
96 + if ! use cli || ! has "${EPYTHON}" "${CLI_COMPAT[@]/_/.}"; then
97 + rm -r "${ED}/usr/bin" "${D}$(python_get_scriptdir)" || die
98 + fi
99 +}
100 +
101 +pkg_postinst() {
102 + optfeature "datetime support" dev-python/pytz
103 + optfeature "dateutil support" dev-python/python-dateutil
104 + optfeature "numpy support" dev-python/numpy
105 + optfeature "django support" dev-python/django dev-python/pytz
106 + optfeature "pandas support" dev-python/pandas
107 + optfeature "pytest support" dev-python/pytest
108 +}