mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 16:33:09 +01:00
39 lines
856 B
Bash
39 lines
856 B
Bash
# Copyright 1999-2019 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
PYTHON_COMPAT=( python3_{4,5,6,7} )
|
|
PYTHON_REQ_USE="sqlite"
|
|
|
|
inherit eutils distutils-r1
|
|
|
|
DESCRIPTION="Command line utility for searching and downloading exploits."
|
|
HOMEPAGE="https://github.com/vulnersCom/getsploit"
|
|
SRC_URI=""
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/vulnersCom/getsploit"
|
|
KEYWORDS=""
|
|
else
|
|
SRC_URI="https://github.com/vulnersCom/getsploit/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="amd64 x86"
|
|
fi
|
|
|
|
RESTRICT="mirror"
|
|
LICENSE="LGPL-3"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
RDEPEND="${PYTHON_DEPS}"
|
|
|
|
src_prepare() {
|
|
eapply "${FILESDIR}"/${P}_add_support_user_home_dir.patch
|
|
eapply_user
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog
|
|
elog "See documentation: https://github.com/vulnersCom/getsploit#how-to-use"
|
|
elog
|
|
}
|