teapot 0.8.2 → 0.8.3
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 +6 -14
- data/README.md +1 -1
- data/lib/teapot/configuration.rb +4 -2
- data/lib/teapot/version.rb +1 -1
- metadata +16 -16
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
metadata.gz: !binary |-
|
|
9
|
-
Yjc4NDQ1Mzg0N2EyNDllZmEzMzI2OWI5OGYzZTNiN2ExYjI2YTM3MzEwMmZk
|
|
10
|
-
MTYwZjg4ZjQxZGU4YzRhMGJjZDJlZTczNzY0YzViYWMyNzA4ZmQzMzc1OTVl
|
|
11
|
-
YjgxNTY5ZjQ2NGQwODNiNjA0MTZkZmVjYWViNzJlZWY4ZTI3ZDQ=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
YjU4NzU4N2VhZDQxYzZkMGIyYWNmYmJlYzM2ZDJkY2UzMmZjYWRmODdlZDg3
|
|
14
|
-
N2JiYzM3Nzc3ZDkxOGFkNWUwZjg1MmQ1MzBmNDg5NWRmODMwNzZmM2Y1YmU2
|
|
15
|
-
MTZiZTY1MmEyZTFmZjgxZGUxOTgxNjY3ZjllZjBhZjRjNGJhNTQ=
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 4f0ac3f8f5a835ed05d72ed5789a28617dc89672
|
|
4
|
+
data.tar.gz: 9cdbc779f23d8f16787091936845897a8ebfcaca
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 763f58203bf5632541edf4cb1db726b955e7971adda43d7af17c0a816ac5dcbd8a0b5d52464c0564824c2e2550ebef04c785ac641f38bb4eb09156f3efb528d1
|
|
7
|
+
data.tar.gz: 2aa81a03e51e0d1cd0a4e028cfc610590941d4522de5b6ae549c80146719d141f3508e3afc3067c82e234f0dd95831b5292295fef42e1bcf89281566e26307d4
|
data/README.md
CHANGED
|
@@ -43,7 +43,7 @@ The resulting libraries will be framework dependent, but are typically located i
|
|
|
43
43
|
|
|
44
44
|
### Example: Compiling TaggedFormat
|
|
45
45
|
|
|
46
|
-
For Linux (requires `clang` and `
|
|
46
|
+
For Linux (requires `clang-3.2` and `libstdc++-4.8`):
|
|
47
47
|
|
|
48
48
|
$ teapot create "Local Tagged Format" https://github.com/dream-framework platform-linux variants tagged-format
|
|
49
49
|
$ cd local-tagged-format
|
data/lib/teapot/configuration.rb
CHANGED
|
@@ -137,7 +137,9 @@ module Teapot
|
|
|
137
137
|
return self if @imports.count == 0
|
|
138
138
|
|
|
139
139
|
# Before trying to materialize, we should load all possible packages:
|
|
140
|
-
@packages.each
|
|
140
|
+
@packages.each do |package|
|
|
141
|
+
@context.load(package) rescue nil
|
|
142
|
+
end
|
|
141
143
|
|
|
142
144
|
# Create a new configuration which will represent the materialised version:
|
|
143
145
|
configuration = self.class.new(@context, @package, @name, @packages.dup, @options.dup)
|
|
@@ -146,7 +148,7 @@ module Teapot
|
|
|
146
148
|
@imports.each do |import|
|
|
147
149
|
named_configuration = @context.configurations[import.name]
|
|
148
150
|
|
|
149
|
-
if named_configuration
|
|
151
|
+
if named_configuration && named_configuration != self
|
|
150
152
|
configuration.append(named_configuration.materialize, import.options)
|
|
151
153
|
else
|
|
152
154
|
# It couldn't be resolved...
|
data/lib/teapot/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: teapot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Williams
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-06-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rainbow
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - '>='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - '>='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rexec
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- -
|
|
31
|
+
- - '>='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
33
|
version: '0'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- -
|
|
38
|
+
- - '>='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: trollop
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- -
|
|
45
|
+
- - '>='
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: '0'
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- -
|
|
52
|
+
- - '>='
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: facter
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
|
-
- -
|
|
59
|
+
- - '>='
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: '0'
|
|
62
62
|
type: :runtime
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
|
-
- -
|
|
66
|
+
- - '>='
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
|
-
description:
|
|
70
|
-
|
|
71
|
-
|
|
69
|
+
description: "\tTeapot is a tool for managing complex cross-platform builds. It provides\n\tadvanced
|
|
70
|
+
dependency management via the Teapot file and is supported by\n\tthe infusions ecosystem
|
|
71
|
+
of packages and platform tooling.\n"
|
|
72
72
|
email:
|
|
73
73
|
- samuel.williams@oriontransfer.co.nz
|
|
74
74
|
executables:
|
|
@@ -140,17 +140,17 @@ require_paths:
|
|
|
140
140
|
- lib
|
|
141
141
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
142
142
|
requirements:
|
|
143
|
-
- -
|
|
143
|
+
- - '>='
|
|
144
144
|
- !ruby/object:Gem::Version
|
|
145
145
|
version: 1.9.3
|
|
146
146
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
147
147
|
requirements:
|
|
148
|
-
- -
|
|
148
|
+
- - '>='
|
|
149
149
|
- !ruby/object:Gem::Version
|
|
150
150
|
version: '0'
|
|
151
151
|
requirements: []
|
|
152
152
|
rubyforge_project:
|
|
153
|
-
rubygems_version: 2.0.
|
|
153
|
+
rubygems_version: 2.0.3
|
|
154
154
|
signing_key:
|
|
155
155
|
specification_version: 4
|
|
156
156
|
summary: Teapot is a tool for managing complex cross-platform builds.
|