mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-21 06:10:56 +02:00
wfuzz: 2.4.5 bump
This commit is contained in:
parent
103fd7959a
commit
793605dcd7
2 changed files with 36 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST wfuzz-2.4.2.tar.gz 405950 BLAKE2B 75df12128e2f9ded5165d6f3cfdd183dc080d91e4b2c402f5e5ff677c106ff415afaa300c7789618e4c2cbce7fae935532f2027655dbbba7fa08a3c4badf6643 SHA512 267e84f28ebbece99a7fca875b2f7328a1d59ea50e3d591072f0620a59b84188467d82761fd4dae8cc8b500fb8745e4f436f966a0d3446e27fdcea2adcfe1d23
|
||||
DIST wfuzz-2.4.4.tar.gz 408760 BLAKE2B 8ecb53bbafdf1e8fcd46599cfa8cef39044020264cf57adf7951b98e5e4ecd4c183073c5a852bd81e871b27c1cf58d91f5b32606285dd41257e13714aabdf6ec SHA512 1e77d0dbf845733dbe9c49b67b5029ddda45fd27646ecd26be1c3b8621fb458efa6004337f6ae5102ebec5eff246be15116a34bc9b981ae77543f3a49de571cd
|
||||
DIST wfuzz-2.4.5.tar.gz 408754 BLAKE2B 3e1e5670c9621644679cf582bc0109cc1999e10540d9566104d4122323478002add4375fb14658872d2682cccf060cea75b7788707d2086693be8667843a46ea SHA512 e9250fb9edf1670015eb7610c039ec2dced486295318afc5eb248f07e538eb0cb8ed3ac8500fe38a07fc229bbc0dbcabf435129d2cc27b96aecf4126fe1af4e4
|
||||
|
|
|
|||
35
net-analyzer/wfuzz/wfuzz-2.4.5.ebuild
Normal file
35
net-analyzer/wfuzz/wfuzz-2.4.5.ebuild
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# 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 https://github.com/xmendez/wfuzz"
|
||||
SRC_URI="https://github.com/xmendez/wfuzz/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
DEPEND="${PYTHON_DEPS}"
|
||||
RDEPEND="${DEPEND}
|
||||
>=dev-python/pycurl-7.43.0.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyparsing-2.3.0[${PYTHON_USEDEP}]
|
||||
dev-python/future[${PYTHON_USEDEP}]
|
||||
dev-python/six[${PYTHON_USEDEP}]
|
||||
dev-python/chardet[${PYTHON_USEDEP}]
|
||||
dev-python/shodan[${PYTHON_USEDEP}]"
|
||||
|
||||
#S="${WORKDIR}/${PN}-v.${PV}"
|
||||
|
||||
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