diff options
author | Hanno Böck <hanno@gentoo.org> | 2024-10-19 12:05:55 +0200 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2024-10-19 12:05:59 +0200 |
commit | 99f914dc41261e38682aa6c9b498061ace0a8d4c (patch) | |
tree | ef9ad0d18153f529f85c1331b190fa4f7cf41592 /net-analyzer/snallygaster | |
parent | net-analyzer/snallygaster: drop 0.0.12-r1 (diff) | |
download | gentoo-99f914dc41261e38682aa6c9b498061ace0a8d4c.tar.gz gentoo-99f914dc41261e38682aa6c9b498061ace0a8d4c.tar.bz2 gentoo-99f914dc41261e38682aa6c9b498061ace0a8d4c.zip |
net-analyzer/snallygaster: add 0.0.13
License change CC0 to 0BSD.
Signed-off-by: Hanno Böck <hanno@gentoo.org>
Diffstat (limited to 'net-analyzer/snallygaster')
-rw-r--r-- | net-analyzer/snallygaster/Manifest | 1 | ||||
-rw-r--r-- | net-analyzer/snallygaster/snallygaster-0.0.13.ebuild | 25 |
2 files changed, 26 insertions, 0 deletions
diff --git a/net-analyzer/snallygaster/Manifest b/net-analyzer/snallygaster/Manifest index b772d52adb82..cfc60ce3ee12 100644 --- a/net-analyzer/snallygaster/Manifest +++ b/net-analyzer/snallygaster/Manifest @@ -1 +1,2 @@ DIST snallygaster-0.0.12.tar.gz 25234 BLAKE2B 69082fe94fc65d78b99519511b6850d569401d326788448dffac2baca3e359e166b161e69b5169dc0772c4eba5e3cf70968ed75fe09efad7924869971a0869c8 SHA512 507b5bbaa8a013bbbb18b53778781e1e212e295f113ea91b1b73d5162f93d35be74780fa0cba7499d62f40c8cd27b4cdfd79526bd0ab07018090460ca937eb48 +DIST snallygaster-0.0.13.tar.gz 23374 BLAKE2B 85c0a1274be29988a7237f527859bb79112895a915a26dd9af50dcc1a5e46bbcd763497d64f6c659b45728c6cd7124d17386b06982103924d04bd0f520789365 SHA512 a356b07ac6cc96a6808191f3333b8f87a52a12dea2ac9b08827bc4c60b7463b34dd929f15aa27fea996f45ac8c03f3bef18e9e897a948c1f20747f2bfcd086d5 diff --git a/net-analyzer/snallygaster/snallygaster-0.0.13.ebuild b/net-analyzer/snallygaster/snallygaster-0.0.13.ebuild new file mode 100644 index 000000000000..2d1687077a58 --- /dev/null +++ b/net-analyzer/snallygaster/snallygaster-0.0.13.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{9,10,11,12,13} ) +DISTUTILS_SINGLE_IMPL=1 +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 pypi + +DESCRIPTION="Finds file leaks and other security problems on HTTP servers" +HOMEPAGE="https://github.com/hannob/snallygaster" + +LICENSE="0BSD" +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" |