mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
recon-ng: python bump
This commit is contained in:
parent
ab7689a518
commit
bbfab2a302
6 changed files with 3 additions and 176 deletions
|
|
@ -1,4 +1 @@
|
|||
DIST recon-ng-5.0.0.tar.gz 63822 BLAKE2B 2e7b5e12256a2d23362ee5153e4ec4fe01ea9e1b3e1469640ddeb02e56f34956081fe42b18b34ddac71e272fca6ce2bc555cdf68cd048b05238d6221d1225e02 SHA512 d75c3a064a6fb587cd618752b81f4831ab21731dc2d4e2cee6a271c20b30bd0e97d6b856ec1636152fc45a634657ec9f7124f856fd95448ed4c775a17091fd5b
|
||||
DIST recon-ng-5.0.1.tar.gz 63902 BLAKE2B c453ba91731a06b64f87306315af798d2ec98777b93177cf66e9e1fea6fbf1dbfd9a7b1d6a03d3d52ef0334329bcb946560ee36f46163d3579a435ec527f7d55 SHA512 8b336d8904b499093d3478136304ff35e2041fde986d0f0dad04a552ac8bf0e37d845c86dff2d02a67d25aafd42a42472c051a1b6970ec70fa37c392ff9293c4
|
||||
DIST recon-ng-5.1.0.tar.gz 68769 BLAKE2B 86d22b55f2868434ea0658fb493dc567dc3ea541f941c9c5af9a34e47af2ff9429ebf2eb67cb807ecf7e36b1f658660538e18206b5937a43a8626492946363fb SHA512 9643996419eeb1f65357787890cef75247f0d83f1ccfd66fcc2286116441e03427f74e473dabb18ac9401c0476addde070bac22a9d3015a617e342c30b532edc
|
||||
DIST recon-ng-5.1.1.tar.gz 69542 BLAKE2B 8e9f0721521c5bd066e63fe37b0dcf84da201748e7fb2104966477d72a92ff4c7b653c2622bbc360c2bf5e8adeca96f48764080dff83b28bd3a70cfaa4727b72 SHA512 ca45488555b7b48ddc1596b9eb7322064ae6bbec0c5b0cbce2cfd58821a788bc65cf7239f7c6736bede891b848e25bb5eaacd377add26236c426f7e695a4441a
|
||||
|
|
|
|||
|
|
@ -1,57 +0,0 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{5,6} )
|
||||
PYTHON_REQ_USE="sqlite"
|
||||
|
||||
inherit python-r1
|
||||
|
||||
DESCRIPTION="Web Reconnaissance Framework"
|
||||
HOMEPAGE="https://github.com/lanmaster53/recon-ng"
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/lanmaster53/recon-ng"
|
||||
else
|
||||
SRC_URI="https://github.com/lanmaster53/recon-ng/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT=0
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
dev-python/dicttoxml[${PYTHON_USEDEP}]
|
||||
dev-python/lxml[${PYTHON_USEDEP}]
|
||||
>=dev-python/mechanize-0.4.2[${PYTHON_USEDEP}]
|
||||
dev-python/xlsxwriter[${PYTHON_USEDEP}]
|
||||
dev-python/flask[${PYTHON_USEDEP}]
|
||||
dev-python/unicodecsv[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||
dev-python/dnspython[${PYTHON_USEDEP}]"
|
||||
|
||||
src_prepare() {
|
||||
# disable updates checking, add "__version__" variable instead
|
||||
# reading VERSION file and set to latest/current version
|
||||
sed -e 's/self._check_version()//' \
|
||||
-e "s/exec(open(os.path.join(sys.path\[0\], 'VERSION')).read())/__version__ = '${PV}'/" \
|
||||
-i recon/core/base.py || die 'sed failed!'
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
python_foreach_impl python_domodule recon
|
||||
python_foreach_impl python_doscript recon-{cli,web,ng}
|
||||
|
||||
dodoc README.md
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "\nSee documentation: https://github.com/lanmaster53/recon-ng/wiki/Getting-Started\n"
|
||||
}
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{5,6} )
|
||||
PYTHON_REQ_USE="sqlite"
|
||||
|
||||
inherit python-r1
|
||||
|
||||
DESCRIPTION="Web Reconnaissance Framework"
|
||||
HOMEPAGE="https://github.com/lanmaster53/recon-ng"
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/lanmaster53/recon-ng"
|
||||
else
|
||||
SRC_URI="https://github.com/lanmaster53/recon-ng/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT=0
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
dev-python/dicttoxml[${PYTHON_USEDEP}]
|
||||
dev-python/lxml[${PYTHON_USEDEP}]
|
||||
>=dev-python/mechanize-0.4.2[${PYTHON_USEDEP}]
|
||||
dev-python/xlsxwriter[${PYTHON_USEDEP}]
|
||||
dev-python/flask[${PYTHON_USEDEP}]
|
||||
dev-python/unicodecsv[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||
dev-python/dnspython[${PYTHON_USEDEP}]"
|
||||
|
||||
src_prepare() {
|
||||
# disable updates checking, add "__version__" variable instead
|
||||
# reading VERSION file and set to latest/current version
|
||||
sed -e 's/self._check_version()//' \
|
||||
-e "s/exec(open(os.path.join(sys.path\[0\], 'VERSION')).read())/__version__ = '${PV}'/" \
|
||||
-i recon/core/base.py || die 'sed failed!'
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
python_foreach_impl python_domodule recon
|
||||
python_foreach_impl python_doscript recon-{cli,web,ng}
|
||||
|
||||
dodoc README.md
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "\nSee documentation: https://github.com/lanmaster53/recon-ng/wiki/Getting-Started\n"
|
||||
}
|
||||
|
|
@ -1,56 +0,0 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{5,6} )
|
||||
PYTHON_REQ_USE="sqlite"
|
||||
|
||||
inherit python-r1
|
||||
|
||||
DESCRIPTION="Web Reconnaissance Framework"
|
||||
HOMEPAGE="https://github.com/lanmaster53/recon-ng"
|
||||
|
||||
if [[ ${PV} == *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/lanmaster53/recon-ng"
|
||||
else
|
||||
SRC_URI="https://github.com/lanmaster53/recon-ng/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT=0
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
dev-python/dicttoxml[${PYTHON_USEDEP}]
|
||||
dev-python/lxml[${PYTHON_USEDEP}]
|
||||
>=dev-python/mechanize-0.4.2[${PYTHON_USEDEP}]
|
||||
dev-python/xlsxwriter[${PYTHON_USEDEP}]
|
||||
dev-python/flask[${PYTHON_USEDEP}]
|
||||
dev-python/unicodecsv[${PYTHON_USEDEP}]
|
||||
dev-python/requests[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||
dev-python/dnspython[${PYTHON_USEDEP}]"
|
||||
|
||||
src_prepare() {
|
||||
# disable updates checking, add "__version__" variable instead
|
||||
# reading VERSION file and set to latest/current version
|
||||
sed -e 's/self._check_version()//' \
|
||||
-e "s/exec(open(os.path.join(Path(os.path.abspath(__file__)).parents\[2\], 'VERSION')).read())/__version__ = '${PV}'/" \
|
||||
-i recon/core/base.py || die 'sed failed!'
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
python_foreach_impl python_domodule recon
|
||||
python_foreach_impl python_doscript recon-{cli,web,ng}
|
||||
|
||||
dodoc README.md
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "\nSee documentation: https://github.com/lanmaster53/recon-ng/wiki/Getting-Started\n"
|
||||
}
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
PYTHON_COMPAT=( python3_{6,7,8} )
|
||||
PYTHON_REQ_USE="sqlite"
|
||||
|
||||
inherit python-r1
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{5,6} )
|
||||
PYTHON_COMPAT=( python3_{5,6,7,8} )
|
||||
PYTHON_REQ_USE="sqlite"
|
||||
|
||||
inherit python-r1
|
||||
|
|
|
|||
Loading…
Reference in a new issue