mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-09 04:51:27 +02:00
dnsrecon: v0.8.12 bump, https://github.com/darkoperator/dnsrecon/issues/73
This commit is contained in:
parent
83ed82e2cc
commit
2289fb4d40
2 changed files with 29 additions and 0 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST dnsrecon-0.8.11.tar.gz 636120 SHA256 d5750e08b91a5e910770cc80c3e6aa0cba4ac96a0b5e0204620c19424e091aee SHA512 5ca6fd94830b8286221171d09fa36909f71fccfb3ca76352e117ce7fd557d3c50183ac828fa60e574e0d12df53b7a4b9e6288fb5ad02864a00983bbb160a8006 WHIRLPOOL 9c000d238984ae09a3d0904632a51f922265efceb2183a46319e20eee4d747cd1bcada35e8103a9383fda09f018e57a825c71cb1a26f6226edc38c7497240e22
|
||||
DIST dnsrecon-0.8.12.tar.gz 636154 SHA256 664f29fc9d7fead7564e70d0fcffdfb87b794cf99f436ef322d6a2bcecc08205 SHA512 a94372938b40784a7d0aeddb63cf1428ace6331007b5fc90f0c221ef9f14996007d89ac7120d8a1e9bf9af72ed040872a465c481cb3662a23e515d0bb7f62713 WHIRLPOOL 444e9be0affb0e6b4f943b5d2a5b99e366582590c6d67293590a9cfc93025b292b34343792250225fdf97f95825055ea671f2fb404fc38099e3fcec9f84c017a
|
||||
|
|
|
|||
28
net-analyzer/dnsrecon/dnsrecon-0.8.12.ebuild
Normal file
28
net-analyzer/dnsrecon/dnsrecon-0.8.12.ebuild
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
|
||||
inherit multilib python-r1
|
||||
|
||||
HOMEPAGE="https://github.com/darkoperator/dnsrecon"
|
||||
DESCRIPTION="DNS Enumeration Script"
|
||||
SRC_URI="https://github.com/darkoperator/dnsrecon/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
virtual/python-dnspython[${PYTHON_USEDEP}]
|
||||
dev-python/netaddr"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_install() {
|
||||
# should be as simple as copying everything into the target...
|
||||
dodir /usr/$(get_libdir)/${PN}
|
||||
cp -R "${S}"/* "${D}"/usr/$(get_libdir)/${PN} || die "Copy files failed"
|
||||
dosym "${EPREFIX}"/usr/$(get_libdir)/${PN}/${PN}.py /usr/bin/${PN}
|
||||
}
|
||||
Loading…
Reference in a new issue