From 4bffa8331aa9b728eeaa16f7fa20bcdb28cf2e59 Mon Sep 17 00:00:00 2001 From: blshkv Date: Thu, 2 May 2019 18:37:47 +0800 Subject: [PATCH] wfuzz: 2.4 bump, workaround new issue https://github.com/xmendez/wfuzz/issues/135 --- net-analyzer/wfuzz/Manifest | 1 + net-analyzer/wfuzz/wfuzz-2.4.ebuild | 31 +++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 net-analyzer/wfuzz/wfuzz-2.4.ebuild diff --git a/net-analyzer/wfuzz/Manifest b/net-analyzer/wfuzz/Manifest index f4fe50874..fe10a1948 100644 --- a/net-analyzer/wfuzz/Manifest +++ b/net-analyzer/wfuzz/Manifest @@ -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 diff --git a/net-analyzer/wfuzz/wfuzz-2.4.ebuild b/net-analyzer/wfuzz/wfuzz-2.4.ebuild new file mode 100644 index 000000000..772890d21 --- /dev/null +++ b/net-analyzer/wfuzz/wfuzz-2.4.ebuild @@ -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 +}