autobuild 1.5.40 → 1.5.41

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.
@@ -1,3 +1,7 @@
1
+ == Version 1.5.41
2
+ * git: properly handle push_to_branch at checkout (was working during updates)
3
+ * cmake: more specific progress message for configuration
4
+
1
5
  == Version 1.5.40
2
6
  * remove changes that should never have been released
3
7
 
@@ -340,6 +340,10 @@ module Autobuild
340
340
  Subprocess.run(package, :import, Autobuild.tool('git'), 'config',
341
341
  "--replace-all", "remote.autobuild.pushurl", push_to)
342
342
  end
343
+ if push_to_branch
344
+ Subprocess.run(package, :import, Autobuild.tool('git'), 'config',
345
+ "--replace-all", "remote.autobuild.push", "refs/heads/#{local_branch || branch}:refs/heads/#{push_to_branch}")
346
+ end
343
347
 
344
348
  # If we are tracking a commit/tag, just check it out
345
349
  if commit || tag
@@ -165,7 +165,7 @@ module Autobuild
165
165
  end
166
166
  command << srcdir
167
167
 
168
- progress "generating and configuring build system for %s"
168
+ progress "configuring CMake build system for %s"
169
169
  if full_reconfigures?
170
170
  FileUtils.rm_f cmake_cache
171
171
  end
@@ -1,5 +1,5 @@
1
1
  module Autobuild
2
- VERSION = "1.5.40" unless defined? Autobuild::VERSION
2
+ VERSION = "1.5.41" 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: 83
4
+ hash: 81
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 5
9
- - 40
10
- version: 1.5.40
9
+ - 41
10
+ version: 1.5.41
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sylvain Joyeux
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-05-24 00:00:00 Z
18
+ date: 2011-06-22 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: rake