diff options
author | Hanno Böck <hanno@gentoo.org> | 2023-02-18 21:04:21 +0100 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2023-02-18 21:05:35 +0100 |
commit | 3d1cd731bffcd2f1ad8b085ccb0bd07e1e3941c5 (patch) | |
tree | 0fe669a06d3a75ffa39c524c44279819426cb686 /net-analyzer/snallygaster/snallygaster-0.0.12-r1.ebuild | |
parent | net-misc/httpie: 3.2.1 version bump; EAPI bump; py3.11 bump; PEP517. (diff) | |
download | gentoo-3d1cd731bffcd2f1ad8b085ccb0bd07e1e3941c5.tar.gz gentoo-3d1cd731bffcd2f1ad8b085ccb0bd07e1e3941c5.tar.bz2 gentoo-3d1cd731bffcd2f1ad8b085ccb0bd07e1e3941c5.zip |
net-analyzer/snallygaster: support Python 3.11, EAPI 8
Add upstream ids to metadata.
Signed-off-by: Hanno Böck <hanno@gentoo.org>
Diffstat (limited to 'net-analyzer/snallygaster/snallygaster-0.0.12-r1.ebuild')
-rw-r--r-- | net-analyzer/snallygaster/snallygaster-0.0.12-r1.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/net-analyzer/snallygaster/snallygaster-0.0.12-r1.ebuild b/net-analyzer/snallygaster/snallygaster-0.0.12-r1.ebuild new file mode 100644 index 000000000000..0986177e4b5d --- /dev/null +++ b/net-analyzer/snallygaster/snallygaster-0.0.12-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9,10,11} ) +DISTUTILS_SINGLE_IMPL=1 +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="Finds file leaks and other security problems on HTTP servers" +HOMEPAGE="https://github.com/hannob/snallygaster" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="CC0-1.0" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="dev-python/dnspython + dev-python/urllib3 + dev-python/beautifulsoup4" +RDEPEND="${DEPEND}" +DOCS=( README.md TESTS.md ) + +# Only codingstyle and similar tests, require dependencies +# not packaged in Gentoo +RESTRICT="test" |