mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
56 lines
1.1 KiB
Bash
56 lines
1.1 KiB
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{12..14} )
|
|
|
|
inherit python-single-r1 wrapper
|
|
|
|
DESCRIPTION="Advanced XSS detection suite"
|
|
HOMEPAGE="https://github.com/s0md3v/XSStrike"
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/s0md3v/XSStrike"
|
|
else
|
|
SRC_URI="https://github.com/s0md3v/XSStrike/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/XSStrike-${PV}"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
fi
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
DEPEND="${PYTHON_DEPS}"
|
|
RDEPEND="${DEPEND}
|
|
$(python_gen_cond_dep '
|
|
dev-python/tld[${PYTHON_USEDEP}]
|
|
dev-python/fuzzywuzzy[${PYTHON_USEDEP}]
|
|
dev-python/requests[${PYTHON_USEDEP}]
|
|
')"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
pkg_setup() {
|
|
python-single-r1_pkg_setup
|
|
}
|
|
|
|
src_prepare() {
|
|
# eapply "${FILESDIR}/disable_update_opt.patch"
|
|
python_fix_shebang "${S}"
|
|
default
|
|
}
|
|
|
|
src_install() {
|
|
insinto "/usr/share/${PN}"
|
|
doins -r core/ db/ modes/ plugins/ "${PN}.py"
|
|
|
|
python_optimize "${ED}/usr/share/${PN}"
|
|
|
|
make_wrapper $PN \
|
|
"${EPYTHON} /usr/share/${PN}/${PN}.py" \
|
|
"/usr/share/${PN}"
|
|
|
|
dodoc CHANGELOG.md README.md
|
|
}
|