autobuild 1.5.54 → 1.5.55

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,8 @@
1
+ == Version 1.5.55
2
+ * quickfix release
3
+ * really fix update vs. patching problem. The issue was related to patches
4
+ that create new files
5
+
1
6
  == Version 1.5.54
2
7
  * quickfix release
3
8
  * fix update in zip importer. The zip importer was previously always keeping
@@ -153,7 +153,7 @@ module Autobuild
153
153
  else base_dir
154
154
  end
155
155
 
156
- cmd = [ '-u', '-o', cachefile, '-d', main_dir ]
156
+ cmd = [ '-o', cachefile, '-d', main_dir ]
157
157
  Subprocess.run(package, :import, Autobuild.tool('unzip'), *cmd)
158
158
 
159
159
  if archive_dir
@@ -147,7 +147,7 @@ class Importer
147
147
  def call_patch(package, reverse, file)
148
148
  patch = Autobuild.tool('patch')
149
149
  Dir.chdir(package.srcdir) do
150
- Subprocess.run(package, :patch, patch, '-p0', (reverse ? '-R' : nil), :input => file)
150
+ Subprocess.run(package, :patch, patch, '-p0', (reverse ? '-R' : nil), '--forward', :input => file)
151
151
  end
152
152
  end
153
153
 
@@ -1,5 +1,5 @@
1
1
  module Autobuild
2
- VERSION = "1.5.54" unless defined? Autobuild::VERSION
2
+ VERSION = "1.5.55" 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: 111
4
+ hash: 109
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 5
9
- - 54
10
- version: 1.5.54
9
+ - 55
10
+ version: 1.5.55
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sylvain Joyeux