mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
31 lines
957 B
Bash
31 lines
957 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
USE_RUBY="ruby31 ruby32"
|
|
RUBY_FAKEGEM_EXTRAINSTALL="app bin spec"
|
|
RUBY_FAKEGEM_GEMSPEC="wpscan.gemspec"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Wordpress security scanner"
|
|
HOMEPAGE="https://wpscan.org/"
|
|
SRC_URI="https://github.com/wpscanteam/wpscan/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
ruby_add_bdepend "dev-ruby/bundler:2"
|
|
ruby_add_rdepend "
|
|
>=dev-ruby/cms_scanner-0.13.9"
|
|
|
|
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 || die
|
|
GEM_HOME="${T}" BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle install --local || die
|
|
GEM_HOME="${T}" BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle check || die
|
|
}
|