mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-14 02:41:06 +02:00
theHarvester: version bump
This commit is contained in:
parent
0705deb9d4
commit
72041e6e24
3 changed files with 54 additions and 1 deletions
|
|
@ -1,4 +1,6 @@
|
|||
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
|
||||
EBUILD theHarvester-2.0.ebuild 2356 SHA256 6f76fb2770055566899c2f2ad79259c502c7b836fed52fe755d6f3f48bdeeb70 SHA512 ee893149fbc7411efb504644f5e8cbcbf54f46b3330e00c667878e15dc03db8487cb59bbfc416e26b1d1f9943c8c50da29a0c88fc7eb17c650dcd61969640c67 WHIRLPOOL dcee32f14820cffe5a343ee93e92d776104e12b7838472ee6eee034d9979e4f227c3e047fb348bce8f214c9b5c628e651de07f65725fa590aa7acb0624cb12c2
|
||||
EBUILD theHarvester-2.2.ebuild 1008 SHA256 f7e26baf51376f77d37fb604751ecf640094e378dcc7cab7f7fb63ca1fd504b6 SHA512 71cd7c2e8d75aca084719c46df81f2ae4e43eac8d240471c9073a32d8665250d5cbeb067715d2ab9bbf0f31e281a92551f0ee1f1bfdac361f53bd7d7639c52d8 WHIRLPOOL 6494a6db391168b32f927fc45002836adc32b1ca9c88d021a3162ab03b48dc5f70c8239c6c924c390e49ed803ecee27689bd617dfc80f8c7891e2fad20ba3625
|
||||
EBUILD theHarvester-2.2a.ebuild 1012 SHA256 5d04e3030982e65a5bfbf124bc15ba4e49c2034b26d440a67bcacc4fbac68f3b SHA512 6e3d62073e35a83e6fd0c430508656b1c40b563587cc3669b56c9ffa28e32a2d039e4dff7434c8f2ce2c79a2051176e2a4f80dfeb0d0bd797a269376287615fd WHIRLPOOL 1284b8f5005d34ead303cfb25cb10424e6d2e9c1fa91887d1e710cde29afab4e2207e41a97837caac3fe9db9c5797bca6c3f94f7facd64876d5d9a5e7a902e7a
|
||||
|
|
|
|||
51
net-analyzer/theHarvester/theHarvester-2.2a.ebuild
Normal file
51
net-analyzer/theHarvester/theHarvester-2.2a.ebuild
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
# 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://theharvester.googlecode.com/files/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
|
||||
RESTRICT_PYTHON_ABIS="3.*"
|
||||
|
||||
#S="${WORKDIR}"/"${PN}"
|
||||
|
||||
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
|
||||
dobin theHarvester.py
|
||||
dodoc README LICENSES
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
python_mod_optimize discovery lib myparser.py
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
python_mod_cleanup discovery lib myparser.py
|
||||
}
|
||||
|
|
@ -68,7 +68,7 @@ net-analyzer/nessus-plugins
|
|||
~net-analyzer/tcpreplay-3.4.4
|
||||
~net-analyzer/thc-ipv6-2.0
|
||||
~net-analyzer/thc-pptp-bruter-0.1.4
|
||||
~net-analyzer/theHarvester-2.2
|
||||
~net-analyzer/theHarvester-2.2a
|
||||
~net-analyzer/upnpscan-0.4
|
||||
~net-analyzer/upnpwn-0.8.0
|
||||
~net-analyzer/vomit-0.2c
|
||||
|
|
|
|||
Loading…
Reference in a new issue