bump net-analyzer/theHarvester to version 2.7

This commit is contained in:
Richard Nespithal 2016-05-23 12:23:19 +02:00
parent ed1261a025
commit 26df076979
2 changed files with 50 additions and 0 deletions

View file

@ -1,3 +1,4 @@
DIST 2.7.tar.gz 58241 SHA256 dc0ff455ac5c41d53709cfc1de65dac7e96d2d9c33f9706789cca106d5a5ee76 SHA512 de60f2d9e3869f6951990748df4d153059e5b090b0f2c67fe59b6dfc403d4fc2b6a6d4ff9163efef17f69547f8b1ae70a662ab7f4a8d103a1f8595cd4e6ff6cf WHIRLPOOL e236a05d69bfaf8f0a8aae117943b445f086fa52a9e6631b26a593a5d60f57ab20bb78b8bb7748922dcadaeb8bc7154aafaa3a0bb8103d7178cca70bc6c44c63
DIST theHarvester-2.2.tar 253440 SHA256 d77d990a6a411e3c5ff1275de169cb3fce4a0f71c8f9ea59eb57309154e7fc8f SHA512 df4b6573137594c7009c30d354313ef8f8eed39ed428830a655470cbc1a78a6de6e74666e497da2786bc22317cf5edfe610ffadec247225ece07048aa6c7cc74 WHIRLPOOL c630a7eca1b9de53d88f97155c1cb87f2a4e023dcf8033c671387813ed8476aa236993b0861fd665c6260538e288be9df824eb1877f1d94ee22487893bdee74e
DIST theHarvester-2.2a.tar.gz 58658 SHA256 40f118ef783448460aac10f1fca832fac5ac6f9df3777788ae73578580fd7a4b SHA512 6d4892e92aadac0fe3ed6c0bdadc4b288f13fc5e99320299077d0a9b9766660a20785f4a579508d3f25a807832a296342e4c19085800a94a01b6f24bca1fb369 WHIRLPOOL 96e3a43268de9afacbd4223a49f004674208d673c769337f62001b4d8b346960472f54c770f85fc0f068024c68280eb92ec5b13042a46970c69433e093370e53
DIST theHarvester-ng-2.0.tar 65024 SHA256 c85849d7486858557a7f156d757ad8aaab5b7d14f0567d3344917df6816de922 SHA512 70115424f922c6b4e38571b8e4d277f450517b51b62f16a01a5a1462fea771105a40194a9b856ae896784af37881fdfe1a9f1160f7db75ab40e6d1c06fa73a93 WHIRLPOOL e6f75edca9a7fd73e1fc96b11afff43a05eff78e3a99a96b5237474348b24f6f4e5afd72b4798e68b928b5aad43c6e6f18c3c860c0f8f99f2a67432d2d9bb1f6

View file

@ -0,0 +1,49 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="4"
SUPPORT_PYTHON_ABIS="1"
inherit python
DESCRIPTION="The Harvester is a tool designed to collect email accounts of the target domain"
HOMEPAGE="http://www.edge-security.com/theharvester.php"
SRC_URI="https://github.com/laramies/theHarvester/archive/${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=""
RDEPEND=""
RESTRICT_PYTHON_ABIS="3.*"
src_prepare() {
python_convert_shebangs 2 theHarvester.py;
}
src_install() {
installation() {
insinto $(python_get_sitedir)
doins myparser.py
insinto $(python_get_sitedir)/discovery
doins -r discovery/*
insinto $(python_get_sitedir)/lib
doins lib/*.py
}
python_execute_function installation
newbin theHarvester.py theharvester
dodoc README LICENSES
}
pkg_postinst() {
python_mod_optimize discovery lib myparser.py
}
pkg_postrm() {
python_mod_cleanup discovery lib myparser.py
}