commit: 123ae8a54d97aa4f33165ade6bdffde4a851e1d5 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Sun Jun 27 06:22:45 2021 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Wed Jun 30 06:56:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=123ae8a5
dev-ruby/bindex: fix extension install Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/bindex/bindex-0.8.1-r1.ebuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/dev-ruby/bindex/bindex-0.8.1-r1.ebuild b/dev-ruby/bindex/bindex-0.8.1-r1.ebuild new file mode 100644 index 00000000000..7cd3b64f3f2 --- /dev/null +++ b/dev-ruby/bindex/bindex-0.8.1-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_EXTENSIONS=(ext/skiptrace/extconf.rb) +RUBY_FAKEGEM_EXTENSION_LIBDIR="lib/skiptrace/internal" + +inherit ruby-fakegem + +DESCRIPTION="Bindings for your Ruby exceptions" +HOMEPAGE="https://github.com/gsamokovarov/bindex" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +all_ruby_prepare() { + sed -e '/bundler/I s:^:#:' \ + -e '/when/ s/ruby/rubyx/' \ + -i Rakefile || die +}
