email2phonenumber: new tool

This commit is contained in:
Yury Martynov 2019-08-25 14:52:42 +03:00
parent 9270208d3a
commit 8c1e7e9bfb
No known key found for this signature in database
GPG key ID: EBE62DD0CCEAE19E
4 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1 @@
DIST email2phonenumber-20190816.tar.gz 15635 BLAKE2B ad66c5ee3e4b6746db74fc9e0edd335eec11f8de37f2ad9ec8d240184b5815a93d05f191f6073d193df47c8295d600e642d64da8502e6255c61cdcc3afaa6a3f SHA512 0ccbf6790943e9f37a9da9c20b9fd8772c4e7ec5260497c8b263538ce963573a3f5df1ce06657cd5be375e7c399542d6f10e0b205c5632dc1f8b85b3fe3ec6c8

View file

@ -0,0 +1 @@
./email2phonenumber-99999999.ebuild

View file

@ -0,0 +1,39 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 )
inherit python-r1
DESCRIPTION="A OSINT tool to obtain a target's phone number just by having his email address"
HOMEPAGE="https://github.com/martinvigo/email2phonenumber"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/martinvigo/email2phonenumber"
else
HASH_COMMIT="28b83b1994eac1f7eaf18a724e900dd3bc127a96"
SRC_URI="https://github.com/martinvigo/email2phonenumber/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${PN}-${HASH_COMMIT}"
fi
LICENSE="MIT"
SLOT=0
IUSE=""
RDEPEND="${PYTHON_DEPS}
dev-python/requests[${PYTHON_USEDEP}]
dev-python/beautifulsoup:4[${PYTHON_USEDEP}]"
src_install() {
python_foreach_impl python_newscript email2phonenumber.py email2phonenumber
dodoc README.md
}
pkg_postinst() {
einfo "\nMore: https://www.martinvigo.com/email2phonenumber\n"
}

View 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>