r2corba 1.6.0-universal-java → 1.6.2-universal-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +1 -1
- data/lib/corba/cbase/require.rb +1 -1
- data/lib/corba/common/version.rb +1 -1
- data/lib/corba/svcs/ins/ins.rb +1 -1
- data/rakelib/config.rb +2 -2
- data/rakelib/gem.rake +11 -11
- data/test/lib/test.rb +1 -1
- data/test/test_runner.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 640150752a87f8b344a736819d6c490cdfea52b892fb0cab7dab0a39c35b5912
|
4
|
+
data.tar.gz: 8484b78a86519ca4580d59f2c55a01c23e65b1bee2c8c3e0f8d4625c3c4755fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e60b48fb0baacf948adb771cdd2e6f33a5975975f74f3e7eea204cfec6daadfdb637ca9c351930de485cfe7740f92207eeeeb225a91ac37ff81785d257f0a442
|
7
|
+
data.tar.gz: c95f423ffc6baa1030d97b72a52cf9f04bd2440df5c1d77559f010e31aae6e86409a6763fdf091fce3d806fd2cdec2dac5388f4df4cd3172a8a44669ab6da9ee
|
data/README.rdoc
CHANGED
@@ -40,7 +40,7 @@ If you find a bug, please report it at the R2CORBA project's {issue tracker}[htt
|
|
40
40
|
|
41
41
|
== License
|
42
42
|
|
43
|
-
R2CORBA is Copyright (c) 2007-
|
43
|
+
R2CORBA is Copyright (c) 2007-2022 Remedy IT Expertise BV, The Netherlands.
|
44
44
|
|
45
45
|
It is free software, and may be redistributed under the terms specified in the link:LICENSE file.
|
46
46
|
|
data/lib/corba/cbase/require.rb
CHANGED
@@ -13,7 +13,7 @@
|
|
13
13
|
begin
|
14
14
|
_ext_dir = File.expand_path(File.join(File.dirname(__FILE__), '../../../ext'))
|
15
15
|
$: << _ext_dir unless $:.include?(_ext_dir) || !File.directory?(_ext_dir)
|
16
|
-
if RUBY_PLATFORM =~ /
|
16
|
+
if RUBY_PLATFORM =~ /mingw/
|
17
17
|
require 'ruby_installer/runtime'
|
18
18
|
RubyInstaller::Runtime.add_dll_directory(_ext_dir)
|
19
19
|
ENV['PATH'].split(File::PATH_SEPARATOR).each do |path|
|
data/lib/corba/common/version.rb
CHANGED
data/lib/corba/svcs/ins/ins.rb
CHANGED
@@ -20,7 +20,7 @@ module R2CORBA
|
|
20
20
|
INS_VERSION_RELEASE = 1
|
21
21
|
INS_COPYRIGHT = "Copyright (c) 2011-#{Time.now.year} Remedy IT Expertise BV, The Netherlands".freeze
|
22
22
|
|
23
|
-
IS_WIN32 = (RUBY_PLATFORM =~ /win32/ || RUBY_PLATFORM =~ /
|
23
|
+
IS_WIN32 = (RUBY_PLATFORM =~ /win32/ || RUBY_PLATFORM =~ /mingw/ || ENV['OS'] =~ /windows/i) ? true : false
|
24
24
|
IS_JRUBY = defined?(JRUBY_VERSION)
|
25
25
|
|
26
26
|
@@daemons_installed = false
|
data/rakelib/config.rb
CHANGED
@@ -171,7 +171,7 @@ module R2CORBA
|
|
171
171
|
:aceinstdir => '',
|
172
172
|
:'with-ipv6' => false,
|
173
173
|
:'with-ssl' => false,
|
174
|
-
:sslroot => ENV['SSL_ROOT'] || (RUBY_PLATFORM =~ /
|
174
|
+
:sslroot => ENV['SSL_ROOT'] || (RUBY_PLATFORM =~ /mingw/ ? '' : '/usr'),
|
175
175
|
:'with-debug' => false,
|
176
176
|
})
|
177
177
|
BUILD_CFG = '.rconfig'
|
@@ -205,7 +205,7 @@ module R2CORBA
|
|
205
205
|
@@ruby_ver[2]
|
206
206
|
end
|
207
207
|
|
208
|
-
@@is_win32 = RUBY_PLATFORM =~ /
|
208
|
+
@@is_win32 = RUBY_PLATFORM =~ /mingw/ ? true : false
|
209
209
|
@@is_win64 = (@@is_win32 && (RUBY_PLATFORM =~ /x64/)) ? true : false
|
210
210
|
@@is_linux = RB_CONFIG['target_os'] =~ /linux/ ? true : false
|
211
211
|
@@is_osx = RUBY_PLATFORM =~ /darwin/ ? true : false
|
data/rakelib/gem.rake
CHANGED
@@ -66,7 +66,7 @@ namespace :r2corba do
|
|
66
66
|
gemspec = R2CORBA::Gem.define_spec('taosource', _ace_ver) do |gem|
|
67
67
|
gem.summary = %Q{TAO sourcecode for building R2CORBA}
|
68
68
|
gem.description = %Q{TAO sourcecode for building R2CORBA.}
|
69
|
-
gem.email = '
|
69
|
+
gem.email = 'info@remedy.nl'
|
70
70
|
gem.homepage = 'https://www.remedy.nl/opensource/r2corba.html'
|
71
71
|
gem.authors = ['Martin Corino', 'Johnny Willemsen']
|
72
72
|
gem.files = Dir['lib/taosource/**/*']
|
@@ -75,7 +75,7 @@ namespace :r2corba do
|
|
75
75
|
gem.extensions = ['mkrf_conf_taogem.rb']
|
76
76
|
gem.require_paths = %w{lib}
|
77
77
|
gem.executables = []
|
78
|
-
gem.required_ruby_version = '>= 2.
|
78
|
+
gem.required_ruby_version = '>= 2.5'
|
79
79
|
gem.licenses = ['DOC']
|
80
80
|
gem.metadata = {
|
81
81
|
'bug_tracker_uri' => 'https://github.com/DOCGroup/ACE_TAO/issues',
|
@@ -93,14 +93,14 @@ t_ = file File.join('pkg', "#{R2CORBA::Gem.gem_name('r2corba', R2CORBA::R2CORBA_
|
|
93
93
|
gemspec = R2CORBA::Gem.define_spec('r2corba', R2CORBA::R2CORBA_VERSION) do |gem|
|
94
94
|
gem.summary = %Q{CORBA language mapping implementation for Ruby}
|
95
95
|
gem.description = %Q{OMG CORBA v3.3 compliant CORBA language mapping implementation for Ruby. Depends on ridl gem for providing native Ruby IDL compiler. }
|
96
|
-
gem.email = '
|
96
|
+
gem.email = 'info@remedy.nl'
|
97
97
|
gem.homepage = 'https://www.remedy.nl/opensource/r2corba.html'
|
98
98
|
gem.authors = ['Martin Corino', 'Johnny Willemsen']
|
99
99
|
gem.files = R2CORBA::Gem.manifest
|
100
100
|
gem.extensions = ['mkrf_conf_srcgem.rb']
|
101
101
|
gem.require_paths = %w{lib}
|
102
102
|
gem.executables = %w{ridlc rins r2corba}
|
103
|
-
gem.required_ruby_version = '>= 2.
|
103
|
+
gem.required_ruby_version = '>= 2.5'
|
104
104
|
gem.licenses = ['Nonstandard', 'DOC', 'GPL-2.0']
|
105
105
|
gem.require_paths << 'ext'
|
106
106
|
gem.add_dependency 'ridl', '~> 2.8'
|
@@ -132,14 +132,14 @@ t_ = file File.join('pkg', "#{R2CORBA::Gem.gem_name('r2corba', R2CORBA::R2CORBA_
|
|
132
132
|
gemspec = R2CORBA::Gem.define_spec('r2corba', R2CORBA::R2CORBA_VERSION, :extbin) do |gem|
|
133
133
|
gem.summary = %Q{CORBA language mapping implementation for Ruby (extension binaries)}
|
134
134
|
gem.description = %Q{OMG CORBA v3.3 compliant CORBA language mapping implementation for Ruby. Depends on ridl gem for providing native Ruby IDL compiler. (extension binaries)}
|
135
|
-
gem.email = '
|
135
|
+
gem.email = 'info@remedy.nl'
|
136
136
|
gem.homepage = 'https://www.remedy.nl/opensource/r2corba.html'
|
137
137
|
gem.authors = ['Martin Corino', 'Johnny Willemsen']
|
138
138
|
gem.files = R2CORBA::Gem.manifest(:extbin)
|
139
139
|
gem.extensions = []
|
140
140
|
gem.require_paths = %w{ext}
|
141
141
|
gem.executables = []
|
142
|
-
gem.required_ruby_version = '>= 2.
|
142
|
+
gem.required_ruby_version = '>= 2.5'
|
143
143
|
gem.licenses = ['Nonstandard', 'DOC']
|
144
144
|
gem.rdoc_options << '--exclude=\\.dll' << '--exclude=\\.so'
|
145
145
|
gem.metadata = {
|
@@ -175,7 +175,7 @@ t_ = file File.join('pkg', "#{R2CORBA::Gem.gem_name('r2corba', R2CORBA::R2CORBA_
|
|
175
175
|
gemspec = R2CORBA::Gem.define_spec('r2corba', R2CORBA::R2CORBA_VERSION, :bin) do |gem|
|
176
176
|
gem.summary = %Q{CORBA language mapping implementation for Ruby}
|
177
177
|
gem.description = %Q{OMG CORBA v3.3 compliant CORBA language mapping implementation for Ruby. Depends on ridl gem for providing native Ruby IDL compiler. }
|
178
|
-
gem.email = '
|
178
|
+
gem.email = 'info@remedy.nl'
|
179
179
|
gem.homepage = 'https://www.remedy.nl/opensource/r2corba.html'
|
180
180
|
gem.authors = ['Martin Corino', 'Johnny Willemsen']
|
181
181
|
gem.files = R2CORBA::Gem.manifest(:bin)
|
@@ -184,11 +184,11 @@ t_ = file File.join('pkg', "#{R2CORBA::Gem.gem_name('r2corba', R2CORBA::R2CORBA_
|
|
184
184
|
gem.extensions = ['mkrf_conf_bingem.rb']
|
185
185
|
if defined?(JRUBY_VERSION)
|
186
186
|
gem.require_paths << 'jacorb/lib'
|
187
|
-
gem.required_ruby_version = '>= 2.
|
187
|
+
gem.required_ruby_version = '>= 2.5'
|
188
188
|
gem.licenses = ['Nonstandard', 'GPL-2.0']
|
189
189
|
else
|
190
190
|
gem.files << File.join('ext', '.keep') unless ENV['FULL_BINGEM'] # to force installation of ext folder if libs are left out
|
191
|
-
gem.required_ruby_version = '>= 2.
|
191
|
+
gem.required_ruby_version = '>= 2.5'
|
192
192
|
gem.licenses = ['Nonstandard', 'DOC', 'GPL-2.0']
|
193
193
|
gem.require_paths << 'ext'
|
194
194
|
end
|
@@ -218,14 +218,14 @@ unless defined?(JRUBY_VERSION)
|
|
218
218
|
gemspec = R2CORBA::Gem.define_spec('r2corba_devkit', '1.0.0', :devkit) do |gem|
|
219
219
|
gem.summary = %Q{R2CORBA Devkit faker for RubyInstaller Rubies}
|
220
220
|
gem.description = %Q{Fake Devkit loader to satisfy stupid RubyInstaller pre-install hook. }
|
221
|
-
gem.email = '
|
221
|
+
gem.email = 'info@remedy.nl'
|
222
222
|
gem.homepage = 'https://www.remedy.nl/opensource/r2corba.html'
|
223
223
|
gem.authors = ['Martin Corino', 'Johnny Willemsen']
|
224
224
|
gem.files = 'lib/rubygems_plugin.rb'
|
225
225
|
gem.require_paths = %w{lib}
|
226
226
|
gem.executables = []
|
227
227
|
gem.extensions = []
|
228
|
-
gem.required_ruby_version = '>= 2.
|
228
|
+
gem.required_ruby_version = '>= 2.5'
|
229
229
|
gem.licenses = ['Nonstandard']
|
230
230
|
gem.metadata = {
|
231
231
|
'bug_tracker_uri' => 'https://github.com/RemedyIT/r2corba/issues',
|
data/test/lib/test.rb
CHANGED
@@ -21,7 +21,7 @@ module TestUtil
|
|
21
21
|
end
|
22
22
|
|
23
23
|
def self.is_win32?
|
24
|
-
(RB_CONFIG['target_os'] =~ /win32/ || RB_CONFIG['target_os'] =~ /
|
24
|
+
(RB_CONFIG['target_os'] =~ /win32/ || RB_CONFIG['target_os'] =~ /mingw/) ? true : false
|
25
25
|
end
|
26
26
|
|
27
27
|
RBVersion = RUBY_VERSION.split('.').collect {|x| x.to_i}
|
data/test/test_runner.rb
CHANGED
@@ -19,7 +19,7 @@ else
|
|
19
19
|
RB_CONFIG = Config::CONFIG
|
20
20
|
end
|
21
21
|
|
22
|
-
is_win32 = (RB_CONFIG['target_os'] =~ /win32/ || RB_CONFIG['target_os'] =~ /
|
22
|
+
is_win32 = (RB_CONFIG['target_os'] =~ /win32/ || RB_CONFIG['target_os'] =~ /mingw/) ? true : false
|
23
23
|
|
24
24
|
root_path = File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
25
25
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: r2corba
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.2
|
5
5
|
platform: universal-java
|
6
6
|
authors:
|
7
7
|
- Martin Corino
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2022-12-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
@@ -41,7 +41,7 @@ dependencies:
|
|
41
41
|
version: 12.3.3
|
42
42
|
description: 'OMG CORBA v3.3 compliant CORBA language mapping implementation for Ruby.
|
43
43
|
Depends on ridl gem for providing native Ruby IDL compiler. '
|
44
|
-
email:
|
44
|
+
email: info@remedy.nl
|
45
45
|
executables:
|
46
46
|
- ridlc
|
47
47
|
- rins
|
@@ -298,14 +298,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
298
298
|
requirements:
|
299
299
|
- - ">="
|
300
300
|
- !ruby/object:Gem::Version
|
301
|
-
version: '2.
|
301
|
+
version: '2.5'
|
302
302
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
303
303
|
requirements:
|
304
304
|
- - ">="
|
305
305
|
- !ruby/object:Gem::Version
|
306
306
|
version: '0'
|
307
307
|
requirements: []
|
308
|
-
rubygems_version: 3.
|
308
|
+
rubygems_version: 3.3.25
|
309
309
|
signing_key:
|
310
310
|
specification_version: 4
|
311
311
|
summary: CORBA language mapping implementation for Ruby
|