autobuild 1.5.52.rc3 → 1.5.52.rc4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Changes.txt CHANGED
@@ -1,3 +1,11 @@
1
+ == Version 1.5.52
2
+ * fix local in the git importer
3
+ * in log files, display the command both before and after the environment dump.
4
+ This makes the browsing of these files easier
5
+ * autotools: fix some issues on package checkout
6
+ * orogen: add raw option support
7
+ * stats: add a timestamp on each log line
8
+
1
9
  == Version 1.5.51
2
10
  * quickfix release for broken LD_LIBRARY_PATH update
3
11
 
@@ -277,7 +277,6 @@ module Autobuild
277
277
 
278
278
  cmdline = cmdline.sort
279
279
  cmdline << orogen_file
280
- puts cmdline.inspect
281
280
 
282
281
  needs_regen = Autobuild::Orogen.always_regenerate?
283
282
 
@@ -175,6 +175,9 @@ module Autobuild::Subprocess
175
175
  if Autobuild.keep_oldlogs
176
176
  logfile.puts
177
177
  end
178
+ logfile.puts
179
+ logfile.puts "#{Time.now}: running"
180
+ logfile.puts " #{command.join(" ")}"
178
181
  logfile.puts "with environment:"
179
182
  ENV.keys.sort.each do |key|
180
183
  logfile.puts " '#{key}'='#{ENV[key]}'"
@@ -1,5 +1,5 @@
1
1
  module Autobuild
2
- VERSION = "1.5.52.rc3" unless defined? Autobuild::VERSION
2
+ VERSION = "1.5.52.rc4" unless defined? Autobuild::VERSION
3
3
  end
4
4
 
5
5
 
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autobuild
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15424451
4
+ hash: 15424461
5
5
  prerelease: 7
6
6
  segments:
7
7
  - 1
8
8
  - 5
9
9
  - 52
10
10
  - rc
11
- - 3
12
- version: 1.5.52.rc3
11
+ - 4
12
+ version: 1.5.52.rc4
13
13
  platform: ruby
14
14
  authors:
15
15
  - Sylvain Joyeux
@@ -87,13 +87,14 @@ dependencies:
87
87
  requirement: &id005 !ruby/object:Gem::Requirement
88
88
  none: false
89
89
  requirements:
90
- - - ~>
90
+ - - ">="
91
91
  - !ruby/object:Gem::Version
92
- hash: 27
92
+ hash: 47
93
93
  segments:
94
94
  - 2
95
- - 12
96
- version: "2.12"
95
+ - 8
96
+ - 0
97
+ version: 2.8.0
97
98
  type: :development
98
99
  version_requirements: *id005
99
100
  description: |-
@@ -165,7 +166,6 @@ files:
165
166
  - test/test_import_tar.rb
166
167
  - test/test_subcommand.rb
167
168
  - test/tools.rb
168
- - .gemtest
169
169
  homepage:
170
170
  licenses: []
171
171
 
data/.gemtest DELETED
File without changes