Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rjb/
Date: Mon, 28 Mar 2016 22:05:17
Message-Id: 1459202698.a03992b7ef1333da54293527634662eec46a850d.mrueg@gentoo
1 commit: a03992b7ef1333da54293527634662eec46a850d
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 28 22:04:58 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 28 22:04:58 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a03992b7
7
8 dev-ruby/rjb: Remove old
9
10 Package-Manager: portage-2.2.28
11
12 dev-ruby/rjb/Manifest | 1 -
13 dev-ruby/rjb/rjb-1.5.3.ebuild | 82 -------------------------------------------
14 2 files changed, 83 deletions(-)
15
16 diff --git a/dev-ruby/rjb/Manifest b/dev-ruby/rjb/Manifest
17 index 09da3dc..c2a80f7 100644
18 --- a/dev-ruby/rjb/Manifest
19 +++ b/dev-ruby/rjb/Manifest
20 @@ -1,2 +1 @@
21 -DIST rjb-1.5.3.gem 73216 SHA256 e47da10ab3c784fb1a03929832d31ae850bac1c3b6fabc890e28cda79a48fa3f SHA512 fa18a810a938a70920825f79665730152c6e6b9f9fa97949bac6f4920bb2a9f2fd27ad31edd790757db4c06b33f3558a2a7584592a22692de07614c17d65130f WHIRLPOOL 3401d9400916971d5ea8acdcab0a5587f7ac44f52d0f0b951fba20b35d0b1a125a998d070ce35967f2fe62c7d8140fb904296f25cb1032571727b845bada0e37
22 DIST rjb-1.5.4.gem 73216 SHA256 81df90c028dccd758e8b38c8b7d80620d23ebb5c355233b82c4cacfe85cb4851 SHA512 add7268f3320e4627b8b92103f420cd5be03319c54cdf0478980631ab57523ed9dd190f7a535b5bc9892d42b049712c18b406bacb36212f8cfb6ce5f3c74766d WHIRLPOOL bc0feabe46b63b4a1ccd0e2f88c72e24068737ba96ed3e52482921318e5fed8453a798bca5e5001eb815c4e74d3870f70343ce792764bef03f43350062214103
23
24 diff --git a/dev-ruby/rjb/rjb-1.5.3.ebuild b/dev-ruby/rjb/rjb-1.5.3.ebuild
25 deleted file mode 100644
26 index 24d31e7..0000000
27 --- a/dev-ruby/rjb/rjb-1.5.3.ebuild
28 +++ /dev/null
29 @@ -1,82 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -
36 -USE_RUBY="ruby19 ruby20 ruby21"
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="http://rjb.rubyforge.org/"
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 -}