autoproj 1.13.4 → 1.13.5.rc1

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
2
  SHA1:
3
- metadata.gz: cf8eb8b24aec621159d6e9502228758b76978903
4
- data.tar.gz: 23b79851f11f3127c416d8af6f1fa30bc30da134
3
+ metadata.gz: c67236c1f7ec57b126941e4e654c6f10eaa44fd5
4
+ data.tar.gz: 58bcd6c7bf0203687d63612691d173060f17d472
5
5
  SHA512:
6
- metadata.gz: 5353eb913981abe06b00a035423e80bd44d57193429d264a068fb2c215bcbc4802485e41809c275383af2811a41e4efa86d1c2301b5919892371f36d59be9cd8
7
- data.tar.gz: 2ace1ed4f065d92d6b5e8acc07c37b9e0b2c20c40a9b879d02dde824e72c2ffa923389985c732733ec8f93633cf1038a2423efefa27a610e55e8da0587c6ad15
6
+ metadata.gz: cc3cb595b9560f2aef764d9de0d458bf83103a8d846feb00454511f8828af64609e1023208b4e49ffea0797a55de63ad5716cde218017022444039fc70580257
7
+ data.tar.gz: 03f620953e099bc386bdb893b38b498f5c1ceb5dc374a7ec57e886724346460897f8f03dc1afc4654c1416c495daee50047bfacbe8d24ab48359802219fb920d
@@ -74,7 +74,7 @@ module Autobuild
74
74
 
75
75
  module Subprocess
76
76
  def self.run(name, phase, *cmd)
77
- output = `#{cmd.join(" ")}`
77
+ output = `'#{cmd.join("' '")}'`
78
78
  if $?.exitstatus != 0
79
79
  STDERR.puts "ERROR: failed to run #{cmd.join(" ")}"
80
80
  STDERR.puts "ERROR: command output is: #{output}"
@@ -370,6 +370,16 @@ module Autoproj
370
370
  @ruby_executable ||= OSDependencies.autodetect_ruby_program
371
371
  end
372
372
 
373
+ # For Autoproj 2.0 forward compatibility
374
+ def shell_helpers?
375
+ Autoproj.shell_helpers?
376
+ end
377
+
378
+ # For Autoproj 2.0 forward compatibility
379
+ def shell_helpers=(flag)
380
+ Autoproj.shell_helpers = flag
381
+ end
382
+
373
383
  def validate_ruby_executable
374
384
  if has_value_for?('ruby_executable')
375
385
  expected = get('ruby_executable')
@@ -2879,12 +2889,6 @@ DEFS = <<EODEFS
2879
2889
  ---
2880
2890
  none: ignore
2881
2891
  ruby19:
2882
- debian:
2883
- - ruby1.9.1
2884
- - ruby1.9.1-dev
2885
- - rubygems1.9.1
2886
- - rake
2887
- - rubygems-integration
2888
2892
  ubuntu:
2889
2893
  '12.04':
2890
2894
  - ruby1.9.1
@@ -2893,17 +2897,7 @@ ruby19:
2893
2897
  - ri1.9.1
2894
2898
  - libopenssl-ruby1.9.1
2895
2899
  - rake
2896
- default:
2897
- - ruby1.9.1
2898
- - ruby1.9.1-dev
2899
- - rubygems1.9.1
2900
- - ri1.9.1
2901
- - libopenssl-ruby1.9.1
2902
- - rake
2903
- - rubygems-integration
2904
- gentoo:
2905
- - dev-lang/ruby:1.9
2906
- - rake
2900
+ default: ignore
2907
2901
  fedora:
2908
2902
  '17':
2909
2903
  - ruby
@@ -2938,12 +2932,13 @@ ruby20:
2938
2932
  default: ignore
2939
2933
  ruby21:
2940
2934
  debian:
2941
- - ruby2.1
2942
- - ruby2.1-dev
2943
- - rake
2944
- - rubygems-integration
2935
+ jessie:
2936
+ - ruby2.1
2937
+ - ruby2.1-dev
2938
+ - rake
2939
+ - rubygems-integration
2945
2940
  ubuntu:
2946
- '14.10':
2941
+ 14.10,15.04,15.10:
2947
2942
  - ruby2.1
2948
2943
  - ruby2.1-dev
2949
2944
  - rake
@@ -2953,6 +2948,29 @@ ruby21:
2953
2948
  macos-brew:
2954
2949
  - gem: rake
2955
2950
  default: ignore
2951
+ ruby22:
2952
+ ubuntu:
2953
+ '15.10':
2954
+ - ruby2.2
2955
+ - ruby2.2-dev
2956
+ - rake
2957
+ - rubygems-integration
2958
+ default: ignore
2959
+ default: ignore
2960
+ ruby23:
2961
+ debian:
2962
+ unstable:
2963
+ - ruby2.3
2964
+ - ruby2.3-dev
2965
+ - rake
2966
+ - rubygems-integration
2967
+ ubuntu:
2968
+ '16.04':
2969
+ - ruby2.3-dev
2970
+ - rake
2971
+ - rubygems-integration
2972
+ default: ignore
2973
+ default: ignore
2956
2974
  build-essential:
2957
2975
  debian,ubuntu: build-essential
2958
2976
  gentoo: ignore
@@ -74,7 +74,7 @@ module Autobuild
74
74
 
75
75
  module Subprocess
76
76
  def self.run(name, phase, *cmd)
77
- output = `#{cmd.join(" ")}`
77
+ output = `'#{cmd.join("' '")}'`
78
78
  if $?.exitstatus != 0
79
79
  STDERR.puts "ERROR: failed to run #{cmd.join(" ")}"
80
80
  STDERR.puts "ERROR: command output is: #{output}"
@@ -179,6 +179,16 @@ module Autoproj
179
179
  @ruby_executable ||= OSDependencies.autodetect_ruby_program
180
180
  end
181
181
 
182
+ # For Autoproj 2.0 forward compatibility
183
+ def shell_helpers?
184
+ Autoproj.shell_helpers?
185
+ end
186
+
187
+ # For Autoproj 2.0 forward compatibility
188
+ def shell_helpers=(flag)
189
+ Autoproj.shell_helpers = flag
190
+ end
191
+
182
192
  def validate_ruby_executable
183
193
  if has_value_for?('ruby_executable')
184
194
  expected = get('ruby_executable')
@@ -2,13 +2,6 @@
2
2
  none: ignore
3
3
 
4
4
  ruby19:
5
- debian:
6
- - ruby1.9.1
7
- - ruby1.9.1-dev
8
- - rubygems1.9.1
9
- - rake
10
- - rubygems-integration
11
-
12
5
  ubuntu:
13
6
  '12.04':
14
7
  - ruby1.9.1
@@ -17,17 +10,7 @@ ruby19:
17
10
  - ri1.9.1
18
11
  - libopenssl-ruby1.9.1
19
12
  - rake
20
- default:
21
- - ruby1.9.1
22
- - ruby1.9.1-dev
23
- - rubygems1.9.1
24
- - ri1.9.1
25
- - libopenssl-ruby1.9.1
26
- - rake
27
- - rubygems-integration
28
- gentoo:
29
- - dev-lang/ruby:1.9
30
- - rake
13
+ default: ignore
31
14
  fedora:
32
15
  "17":
33
16
  - ruby
@@ -64,12 +47,13 @@ ruby20:
64
47
 
65
48
  ruby21:
66
49
  debian:
67
- - ruby2.1
68
- - ruby2.1-dev
69
- - rake
70
- - rubygems-integration
50
+ jessie:
51
+ - ruby2.1
52
+ - ruby2.1-dev
53
+ - rake
54
+ - rubygems-integration
71
55
  ubuntu:
72
- '14.10':
56
+ '14.10,15.04,15.10':
73
57
  - ruby2.1
74
58
  - ruby2.1-dev
75
59
  - rake
@@ -80,6 +64,31 @@ ruby21:
80
64
  - gem: rake
81
65
  default: ignore # we assume that if the user has a ruby 2.1 runtime, it is usable
82
66
 
67
+ ruby22:
68
+ ubuntu:
69
+ '15.10':
70
+ - ruby2.2
71
+ - ruby2.2-dev
72
+ - rake
73
+ - rubygems-integration
74
+ default: ignore
75
+ default: ignore # we assume that if the user has a ruby 2.2 runtime, it is usable
76
+
77
+ ruby23:
78
+ debian:
79
+ unstable:
80
+ - ruby2.3
81
+ - ruby2.3-dev
82
+ - rake
83
+ - rubygems-integration
84
+ ubuntu:
85
+ '16.04':
86
+ - ruby2.3-dev
87
+ - rake
88
+ - rubygems-integration
89
+ default: ignore
90
+ default: ignore # we assume that if the user has a ruby 2.3 runtime, it is usable
91
+
83
92
  build-essential:
84
93
  debian,ubuntu: build-essential
85
94
  gentoo: ignore
@@ -1,3 +1,3 @@
1
1
  module Autoproj
2
- VERSION = "1.13.4"
2
+ VERSION = "1.13.5.rc1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autoproj
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.4
4
+ version: 1.13.5.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rock Core Developers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-08 00:00:00.000000000 Z
11
+ date: 2016-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: autobuild
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '3.14'
75
+ version: '3.15'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '3.14'
82
+ version: '3.15'
83
83
  description: autoproj is a manager for sets of software packages. It allows the user
84
84
  to import and build packages from source, still using the underlying distribution's
85
85
  native package manager for software that is available on it.
@@ -234,12 +234,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
234
234
  version: 1.9.2
235
235
  required_rubygems_version: !ruby/object:Gem::Requirement
236
236
  requirements:
237
- - - ">="
237
+ - - ">"
238
238
  - !ruby/object:Gem::Version
239
- version: '0'
239
+ version: 1.3.1
240
240
  requirements: []
241
241
  rubyforge_project:
242
- rubygems_version: 2.2.3
242
+ rubygems_version: 2.5.1
243
243
  signing_key:
244
244
  specification_version: 4
245
245
  summary: Easy installation and management of sets of software packages