mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-02 11:40:51 +02:00
wpscan: 3.6.3 bump
This commit is contained in:
parent
70f7d09aa7
commit
8ed7e37e0b
2 changed files with 36 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST wpscan-3.6.1.tar.gz 8181559 BLAKE2B 7cf0e5bf14610dc2297b9a03d7c4de5665a4f0bdb795dbe8c83a3b50a4340a641ddf87586bf14899526442f9cd3f4f3f879b7cf8a4a06b5ce966191422f2ae96 SHA512 6dd29021beb877696f8763d9b4e374d1de4d3e460995f252cf9ddfa5d640d9bfde1cd68bf5012aab1b21c51816fc66873951c8bffb11fc02faf926620db5717b
|
||||
DIST wpscan-3.6.2.tar.gz 8191643 BLAKE2B f0433c7485ddf18b7aaa8164ad30e423dcbd4f1e21f7b6fb725d22fabbf0154f01bc2fa8331529a481384a3525f4e32c49a13d42937ba3be91f5186d730c3f6a SHA512 7c274395b1bf48006bbdb9e2efc4803936de27ec54bdea4266af9073a844e9b8a01f345932bb4d9ba8d9e6dac6570bc0f6d95a8b6a2702cd77b62287dd461563
|
||||
DIST wpscan-3.6.3.tar.gz 8209296 BLAKE2B 612c148f9cc7a5b8b705ef6d833d0523faeec61ab140dc42dd454530a7752e6933513d7fc1169b6252e23ae1c64510d7719f1b4d13205ad6d7b7c93a98d0585a SHA512 7cfacee4ae483c86392a8e0c7378ae64f80939add272f25337ece755a259b10ed6e7b2791d45687c96e07c34acaa7634516c4c21dc217a3d96d0cfeaf1ffb38e
|
||||
|
|
|
|||
35
net-analyzer/wpscan/wpscan-3.6.3.ebuild
Normal file
35
net-analyzer/wpscan/wpscan-3.6.3.ebuild
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
USE_RUBY="ruby24 ruby25"
|
||||
RUBY_FAKEGEM_EXTRAINSTALL="app bin spec"
|
||||
|
||||
inherit ruby-fakegem
|
||||
|
||||
DESCRIPTION="Wordpress security scanner"
|
||||
HOMEPAGE="http://wpscan.org/"
|
||||
SRC_URI="https://github.com/wpscanteam/wpscan/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="test memprof"
|
||||
|
||||
ruby_add_bdepend "dev-ruby/bundler"
|
||||
ruby_add_rdepend ">=dev-ruby/cms_scanner-0.5.5
|
||||
>=dev-ruby/addressable-2.5.0
|
||||
dev-ruby/activesupport:*
|
||||
>=dev-ruby/yajl-ruby-1.3.0
|
||||
memprof? ( dev-ruby/memory_profiler )
|
||||
"
|
||||
|
||||
each_ruby_prepare() {
|
||||
#https://github.com/wpscanteam/wpscan/issues/1266
|
||||
# sed -i "s|'activesupport', '~> 5.1'|'activesupport'|g" wpscan.gemspec
|
||||
# sed -i -e '/activesupport/,/^-/ s:^:#:' ../metadata || die
|
||||
sed -i -e '/s.add_development_dependency/d' wpscan.gemspec
|
||||
MSF_ROOT="." BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle install --local || die
|
||||
MSF_ROOT="." BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle check || die
|
||||
}
|
||||
Loading…
Reference in a new issue