diff options
author | Tim Harder <radhermit@gentoo.org> | 2017-09-18 03:26:44 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2017-09-18 03:27:54 -0400 |
commit | ff82bcaf7c4728e9ae261a999eb452154453a5b9 (patch) | |
tree | 158f5fb5fd6537ca116f94f36405e98c83b046cf /dev-python/hypothesis | |
parent | games-action/supermariowar: indent. (diff) | |
download | gentoo-ff82bcaf7c4728e9ae261a999eb452154453a5b9.tar.gz gentoo-ff82bcaf7c4728e9ae261a999eb452154453a5b9.tar.bz2 gentoo-ff82bcaf7c4728e9ae261a999eb452154453a5b9.zip |
dev-python/hypothesis: version bump to 3.28.2
Diffstat (limited to 'dev-python/hypothesis')
-rw-r--r-- | dev-python/hypothesis/Manifest | 1 | ||||
-rw-r--r-- | dev-python/hypothesis/hypothesis-3.28.2.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest index 5b2e590a9855..47da550d41dc 100644 --- a/dev-python/hypothesis/Manifest +++ b/dev-python/hypothesis/Manifest @@ -1,3 +1,4 @@ DIST hypothesis-3.24.1.tar.gz 453431 SHA256 9e734300e66244831b34541c2b5d90c4dae4c08ba63023def7d753322d347cca SHA512 8d52baf4c9a9ae4df4467659b0b180c435c315285a0606dbcf8d63464a15b3815d96fe184fa7b735818a09cc455937cfda5baddc2ef41d23ff7e0e0519d9a8f0 WHIRLPOOL 93afdf40a2fb64394d8a5fbba9210a34ed36b65807e3b7e6f4862c42a7274919ca657d6f5f9387d4b8b05ea348a3a64981ddec277d2b7bdd8b2c72d3c92c66ff DIST hypothesis-3.26.0.tar.gz 454312 SHA256 f5ebe9a7ce8788250893393c35af4cce01eadc3efae641c0aec963eb94964b45 SHA512 dac02d85bbd2a3d17a0afa6083d66038c052b6b9ac0ddaf9ad15847bf8ca6249027dff6ebe76e90efb04fa90071b758251385beb3a7f46988cd0f1e84bd28183 WHIRLPOOL d381500af7adfd577b329b086a9ec9aa8c72e4b422a63b755544b088792fd1f6cf08dc7519d10c961ee0d819ff2841baa36874db5ed087f5a55423d124148621 +DIST hypothesis-3.28.2.tar.gz 465498 SHA256 78e97966598b061a3262ed4388a8f6c73678166fddc10cee41ed157bc13b6708 SHA512 af112cec7260d5c82a73f1906c7e27a629b04a2e3e43176389b726942f97eb1682cd197242eb84bbfd23a34b5f03aa4628ec328da33bdb9494835dbb9bb72e92 WHIRLPOOL 70f6c64e6b33ec5856f9b9e943ee9e525b79cbf5e17c42f681e60cfa718d38a81a8225663e9e24a0ee456014da936f72c161770ff89f680b8e5db4524999acd5 DIST hypothesis-3.6.0.tar.gz 73586 SHA256 ecb0e711ab83032c54605d88fda1e07ca5c6025bdb5e91deab96eca29491f678 SHA512 cb885628e5c38ab9312cfb177ebc3c014617d21031737f5fba343ba485c1b8ff82b1302e7bc1d3e79192bfd8324fd0501498c968f3ac8343829f8965f6354389 WHIRLPOOL 189c788fdd0a326879a468061c271b14056da5f7dc1d5975e8f360cd5a91957eb8f79c26a045fbe49d7b11f7cc09024d3d09a353321b1dda1d4d96b452fd9e7b diff --git a/dev-python/hypothesis/hypothesis-3.28.2.ebuild b/dev-python/hypothesis/hypothesis-3.28.2.ebuild new file mode 100644 index 000000000000..c56c9bb293e0 --- /dev/null +++ b/dev-python/hypothesis/hypothesis-3.28.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} ) +PYTHON_REQ_USE="threads(+),sqlite" + +inherit distutils-r1 eutils + +DESCRIPTION="A library for property based testing" +HOMEPAGE="https://github.com/HypothesisWorks/hypothesis-python https://pypi.python.org/pypi/hypothesis" +SRC_URI="https://github.com/HypothesisWorks/hypothesis-python/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +RDEPEND="$(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' 'python2*')" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +S=${WORKDIR}/${PN}-python-${PV} + +pkg_postinst() { + optfeature "datetime support" dev-python/pytz + optfeature "numpy support" dev-python/numpy + optfeature "django support" dev-python/django dev-python/pytz + optfeature "pytest support" dev-python/pytest +} |