mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
cewl: 5.4.4.1 bump
This commit is contained in:
parent
f2495f1472
commit
6f4b8acd84
2 changed files with 46 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST cewl-5.3.tar.gz 13459 BLAKE2B f7ab2ad71856781f007aa6757000e2a1219868d88b3d6c20e5c7478a0df8a32632ec2cae03265f1d93dbb156bff759ef8cd9c80b7d1b6a9c8e1b71ac1357a054 SHA512 579c997b3edf7d09bbe10e70b2d64c3b27114a4bf2212ff74c57e4e3ea146bf84172f0a4018499c534a6f1a75ee29fdb38b6b5e8b470c9c2b41954ae982cb221
|
||||
DIST cewl-5.4.3.tar.gz 14242 BLAKE2B 77c5e7386371e8e9b547acce70b8b0abe9720495be2abce8b96e9fbd31d2433bbf7bb69984fe954907f5d8938bfee764f5513fb337295b65450df47dcfc03ef1 SHA512 5f23482d50e178a2bb514ba8b600452750555b6fa21eddf7e5b7bb90e46afaf4d490aaaf0e1c57ff69ab3f21d89bd3fba042529cb48fbf71358ccecb174861df
|
||||
DIST cewl-5.4.4.1.tar.gz 14326 BLAKE2B 4977dde7671825397bf92065c408ac029bdd57225f08f56f144e688730c2111e9c3aa25b96dfdc4cc8f2c2045bcf2fddf184efe7666b940fdf9a1c233dd92e68 SHA512 d18f59e453287cec87908c8ce1b4ba0c54b12127c60c6acf35c5c109d004f0b5517ecd39bc0c0d105e728930330e0a5c1cb2b50214b9b8d048d777590a4db18b
|
||||
|
|
|
|||
45
app-text/cewl/cewl-5.4.4.1.ebuild
Normal file
45
app-text/cewl/cewl-5.4.4.1.ebuild
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
USE_RUBY="ruby23 ruby24 ruby25"
|
||||
inherit ruby-ng
|
||||
|
||||
DESCRIPTION="A custom word list generator"
|
||||
HOMEPAGE="http://www.digininja.org/projects/cewl.php"
|
||||
SRC_URI="https://github.com/digininja/CeWL/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
ruby_add_bdepend "dev-ruby/bundler"
|
||||
|
||||
ruby_add_rdepend "dev-ruby/nokogiri
|
||||
dev-ruby/spider
|
||||
dev-ruby/mini_exiftool
|
||||
dev-ruby/rubyzip
|
||||
dev-ruby/mime-types:*"
|
||||
|
||||
all_ruby_prepare() {
|
||||
sed -i "s|require './cewl_lib'|require 'cewl_lib'|g" CeWL-${PV}/cewl.rb
|
||||
sed -i "s|require 'mime'|require 'mime/types'|g" CeWL-${PV}/cewl_lib.rb
|
||||
}
|
||||
|
||||
each_ruby_install() {
|
||||
doruby CeWL-${PV}/cewl_lib.rb CeWL-${PV}/fab.rb
|
||||
}
|
||||
|
||||
all_ruby_install() {
|
||||
dodoc CeWL-${PV}/README
|
||||
newbin CeWL-${PV}/cewl.rb cewl
|
||||
}
|
||||
|
||||
each_ruby_prepare() {
|
||||
if [ -f Gemfile ]; then
|
||||
BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle install --local || die
|
||||
BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle check || die
|
||||
fi
|
||||
}
|
||||
Loading…
Reference in a new issue