autoproj 1.7.15 → 1.7.16.rc2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,9 @@
1
+ = Version 1.7.16
2
+ * when a manifest.xml is invalid, make sure that the error message pinpoints
3
+ which package it concerns (mainly for proper reporting in build servers)
4
+ * stop displaying configuration after bootstrap. It's a lot of text and cannot
5
+ be read until you know what you are looking for
6
+
1
7
  = Version 1.7.15
2
8
  * remove dependency on nokogiri. This is the first step in an effort to make
3
9
  autoproj as straightforward to bootstrap as possible.
@@ -15,7 +15,7 @@ include Autoproj
15
15
  InputError = Autoproj::InputError
16
16
 
17
17
  def color(*args)
18
- Autoproj.console.color(*args)
18
+ Autoproj.color(*args)
19
19
  end
20
20
 
21
21
  def report
@@ -1019,7 +1019,7 @@ where 'mode' is one of:
1019
1019
  bootstrap(*remaining_args)
1020
1020
  remaining_args.clear
1021
1021
 
1022
- @display_configuration = true
1022
+ @display_configuration = false
1023
1023
  Autobuild.do_build = false
1024
1024
  Autobuild.do_update = false
1025
1025
  @update_os_dependencies = false
@@ -2171,7 +2171,7 @@ module Autoproj
2171
2171
  doc =
2172
2172
  begin REXML::Document.new(File.read(file))
2173
2173
  rescue REXML::ParseException => e
2174
- raise ConfigError, "invalid #{file}: #{e.message}"
2174
+ raise Autobuild::PackageException.new(package.name, 'prepare'), "invalid #{file}: #{e.message}"
2175
2175
  end
2176
2176
 
2177
2177
  PackageManifest.new(package, doc)
@@ -1,3 +1,3 @@
1
1
  module Autoproj
2
- VERSION = "1.7.15"
2
+ VERSION = "1.7.16.rc2"
3
3
  end
metadata CHANGED
@@ -1,13 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autoproj
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
5
- prerelease:
4
+ hash: 15424193
5
+ prerelease: 7
6
6
  segments:
7
7
  - 1
8
8
  - 7
9
- - 15
10
- version: 1.7.15
9
+ - 16
10
+ - rc
11
+ - 2
12
+ version: 1.7.16.rc2
11
13
  platform: ruby
12
14
  authors:
13
15
  - Sylvain Joyeux
@@ -184,12 +186,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
184
186
  required_rubygems_version: !ruby/object:Gem::Requirement
185
187
  none: false
186
188
  requirements:
187
- - - ">="
189
+ - - ">"
188
190
  - !ruby/object:Gem::Version
189
- hash: 3
191
+ hash: 25
190
192
  segments:
191
- - 0
192
- version: "0"
193
+ - 1
194
+ - 3
195
+ - 1
196
+ version: 1.3.1
193
197
  requirements: []
194
198
 
195
199
  rubyforge_project: autobuild