From 8db917097c44a2aecc68e89fcb32598a754dfd6b Mon Sep 17 00:00:00 2001 From: Yury Martynov Date: Sun, 17 Nov 2019 18:10:28 +0300 Subject: [PATCH] webshells: EAPI bump, add *9999 and fix metadata.missing --- app-exploits/webshells/Manifest | 1 - app-exploits/webshells/metadata.xml | 8 ++++++ .../webshells/webshells-20190713.ebuild | 25 +------------------ .../webshells/webshells-99999999.ebuild | 25 +++++++++++++++++++ 4 files changed, 34 insertions(+), 25 deletions(-) delete mode 100644 app-exploits/webshells/Manifest create mode 100644 app-exploits/webshells/metadata.xml mode change 100644 => 120000 app-exploits/webshells/webshells-20190713.ebuild create mode 100644 app-exploits/webshells/webshells-99999999.ebuild diff --git a/app-exploits/webshells/Manifest b/app-exploits/webshells/Manifest deleted file mode 100644 index 08ba5a210..000000000 --- a/app-exploits/webshells/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST webshells-20190713.zip 3368979 BLAKE2B 0782afce765c9e4bf0a96d5364f1dc2355bd84598c611c45b2f806a974cbe9f19f81150b5240e0eb422434131571bc3f70eebac6e3ecc40b53214ba9dc633bca SHA512 9fedc387e122fce53a36ba9c11d1410a406cf854e768ee60fba6378647978d0f1305267305c4c58b5f82dea644332815a1ebdd67dac23d30608a29bbed696652 diff --git a/app-exploits/webshells/metadata.xml b/app-exploits/webshells/metadata.xml new file mode 100644 index 000000000..4fa8ff351 --- /dev/null +++ b/app-exploits/webshells/metadata.xml @@ -0,0 +1,8 @@ + + + + + proxy-maint@gentoo.org + Proxy Maintainers + + diff --git a/app-exploits/webshells/webshells-20190713.ebuild b/app-exploits/webshells/webshells-20190713.ebuild deleted file mode 100644 index e4abea5ae..000000000 --- a/app-exploits/webshells/webshells-20190713.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Various webshells" -HOMEPAGE="https://github.com/BlackArch/webshells" -MY_COMMIT="8ab02aab571cb82536bb87e1002ee88fa66f609f" -SRC_URI="https://github.com/BlackArch/${PN}/archive/${MY_COMMIT}.zip -> ${P}.zip" - -LICENSE="Unknown" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="" - -RDEPEND="" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${PN}-${MY_COMMIT} - -src_install(){ - insinto /usr/share/webshells - doins -r . -} diff --git a/app-exploits/webshells/webshells-20190713.ebuild b/app-exploits/webshells/webshells-20190713.ebuild new file mode 120000 index 000000000..a84182828 --- /dev/null +++ b/app-exploits/webshells/webshells-20190713.ebuild @@ -0,0 +1 @@ +./webshells-99999999.ebuild \ No newline at end of file diff --git a/app-exploits/webshells/webshells-99999999.ebuild b/app-exploits/webshells/webshells-99999999.ebuild new file mode 100644 index 000000000..eab95e7d4 --- /dev/null +++ b/app-exploits/webshells/webshells-99999999.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 + +DESCRIPTION="Various webshells" +HOMEPAGE="https://github.com/BlackArch/webshells" + +EGIT_REPO_URI="https://github.com/BlackArch/webshells" +if [[ ${PV} != *9999 ]]; then + EGIT_COMMIT="8ab02aab571cb82536bb87e1002ee88fa66f609f" + KEYWORDS="~amd64 ~arm ~x86" +fi + +LICENSE="Unlicense" # ?? +SLOT="0" + +src_install() { + insinto "/usr/share/webshells" + doins -r . + + dodoc README.md +}