autobuild 1.5.33 → 1.5.34
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
|
@@ -57,12 +57,15 @@ module Autobuild
|
|
|
57
57
|
def buildstamp; "#{builddir}/#{STAMPFILE}" end
|
|
58
58
|
|
|
59
59
|
def prepare_for_forced_build
|
|
60
|
+
super
|
|
61
|
+
|
|
60
62
|
FileUtils.rm_f buildstamp
|
|
61
63
|
FileUtils.rm_f configurestamp
|
|
62
64
|
end
|
|
63
65
|
|
|
64
66
|
def prepare_for_rebuild
|
|
65
|
-
|
|
67
|
+
super
|
|
68
|
+
|
|
66
69
|
if File.exists?(builddir) && builddir != srcdir
|
|
67
70
|
FileUtils.rm_rf builddir
|
|
68
71
|
end
|
data/lib/autobuild/package.rb
CHANGED
|
@@ -168,6 +168,8 @@ module Autobuild
|
|
|
168
168
|
# Called when the user asked for a full rebuild. It should delete the
|
|
169
169
|
# build products so that a full build is retriggered.
|
|
170
170
|
def prepare_for_rebuild
|
|
171
|
+
prepare_for_forced_build
|
|
172
|
+
|
|
171
173
|
if File.exists?(installstamp)
|
|
172
174
|
FileUtils.rm_f installstamp
|
|
173
175
|
end
|
data/lib/autobuild/version.rb
CHANGED
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:
|
|
4
|
+
hash: 71
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 5
|
|
9
|
-
-
|
|
10
|
-
version: 1.5.
|
|
9
|
+
- 34
|
|
10
|
+
version: 1.5.34
|
|
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-02-
|
|
18
|
+
date: 2011-02-02 00:00:00 +01:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|