diff --git a/app-exploits/weevely/Manifest b/app-exploits/weevely/Manifest index e5ce03a76..903a1794d 100644 --- a/app-exploits/weevely/Manifest +++ b/app-exploits/weevely/Manifest @@ -1 +1,2 @@ DIST weevely-3.5.tar.gz 157161 BLAKE2B 5db3af547009030c61a30db274aa439f7614960d4a26d0d4f40a09983b75c8a8f93a825a9077b0af2a609dec2078c704f6e8fed63385651c078d05684b588fce SHA512 a75ec92dfd9753bfebb9be89e68d87e8a2ce03d756921f461b79dd90873ac25dd584c81a8393114e61eb7926b0f1ff555b33d4016132bca35fc78cd233ac8c4c +DIST weevely-3.6.2.tar.gz 170447 BLAKE2B 63ede8047580850da85889835fb951dae7d7dd29c92467f990ea45145ae941db08b84e37a474f1a857a304c4a328f9dfc58c822ddd14f0eae0c78d86fa93d6b2 SHA512 c47fe7798995496457dd5333ebc4d89cfcb96af796758c43729bf6f69489b935e15ba977f9f4d6d48598d7d6331bf1f7817418a346040f425d570408f1d581d9 diff --git a/app-exploits/weevely/weevely-3.6.2.ebuild b/app-exploits/weevely/weevely-3.6.2.ebuild new file mode 100644 index 000000000..3b02bc3c8 --- /dev/null +++ b/app-exploits/weevely/weevely-3.6.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) + +inherit eutils python-single-r1 + +DESCRIPTION="Weevely is a stealth PHP web shell that simulate telnet-like console" +HOMEPAGE="https://github.com/epinna/weevely3" +SRC_URI="https://github.com/epinna/weevely3/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND} + dev-python/prettytable[${PYTHON_USEDEP}] + dev-python/mako[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/PySocks[${PYTHON_USEDEP}]" + +DOCS=( README.md ) + +S="${WORKDIR}/weevely3-${PV}" + +src_install() { + rm LICENSE + + insinto /usr/share/${PN} + doins -r "${S}"/* + + python_fix_shebang "${ED}"/usr/share/${PN} + + fperms +x /usr/share/${PN}/${PN}.py + dosym "${EPREFIX}"/usr/share/${PN}/${PN}.py /usr/bin/${PN} +}