diff --git a/net-analyzer/wafw00f/Manifest b/net-analyzer/wafw00f/Manifest index 299356edb9..ef65de2e5f 100644 --- a/net-analyzer/wafw00f/Manifest +++ b/net-analyzer/wafw00f/Manifest @@ -1 +1,2 @@ DIST wafw00f-2.2.0.tar.gz 40321 BLAKE2B b19c29e22a3d1682595e1c6681b2046c54819f53782f45fcc707fed52fc6de0ff154b3d8151eb2a17dea7f9a5090afa68a6c171bf56d4e4823f5a7f240f07a78 SHA512 53d4cafe784552a367959033a0e5405325b92bd3742ee3d7722aeda432b1939560974d31f26c4606e0ffc0f21666946a8ecc5fbe4fe69ab02f80ef20a2d308ea +DIST wafw00f-2.3.0.tar.gz 41906 BLAKE2B 8f887bc3713893ea8af446d5b9f3aa8965568dc442c7eb7f8dd7657dd185bc9fd5f0571084da1af22edf84070f753d85587a15472d34d533ec929032a430c672 SHA512 1ccbfe3967fa79fd4ffd57d56112fe10c4307178b8bdb558371f1ecfb9183a6d143f444a4597c9c03b0ff72fb68199159bd186920808de5ce5dc95ad60ef8a77 diff --git a/net-analyzer/wafw00f/metadata.xml b/net-analyzer/wafw00f/metadata.xml new file mode 100644 index 0000000000..c1368359d5 --- /dev/null +++ b/net-analyzer/wafw00f/metadata.xml @@ -0,0 +1,11 @@ + + + + + unknown@pentoo.ch + Author Unknown + + + sandrogauci/wafw00f + + diff --git a/net-analyzer/wafw00f/wafw00f-2.2.0.ebuild b/net-analyzer/wafw00f/wafw00f-2.2.0.ebuild index 1f7b0f08e3..cef28a5ce3 100644 --- a/net-analyzer/wafw00f/wafw00f-2.2.0.ebuild +++ b/net-analyzer/wafw00f/wafw00f-2.2.0.ebuild @@ -3,6 +3,7 @@ EAPI=8 +DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 @@ -16,7 +17,6 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="socks5" -DEPEND="" RDEPEND="${DEPEND} dev-python/requests[socks5?,${PYTHON_USEDEP}] >=dev-python/pluginbase-0.3[${PYTHON_USEDEP}]" diff --git a/net-analyzer/wafw00f/wafw00f-2.3.0.ebuild b/net-analyzer/wafw00f/wafw00f-2.3.0.ebuild new file mode 100644 index 0000000000..17243be198 --- /dev/null +++ b/net-analyzer/wafw00f/wafw00f-2.3.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 + +DESCRIPTION="Identifies and fingerprints Web Application Firewall (WAF) products" +HOMEPAGE="https://github.com/sandrogauci/wafw00f" +SRC_URI="https://github.com/EnableSecurity/wafw00f/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="amd64 ~x86" +IUSE="socks5" + +RDEPEND="${DEPEND} + dev-python/requests[socks5?,${PYTHON_USEDEP}] + >=dev-python/pluginbase-0.3[${PYTHON_USEDEP}]" + +#https://github.com/EnableSecurity/wafw00f/pull/223 +src_prepare() { + sed -i "/scripts=/d" setup.py || die + eapply_user +}