diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2018-07-13 12:34:32 +0200 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2018-07-13 12:34:32 +0200 |
commit | eade93ab02c3727cf22ab698cb660a1d1688303b (patch) | |
tree | 1c498ca3334e5bc3709ac745b68d462df90c8bff | |
parent | sci-libs/dlib: Version bump to 19.9 (diff) | |
download | gentoo-eade93ab02c3727cf22ab698cb660a1d1688303b.tar.gz gentoo-eade93ab02c3727cf22ab698cb660a1d1688303b.tar.bz2 gentoo-eade93ab02c3727cf22ab698cb660a1d1688303b.zip |
dev-python/python-afl: Version bump to 0.7.1
Package-Manager: Portage-2.3.42, Repoman-2.3.9
-rw-r--r-- | dev-python/python-afl/Manifest | 1 | ||||
-rw-r--r-- | dev-python/python-afl/python-afl-0.7.1.ebuild | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/dev-python/python-afl/Manifest b/dev-python/python-afl/Manifest index 9cc1353d4343..730d1b9e5871 100644 --- a/dev-python/python-afl/Manifest +++ b/dev-python/python-afl/Manifest @@ -1 +1,2 @@ DIST python-afl-0.6.1.tar.gz 14795 BLAKE2B 7899ffb9ee2d0afa82a4621d7c26acd3f19f4711480f4d85a60007d7739f3dcac99a787bc7dea33d2b336e117320cef69037a20c54771ead695eae1771f2b7cb SHA512 25662ae96db23560ab0f7df1468f1a4737f8f68853bed75cfcfe6112a6fac110501c66941402f35686d6b96a6d124a2aeeaed79052d618583843528cb3eee3aa +DIST python-afl-0.7.1.tar.gz 16045 BLAKE2B 05d0aba389dcdcc11b6ec789f12f8d282b6d2fa4f1706795832468d92aa1c5e9e1c829ed7e5bfaf77bec011098cf9fe30b67c9ac2ce66c0ad5bd84a6c3037f47 SHA512 e0b8d65378d41d8ba654c8b6f3d03822ac18543cb91fb650f35d490c4b72be6b038d1a13341a33cbdde2102ad92a7e533e5c8ade9a9f13d32c78a774d5e7f120 diff --git a/dev-python/python-afl/python-afl-0.7.1.ebuild b/dev-python/python-afl/python-afl-0.7.1.ebuild new file mode 100644 index 000000000000..bf8b847ba196 --- /dev/null +++ b/dev-python/python-afl/python-afl-0.7.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) +inherit distutils-r1 + +DESCRIPTION="Enables American fuzzy lop fork server and instrumentation for pure-Python code" +HOMEPAGE="https://github.com/jwilk/python-afl http://jwilk.net/software/python-afl" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" + +RDEPEND="app-forensics/afl" +DEPEND=">=dev-python/cython-0.19[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] )" + +python_test() { + PATH="${PATH}:." nosetests --verbose || die +} |