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.
- data/History.txt +6 -0
- data/bin/autoproj +1 -1
- data/lib/autoproj/cmdline.rb +1 -1
- data/lib/autoproj/manifest.rb +1 -1
- data/lib/autoproj/version.rb +1 -1
- metadata +12 -8
data/History.txt
CHANGED
@@ -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.
|
data/bin/autoproj
CHANGED
data/lib/autoproj/cmdline.rb
CHANGED
@@ -1019,7 +1019,7 @@ where 'mode' is one of:
|
|
1019
1019
|
bootstrap(*remaining_args)
|
1020
1020
|
remaining_args.clear
|
1021
1021
|
|
1022
|
-
@display_configuration =
|
1022
|
+
@display_configuration = false
|
1023
1023
|
Autobuild.do_build = false
|
1024
1024
|
Autobuild.do_update = false
|
1025
1025
|
@update_os_dependencies = false
|
data/lib/autoproj/manifest.rb
CHANGED
@@ -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
|
2174
|
+
raise Autobuild::PackageException.new(package.name, 'prepare'), "invalid #{file}: #{e.message}"
|
2175
2175
|
end
|
2176
2176
|
|
2177
2177
|
PackageManifest.new(package, doc)
|
data/lib/autoproj/version.rb
CHANGED
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:
|
5
|
-
prerelease:
|
4
|
+
hash: 15424193
|
5
|
+
prerelease: 7
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 7
|
9
|
-
-
|
10
|
-
|
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:
|
191
|
+
hash: 25
|
190
192
|
segments:
|
191
|
-
-
|
192
|
-
|
193
|
+
- 1
|
194
|
+
- 3
|
195
|
+
- 1
|
196
|
+
version: 1.3.1
|
193
197
|
requirements: []
|
194
198
|
|
195
199
|
rubyforge_project: autobuild
|