mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
26 lines
630 B
Bash
26 lines
630 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
PYTHON_COMPAT=( python3_{7..9} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A high-level Web Crawling and Web Scraping framework"
|
|
HOMEPAGE="https://scrapy.org/"
|
|
|
|
#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
COMMIT_HASH="af28834d6253db0d00e3ab46ab259dd5bc903063"
|
|
SRC_URI="https://github.com/tenable/nessrest/archive/${COMMIT_HASH}.zip -> ${P}.zip"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="test"
|
|
|
|
RDEPEND=""
|
|
DEPEND="${RDEPEND}
|
|
dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
|
|
S="${WORKDIR}/${PN}-${COMMIT_HASH}"
|