mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-19 05:11:05 +02:00
wpscan-3.8.9.ebuild
This commit is contained in:
parent
4f41e5e056
commit
eb620aaccc
2 changed files with 33 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST wpscan-3.8.7.tar.gz 9973508 BLAKE2B 6650efca0ae79841c60996745caa1ec79546976ed816b292fb89a4cfdb9ae91f31b888fc9318b6d89ea15b90243661822e978f3f435c5734967b1d1edb1e4048 SHA512 75f8aa6162cea7fd33da1169a9e3c08d0de8196609e669f2cd5c0d86219198f8e7a987256bc8e1fb1cc3d840aecf5e1aab03cd4fcb6684bde75f47af072fe29e
|
||||
DIST wpscan-3.8.8.tar.gz 10021800 BLAKE2B 37befd3551c45bf926aa3e050d61442510242ff369023a4b271cecc88ceb9b86b1b59c5b086a059476fa02e320b7c4d54e202f65472b65edf226b3831959d08f SHA512 d810d52ffd3129c909aef20b9674cf60d6700dcea98544efb0f3f259187627ada8e3bbb9432a16a83c15703d5656d3c1b758bbcd121e7da738b5c76a97c81e89
|
||||
DIST wpscan-3.8.9.tar.gz 10030274 BLAKE2B 0b83cc0c62aa7b455b6e484900c0c40724eb15c2d4373d4fa05b8b06553efab5e3592ae2de35ecf450264bcfb5f2bfb793c7c586a737ee3aa25e3ac7c07efacb SHA512 23c35eca5bb7d2337adf5265d23640674d5a3c0307f790cd5b024c01e39e4dbf896e3f86489992c7af73f4bbc4472fb64d0fefe1057e4bacee4849900cfbe789
|
||||
|
|
|
|||
32
net-analyzer/wpscan/wpscan-3.8.9.ebuild
Normal file
32
net-analyzer/wpscan/wpscan-3.8.9.ebuild
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
USE_RUBY="ruby25 ruby26 ruby27"
|
||||
RUBY_FAKEGEM_EXTRAINSTALL="app bin spec"
|
||||
RUBY_FAKEGEM_GEMSPEC="wpscan.gemspec"
|
||||
|
||||
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"
|
||||
|
||||
KEYWORDS="~amd64"
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
|
||||
ruby_add_bdepend "dev-ruby/bundler:2"
|
||||
ruby_add_rdepend "
|
||||
=dev-ruby/cms_scanner-0.12*
|
||||
"
|
||||
|
||||
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
|
||||
BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle install --local || die
|
||||
BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle check || die
|
||||
}
|
||||
Loading…
Reference in a new issue