autobuild 1.5.46 → 1.5.47

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,11 @@
1
+ == Version 1.5.47
2
+ * fix behaviour of parallel_build_level if the parsing of /proc/cpuinfo fails.
3
+ This fixes issues in particular on ARM-based Linux platforms
4
+
5
+ == Version 1.5.46
6
+ * make the subversion importers accept :patches (the same way than 1.5.43 fixed
7
+ that for CVS). The other importers should be fine as well.
8
+
1
9
  == Version 1.5.45
2
10
  * fix zip support in the archive importer (patch from Thomas Roehr)
3
11
 
@@ -97,11 +97,17 @@ module Autobuild
97
97
  else
98
98
  @processor_count = processor_ids.size
99
99
  end
100
- else
100
+ end
101
+
102
+ # The format of the cpuinfo file is ... let's say not very standardized.
103
+ # If the cpuinfo detection fails, inform the user and set it to 1
104
+ if !@processor_count
101
105
  # Hug... What kind of system is it ?
102
106
  STDERR.puts "INFO: cannot autodetect the number of CPUs on this sytem"
103
107
  @processor_count = 1
104
108
  end
109
+
110
+ @processor_count
105
111
  end
106
112
  end
107
113
 
@@ -1,5 +1,5 @@
1
1
  module Autobuild
2
- VERSION = "1.5.46" unless defined? Autobuild::VERSION
2
+ VERSION = "1.5.47" 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: 95
4
+ hash: 93
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 5
9
- - 46
10
- version: 1.5.46
9
+ - 47
10
+ version: 1.5.47
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-08-12 00:00:00 Z
18
+ date: 2011-08-19 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: rake