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: Tue, 15 Sep 2020 05:09:34
Message-Id: 1600146558.eb5cb132e8595e698959100b9a68708b3e366d43.graaff@gentoo
1 commit: eb5cb132e8595e698959100b9a68708b3e366d43
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 15 05:09:18 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 15 05:09:18 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb5cb132
7
8 dev-ruby/rjb: add 1.6.2
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/rjb/Manifest | 1 +
14 dev-ruby/rjb/rjb-1.6.2.ebuild | 82 +++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 83 insertions(+)
16
17 diff --git a/dev-ruby/rjb/Manifest b/dev-ruby/rjb/Manifest
18 index 3ebcdc99db8..b051a2c5e97 100644
19 --- a/dev-ruby/rjb/Manifest
20 +++ b/dev-ruby/rjb/Manifest
21 @@ -1 +1,2 @@
22 DIST rjb-1.6.1.gem 74240 BLAKE2B 103e3885634be9c7dd842c2737c420511fea04e4e2d18f77dba7689c47da996fa37af5d08827de21ec38effd3fd99407e99491c8b99d134dded219ccf3880b79 SHA512 5b78fc4eabceddeb901145af39b1fc76e9a44801596ea4bacf9ce601cc109107cf042b1aa4c27049abd766ffca3206364079866ce7b88d25657fa75e7593adc3
23 +DIST rjb-1.6.2.gem 74752 BLAKE2B 5b5c61933da5603c805d68c6a2514d193efb87f8a1ffdd38193152463338d963de09848d6d3ea027338c045d24b9e884c7befbaed75b288bfba7573fa4b1f10d SHA512 3147d606698d5dd99798fec71d60e09cf964dd9649d4cba6c2bab40055ecb2b129d39beba67063745ad884bf3ad1eda9c1e91350f52f6767b20d612b5b279642
24
25 diff --git a/dev-ruby/rjb/rjb-1.6.2.ebuild b/dev-ruby/rjb/rjb-1.6.2.ebuild
26 new file mode 100644
27 index 00000000000..564fb048d40
28 --- /dev/null
29 +++ b/dev-ruby/rjb/rjb-1.6.2.ebuild
30 @@ -0,0 +1,82 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +USE_RUBY="ruby25 ruby26 ruby27"
37 +
38 +RUBY_FAKEGEM_EXTRADOC="readme.txt ChangeLog"
39 +RUBY_FAKEGEM_TASK_TEST=""
40 +
41 +RUBY_FAKEGEM_EXTRAINSTALL="data"
42 +
43 +inherit java-pkg-2 ruby-ng ruby-fakegem
44 +
45 +DESCRIPTION="Rjb is a Ruby-Java software bridge"
46 +HOMEPAGE="https://github.com/arton/rjb"
47 +
48 +LICENSE="LGPL-2.1"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +IUSE="examples hardened"
52 +
53 +DEPEND=">=virtual/jdk-1.5
54 + hardened? ( sys-apps/paxctl )"
55 +RDEPEND="virtual/jre"
56 +
57 +pkg_setup() {
58 + ruby-ng_pkg_setup
59 + java-pkg-2_pkg_setup
60 +}
61 +
62 +all_ruby_prepare() {
63 + # The console is not available for testing.
64 + sed -i -e '/test_noarg_sinvoke/,/end/ s:^:#:' test/test.rb || die
65 +
66 + # Avoid encoding tests since not all locales may be available.
67 + sed -i -e '/test_kjconv/,/^ end/ s:^:#:' test/test.rb || die
68 +
69 + # Fix build on openjdk-11
70 + sed -i -e 's#javah -classpath ../data/rjb jp.co.infoseek.hp.arton.rjb.RBridge#javac -h . -classpath ../data/rjb RBridge.java#g' ext/extconf.rb || die
71 +}
72 +
73 +each_ruby_prepare() {
74 + #dev-lang/ruby might need the "hardened" flag to enforce the following:
75 + if use hardened; then
76 + 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'
77 + fi
78 + # force compilation of class file for our JVM
79 + rm -rf data
80 +}
81 +
82 +each_ruby_configure() {
83 + ${RUBY} -C ext extconf.rb || die "extconf.rb failed"
84 +}
85 +
86 +each_ruby_compile() {
87 + emake V=1 -C ext CFLAGS="${CFLAGS} -fPIC" archflags="${LDFLAGS}"
88 +}
89 +
90 +each_ruby_install() {
91 + each_fakegem_install
92 +
93 + # currently no elegant way to do this (bug #352765)
94 + ruby_fakegem_newins ext/rjbcore.so lib/rjbcore.so
95 +
96 + if use examples; then
97 + dodoc -r samples
98 + fi
99 +}
100 +
101 +each_ruby_test() {
102 + if use hardened; then
103 + paxctl -v ${RUBY} 2>/dev/null | grep MPROTECT | grep -q disabled
104 + if [ $? = 0 ]; then
105 + ${RUBY} -C test -I../lib:.:../ext test.rb || die
106 + else
107 + ewarn "${RUBY} has MPROTECT enabled, rjb will not work until it is disabled, skipping tests."
108 + fi
109 + else
110 + ${RUBY} -C test -I../lib:.:../ext test.rb || die
111 + fi
112 +}