mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-21 06:10:56 +02:00
Merge pull request #346 from gkroon/droopescan
Droopescan: initial ebuild
This commit is contained in:
commit
42b8f5b368
3 changed files with 42 additions and 0 deletions
1
net-analyzer/droopescan/Manifest
Normal file
1
net-analyzer/droopescan/Manifest
Normal file
|
|
@ -0,0 +1 @@
|
|||
DIST droopescan-1.41.1.tar.gz 377031 BLAKE2B d4b349994b37072cb772f977603a37254a0356bf86ad83bad2fddfb12b7da061d70d16d5f9fa6b1d2db68047738d2d7eabe907125e4ea660fd30e693df38f82c SHA512 2aab2e1a86f7ff787192f00b465753ea9ae0a69956bfe7693de91c580f3d512488c0817c76d300fd7aeb61f702a5caf141b24e1c70e76a510123e4eb7e2c5935
|
||||
38
net-analyzer/droopescan/droopescan-1.41.1.ebuild
Normal file
38
net-analyzer/droopescan/droopescan-1.41.1.ebuild
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
EGO_PN=github.com/droope/${PN}
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
if [[ ${PV} = *9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/droope/droopescan.git"
|
||||
KEYWORDS=""
|
||||
else
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
EGIT_COMMIT="${PV}"
|
||||
SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
fi
|
||||
|
||||
DESCRIPTION="A scanner that helps identifying issues in Drupal, SilverStripe, and Wordpress."
|
||||
HOMEPAGE="https://github.com/droope/droopescan"
|
||||
|
||||
LICENSE="AGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=">=dev-python/beautifulsoup-4.5.1
|
||||
>=dev-python/cement-2.6
|
||||
dev-python/coverage
|
||||
dev-python/lxml
|
||||
dev-python/mock
|
||||
dev-python/nose
|
||||
dev-python/responses
|
||||
dev-python/retrying
|
||||
dev-python/wheel"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
|
@ -281,3 +281,6 @@ dev-python/PyVirtualDisplay
|
|||
#but it works with 3.5 as well
|
||||
#~dev-libs/protobuf-3.6.0.1
|
||||
#~dev-python/protobuf-python-3.6.0.1
|
||||
|
||||
#required by net-analyzer/droopescan
|
||||
~dev-python/cement-2.10.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue