wfuzz: 2.4 bump, workaround new issue https://github.com/xmendez/wfuzz/issues/135

This commit is contained in:
blshkv 2019-05-02 18:37:47 +08:00
parent 5e4353726e
commit 4bffa8331a
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
2 changed files with 32 additions and 0 deletions

View file

@ -1,2 +1,3 @@
DIST wfuzz-2.2.11.tar.gz 383889 BLAKE2B 17080d7bdf846918bd156e3082441e9310acd17b457e74b626fd74ec392e91d039a1504975f0abf180567763458954940c0ed0236aba3c3fb9ab884bcb9efba0 SHA512 2203582d275dd93b1a2a456088b2975d717b3e9eff92b85f986845111e72ced0c69b2531e1b0735eb959b69efe3d8c7d128f9f7e95cee25e1253cd72e37ce051
DIST wfuzz-2.3.4.tar.gz 392877 BLAKE2B 3310ddcabf7ed54cea90c4515755bf793754d19428cd796f6f94f6bb868ac1855e64aa90b1393c4f5be3c63c4bf1bc7804a8f75fcf3a63bc248b6494e276d645 SHA512 798c1e75e0c97b2ebbbf64fd16c6f29358624d99475b043f40d4c9a581d06f98953d9574c29a73efa413914f61c2d4ded490003b0c14d3f95b63a196851675f4
DIST wfuzz-2.4.tar.gz 405370 BLAKE2B 81bae2af83e56448b8370a115c9da34762e9960a05c44ba19f06fe9a8db4e92609a96fe0befdc8e542e1c1d539d82227c1cb04b4d60f2d3037282fc883a434fb SHA512 7c9fd7b6ec1ab42bd43d3b769623f9eeb858342cc5ef65c97d9c59ede53d33dbb99c93b6d9137bc1c677dd58649dda6d6e6600484583feb6e7afb53ff9484233

View file

@ -0,0 +1,31 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
inherit distutils-r1 multilib
DESCRIPTION="Wfuzz is a tool designed for bruteforcing Web Applications"
HOMEPAGE="http://www.edge-security.com/wfuzz.php"
SRC_URI="https://github.com/xmendez/wfuzz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=""
RDEPEND="dev-python/pycurl[${PYTHON_USEDEP}]
dev-python/pyparsing[${PYTHON_USEDEP}]
dev-python/future[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
$(python_gen_cond_dep 'dev-python/configparser[${PYTHON_USEDEP}]' python2_7)
dev-python/chardet[${PYTHON_USEDEP}]"
python_prepare_all() {
#https://github.com/xmendez/wfuzz/issues/135
sed -e "/data_files/d" -i setup.py || die "sed failed"
distutils-r1_python_prepare_all
}