mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 05:41:12 +02:00
net-misc/pwnedornot: new tool
Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Yury Martynov <email@linxon.ru>
This commit is contained in:
parent
f9b34173bf
commit
23e0738d8e
3 changed files with 44 additions and 0 deletions
1
net-misc/pwnedornot/Manifest
Normal file
1
net-misc/pwnedornot/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST pwnedornot-1.2.8_p20200602.tar.gz 4907 BLAKE2B 64e7ddf6586d08c70f2114f42fa14e36239cdf9e20862da8265bbf94766a92ad76aed644abff43c49b5c7a60dd6f268cdf447633db26c1d6de1b2749e1b9b6cf SHA512 9aaab70c158b709e9345bb3b8cba7715651e7298f8bddb7fb3b377077df9c993fc6763bb1b1f5be275730c43966f8d8e50ca87d598f9f56e2f9d6ff8e9ad412e
|
||||
8
net-misc/pwnedornot/metadata.xml
Normal file
8
net-misc/pwnedornot/metadata.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>email@linxon.ru</email>
|
||||
<name>Yury Martynov</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
35
net-misc/pwnedornot/pwnedornot-1.2.8_p20200602.ebuild
Normal file
35
net-misc/pwnedornot/pwnedornot-1.2.8_p20200602.ebuild
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..9} )
|
||||
|
||||
inherit python-r1
|
||||
|
||||
DESCRIPTION="OSINT Tool for Finding Passwords of Compromised Email Addresses Topics"
|
||||
HOMEPAGE="https://github.com/thewhiteh4t/pwnedOrNot"
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/thewhiteh4t/pwnedOrNot"
|
||||
else
|
||||
# snapshot: 20200602
|
||||
COMMIT="4707b81716081f8be91bcaf3525a4210cafe7441"
|
||||
|
||||
SRC_URI="https://github.com/thewhiteh4t/pwnedOrNot/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
S="${WORKDIR}/pwnedOrNot-${COMMIT}"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="${PYTHON_DEPS}"
|
||||
RDEPEND="${DEPEND}
|
||||
dev-python/requests[${PYTHON_USEDEP}]"
|
||||
|
||||
src_install() {
|
||||
python_foreach_impl python_newscript pwnedornot.py ${PN}
|
||||
dodoc README.md Dockerfile
|
||||
}
|
||||
Loading…
Reference in a new issue