Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-afl/
Date: Mon, 31 Jul 2017 14:47:25
Message-Id: 1501512423.4db8e34a3c9bd9892980fd8f344d74415e360b6d.mrueg@gentoo
1 commit: 4db8e34a3c9bd9892980fd8f344d74415e360b6d
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 31 14:24:08 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 31 14:47:03 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4db8e34a
7
8 dev-python/python-afl: Version bump to 0.6.1
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 dev-python/python-afl/Manifest | 1 +
13 dev-python/python-afl/python-afl-0.6.1.ebuild | 24 ++++++++++++++++++++++++
14 2 files changed, 25 insertions(+)
15
16 diff --git a/dev-python/python-afl/Manifest b/dev-python/python-afl/Manifest
17 index 55ea58f882a..c96891a531d 100644
18 --- a/dev-python/python-afl/Manifest
19 +++ b/dev-python/python-afl/Manifest
20 @@ -1 +1,2 @@
21 +DIST python-afl-0.6.1.tar.gz 14795 SHA256 3dc79ae0018a00e936ce2e5ee5ceb2634337103e2cc83bdd78029404b4dca91d SHA512 25662ae96db23560ab0f7df1468f1a4737f8f68853bed75cfcfe6112a6fac110501c66941402f35686d6b96a6d124a2aeeaed79052d618583843528cb3eee3aa WHIRLPOOL 1035d12cbfc0eeffdbb6d824be4ed92a66c8416f4b48e1ffed0c5c600fa076b54ba428942afb4fc736c461b7e2f92e4aeb34be29b2058e84bc65240a35166f59
22 DIST python-afl-0.6.tar.gz 14641 SHA256 14dc3a0a7fafddacefc209205795785cff8f5852f85732564814ea4eb2d9ee37 SHA512 ecbfd097645be5a97f1c3523d5c9d18d63a5e27c633cd5bc9e7c0ef1e10b55982fc1a8d698a27b66bb3b4eb3b2d21956449aee24ea01df9d626b80a1d9d430b6 WHIRLPOOL c140f351573a48c1dc618e786f9745d0ea63b527c3d4b1379c89432d058c775fb381999f41772df08bae1314b13f34e63eb8f07aa687ec8bad1a1b0971ce99ae
23
24 diff --git a/dev-python/python-afl/python-afl-0.6.1.ebuild b/dev-python/python-afl/python-afl-0.6.1.ebuild
25 new file mode 100644
26 index 00000000000..1cf0d8b03aa
27 --- /dev/null
28 +++ b/dev-python/python-afl/python-afl-0.6.1.ebuild
29 @@ -0,0 +1,24 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Enables American fuzzy lop fork server and instrumentation for pure-Python code"
39 +HOMEPAGE="https://github.com/jwilk/python-afl http://jwilk.net/software/python-afl"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +IUSE="test"
46 +
47 +RDEPEND="app-forensics/afl"
48 +DEPEND=">=dev-python/cython-0.19[${PYTHON_USEDEP}]
49 + test? ( dev-python/nose[${PYTHON_USEDEP}] )"
50 +
51 +python_test() {
52 + PATH="${PATH}:." nosetests --verbose || die
53 +}