From 2289fb4d409459ba604a7e899d862c83a3d19359 Mon Sep 17 00:00:00 2001 From: blshkv Date: Thu, 28 Dec 2017 19:59:42 +0800 Subject: [PATCH] dnsrecon: v0.8.12 bump, https://github.com/darkoperator/dnsrecon/issues/73 --- net-analyzer/dnsrecon/Manifest | 1 + net-analyzer/dnsrecon/dnsrecon-0.8.12.ebuild | 28 ++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 net-analyzer/dnsrecon/dnsrecon-0.8.12.ebuild diff --git a/net-analyzer/dnsrecon/Manifest b/net-analyzer/dnsrecon/Manifest index 5ac99f0fd..664f3fd56 100644 --- a/net-analyzer/dnsrecon/Manifest +++ b/net-analyzer/dnsrecon/Manifest @@ -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 diff --git a/net-analyzer/dnsrecon/dnsrecon-0.8.12.ebuild b/net-analyzer/dnsrecon/dnsrecon-0.8.12.ebuild new file mode 100644 index 000000000..3a188c299 --- /dev/null +++ b/net-analyzer/dnsrecon/dnsrecon-0.8.12.ebuild @@ -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} +}