diff options
author | 2016-02-05 08:28:19 +0100 | |
---|---|---|
committer | 2016-02-05 08:29:10 +0100 | |
commit | 1224a3c8f76092a635dc184f90dc4de78268d136 (patch) | |
tree | 8156c6ce3e0afb6febb7990ce18ba10e6d0a29a8 /dev-ruby/pluggaloid | |
parent | dev-ruby/celluloid: add 0.17.3 (diff) | |
download | gentoo-1224a3c8f76092a635dc184f90dc4de78268d136.tar.gz gentoo-1224a3c8f76092a635dc184f90dc4de78268d136.tar.bz2 gentoo-1224a3c8f76092a635dc184f90dc4de78268d136.zip |
dev-ruby/pluggaloid: add missing dependencies
Also avoid a dependency on bundler and fix USE=doc. Add ruby23.
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-ruby/pluggaloid')
-rw-r--r-- | dev-ruby/pluggaloid/pluggaloid-1.0.2.ebuild | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/dev-ruby/pluggaloid/pluggaloid-1.0.2.ebuild b/dev-ruby/pluggaloid/pluggaloid-1.0.2.ebuild index 9ea0c425ee93..5b52a4cbdc77 100644 --- a/dev-ruby/pluggaloid/pluggaloid-1.0.2.ebuild +++ b/dev-ruby/pluggaloid/pluggaloid-1.0.2.ebuild @@ -1,11 +1,12 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" +USE_RUBY="ruby20 ruby21 ruby22 ruby23" +RUBY_FAKEGEM_RECIPE_DOC="doc" RUBY_FAKEGEM_EXTRADOC="README.md" inherit ruby-fakegem @@ -16,3 +17,12 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" + +ruby_add_rdepend " + dev-ruby/delayer + dev-ruby/instance_storage:0 +" + +all_ruby_prepare() { + sed -i -e '/bundler/ s:^:#:' Rakefile test/*_test.rb || die +} |