mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-08 12:30:44 +02:00
wfuzz: 2.4.1 bump
This commit is contained in:
parent
562bb70c71
commit
69ae04d042
2 changed files with 35 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST wfuzz-2.3.4.tar.gz 392877 BLAKE2B 3310ddcabf7ed54cea90c4515755bf793754d19428cd796f6f94f6bb868ac1855e64aa90b1393c4f5be3c63c4bf1bc7804a8f75fcf3a63bc248b6494e276d645 SHA512 798c1e75e0c97b2ebbbf64fd16c6f29358624d99475b043f40d4c9a581d06f98953d9574c29a73efa413914f61c2d4ded490003b0c14d3f95b63a196851675f4
|
||||
DIST wfuzz-2.4.1.tar.gz 405653 BLAKE2B 43a807bbf7c82c41636ffd436fd49b3b3e787714ff7d1ec20fa1ef439b2769b675aaedac842d26a439899c4ce96a9449e4ebde0f83ba089cef06594a194d0fda SHA512 4a70f01648efb7b4bb0bca7872463a7d1085851c13bbdfae16f7735ba4a4f5465d1effa8fcae421635078d8318d6063810cdaa1b8b3eb3c713569ce0cbd4f1a7
|
||||
DIST wfuzz-2.4.tar.gz 405370 BLAKE2B 81bae2af83e56448b8370a115c9da34762e9960a05c44ba19f06fe9a8db4e92609a96fe0befdc8e542e1c1d539d82227c1cb04b4d60f2d3037282fc883a434fb SHA512 7c9fd7b6ec1ab42bd43d3b769623f9eeb858342cc5ef65c97d9c59ede53d33dbb99c93b6d9137bc1c677dd58649dda6d6e6600484583feb6e7afb53ff9484233
|
||||
|
|
|
|||
34
net-analyzer/wfuzz/wfuzz-2.4.1.ebuild
Normal file
34
net-analyzer/wfuzz/wfuzz-2.4.1.ebuild
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( 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 ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND=">=dev-python/pycurl-7.43.0.2[${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}]
|
||||
dev-python/shodan[${PYTHON_USEDEP}]"
|
||||
|
||||
python_prepare_all() {
|
||||
# FIXME: https://github.com/xmendez/wfuzz/issues/135
|
||||
sed -e "/data_files/d" \
|
||||
-i setup.py || die "sed failed"
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
Loading…
Reference in a new issue