taosource 6.2.0 → 7.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f4eac756fec2691225bad8ef77f3a1da14f5355a
4
- data.tar.gz: 95ae4f5dbd2dea21a2d03c46e45231ec46c7c151
2
+ SHA256:
3
+ metadata.gz: fbe42a1133dddb8896258530091b36545b404f006ac94205687cd706da2da1d7
4
+ data.tar.gz: ef8194ff1e9e00234b6682045386fea351d9035d1f8ad1e4dc9d219c90062c27
5
5
  SHA512:
6
- metadata.gz: 6754e564da3d26e8b94aca5c61ce1661cbb2281c7cc680493cdc014644dbdd477bdef55bce59142855b17f3e4126f859dd3357ae019af37b26a15509ec962aa3
7
- data.tar.gz: 1909a031a875e4ec92bac104e568b0533eb7097951550203272ee1635c94ddfb400d98ed17542dc54ccdcc5484d0f34da6943d8188f94ff774929cde0cc50b19
6
+ metadata.gz: 1032bdc50bf7b99d6c0cac58dea7dec8fcda83678e4130a28f9282faabce4ab912a135ea2e2e3806c5ed58b9d3140d1c098ab4deaa350c1c406c761ad6e3057f
7
+ data.tar.gz: 7f771a20eb41aa0f2c8374fc6d4b703f44958b4740855c105b606b39122b7ab34cf6f045ac952aad13dad2c3105cb4cb1bfeb37594300705a1b5dc6712494cbb
@@ -8,7 +8,6 @@
8
8
  # included with this program.
9
9
  #
10
10
  # Copyright (c) Remedy IT Expertise BV
11
- # Chamber of commerce Rotterdam nr.276339, The Netherlands
12
11
  #--------------------------------------------------------------------
13
12
 
14
13
  module TAOGem
@@ -17,4 +16,4 @@ module TAOGem
17
16
  ENV['TAO_ROOT'] = File.join(ENV['ACE_ROOT'], 'TAO')
18
17
  ENV['MPC_ROOT'] = File.join(ENV['ACE_ROOT'], 'MPC')
19
18
 
20
- end
19
+ end
data/mkrf_conf_taogem.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #--------------------------------------------------------------------
2
- # mkrf_conf_taogem.rb - Rakefile generator toasource gem installation
2
+ # mkrf_conf_taogem.rb - Rakefile generator taosource gem installation
3
3
  #
4
4
  # Author: Martin Corino
5
5
  #
@@ -8,7 +8,6 @@
8
8
  # included with this program.
9
9
  #
10
10
  # Copyright (c) Remedy IT Expertise BV
11
- # Chamber of commerce Rotterdam nr.276339, The Netherlands
12
11
  #--------------------------------------------------------------------
13
12
 
14
13
  # generate Rakefile with empty default task
@@ -24,7 +23,6 @@ File.open('Rakefile', 'w') do |f|
24
23
  # included with this program.
25
24
  #
26
25
  # Copyright (c) Remedy IT Expertise BV
27
- # Chamber of commerce Rotterdam nr.276339, The Netherlands
28
26
  #--------------------------------------------------------------------
29
27
 
30
28
  task :default
@@ -47,26 +45,27 @@ begin
47
45
  Zlib::GzipReader.wrap io do |gzio|
48
46
  tar = Gem::Package::TarReader.new gzio
49
47
  tar.each do |entry|
48
+ if entry.file?
49
+ raise "Failed to extract #{src_pkg}: invalid source path #{entry.full_name}" if entry.full_name.start_with? '/'
50
50
 
51
- raise "Failed to extract #{src_pkg}: invalid source path #{entry.full_name}" if entry.full_name.start_with? '/'
51
+ destination = File.join src_root, entry.full_name
52
+ destination = File.expand_path destination
52
53
 
53
- destination = File.join src_root, entry.full_name
54
- destination = File.expand_path destination
54
+ raise "Failed to extract #{src_pkg}: invalid destination path #{destination}" unless destination.start_with? src_root
55
55
 
56
- raise "Failed to extract #{src_pkg}: invalid destination path #{destination}" unless destination.start_with? src_root
56
+ destination.untaint
57
57
 
58
- destination.untaint
58
+ FileUtils.rm_rf destination
59
59
 
60
- FileUtils.rm_rf destination
60
+ FileUtils.mkdir_p File.dirname destination
61
61
 
62
- FileUtils.mkdir_p File.dirname destination
62
+ open destination, 'wb', entry.header.mode do |out|
63
+ out.write entry.read
64
+ out.fsync rescue nil # for filesystems without fsync(2)
65
+ end
63
66
 
64
- open destination, 'wb', entry.header.mode do |out|
65
- out.write entry.read
66
- out.fsync rescue nil # for filesystems without fsync(2)
67
+ puts destination
67
68
  end
68
-
69
- puts destination
70
69
  end
71
70
  end
72
71
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: taosource
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.2.0
4
+ version: 7.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Corino
8
+ - Johnny Willemsen
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2013-08-09 00:00:00.000000000 Z
12
+ date: 2021-03-16 00:00:00.000000000 Z
12
13
  dependencies: []
13
14
  description: TAO sourcecode for building R2CORBA.
14
15
  email: mcorino@remedy.nl
@@ -18,29 +19,30 @@ extensions:
18
19
  extra_rdoc_files: []
19
20
  files:
20
21
  - lib/taosource/rootpaths.rb
21
- - src/ACE+TAO-src-6.2.0.tar.gz
22
22
  - mkrf_conf_taogem.rb
23
- homepage: https://osportal.remedy.nl/projects/r2corba
23
+ - src/ACE+TAO-src-7.0.1.tar.gz
24
+ homepage: https://www.remedy.nl/opensource/r2corba.html
24
25
  licenses:
25
- - ACE
26
- metadata: {}
26
+ - DOC
27
+ metadata:
28
+ bug_tracker_uri: https://github.com/DOCGroup/ACE_TAO/issues
29
+ source_code_uri: https://github.com/DOCGroup/ACE_TAO
27
30
  post_install_message:
28
31
  rdoc_options: []
29
32
  require_paths:
30
33
  - lib
31
34
  required_ruby_version: !ruby/object:Gem::Requirement
32
35
  requirements:
33
- - - '>='
36
+ - - ">="
34
37
  - !ruby/object:Gem::Version
35
- version: 1.8.6
38
+ version: '2.0'
36
39
  required_rubygems_version: !ruby/object:Gem::Requirement
37
40
  requirements:
38
- - - '>='
41
+ - - ">="
39
42
  - !ruby/object:Gem::Version
40
43
  version: '0'
41
44
  requirements: []
42
- rubyforge_project:
43
- rubygems_version: 2.0.3
45
+ rubygems_version: 3.1.4
44
46
  signing_key:
45
47
  specification_version: 4
46
48
  summary: TAO sourcecode for building R2CORBA