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/rjb/
Date: Sun, 30 Oct 2016 06:42:39
Message-Id: 1477808858.1b3c518babb664d79ac4637851e8a1e9c01ecc63.graaff@gentoo
1 commit: 1b3c518babb664d79ac4637851e8a1e9c01ecc63
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 30 06:27:38 2016 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 30 06:27:38 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b3c518b
7
8 dev-ruby/rjb: add 1.5.5
9
10 Package-Manager: portage-2.3.0
11
12 dev-ruby/rjb/Manifest | 1 +
13 dev-ruby/rjb/rjb-1.5.5.ebuild | 82 +++++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 83 insertions(+)
15
16 diff --git a/dev-ruby/rjb/Manifest b/dev-ruby/rjb/Manifest
17 index c2a80f7..55f1299 100644
18 --- a/dev-ruby/rjb/Manifest
19 +++ b/dev-ruby/rjb/Manifest
20 @@ -1 +1,2 @@
21 DIST rjb-1.5.4.gem 73216 SHA256 81df90c028dccd758e8b38c8b7d80620d23ebb5c355233b82c4cacfe85cb4851 SHA512 add7268f3320e4627b8b92103f420cd5be03319c54cdf0478980631ab57523ed9dd190f7a535b5bc9892d42b049712c18b406bacb36212f8cfb6ce5f3c74766d WHIRLPOOL bc0feabe46b63b4a1ccd0e2f88c72e24068737ba96ed3e52482921318e5fed8453a798bca5e5001eb815c4e74d3870f70343ce792764bef03f43350062214103
22 +DIST rjb-1.5.5.gem 73216 SHA256 8a81557cccf06e06435202cedffe3dcda780a9abe3b803a1057c48165746f2de SHA512 a1a8f6e6b75555ce228fe8d58b467f783e55ddb12371485d45ad32597ea7ec60d30e3870671455e4e22fd680b5aa21bd952b8abfa36531c030747573e5d43cea WHIRLPOOL cb146672bc02838fa8ef3f14f972abc0566bbdf25543fddd82569c67bc3835c4b681258b7303392a53315f73b6cfadac7ee40cb69281096ea47310af2b2b8b6e
23
24 diff --git a/dev-ruby/rjb/rjb-1.5.5.ebuild b/dev-ruby/rjb/rjb-1.5.5.ebuild
25 new file mode 100644
26 index 00000000..e0bf0bf
27 --- /dev/null
28 +++ b/dev-ruby/rjb/rjb-1.5.5.ebuild
29 @@ -0,0 +1,82 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +USE_RUBY="ruby20 ruby21 ruby22 ruby23"
37 +
38 +RUBY_FAKEGEM_EXTRADOC="readme.txt ChangeLog"
39 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
40 +RUBY_FAKEGEM_TASK_TEST=""
41 +
42 +RUBY_FAKEGEM_EXTRAINSTALL="data"
43 +
44 +inherit java-pkg-2 ruby-ng ruby-fakegem
45 +
46 +DESCRIPTION="Rjb is a Ruby-Java software bridge"
47 +HOMEPAGE="https://github.com/arton/rjb"
48 +
49 +LICENSE="LGPL-2.1"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86"
52 +IUSE="examples hardened"
53 +
54 +DEPEND=">=virtual/jdk-1.5
55 + hardened? ( sys-apps/paxctl )"
56 +RDEPEND="virtual/jre"
57 +
58 +pkg_setup() {
59 + ruby-ng_pkg_setup
60 + java-pkg-2_pkg_setup
61 +}
62 +
63 +all_ruby_prepare() {
64 + # The console is not available for testing.
65 + sed -i -e '/test_noarg_sinvoke/,/end/ s:^:#:' test/test.rb || die
66 +
67 + # Avoid encoding tests since not all locales may be available.
68 + sed -i -e '/test_kjconv/,/^ end/ s:^:#:' test/test.rb || die
69 +}
70 +
71 +each_ruby_prepare() {
72 + #dev-lang/ruby might need the "hardened" flag to enforce the following:
73 + if use hardened; then
74 + paxctl -v /usr/bin/ruby 2>/dev/null | grep MPROTECT | grep disabled || ewarn '!!! rjb will only work if ruby is MPROTECT disabled\n please disable it if required using paxctl -m /usr/bin/ruby'
75 + fi
76 + # force compilation of class file for our JVM
77 + rm -rf data
78 +}
79 +
80 +each_ruby_configure() {
81 + ${RUBY} -C ext extconf.rb || die "extconf.rb failed"
82 +}
83 +
84 +each_ruby_compile() {
85 + emake V=1 -C ext CFLAGS="${CFLAGS} -fPIC" archflags="${LDFLAGS}"
86 +}
87 +
88 +each_ruby_install() {
89 + each_fakegem_install
90 +
91 + # currently no elegant way to do this (bug #352765)
92 + ruby_fakegem_newins ext/rjbcore.so lib/rjbcore.so
93 +
94 + if use examples; then
95 + insinto /usr/share/doc/${PF}
96 + doins -r samples
97 + fi
98 +}
99 +
100 +each_ruby_test() {
101 + if use hardened; then
102 + paxctl -v ${RUBY} 2>/dev/null | grep MPROTECT | grep -q disabled
103 + if [ $? = 0 ]; then
104 + ${RUBY} -C test -I../lib:.:../ext test.rb || die
105 + else
106 + ewarn "${RUBY} has MPROTECT enabled, rjb will not work until it is disabled, skipping tests."
107 + fi
108 + else
109 + ${RUBY} -C test -I../lib:.:../ext test.rb || die
110 + fi
111 +}