diff --git a/net-analyzer/dnsrecon/Manifest b/net-analyzer/dnsrecon/Manifest index 002b67fa4..a1b2d5086 100644 --- a/net-analyzer/dnsrecon/Manifest +++ b/net-analyzer/dnsrecon/Manifest @@ -1,2 +1,2 @@ -DIST dnsrecon-1.1.1.tar.gz 648665 BLAKE2B 701e68da67b552a3b180474c628ba0dc78744ddc3a8ef0a48bbc133771f91ef02fa65c5c7254c189f1e7aabe8d05ea2368783d56838741d672deae7148fcbabe SHA512 985fcbd2874f72144e3d0b52ee322df848abfb1fecd403d6a9786cfa5509610609d9aacb4ffc2fa89b5717c21942fa81d1884ddbfa0cb605e95fa1e0da1a2b57 DIST dnsrecon-1.1.2.tar.gz 648662 BLAKE2B b95d5aa0598bb79386b01352272dc5761fcd01a0af164a8706b6048d55f1355fdfc91cf500d00524adbd1b1499fefce078b09ac5eff013daeb93359526a1bb7c SHA512 275554265a745b44ea5e4a8b1d5855461c0bc698bf60a8249b8447f95a54544e4ee8fe947548b35a0ae6cb0e2a491b79eb281f5db73c363ec5b5a113534f85a6 +DIST dnsrecon-1.1.3.tar.gz 648660 BLAKE2B 2668b29c822556330860e4b75732bbfa3cf57dd785085d9c520e6b44c037dc6b42b7980dd3d15187dee1e25c9b9db12f0d53000b3d3aaadae6f72bb2d30ad14c SHA512 2dee072edbd0d104429e30065fb1992d138ac5b2c678fdf36bff2fc0717c4548a82892490a270f0d96ddc35b0e36d2b90254cc7317068b86843f0f2bf43cb1c0 diff --git a/net-analyzer/dnsrecon/dnsrecon-1.1.3.ebuild b/net-analyzer/dnsrecon/dnsrecon-1.1.3.ebuild new file mode 100644 index 000000000..8119ca5ef --- /dev/null +++ b/net-analyzer/dnsrecon/dnsrecon-1.1.3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..10} ) +inherit distutils-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 ~arm64 x86" + +RDEPEND="${PYTHON_DEPS} + dev-python/dnspython[${PYTHON_USEDEP}] + dev-python/netaddr[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" + +src_prepare() { + rm -r tests || die + default +} + +python_install() { + distutils-r1_python_install +# python_foreach_impl python_newscript dnsrecon.py dnsrecon + python_foreach_impl python_newscript tools/parser.py dnsrecon-parser + +# dodoc -r msf_plugin/ *.md +}