mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-01 19:20:56 +02:00
theHarverster: version bump, workaround removed, cleanups
This commit is contained in:
parent
7281f0acdd
commit
1c06f1f09f
3 changed files with 53 additions and 28 deletions
|
|
@ -1,4 +1,4 @@
|
|||
DIST theHarvester-1.6.tar 27136 SHA256 5430fd2bbab2abe5129a92cc58567906eba8c941118c74e6e50653174e37710d
|
||||
DIST theHarvester-2.2.tar 253440 SHA256 d77d990a6a411e3c5ff1275de169cb3fce4a0f71c8f9ea59eb57309154e7fc8f SHA512 df4b6573137594c7009c30d354313ef8f8eed39ed428830a655470cbc1a78a6de6e74666e497da2786bc22317cf5edfe610ffadec247225ece07048aa6c7cc74 WHIRLPOOL c630a7eca1b9de53d88f97155c1cb87f2a4e023dcf8033c671387813ed8476aa236993b0861fd665c6260538e288be9df824eb1877f1d94ee22487893bdee74e
|
||||
DIST theHarvester-ng-2.0.tar 65024 SHA256 c85849d7486858557a7f156d757ad8aaab5b7d14f0567d3344917df6816de922 SHA512 70115424f922c6b4e38571b8e4d277f450517b51b62f16a01a5a1462fea771105a40194a9b856ae896784af37881fdfe1a9f1160f7db75ab40e6d1c06fa73a93 WHIRLPOOL e6f75edca9a7fd73e1fc96b11afff43a05eff78e3a99a96b5237474348b24f6f4e5afd72b4798e68b928b5aad43c6e6f18c3c860c0f8f99f2a67432d2d9bb1f6
|
||||
EBUILD theHarvester-1.6-r1.ebuild 530 SHA256 539c3ef7a12f56306b196f1e50595fbaec2a37e46a96f09b9ce16b7067a230b5 SHA512 245d782a8ef3f3ab0da83553caad0581f33715cee4453fb50f3d77af1008eef73706dec96f2a890742f7ce96af32779e7ef282384dfab239e6ba3201c7f0bac3 WHIRLPOOL 3d3cc9a3e7c11eae4b3cda4eb5cb1ec551cc176306be2fd47eb3d10d4535f848c9b6dcad813dcc4c4040e5c0b397c8aa6a48051af641effad290f58aa820dff2
|
||||
EBUILD theHarvester-2.0.ebuild 2356 SHA256 6f76fb2770055566899c2f2ad79259c502c7b836fed52fe755d6f3f48bdeeb70 SHA512 ee893149fbc7411efb504644f5e8cbcbf54f46b3330e00c667878e15dc03db8487cb59bbfc416e26b1d1f9943c8c50da29a0c88fc7eb17c650dcd61969640c67 WHIRLPOOL dcee32f14820cffe5a343ee93e92d776104e12b7838472ee6eee034d9979e4f227c3e047fb348bce8f214c9b5c628e651de07f65725fa590aa7acb0624cb12c2
|
||||
EBUILD theHarvester-2.2.ebuild 1008 SHA256 f7e26baf51376f77d37fb604751ecf640094e378dcc7cab7f7fb63ca1fd504b6 SHA512 71cd7c2e8d75aca084719c46df81f2ae4e43eac8d240471c9073a32d8665250d5cbeb067715d2ab9bbf0f31e281a92551f0ee1f1bfdac361f53bd7d7639c52d8 WHIRLPOOL 6494a6db391168b32f927fc45002836adc32b1ca9c88d021a3162ab03b48dc5f70c8239c6c924c390e49ed803ecee27689bd617dfc80f8c7891e2fad20ba3625
|
||||
|
|
|
|||
|
|
@ -1,26 +0,0 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
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="http://www.edge-security.com/soft/${P}.tar"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND=""
|
||||
|
||||
S="${WORKDIR}"/"${PN}"
|
||||
|
||||
src_compile() {
|
||||
elog "Nothing to compile"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin "${PN}".py
|
||||
dodoc README
|
||||
}
|
||||
51
net-analyzer/theHarvester/theHarvester-2.2.ebuild
Normal file
51
net-analyzer/theHarvester/theHarvester-2.2.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"
|
||||
|
||||
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
|
||||
}
|
||||
Loading…
Reference in a new issue