From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 87A22138359 for ; Wed, 6 May 2020 06:50:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D13E5E090F; Wed, 6 May 2020 06:50:27 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B7727E090F for ; Wed, 6 May 2020 06:50:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 960CD34F637 for ; Wed, 6 May 2020 06:50:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0F771BD for ; Wed, 6 May 2020 06:50:18 +0000 (UTC) From: "Hanno Böck" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hanno Böck" Message-ID: <1588747809.88e6eb7431b62a26063b95dd610cc43de6fab040.hanno@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/snallygaster/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/snallygaster/Manifest net-analyzer/snallygaster/metadata.xml net-analyzer/snallygaster/snallygaster-0.0.6.ebuild X-VCS-Directories: net-analyzer/snallygaster/ X-VCS-Committer: hanno X-VCS-Committer-Name: Hanno Böck X-VCS-Revision: 88e6eb7431b62a26063b95dd610cc43de6fab040 X-VCS-Branch: master Date: Wed, 6 May 2020 06:50:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 89decc2c-9365-4292-8ba6-632eea60549a X-Archives-Hash: 5857fd7b15bef4e4afedcae5b065e633 commit: 88e6eb7431b62a26063b95dd610cc43de6fab040 Author: Hanno Böck gentoo org> AuthorDate: Wed May 6 06:50:09 2020 +0000 Commit: Hanno Böck gentoo org> CommitDate: Wed May 6 06:50:09 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88e6eb74 net-analyzer/snallygaster: Initial commit Signed-off-by: Hanno Böck gentoo.org> Package-Manager: Portage-2.3.99, Repoman-2.3.22 net-analyzer/snallygaster/Manifest | 1 + net-analyzer/snallygaster/metadata.xml | 5 +++++ net-analyzer/snallygaster/snallygaster-0.0.6.ebuild | 21 +++++++++++++++++++++ 3 files changed, 27 insertions(+) diff --git a/net-analyzer/snallygaster/Manifest b/net-analyzer/snallygaster/Manifest new file mode 100644 index 00000000000..435a71356da --- /dev/null +++ b/net-analyzer/snallygaster/Manifest @@ -0,0 +1 @@ +DIST snallygaster-0.0.6.tar.gz 22260 BLAKE2B 5f5f45678ee83922d477eb7356bf830a4ececbff6fc02bc21d2b714abf350c1b2643fb8134f330d8f54a4c58809b9de2671f46b728e631ac0a5f4996f87fd8e1 SHA512 abca663005e43948ef7c6516a3e85d1b1010811365f39a280b9c091490a8b4687fdaa1b0acbd29f5a84285fe16cd74398098eb9600b5ec41ec880d355cd0ddbd diff --git a/net-analyzer/snallygaster/metadata.xml b/net-analyzer/snallygaster/metadata.xml new file mode 100644 index 00000000000..28ef3c7b080 --- /dev/null +++ b/net-analyzer/snallygaster/metadata.xml @@ -0,0 +1,5 @@ + + + +hanno@gentoo.org + diff --git a/net-analyzer/snallygaster/snallygaster-0.0.6.ebuild b/net-analyzer/snallygaster/snallygaster-0.0.6.ebuild new file mode 100644 index 00000000000..721aa438132 --- /dev/null +++ b/net-analyzer/snallygaster/snallygaster-0.0.6.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8} ) +DISTUTILS_SINGLE_IMPL=1 +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/beautifulsoup" +RDEPEND="${DEPEND}" +DOCS=( README.md TESTS.md )