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, 09 Feb 2021 05:47:33
Message-Id: 1612849466.1f0755e4d8b80de23796abb5dead452a6495e891.graaff@gentoo
1 commit: 1f0755e4d8b80de23796abb5dead452a6495e891
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 8 07:02:53 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 9 05:44:26 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f0755e4
7
8 dev-ruby/rjb: add 1.6.4
9
10 Package-Manager: Portage-3.0.13, Repoman-3.0.2
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.4.ebuild | 73 +++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 74 insertions(+)
16
17 diff --git a/dev-ruby/rjb/Manifest b/dev-ruby/rjb/Manifest
18 index b051a2c5e97..8f89d9e09e2 100644
19 --- a/dev-ruby/rjb/Manifest
20 +++ b/dev-ruby/rjb/Manifest
21 @@ -1,2 +1,3 @@
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 +DIST rjb-1.6.4.gem 75264 BLAKE2B a678eb0b57e930bfcc7ea059da8ee6a9319b7e0e5bc632a5b97ec617e77d844491469ebc2366ba4290ee7648b4201f1d34be560e325c6099237d413c9ed8aa46 SHA512 49a0aaeb1a0e945ce373af74e01f33f531e27b205c33a382975125357ee1ceae0bea12d6fc32acb2dd66ce56c6034691520f355688cdaca5d01abff295d1a6c8
25
26 diff --git a/dev-ruby/rjb/rjb-1.6.4.ebuild b/dev-ruby/rjb/rjb-1.6.4.ebuild
27 new file mode 100644
28 index 00000000000..b7a47f4edfd
29 --- /dev/null
30 +++ b/dev-ruby/rjb/rjb-1.6.4.ebuild
31 @@ -0,0 +1,73 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +USE_RUBY="ruby25 ruby26 ruby27"
38 +
39 +RUBY_FAKEGEM_EXTRADOC="readme.txt ChangeLog"
40 +RUBY_FAKEGEM_TASK_TEST=""
41 +
42 +RUBY_FAKEGEM_EXTRAINSTALL="data"
43 +
44 +RUBY_FAKEGEM_EXTENSIONS=(ext/extconf.rb)
45 +
46 +inherit java-pkg-2 ruby-fakegem
47 +
48 +DESCRIPTION="Rjb is a Ruby-Java software bridge"
49 +HOMEPAGE="https://github.com/arton/rjb"
50 +
51 +LICENSE="LGPL-2.1"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~x86"
54 +IUSE="examples hardened"
55 +
56 +DEPEND=">=virtual/jdk-1.5
57 + hardened? ( sys-apps/paxctl )"
58 +RDEPEND="virtual/jre"
59 +
60 +pkg_setup() {
61 + ruby-ng_pkg_setup
62 + java-pkg-2_pkg_setup
63 +}
64 +
65 +all_ruby_prepare() {
66 + # The console is not available for testing.
67 + sed -i -e '/test_noarg_sinvoke/,/end/ s:^:#:' test/test.rb || die
68 +
69 + # Avoid encoding tests since not all locales may be available.
70 + sed -i -e '/test_kjconv/,/^ end/ s:^:#:' test/test.rb || die
71 +
72 + # Fix build on openjdk-11
73 + 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
74 +}
75 +
76 +each_ruby_prepare() {
77 + #dev-lang/ruby might need the "hardened" flag to enforce the following:
78 + if use hardened; then
79 + 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'
80 + fi
81 + # force compilation of class file for our JVM
82 + rm -rf data
83 +}
84 +
85 +each_ruby_install() {
86 + each_fakegem_install
87 +
88 + if use examples; then
89 + dodoc -r samples
90 + fi
91 +}
92 +
93 +each_ruby_test() {
94 + if use hardened; then
95 + paxctl -v ${RUBY} 2>/dev/null | grep MPROTECT | grep -q disabled
96 + if [ $? = 0 ]; then
97 + ${RUBY} -C test -I../lib:.:../ext test.rb || die
98 + else
99 + ewarn "${RUBY} has MPROTECT enabled, rjb will not work until it is disabled, skipping tests."
100 + fi
101 + else
102 + ${RUBY} -C test -I../lib:.:../ext test.rb || die
103 + fi
104 +}