diff options
author | 2021-03-05 10:00:26 +0100 | |
---|---|---|
committer | 2021-03-05 10:00:47 +0100 | |
commit | fd12f33365020ef132b1a4d5a07a41369e11ce7a (patch) | |
tree | a17364cd67176662b3029f56e54d27a025c45fd0 /net-analyzer | |
parent | dev-python/requests-kerberos: add Python 3.9 (diff) | |
download | gentoo-fd12f33365020ef132b1a4d5a07a41369e11ce7a.tar.gz gentoo-fd12f33365020ef132b1a4d5a07a41369e11ce7a.tar.bz2 gentoo-fd12f33365020ef132b1a4d5a07a41369e11ce7a.zip |
net-analyzer/wapiti: 3.0.4 bump, add Python 3.9
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/wapiti/Manifest | 1 | ||||
-rw-r--r-- | net-analyzer/wapiti/wapiti-3.0.4.ebuild | 36 | ||||
-rw-r--r-- | net-analyzer/wapiti/wapiti-9999.ebuild | 4 |
3 files changed, 39 insertions, 2 deletions
diff --git a/net-analyzer/wapiti/Manifest b/net-analyzer/wapiti/Manifest index 9ead88d6c3ae..554499f4f221 100644 --- a/net-analyzer/wapiti/Manifest +++ b/net-analyzer/wapiti/Manifest @@ -1 +1,2 @@ DIST wapiti3-3.0.3.tar.gz 553259 BLAKE2B c31a1ce3e367c7b85141b0a83c9617a901f01753ebcc56142092d475bf3d540fac6d4e529fc87f5919c962303451787db9e1f8872a5e70a646ff48c1b076139e SHA512 ed135a97ee0c2431fa15d87888eca424db389e9e54b1426e0efe7a83299ee110cb9895916c5f5f3690a99f81034e8ad0d97e3e432b2d478b89a3ba14534ddb96 +DIST wapiti3-3.0.4.tar.gz 534781 BLAKE2B ba23099dc0d1616763fd143fc87195682cb82b6b4a0d2b438abf50e23271e747ed34b0291d30b7250eb517cbf00d7429205d421eb22b38ce34287603a85cf6e7 SHA512 377bf0ca38eb219bb480f7456197e83042cb71f1e05f1cb51e81def6bb2128c3ccb2eba30f4ec856530b00ec1a0e4bc231068811669abca572dcaf4b229fcc75 diff --git a/net-analyzer/wapiti/wapiti-3.0.4.ebuild b/net-analyzer/wapiti/wapiti-3.0.4.ebuild new file mode 100644 index 000000000000..37fdae6f81ab --- /dev/null +++ b/net-analyzer/wapiti/wapiti-3.0.4.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_REQ_USE='xml' + +inherit distutils-r1 + +MY_P=${PN}3-${PV} +DESCRIPTION="Web-application vulnerability scanner" +HOMEPAGE="http://wapiti.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="kerberos ntlm" + +RDEPEND="dev-python/beautifulsoup:4[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/mako[${PYTHON_USEDEP}] + >=dev-python/requests-1.2.3[${PYTHON_USEDEP}] + dev-python/tld[${PYTHON_USEDEP}] + dev-python/yaswfp[${PYTHON_USEDEP}] + kerberos? ( dev-python/requests-kerberos[${PYTHON_USEDEP}] ) + ntlm? ( dev-python/requests-ntlm[${PYTHON_USEDEP}] )" + +S=${WORKDIR}/${MY_P} + +python_prepare_all() { + sed -e 's/"pytest-runner"//' -i setup.py || die + distutils-r1_python_prepare_all +} diff --git a/net-analyzer/wapiti/wapiti-9999.ebuild b/net-analyzer/wapiti/wapiti-9999.ebuild index 1f375f8034b2..53a705934cd1 100644 --- a/net-analyzer/wapiti/wapiti-9999.ebuild +++ b/net-analyzer/wapiti/wapiti-9999.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{7,8} ) +PYTHON_COMPAT=( python3_{7..9} ) PYTHON_REQ_USE='xml' inherit distutils-r1 git-r3 |