build-tool 0.6.6 → 0.6.7

Sign up to get free protection for your applications and to get access to all the features.
data/History.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ == Version 0.6.7
2
+ === Bugfix
3
+ - Fix [#29650] 'could not parse line' when installing recipe
4
+
1
5
  == Version 0.6.6
2
6
  === Enhancements
3
7
  - cmake: Make it possible to set option not starting with -D
@@ -27,6 +27,8 @@ def make( target, build_directory, environment )
27
27
  logger.error( line )
28
28
  elsif line.index( /(core dumped)/ )
29
29
  logger.error( line )
30
+ elsif line.index( /undefined reference to / )
31
+ logger.error( line )
30
32
  else
31
33
  logger.verbose( line )
32
34
  end
@@ -54,7 +54,7 @@ def self.edit( only = [] )
54
54
 
55
55
  # Reparse it
56
56
  values = Array.new
57
- file = IniFile.new( editor.path() )
57
+ file = IniFile.load( editor.path() )
58
58
  file.each do | section, param, value |
59
59
  if section != 'global'
60
60
  logger.error( 'section is not global?' )
@@ -26,5 +26,5 @@ def recipe_version()
26
26
 
27
27
  end
28
28
 
29
- VERSION = Version.new( 0, 6, 6 )
29
+ VERSION = Version.new( 0, 6, 7 )
30
30
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: build-tool
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 6
10
- version: 0.6.6
9
+ - 7
10
+ version: 0.6.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Michael Jansen
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-12-04 00:00:00 +01:00
18
+ date: 2012-12-20 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency