app-exploits/wesng - 99999999 (pentoo)

Search

Package Information

Description:
Windows Exploit Suggester - Next Generation
Homepage:
https://github.com/bitsadmin/wesng

Ebuild Details

Version EAPI Keywords Slot
99999999 8 ~amd64 ~x86 0
View Raw Ebuild
# Copyright 1999-2024 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="Windows Exploit Suggester - Next Generation"
HOMEPAGE="https://github.com/bitsadmin/wesng"

if [[ ${PV} == *9999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/bitsadmin/wesng"
else
	HASH_COMMIT="7dbdaf26d5e8345fd09b78c2d6ec411f4c4fb9bc" # 20200616
	SRC_URI="https://github.com/bitsadmin/wesng/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64 ~x86"

	S="${WORKDIR}/${PN}-${HASH_COMMIT}"
fi

LICENSE="BSD"
SLOT="0"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"

DEPEND="${PYTHON_DEPS}"
RDEPEND="${DEPEND}
	$(python_gen_cond_dep '
		dev-python/chardet[${PYTHON_USEDEP}]
		dev-python/mechanicalsoup[${PYTHON_USEDEP}]
	')"

pkg_setup() {
	python-single-r1_pkg_setup
}

src_prepare() {
	python_fix_shebang "${S}"
	default
}

src_install() {
	insinto "/usr/share/${PN}"
	doins -r collector/ validation/ definitions.zip *.py

	python_optimize "${D}/usr/share/${PN}"

	make_wrapper wes \
		"${PYTHON} /usr/share/${PN}/wes.py" \
		"/usr/share/${PN}"

	dodoc README.md CHANGELOG.md CMDLINE.md
}

Dependencies

DEPEND

${PYTHON_DEPS}

RDEPEND

${PYTHON_DEPS}
	$(python_gen_cond_dep '
		dev-python/chardet[${PYTHON_USEDEP}]
		dev-python/mechanicalsoup[${PYTHON_USEDEP}]
	')