bake-toolkit 2.1.0 → 2.1.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 55fd9b69d1c25ad937a08eaec9f8d12d055a1fbc
4
- data.tar.gz: 269feb7487d2f484ce31f3fa6be8ca629b5c3de8
3
+ metadata.gz: 5ccf64f455c7e095dbf18e10f1c4d05fbdb0d448
4
+ data.tar.gz: a3a1547e16512c088860845026705e2ccd9b78e2
5
5
  SHA512:
6
- metadata.gz: 75783f20ffd0d0e08b453a2e3dc1394c32c2bb609c9c2873f49d6c18285541f1667e1ce6b9e0e0709562b66c404530e9873bc5b3a30501a98466f00499798f33
7
- data.tar.gz: fdd3a74eace9ba8618e611306997846cf63d2c8aeb84d7fb2c0a0e504c58daafe3b689825043884d32a4a0f3e5918f2269be3884c4b921e3a92ce16497486f44
6
+ metadata.gz: aa91172b62ecfec956a919dd0cb739d1c4a4232ad0799cc966c1fea7f1f785e579b7169e9c390b1927183b3ec71cee0628dd42550204ed10db75ffab9ef80708
7
+ data.tar.gz: 7a5f55008fa6edd039f0a5df8c4eb2564e9326ebc73090bc18b579b16a79d2c69fe2730cf2d0f123b72538012946272481b5d0cfdf4ea6fb07c37ddd42418509
@@ -7,6 +7,12 @@
7
7
  <body>
8
8
  <h1>Changelog</h1>
9
9
 
10
+ January 26, 2015 - bake-toolkit 2.1.1<br>
11
+ <ul>
12
+ <li><b>Bugfix: dependent header file check in 2.1.0 were broken</b>
13
+ <li><b>Changed: files defined via glob pattern are sorted alphabetically now</b>
14
+ </ul>
15
+
10
16
  January 23, 2015 - bake-toolkit 2.1.0<br>
11
17
  <ul>
12
18
  <li><b>Bugfix: fixed crash in warning output if setting variable via cmd did not work</b>
data/doc/index.html CHANGED
@@ -72,7 +72,7 @@ bake is used to build software <font color="#009900"><b>fast</b></font> and <fon
72
72
 
73
73
  <p>
74
74
  <hr>
75
- <table width="100%" border="0"><tr><td align="left">Described bake-toolkit version: 2.1.0</td><td align="right">January 23, 2015</td></tr></table>
75
+ <table width="100%" border="0"><tr><td align="left">Described bake-toolkit version: 2.1.1</td><td align="right">January 26, 2015</td></tr></table>
76
76
 
77
77
  </body>
78
78
 
@@ -47,7 +47,6 @@ module Bake
47
47
 
48
48
  begin
49
49
  File.readlines(dep_filename_conv).map{|line| line.strip}.each do |dep|
50
- dep = "/usr/bla"
51
50
  if not File.exist?(dep)
52
51
  # we need a hack here. with some windows configurations the compiler prints unix paths
53
52
  # into the dep file which cannot be found easily. this will be true for system includes,
@@ -308,7 +307,7 @@ module Bake
308
307
  source_files = Set.new
309
308
  @config.files.each do |sources|
310
309
  p = sources.name
311
- res = Dir.glob(p)
310
+ res = Dir.glob(p).sort
312
311
  if res.length == 0 and cleaning == false
313
312
  if not p.include?"*" and not p.include?"?"
314
313
  Bake.formatter.printError("Source file '#{p}' not found", sources)
@@ -1,7 +1,7 @@
1
1
  module Bake
2
2
  class Version
3
3
  def self.number
4
- "2.1.0"
4
+ "2.1.1"
5
5
  end
6
6
  end
7
7
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bake-toolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Schaal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-23 00:00:00.000000000 Z
11
+ date: 2015-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rtext