autobuild 1.5.48 → 1.5.49

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,6 @@
1
+ == Version 1.5.49
2
+ * when starting a command, save the command environment in the logfile
3
+
1
4
  == Version 1.5.48
2
5
  * fix pkg-config support for Debian multiarch
3
6
 
@@ -170,7 +170,10 @@ module Autobuild::Subprocess
170
170
  end
171
171
  logfile.puts "#{Time.now}: running"
172
172
  logfile.puts " #{command.join(" ")}"
173
- logfile.puts
173
+ logfile.puts "with environment:"
174
+ ENV.keys.sort.each do |key|
175
+ logfile.puts " '#{key}'='#{ENV[key]}'"
176
+ end
174
177
  logfile.flush
175
178
  logfile.sync = true
176
179
 
@@ -1,5 +1,5 @@
1
1
  module Autobuild
2
- VERSION = "1.5.48" unless defined? Autobuild::VERSION
2
+ VERSION = "1.5.49" unless defined? Autobuild::VERSION
3
3
  end
4
4
 
5
5
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autobuild
3
3
  version: !ruby/object:Gem::Version
4
- hash: 99
4
+ hash: 97
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 5
9
- - 48
10
- version: 1.5.48
9
+ - 49
10
+ version: 1.5.49
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sylvain Joyeux