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, 18 Apr 2021 07:57:36
Message-Id: 1618732634.74e691fb2a76b5b994152bdaf48f0e7bc5379349.graaff@gentoo
1 commit: 74e691fb2a76b5b994152bdaf48f0e7bc5379349
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 18 06:30:11 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 18 07:57:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74e691fb
7
8 dev-ruby/rjb: cleanup
9
10 Package-Manager: Portage-3.0.17, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/rjb/Manifest | 2 --
14 dev-ruby/rjb/rjb-1.6.1.ebuild | 82 -------------------------------------------
15 dev-ruby/rjb/rjb-1.6.2.ebuild | 82 -------------------------------------------
16 3 files changed, 166 deletions(-)
17
18 diff --git a/dev-ruby/rjb/Manifest b/dev-ruby/rjb/Manifest
19 index 8f89d9e09e2..5e48fa0fa56 100644
20 --- a/dev-ruby/rjb/Manifest
21 +++ b/dev-ruby/rjb/Manifest
22 @@ -1,3 +1 @@
23 -DIST rjb-1.6.1.gem 74240 BLAKE2B 103e3885634be9c7dd842c2737c420511fea04e4e2d18f77dba7689c47da996fa37af5d08827de21ec38effd3fd99407e99491c8b99d134dded219ccf3880b79 SHA512 5b78fc4eabceddeb901145af39b1fc76e9a44801596ea4bacf9ce601cc109107cf042b1aa4c27049abd766ffca3206364079866ce7b88d25657fa75e7593adc3
24 -DIST rjb-1.6.2.gem 74752 BLAKE2B 5b5c61933da5603c805d68c6a2514d193efb87f8a1ffdd38193152463338d963de09848d6d3ea027338c045d24b9e884c7befbaed75b288bfba7573fa4b1f10d SHA512 3147d606698d5dd99798fec71d60e09cf964dd9649d4cba6c2bab40055ecb2b129d39beba67063745ad884bf3ad1eda9c1e91350f52f6767b20d612b5b279642
25 DIST rjb-1.6.4.gem 75264 BLAKE2B a678eb0b57e930bfcc7ea059da8ee6a9319b7e0e5bc632a5b97ec617e77d844491469ebc2366ba4290ee7648b4201f1d34be560e325c6099237d413c9ed8aa46 SHA512 49a0aaeb1a0e945ce373af74e01f33f531e27b205c33a382975125357ee1ceae0bea12d6fc32acb2dd66ce56c6034691520f355688cdaca5d01abff295d1a6c8
26
27 diff --git a/dev-ruby/rjb/rjb-1.6.1.ebuild b/dev-ruby/rjb/rjb-1.6.1.ebuild
28 deleted file mode 100644
29 index 75650dc2ab9..00000000000
30 --- a/dev-ruby/rjb/rjb-1.6.1.ebuild
31 +++ /dev/null
32 @@ -1,82 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -USE_RUBY="ruby24 ruby25 ruby26 ruby27"
39 -
40 -RUBY_FAKEGEM_EXTRADOC="readme.txt ChangeLog"
41 -RUBY_FAKEGEM_TASK_TEST=""
42 -
43 -RUBY_FAKEGEM_EXTRAINSTALL="data"
44 -
45 -inherit java-pkg-2 ruby-ng ruby-fakegem
46 -
47 -DESCRIPTION="Rjb is a Ruby-Java software bridge"
48 -HOMEPAGE="https://github.com/arton/rjb"
49 -
50 -LICENSE="LGPL-2.1"
51 -SLOT="0"
52 -KEYWORDS="~amd64 ~x86"
53 -IUSE="examples hardened"
54 -
55 -DEPEND=">=virtual/jdk-1.5
56 - hardened? ( sys-apps/paxctl )"
57 -RDEPEND="virtual/jre"
58 -
59 -pkg_setup() {
60 - ruby-ng_pkg_setup
61 - java-pkg-2_pkg_setup
62 -}
63 -
64 -all_ruby_prepare() {
65 - # The console is not available for testing.
66 - sed -i -e '/test_noarg_sinvoke/,/end/ s:^:#:' test/test.rb || die
67 -
68 - # Avoid encoding tests since not all locales may be available.
69 - sed -i -e '/test_kjconv/,/^ end/ s:^:#:' test/test.rb || die
70 -
71 - # Fix build on openjdk-11
72 - 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
73 -}
74 -
75 -each_ruby_prepare() {
76 - #dev-lang/ruby might need the "hardened" flag to enforce the following:
77 - if use hardened; then
78 - 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'
79 - fi
80 - # force compilation of class file for our JVM
81 - rm -rf data
82 -}
83 -
84 -each_ruby_configure() {
85 - ${RUBY} -C ext extconf.rb || die "extconf.rb failed"
86 -}
87 -
88 -each_ruby_compile() {
89 - emake V=1 -C ext CFLAGS="${CFLAGS} -fPIC" archflags="${LDFLAGS}"
90 -}
91 -
92 -each_ruby_install() {
93 - each_fakegem_install
94 -
95 - # currently no elegant way to do this (bug #352765)
96 - ruby_fakegem_newins ext/rjbcore.so lib/rjbcore.so
97 -
98 - if use examples; then
99 - dodoc -r samples
100 - fi
101 -}
102 -
103 -each_ruby_test() {
104 - if use hardened; then
105 - paxctl -v ${RUBY} 2>/dev/null | grep MPROTECT | grep -q disabled
106 - if [ $? = 0 ]; then
107 - ${RUBY} -C test -I../lib:.:../ext test.rb || die
108 - else
109 - ewarn "${RUBY} has MPROTECT enabled, rjb will not work until it is disabled, skipping tests."
110 - fi
111 - else
112 - ${RUBY} -C test -I../lib:.:../ext test.rb || die
113 - fi
114 -}
115
116 diff --git a/dev-ruby/rjb/rjb-1.6.2.ebuild b/dev-ruby/rjb/rjb-1.6.2.ebuild
117 deleted file mode 100644
118 index 564fb048d40..00000000000
119 --- a/dev-ruby/rjb/rjb-1.6.2.ebuild
120 +++ /dev/null
121 @@ -1,82 +0,0 @@
122 -# Copyright 1999-2020 Gentoo Authors
123 -# Distributed under the terms of the GNU General Public License v2
124 -
125 -EAPI=7
126 -
127 -USE_RUBY="ruby25 ruby26 ruby27"
128 -
129 -RUBY_FAKEGEM_EXTRADOC="readme.txt ChangeLog"
130 -RUBY_FAKEGEM_TASK_TEST=""
131 -
132 -RUBY_FAKEGEM_EXTRAINSTALL="data"
133 -
134 -inherit java-pkg-2 ruby-ng ruby-fakegem
135 -
136 -DESCRIPTION="Rjb is a Ruby-Java software bridge"
137 -HOMEPAGE="https://github.com/arton/rjb"
138 -
139 -LICENSE="LGPL-2.1"
140 -SLOT="0"
141 -KEYWORDS="~amd64 ~x86"
142 -IUSE="examples hardened"
143 -
144 -DEPEND=">=virtual/jdk-1.5
145 - hardened? ( sys-apps/paxctl )"
146 -RDEPEND="virtual/jre"
147 -
148 -pkg_setup() {
149 - ruby-ng_pkg_setup
150 - java-pkg-2_pkg_setup
151 -}
152 -
153 -all_ruby_prepare() {
154 - # The console is not available for testing.
155 - sed -i -e '/test_noarg_sinvoke/,/end/ s:^:#:' test/test.rb || die
156 -
157 - # Avoid encoding tests since not all locales may be available.
158 - sed -i -e '/test_kjconv/,/^ end/ s:^:#:' test/test.rb || die
159 -
160 - # Fix build on openjdk-11
161 - 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
162 -}
163 -
164 -each_ruby_prepare() {
165 - #dev-lang/ruby might need the "hardened" flag to enforce the following:
166 - if use hardened; then
167 - 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'
168 - fi
169 - # force compilation of class file for our JVM
170 - rm -rf data
171 -}
172 -
173 -each_ruby_configure() {
174 - ${RUBY} -C ext extconf.rb || die "extconf.rb failed"
175 -}
176 -
177 -each_ruby_compile() {
178 - emake V=1 -C ext CFLAGS="${CFLAGS} -fPIC" archflags="${LDFLAGS}"
179 -}
180 -
181 -each_ruby_install() {
182 - each_fakegem_install
183 -
184 - # currently no elegant way to do this (bug #352765)
185 - ruby_fakegem_newins ext/rjbcore.so lib/rjbcore.so
186 -
187 - if use examples; then
188 - dodoc -r samples
189 - fi
190 -}
191 -
192 -each_ruby_test() {
193 - if use hardened; then
194 - paxctl -v ${RUBY} 2>/dev/null | grep MPROTECT | grep -q disabled
195 - if [ $? = 0 ]; then
196 - ${RUBY} -C test -I../lib:.:../ext test.rb || die
197 - else
198 - ewarn "${RUBY} has MPROTECT enabled, rjb will not work until it is disabled, skipping tests."
199 - fi
200 - else
201 - ${RUBY} -C test -I../lib:.:../ext test.rb || die
202 - fi
203 -}