Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bindex/
Date: Wed, 30 Jun 2021 06:56:50
Message-Id: 1625036187.123ae8a54d97aa4f33165ade6bdffde4a851e1d5.graaff@gentoo
1 commit: 123ae8a54d97aa4f33165ade6bdffde4a851e1d5
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 27 06:22:45 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 30 06:56:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=123ae8a5
7
8 dev-ruby/bindex: fix extension install
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/bindex/bindex-0.8.1-r1.ebuild | 27 +++++++++++++++++++++++++++
14 1 file changed, 27 insertions(+)
15
16 diff --git a/dev-ruby/bindex/bindex-0.8.1-r1.ebuild b/dev-ruby/bindex/bindex-0.8.1-r1.ebuild
17 new file mode 100644
18 index 00000000000..7cd3b64f3f2
19 --- /dev/null
20 +++ b/dev-ruby/bindex/bindex-0.8.1-r1.ebuild
21 @@ -0,0 +1,27 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +USE_RUBY="ruby25 ruby26 ruby27"
28 +
29 +RUBY_FAKEGEM_EXTRADOC="README.md"
30 +
31 +RUBY_FAKEGEM_EXTENSIONS=(ext/skiptrace/extconf.rb)
32 +RUBY_FAKEGEM_EXTENSION_LIBDIR="lib/skiptrace/internal"
33 +
34 +inherit ruby-fakegem
35 +
36 +DESCRIPTION="Bindings for your Ruby exceptions"
37 +HOMEPAGE="https://github.com/gsamokovarov/bindex"
38 +
39 +LICENSE="MIT"
40 +SLOT="0"
41 +KEYWORDS="~amd64"
42 +IUSE=""
43 +
44 +all_ruby_prepare() {
45 + sed -e '/bundler/I s:^:#:' \
46 + -e '/when/ s/ruby/rubyx/' \
47 + -i Rakefile || die
48 +}