mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 13:51:00 +02:00
wfuzz: v2.2.9 bump
This commit is contained in:
parent
fa6827aee5
commit
bcfbcb207e
3 changed files with 23 additions and 44 deletions
|
|
@ -1,2 +1,2 @@
|
|||
DIST wfuzz-2.1.5.tar.gz 327621 SHA256 55fdedf49a549f811febadd6b2f8f614c466bbf03217f298ad64499f37baeddb SHA512 aac9c2f4289b09504652a8a1180a859c7cf71dba8f6207072e778d93dbd70a13e79d76659ea422db8e89ad634e72bd2da6f264d02933dc95ebe11b69d0f20b99 WHIRLPOOL 04d041e9d3d7718220fbb0c81ff3f3a0d0d029ca084023a39d9b41941d24a5160d558b7c0355309d66c12ff07ccab26569cea22d20dfcc91af50015206c2912b
|
||||
DIST wfuzz-2.2.3.tar.gz 383048 SHA256 28230c5b6049621474a2d1cfe6ba4822b25c6e5cf3ec639a7c62ee47d7fd7454 SHA512 0c5c7d4f83f65072d99af5c7c41abf36ee5966d2be68860fab820668d7d1374e46155ba0b2c2c3357d75923c9b7ac0afab710dde85de699dcc2f9605dcbbeb20 WHIRLPOOL dc1b3863de50d4f4c29c80f9776a6031b4d3dff95b0d46f25290c0463b60ebdfb7dce6e3ad9a4fb63ff2f186180de84506195d9e67362fb13ae99eff453957b6
|
||||
DIST wfuzz-2.2.3.tar.gz 383048 BLAKE2B ee09ca01634f013a48ee2f22770d11ca5d2121f8317e23e9245ee77694eaec12a9c755c10f9a53e79ab9bdb2ffc214e2458488309d9181f4c6e5f83463ee18fa SHA512 0c5c7d4f83f65072d99af5c7c41abf36ee5966d2be68860fab820668d7d1374e46155ba0b2c2c3357d75923c9b7ac0afab710dde85de699dcc2f9605dcbbeb20
|
||||
DIST wfuzz-2.2.9.tar.gz 383918 BLAKE2B 4dc2e3c6a6647b3f0b547919b9558db6e20176fbb48b5d83609c21d08a5b553b7cc39cf55e31734fdf63cc8b8b813760d4ff9cecdd7968ffa60d1407dd76ce51 SHA512 8cb68e84cbdfec36ffc06b3d26d0e8362739867a330f9d547ea2b439d13b9068b476f0a65720cdeba2a13f899f34e980a06102d9af59fb59edefe28f0bd0e733
|
||||
|
|
|
|||
|
|
@ -1,42 +0,0 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
inherit python-single-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"
|
||||
|
||||
src_install() {
|
||||
|
||||
dodoc README
|
||||
rm README LICENSE
|
||||
|
||||
dodir /usr/$(get_libdir)/
|
||||
# should be as simple as copying everything into the target...
|
||||
cp -pPR "${S}" "${ED}"/usr/$(get_libdir)/${PN} || die
|
||||
python_fix_shebang "${ED}"/usr/$(get_libdir)/${PN}
|
||||
fowners -R root:0 *
|
||||
|
||||
dodir /usr/bin/
|
||||
|
||||
cat <<-EOF > "${ED}"/usr/bin/${PN}
|
||||
#!/bin/sh
|
||||
cd /usr/$(get_libdir)/${PN}
|
||||
exec ./${PN}.py "\$@"
|
||||
EOF
|
||||
|
||||
fperms +x /usr/bin/${PN}
|
||||
fperms +x /usr/$(get_libdir)/${PN}/${PN}.py
|
||||
}
|
||||
21
net-analyzer/wfuzz/wfuzz-2.2.9.ebuild
Normal file
21
net-analyzer/wfuzz/wfuzz-2.2.9.ebuild
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
#inherit python-single-r1 multilib
|
||||
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}]"
|
||||
Loading…
Reference in a new issue