build-tool 0.1.2 → 0.1.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.
- data.tar.gz.sig +0 -0
- data/History.txt +34 -30
- data/Manifest.txt +0 -1
- data/README.txt +6 -2
- data/Rakefile +13 -5
- data/lib/build-tool.rb +1 -1
- data/lib/build-tool/cfg/node.rb +0 -1
- data/lib/build-tool/cfg/parser.rb +585 -596
- data/lib/build-tool/cfg/parser.y +1 -3
- data/lib/build-tool/cfg/visitor.rb +0 -4
- data/lib/build-tool/commands/recipes/install.rb +21 -23
- data/recipes/kde/recipe +6 -17
- metadata +3 -4
- metadata.gz.sig +1 -2
- data/tags +0 -1492
data.tar.gz.sig
CHANGED
|
Binary file
|
data/History.txt
CHANGED
|
@@ -1,51 +1,55 @@
|
|
|
1
|
+
== 0.1.3 2009-11-28
|
|
2
|
+
* Add some links to the homepage with documentation
|
|
3
|
+
* kdevelop/kdevplatform moved to extragear for the kde recipe
|
|
4
|
+
|
|
1
5
|
== 0.1.2 2009-11-28
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
* Add support for Shared-desktop-ontologies.
|
|
7
|
+
* Switch the qt tracking branch to master.
|
|
8
|
+
* Build phonon from kdesupport for now. It is currently needed because of some
|
|
9
|
+
recent pulseaudio related changes which makes it a requirement event for
|
|
10
|
+
those of us which do not need pulseaudio.
|
|
11
|
+
* Add attica because it is needed for knewstuff3.
|
|
8
12
|
|
|
9
13
|
== 0.1.1 2009-11-19
|
|
10
14
|
* No changes
|
|
11
15
|
|
|
12
16
|
== 0.1.0 2009-11-19
|
|
13
17
|
* Major rewrite
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
+
* Substitute the yaml format for a tailormade file format with
|
|
19
|
+
handmade lexer and parser
|
|
20
|
+
* This release is a major backstep in case of functionality but it is
|
|
21
|
+
usable for everyday use.
|
|
18
22
|
|
|
19
23
|
== 0.0.3 2009-07-07
|
|
20
24
|
* New commands:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
25
|
+
* ctags - Create tags file for module(s)
|
|
26
|
+
* compile - Just compile the module(s)
|
|
27
|
+
* configure - Just configure the module(s)
|
|
28
|
+
* install - install the module(s)
|
|
29
|
+
* fetch - Only fetch remote changes. Do not update only if vcs supports
|
|
30
|
+
it.
|
|
31
|
+
* rebase - Rebase the checkout against already fetched remote changes.
|
|
32
|
+
This command will not fetch.
|
|
33
|
+
* info - Print out some usefule information about a module.
|
|
30
34
|
* Example Config File
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
35
|
+
* Set PKG_CONFIG_PATH
|
|
36
|
+
* Fix lensfun receipt
|
|
37
|
+
* Fix some packages and orders
|
|
34
38
|
* General Bugfixing
|
|
35
|
-
|
|
36
|
-
|
|
39
|
+
* Fix subversion repository initialization.
|
|
40
|
+
* Improve the documentation strings
|
|
37
41
|
|
|
38
42
|
|
|
39
43
|
== 0.0.2 2009-06-14
|
|
40
44
|
* Improved example configuration file
|
|
41
|
-
|
|
45
|
+
* Checkout the 4.5 version by default. Not trunk.
|
|
42
46
|
* Some bugfixes
|
|
43
|
-
|
|
44
|
-
|
|
47
|
+
* Make sure the build directory exists, THEN call bootstrap.
|
|
48
|
+
* Show the options for subcommands in the help texts
|
|
45
49
|
* Improvement
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
50
|
+
* Add option "remote-branch" for git-svn. Default to master
|
|
51
|
+
* Break out of the program on SIGBREAK. Not only out of the currently
|
|
52
|
+
* build module.
|
|
49
53
|
|
|
50
54
|
|
|
51
55
|
== 0.0.1 2009-06-04
|
data/Manifest.txt
CHANGED
data/README.txt
CHANGED
|
@@ -46,10 +46,14 @@ Currently the following recipes are provided:
|
|
|
46
46
|
# Build kdesupport/ modules and the base kde workspace
|
|
47
47
|
kde-build build kdesupport/ KDE/
|
|
48
48
|
|
|
49
|
+
== Documentation
|
|
50
|
+
|
|
51
|
+
http://michael-jansen.biz/build-tool
|
|
52
|
+
|
|
49
53
|
== REQUIREMENTS:
|
|
50
54
|
|
|
51
|
-
|
|
52
|
-
|
|
55
|
+
* logging > 1.2.2
|
|
56
|
+
* hoe > 2.3.3
|
|
53
57
|
|
|
54
58
|
== INSTALL:
|
|
55
59
|
|
data/Rakefile
CHANGED
|
@@ -7,19 +7,27 @@ require './lib/build-tool'
|
|
|
7
7
|
|
|
8
8
|
# Generate all the Rake tasks
|
|
9
9
|
# Run 'rake -T' to see list of generated tasks (from gem root directory)
|
|
10
|
-
Hoe.spec 'build-tool' do
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
Hoe.spec( 'build-tool' ) do |build_tool|
|
|
11
|
+
build_tool.developer 'Michael Jansen', 'info@michael-jansen.biz'
|
|
12
|
+
build_tool.post_install_message = <<-EOS
|
|
13
13
|
To start with build-tool try the following commands:
|
|
14
14
|
> build-tool recipe list
|
|
15
15
|
> build-tool recipe install <recipe>
|
|
16
|
+
|
|
17
|
+
For documentation see http://michael-jansen.biz/build-tool
|
|
18
|
+
|
|
16
19
|
EOS
|
|
17
|
-
|
|
20
|
+
build_tool.rubyforge_name = build_tool.name
|
|
18
21
|
|
|
19
|
-
|
|
22
|
+
build_tool.extra_deps = [
|
|
20
23
|
['logging','>= 1.2.2'],
|
|
21
24
|
['hoe', ">= 2.3.3"], # -> hoe, rubigen
|
|
22
25
|
]
|
|
26
|
+
|
|
27
|
+
# build_tool.extra_rdoc_files = Dir.glob( "doc/*.txt") + Dir.glob( "doc/*.html" )
|
|
28
|
+
|
|
29
|
+
# Does not work
|
|
30
|
+
# build_tool.local_rdoc_dir = "html_docs"
|
|
23
31
|
end
|
|
24
32
|
|
|
25
33
|
Dir['tasks/**/*.rake'].each { |t| load t }
|
data/lib/build-tool.rb
CHANGED
data/lib/build-tool/cfg/node.rb
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
#
|
|
2
2
|
# DO NOT MODIFY!!!!
|
|
3
|
-
# This file is automatically generated by
|
|
4
|
-
# from
|
|
3
|
+
# This file is automatically generated by racc 1.4.5
|
|
4
|
+
# from racc grammer file "lib/build-tool/cfg/parser.y".
|
|
5
5
|
#
|
|
6
6
|
|
|
7
|
-
require 'racc/parser
|
|
7
|
+
require 'racc/parser'
|
|
8
|
+
|
|
8
9
|
|
|
9
10
|
#
|
|
10
11
|
### HEADER
|
|
@@ -14,11 +15,14 @@ require 'build-tool/cfg/node'
|
|
|
14
15
|
require 'build-tool/cfg/visitor'
|
|
15
16
|
|
|
16
17
|
|
|
18
|
+
|
|
17
19
|
module BuildTool
|
|
20
|
+
|
|
18
21
|
module Cfg
|
|
22
|
+
|
|
19
23
|
class Parser < BuildTool::Cfg::Lexer
|
|
20
24
|
|
|
21
|
-
module_eval
|
|
25
|
+
module_eval <<'..end lib/build-tool/cfg/parser.y modeval..id1a45914e6c', 'lib/build-tool/cfg/parser.y', 255
|
|
22
26
|
#
|
|
23
27
|
### INNER
|
|
24
28
|
#
|
|
@@ -36,836 +40,821 @@ def parse_string( string, file = "<string>" )
|
|
|
36
40
|
return configuration
|
|
37
41
|
end
|
|
38
42
|
|
|
39
|
-
|
|
40
|
-
|
|
43
|
+
..end lib/build-tool/cfg/parser.y modeval..id1a45914e6c
|
|
44
|
+
|
|
45
|
+
##### racc 1.4.5 generates ###
|
|
46
|
+
|
|
47
|
+
racc_reduce_table = [
|
|
48
|
+
0, 0, :racc_error,
|
|
49
|
+
1, 37, :_reduce_1,
|
|
50
|
+
1, 39, :_reduce_2,
|
|
51
|
+
1, 39, :_reduce_3,
|
|
52
|
+
1, 40, :_reduce_4,
|
|
53
|
+
0, 38, :_reduce_none,
|
|
54
|
+
2, 38, :_reduce_6,
|
|
55
|
+
2, 41, :_reduce_7,
|
|
56
|
+
1, 41, :_reduce_8,
|
|
57
|
+
1, 41, :_reduce_9,
|
|
58
|
+
1, 41, :_reduce_10,
|
|
59
|
+
1, 41, :_reduce_11,
|
|
60
|
+
1, 41, :_reduce_12,
|
|
61
|
+
1, 41, :_reduce_13,
|
|
62
|
+
1, 48, :_reduce_14,
|
|
63
|
+
1, 48, :_reduce_15,
|
|
64
|
+
4, 42, :_reduce_16,
|
|
65
|
+
0, 51, :_reduce_none,
|
|
66
|
+
2, 51, :_reduce_18,
|
|
67
|
+
3, 52, :_reduce_19,
|
|
68
|
+
1, 52, :_reduce_20,
|
|
69
|
+
4, 43, :_reduce_21,
|
|
70
|
+
6, 43, :_reduce_22,
|
|
71
|
+
0, 53, :_reduce_none,
|
|
72
|
+
2, 53, :_reduce_24,
|
|
73
|
+
4, 54, :_reduce_25,
|
|
74
|
+
4, 54, :_reduce_26,
|
|
75
|
+
4, 54, :_reduce_27,
|
|
76
|
+
4, 49, :_reduce_28,
|
|
77
|
+
0, 55, :_reduce_none,
|
|
78
|
+
2, 55, :_reduce_30,
|
|
79
|
+
4, 56, :_reduce_31,
|
|
80
|
+
0, 57, :_reduce_none,
|
|
81
|
+
2, 57, :_reduce_33,
|
|
82
|
+
1, 58, :_reduce_34,
|
|
83
|
+
3, 58, :_reduce_35,
|
|
84
|
+
4, 50, :_reduce_36,
|
|
85
|
+
0, 59, :_reduce_none,
|
|
86
|
+
2, 59, :_reduce_38,
|
|
87
|
+
1, 60, :_reduce_none,
|
|
88
|
+
2, 60, :_reduce_40,
|
|
89
|
+
4, 44, :_reduce_41,
|
|
90
|
+
6, 44, :_reduce_42,
|
|
91
|
+
0, 61, :_reduce_none,
|
|
92
|
+
2, 61, :_reduce_44,
|
|
93
|
+
3, 62, :_reduce_45,
|
|
94
|
+
3, 62, :_reduce_46,
|
|
95
|
+
3, 62, :_reduce_47,
|
|
96
|
+
3, 62, :_reduce_48,
|
|
97
|
+
1, 62, :_reduce_49,
|
|
98
|
+
1, 62, :_reduce_50,
|
|
99
|
+
1, 62, :_reduce_51,
|
|
100
|
+
1, 62, :_reduce_52,
|
|
101
|
+
2, 62, :_reduce_53,
|
|
102
|
+
2, 62, :_reduce_54,
|
|
103
|
+
2, 62, :_reduce_55,
|
|
104
|
+
2, 62, :_reduce_56,
|
|
105
|
+
1, 62, :_reduce_57,
|
|
106
|
+
4, 45, :_reduce_58,
|
|
107
|
+
0, 63, :_reduce_none,
|
|
108
|
+
2, 63, :_reduce_60,
|
|
109
|
+
2, 64, :_reduce_61,
|
|
110
|
+
2, 64, :_reduce_62,
|
|
111
|
+
2, 64, :_reduce_63,
|
|
112
|
+
3, 64, :_reduce_64,
|
|
113
|
+
1, 64, :_reduce_65,
|
|
114
|
+
4, 46, :_reduce_66,
|
|
115
|
+
0, 65, :_reduce_none,
|
|
116
|
+
2, 65, :_reduce_68,
|
|
117
|
+
2, 66, :_reduce_69,
|
|
118
|
+
2, 66, :_reduce_70,
|
|
119
|
+
2, 66, :_reduce_71,
|
|
120
|
+
4, 47, :_reduce_72,
|
|
121
|
+
0, 67, :_reduce_none,
|
|
122
|
+
2, 67, :_reduce_74,
|
|
123
|
+
2, 68, :_reduce_75 ]
|
|
124
|
+
|
|
125
|
+
racc_reduce_n = 76
|
|
126
|
+
|
|
127
|
+
racc_shift_n = 140
|
|
41
128
|
|
|
42
129
|
racc_action_table = [
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
138, 139, 140, 141, 76 ]
|
|
130
|
+
52, 7, 111, 13, 52, 7, 65, 13, 97, 50,
|
|
131
|
+
98, 53, 54, 50, 40, 53, 54, 105, 90, 41,
|
|
132
|
+
48, 3, 91, 117, 48, 3, 59, 111, 96, 64,
|
|
133
|
+
59, 65, 51, 64, 52, 7, 51, 13, 7, 95,
|
|
134
|
+
13, 119, 105, 40, 92, 53, 54, 118, 41, 5,
|
|
135
|
+
10, 12, 87, 88, 48, 3, 135, 86, 3, 5,
|
|
136
|
+
59, 9, 7, 64, 13, 31, 51, 85, 18, 5,
|
|
137
|
+
19, 30, 47, 9, 10, 12, 135, 99, 34, 28,
|
|
138
|
+
31, 35, 3, 5, 83, 9, 30, 35, 9, 37,
|
|
139
|
+
18, 38, 19, 34, 28, 37, 18, 38, 19, 18,
|
|
140
|
+
18, 19, 19, 18, 18, 19, 19, 18, 18, 19,
|
|
141
|
+
19, 18, 18, 19, 19, 18, 18, 19, 19, 18,
|
|
142
|
+
18, 19, 19, 18, 18, 19, 19, 101, 89, 44,
|
|
143
|
+
104, 105, 24, 81, 79, 78, 77, 47, 22, 65,
|
|
144
|
+
121, 122, 105, 124, 75, 126, 127, 128, 129, 130,
|
|
145
|
+
131, 74, 136, 72, 138, 71 ]
|
|
60
146
|
|
|
61
147
|
racc_action_check = [
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
0,
|
|
67
|
-
0, 0,
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
130, 131, 132, 133, 79 ]
|
|
148
|
+
94, 94, 88, 94, 25, 25, 68, 25, 64, 26,
|
|
149
|
+
64, 94, 94, 25, 43, 25, 25, 88, 53, 43,
|
|
150
|
+
94, 94, 54, 99, 25, 25, 94, 110, 64, 94,
|
|
151
|
+
25, 26, 94, 25, 60, 60, 25, 60, 0, 64,
|
|
152
|
+
0, 99, 110, 21, 57, 60, 60, 99, 21, 121,
|
|
153
|
+
0, 0, 51, 51, 60, 60, 121, 48, 0, 0,
|
|
154
|
+
60, 0, 14, 60, 14, 17, 60, 47, 30, 134,
|
|
155
|
+
30, 17, 46, 17, 14, 14, 134, 65, 17, 17,
|
|
156
|
+
33, 20, 14, 14, 45, 14, 33, 36, 33, 20,
|
|
157
|
+
138, 20, 138, 33, 33, 36, 3, 36, 3, 28,
|
|
158
|
+
5, 28, 5, 7, 98, 7, 98, 97, 96, 97,
|
|
159
|
+
96, 13, 41, 13, 41, 9, 74, 9, 74, 66,
|
|
160
|
+
12, 66, 12, 61, 95, 61, 95, 67, 52, 22,
|
|
161
|
+
80, 87, 10, 42, 39, 38, 37, 23, 8, 100,
|
|
162
|
+
105, 106, 107, 109, 35, 111, 112, 117, 118, 119,
|
|
163
|
+
120, 34, 133, 32, 135, 31 ]
|
|
79
164
|
|
|
80
165
|
racc_action_pointer = [
|
|
81
|
-
34, nil, nil,
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
nil,
|
|
89
|
-
|
|
90
|
-
nil, nil, nil, nil,
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
nil, nil, nil ]
|
|
166
|
+
34, nil, nil, 68, nil, 72, nil, 75, 138, 87,
|
|
167
|
+
104, nil, 92, 83, 58, nil, nil, 46, nil, nil,
|
|
168
|
+
70, 30, 129, 129, nil, 1, -3, nil, 71, nil,
|
|
169
|
+
40, 127, 148, 61, 124, 116, 76, 108, 107, 129,
|
|
170
|
+
nil, 84, 128, 1, nil, 79, 64, 39, 29, nil,
|
|
171
|
+
nil, 43, 100, -10, -6, nil, nil, 39, nil, nil,
|
|
172
|
+
31, 95, nil, nil, 4, 47, 91, 122, -28, nil,
|
|
173
|
+
nil, nil, nil, nil, 88, nil, nil, nil, nil, nil,
|
|
174
|
+
102, nil, nil, nil, nil, nil, nil, 109, -5, nil,
|
|
175
|
+
nil, nil, nil, nil, -3, 96, 80, 79, 76, 21,
|
|
176
|
+
105, nil, nil, nil, nil, 112, 136, 120, nil, 138,
|
|
177
|
+
20, 117, 141, nil, nil, nil, nil, 119, 120, 121,
|
|
178
|
+
145, 24, nil, nil, nil, nil, nil, nil, nil, nil,
|
|
179
|
+
nil, nil, nil, 147, 44, 129, nil, nil, 62, nil ]
|
|
96
180
|
|
|
97
181
|
racc_action_default = [
|
|
98
|
-
-5, -10, -11, -
|
|
99
|
-
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
-
|
|
103
|
-
|
|
104
|
-
-
|
|
105
|
-
-
|
|
106
|
-
-
|
|
107
|
-
-
|
|
108
|
-
-
|
|
109
|
-
-
|
|
110
|
-
-
|
|
111
|
-
-
|
|
112
|
-
-27, -23, -38 ]
|
|
182
|
+
-5, -10, -11, -76, -12, -76, -13, -76, -76, -76,
|
|
183
|
+
-76, -1, -76, -76, -5, -8, -9, -59, -2, -3,
|
|
184
|
+
-67, -17, -76, -73, -7, -43, -23, -6, -76, -65,
|
|
185
|
+
-76, -76, -76, -59, -76, -76, -67, -76, -76, -76,
|
|
186
|
+
-20, -76, -76, -17, 140, -76, -73, -76, -76, -51,
|
|
187
|
+
-4, -76, -76, -76, -76, -50, -14, -76, -15, -57,
|
|
188
|
+
-43, -76, -49, -52, -76, -76, -76, -76, -23, -63,
|
|
189
|
+
-61, -62, -58, -60, -76, -69, -68, -71, -70, -66,
|
|
190
|
+
-76, -16, -18, -72, -74, -75, -55, -29, -37, -54,
|
|
191
|
+
-53, -56, -41, -44, -43, -76, -76, -76, -76, -76,
|
|
192
|
+
-23, -21, -24, -64, -19, -76, -76, -29, -39, -76,
|
|
193
|
+
-37, -76, -76, -48, -47, -45, -46, -76, -76, -76,
|
|
194
|
+
-76, -32, -28, -30, -36, -38, -40, -42, -27, -25,
|
|
195
|
+
-26, -22, -34, -76, -32, -76, -31, -33, -76, -35 ]
|
|
113
196
|
|
|
114
197
|
racc_goto_table = [
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
nil,
|
|
121
|
-
nil, nil, nil,
|
|
122
|
-
nil,
|
|
123
|
-
nil, 125, 119, nil, nil, 133, nil, nil, nil, nil,
|
|
198
|
+
17, 67, 20, 45, 21, 57, 23, 108, 109, 25,
|
|
199
|
+
26, 42, 106, 8, 2, 29, 61, 66, 39, 32,
|
|
200
|
+
nil, nil, 15, 16, nil, 69, 84, 70, 2, 108,
|
|
201
|
+
125, 29, 123, 82, 76, 73, 15, 16, 80, 11,
|
|
202
|
+
93, 132, 133, 102, nil, nil, nil, nil, nil, nil,
|
|
203
|
+
nil, nil, nil, 27, 132, 137, nil, nil, 94, nil,
|
|
204
|
+
nil, nil, nil, 100, nil, nil, nil, nil, nil, nil,
|
|
205
|
+
nil, 103, nil, nil, 112, 120, nil, nil, nil, nil,
|
|
124
206
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
|
125
|
-
nil, nil,
|
|
126
|
-
128, 129, nil, nil, nil, nil, nil, nil, nil, nil,
|
|
207
|
+
nil, nil, 113, 114, 115, 116, nil, nil, nil, nil,
|
|
127
208
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
|
128
|
-
nil, nil, nil,
|
|
209
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
|
210
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
|
211
|
+
nil, nil, nil, nil, nil, 139 ]
|
|
129
212
|
|
|
130
213
|
racc_goto_check = [
|
|
131
|
-
3, 17,
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
nil,
|
|
137
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
|
138
|
-
nil,
|
|
139
|
-
nil,
|
|
214
|
+
3, 17, 3, 31, 3, 25, 3, 20, 23, 3,
|
|
215
|
+
3, 15, 19, 1, 9, 11, 4, 4, 29, 27,
|
|
216
|
+
nil, nil, 6, 7, nil, 3, 31, 3, 9, 20,
|
|
217
|
+
23, 11, 19, 15, 29, 27, 6, 7, 3, 2,
|
|
218
|
+
25, 10, 21, 17, nil, nil, nil, nil, nil, nil,
|
|
219
|
+
nil, nil, nil, 2, 10, 21, nil, nil, 3, nil,
|
|
220
|
+
nil, nil, nil, 3, nil, nil, nil, nil, nil, nil,
|
|
221
|
+
nil, 3, nil, nil, 25, 17, nil, nil, nil, nil,
|
|
222
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
|
223
|
+
nil, nil, 3, 3, 3, 3, nil, nil, nil, nil,
|
|
224
|
+
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
|
140
225
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
|
141
|
-
nil, nil, nil, nil, nil, nil, nil, nil, 3, 3,
|
|
142
|
-
3, 3, nil, nil, nil, nil, nil, nil, nil, nil,
|
|
143
226
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
|
144
|
-
nil, nil, nil, 3 ]
|
|
227
|
+
nil, nil, nil, nil, nil, 3 ]
|
|
145
228
|
|
|
146
229
|
racc_goto_pointer = [
|
|
147
|
-
nil,
|
|
148
|
-
|
|
149
|
-
-
|
|
150
|
-
nil, -
|
|
230
|
+
nil, 13, 39, -3, -9, nil, 22, 23, nil, 14,
|
|
231
|
+
-80, -2, nil, nil, nil, -10, nil, -25, nil, -75,
|
|
232
|
+
-81, -79, nil, -80, nil, -20, nil, 2, nil, -2,
|
|
233
|
+
nil, -20, nil ]
|
|
151
234
|
|
|
152
235
|
racc_goto_default = [
|
|
153
|
-
nil, nil, nil, nil, nil,
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
racc_reduce_table = [
|
|
159
|
-
0, 0, :racc_error,
|
|
160
|
-
1, 37, :_reduce_1,
|
|
161
|
-
1, 39, :_reduce_2,
|
|
162
|
-
1, 39, :_reduce_3,
|
|
163
|
-
1, 40, :_reduce_4,
|
|
164
|
-
0, 38, :_reduce_none,
|
|
165
|
-
2, 38, :_reduce_6,
|
|
166
|
-
2, 41, :_reduce_7,
|
|
167
|
-
1, 41, :_reduce_8,
|
|
168
|
-
1, 41, :_reduce_9,
|
|
169
|
-
1, 41, :_reduce_10,
|
|
170
|
-
1, 41, :_reduce_11,
|
|
171
|
-
1, 41, :_reduce_12,
|
|
172
|
-
1, 41, :_reduce_13,
|
|
173
|
-
1, 41, :_reduce_14,
|
|
174
|
-
1, 44, :_reduce_15,
|
|
175
|
-
1, 44, :_reduce_16,
|
|
176
|
-
4, 42, :_reduce_17,
|
|
177
|
-
0, 51, :_reduce_none,
|
|
178
|
-
2, 51, :_reduce_19,
|
|
179
|
-
3, 52, :_reduce_20,
|
|
180
|
-
1, 52, :_reduce_21,
|
|
181
|
-
4, 43, :_reduce_22,
|
|
182
|
-
6, 43, :_reduce_23,
|
|
183
|
-
0, 53, :_reduce_none,
|
|
184
|
-
2, 53, :_reduce_25,
|
|
185
|
-
4, 54, :_reduce_26,
|
|
186
|
-
4, 54, :_reduce_27,
|
|
187
|
-
4, 54, :_reduce_28,
|
|
188
|
-
4, 49, :_reduce_29,
|
|
189
|
-
0, 55, :_reduce_none,
|
|
190
|
-
2, 55, :_reduce_31,
|
|
191
|
-
4, 56, :_reduce_32,
|
|
192
|
-
2, 56, :_reduce_33,
|
|
193
|
-
2, 56, :_reduce_34,
|
|
194
|
-
0, 57, :_reduce_none,
|
|
195
|
-
2, 57, :_reduce_36,
|
|
196
|
-
1, 58, :_reduce_37,
|
|
197
|
-
3, 58, :_reduce_38,
|
|
198
|
-
4, 50, :_reduce_39,
|
|
199
|
-
0, 59, :_reduce_none,
|
|
200
|
-
2, 59, :_reduce_41,
|
|
201
|
-
1, 60, :_reduce_none,
|
|
202
|
-
4, 45, :_reduce_43,
|
|
203
|
-
6, 45, :_reduce_44,
|
|
204
|
-
0, 61, :_reduce_none,
|
|
205
|
-
2, 61, :_reduce_46,
|
|
206
|
-
3, 62, :_reduce_47,
|
|
207
|
-
3, 62, :_reduce_48,
|
|
208
|
-
3, 62, :_reduce_49,
|
|
209
|
-
3, 62, :_reduce_50,
|
|
210
|
-
1, 62, :_reduce_51,
|
|
211
|
-
1, 62, :_reduce_52,
|
|
212
|
-
1, 62, :_reduce_53,
|
|
213
|
-
1, 62, :_reduce_54,
|
|
214
|
-
2, 62, :_reduce_55,
|
|
215
|
-
2, 62, :_reduce_56,
|
|
216
|
-
2, 62, :_reduce_57,
|
|
217
|
-
2, 62, :_reduce_58,
|
|
218
|
-
1, 62, :_reduce_59,
|
|
219
|
-
4, 46, :_reduce_60,
|
|
220
|
-
0, 63, :_reduce_none,
|
|
221
|
-
2, 63, :_reduce_62,
|
|
222
|
-
2, 64, :_reduce_63,
|
|
223
|
-
2, 64, :_reduce_64,
|
|
224
|
-
2, 64, :_reduce_65,
|
|
225
|
-
3, 64, :_reduce_66,
|
|
226
|
-
1, 64, :_reduce_67,
|
|
227
|
-
4, 47, :_reduce_68,
|
|
228
|
-
0, 65, :_reduce_none,
|
|
229
|
-
2, 65, :_reduce_70,
|
|
230
|
-
2, 66, :_reduce_71,
|
|
231
|
-
2, 66, :_reduce_72,
|
|
232
|
-
2, 66, :_reduce_73,
|
|
233
|
-
4, 48, :_reduce_74,
|
|
234
|
-
0, 67, :_reduce_none,
|
|
235
|
-
2, 67, :_reduce_76,
|
|
236
|
-
2, 68, :_reduce_77 ]
|
|
237
|
-
|
|
238
|
-
racc_reduce_n = 78
|
|
239
|
-
|
|
240
|
-
racc_shift_n = 143
|
|
236
|
+
nil, nil, nil, nil, nil, 14, 62, 63, 1, 49,
|
|
237
|
+
4, 6, 55, 56, 58, nil, 43, nil, 68, nil,
|
|
238
|
+
107, nil, 134, nil, 110, nil, 60, nil, 33, nil,
|
|
239
|
+
36, nil, 46 ]
|
|
241
240
|
|
|
242
241
|
racc_token_table = {
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
racc_nt_base = 36
|
|
242
|
+
false => 0,
|
|
243
|
+
Object.new => 1,
|
|
244
|
+
:APPEND => 2,
|
|
245
|
+
:BUILD_PREFIX => 3,
|
|
246
|
+
:BUILD_SYSTEM => 4,
|
|
247
|
+
:END => 5,
|
|
248
|
+
:ENVIRONMENT => 6,
|
|
249
|
+
:EXTERNAL => 7,
|
|
250
|
+
:FILE => 8,
|
|
251
|
+
:GIT => 9,
|
|
252
|
+
:GIT_SVN => 10,
|
|
253
|
+
:HOST => 11,
|
|
254
|
+
:INHERITANCE => 12,
|
|
255
|
+
:INPLACE => 13,
|
|
256
|
+
:INSTALL_PREFIX => 14,
|
|
257
|
+
:LOCAL_PATH => 15,
|
|
258
|
+
:LOG_DIRECTORY => 16,
|
|
259
|
+
:MODULE => 17,
|
|
260
|
+
:OPTION => 18,
|
|
261
|
+
:PATH => 19,
|
|
262
|
+
:PREPEND => 20,
|
|
263
|
+
:PROTOCOL => 21,
|
|
264
|
+
:REMOTE => 22,
|
|
265
|
+
:REMOTE_PATH => 23,
|
|
266
|
+
:REPOSITORY => 24,
|
|
267
|
+
:SERVER => 25,
|
|
268
|
+
:SET => 26,
|
|
269
|
+
:SSH_KEY => 27,
|
|
270
|
+
:STRING => 28,
|
|
271
|
+
:TEMPLATE => 29,
|
|
272
|
+
:TOKEN => 30,
|
|
273
|
+
:TRACK_BRANCH => 31,
|
|
274
|
+
:USE => 32,
|
|
275
|
+
:USER => 33,
|
|
276
|
+
:VAR => 34,
|
|
277
|
+
:VCS => 35 }
|
|
281
278
|
|
|
282
279
|
racc_use_result_var = true
|
|
283
280
|
|
|
281
|
+
racc_nt_base = 36
|
|
282
|
+
|
|
284
283
|
Racc_arg = [
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
284
|
+
racc_action_table,
|
|
285
|
+
racc_action_check,
|
|
286
|
+
racc_action_default,
|
|
287
|
+
racc_action_pointer,
|
|
288
|
+
racc_goto_table,
|
|
289
|
+
racc_goto_check,
|
|
290
|
+
racc_goto_default,
|
|
291
|
+
racc_goto_pointer,
|
|
292
|
+
racc_nt_base,
|
|
293
|
+
racc_reduce_table,
|
|
294
|
+
racc_token_table,
|
|
295
|
+
racc_shift_n,
|
|
296
|
+
racc_reduce_n,
|
|
297
|
+
racc_use_result_var ]
|
|
299
298
|
|
|
300
299
|
Racc_token_to_s_table = [
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
300
|
+
'$end',
|
|
301
|
+
'error',
|
|
302
|
+
'APPEND',
|
|
303
|
+
'BUILD_PREFIX',
|
|
304
|
+
'BUILD_SYSTEM',
|
|
305
|
+
'END',
|
|
306
|
+
'ENVIRONMENT',
|
|
307
|
+
'EXTERNAL',
|
|
308
|
+
'FILE',
|
|
309
|
+
'GIT',
|
|
310
|
+
'GIT_SVN',
|
|
311
|
+
'HOST',
|
|
312
|
+
'INHERITANCE',
|
|
313
|
+
'INPLACE',
|
|
314
|
+
'INSTALL_PREFIX',
|
|
315
|
+
'LOCAL_PATH',
|
|
316
|
+
'LOG_DIRECTORY',
|
|
317
|
+
'MODULE',
|
|
318
|
+
'OPTION',
|
|
319
|
+
'PATH',
|
|
320
|
+
'PREPEND',
|
|
321
|
+
'PROTOCOL',
|
|
322
|
+
'REMOTE',
|
|
323
|
+
'REMOTE_PATH',
|
|
324
|
+
'REPOSITORY',
|
|
325
|
+
'SERVER',
|
|
326
|
+
'SET',
|
|
327
|
+
'SSH_KEY',
|
|
328
|
+
'STRING',
|
|
329
|
+
'TEMPLATE',
|
|
330
|
+
'TOKEN',
|
|
331
|
+
'TRACK_BRANCH',
|
|
332
|
+
'USE',
|
|
333
|
+
'USER',
|
|
334
|
+
'VAR',
|
|
335
|
+
'VCS',
|
|
336
|
+
'$start',
|
|
337
|
+
'main',
|
|
338
|
+
'statements',
|
|
339
|
+
'identifier',
|
|
340
|
+
'inheritance',
|
|
341
|
+
'statement',
|
|
342
|
+
'build_system_declaration',
|
|
343
|
+
'environment_declaration',
|
|
344
|
+
'module_declaration',
|
|
345
|
+
'repository_declaration',
|
|
346
|
+
'server_declaration',
|
|
347
|
+
'ssh_key_declaration',
|
|
348
|
+
'vcs_declaration',
|
|
349
|
+
'git_declaration',
|
|
350
|
+
'git_svn_declaration',
|
|
351
|
+
'build_system_statements',
|
|
352
|
+
'build_system_statement',
|
|
353
|
+
'environment_statements',
|
|
354
|
+
'environment_statement',
|
|
355
|
+
'git_statements',
|
|
356
|
+
'git_statement',
|
|
357
|
+
'git_remote_values',
|
|
358
|
+
'git_remote_value',
|
|
359
|
+
'git_svn_statements',
|
|
360
|
+
'git_svn_statement',
|
|
361
|
+
'module_statements',
|
|
362
|
+
'module_statement',
|
|
363
|
+
'repository_statements',
|
|
364
|
+
'repository_statement',
|
|
365
|
+
'server_statements',
|
|
366
|
+
'server_statement',
|
|
367
|
+
'ssh_key_statements',
|
|
368
|
+
'ssh_key_statement']
|
|
370
369
|
|
|
371
370
|
Racc_debug_parser = false
|
|
372
371
|
|
|
373
|
-
#####
|
|
372
|
+
##### racc system variables end #####
|
|
374
373
|
|
|
375
|
-
# reduce 0 omitted
|
|
374
|
+
# reduce 0 omitted
|
|
376
375
|
|
|
377
|
-
module_eval
|
|
378
|
-
def _reduce_1(val, _values, result)
|
|
379
|
-
|
|
380
|
-
|
|
376
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 40
|
|
377
|
+
def _reduce_1( val, _values, result )
|
|
378
|
+
result = ConfigurationFileList.new( val[0] );
|
|
379
|
+
result
|
|
381
380
|
end
|
|
382
381
|
.,.,
|
|
383
382
|
|
|
384
|
-
module_eval
|
|
385
|
-
def _reduce_2(val, _values, result)
|
|
386
|
-
|
|
387
|
-
|
|
383
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 48
|
|
384
|
+
def _reduce_2( val, _values, result )
|
|
385
|
+
result = val[0];
|
|
386
|
+
result
|
|
388
387
|
end
|
|
389
388
|
.,.,
|
|
390
389
|
|
|
391
|
-
module_eval
|
|
392
|
-
def _reduce_3(val, _values, result)
|
|
393
|
-
|
|
394
|
-
|
|
390
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 49
|
|
391
|
+
def _reduce_3( val, _values, result )
|
|
392
|
+
result = val[0];
|
|
393
|
+
result
|
|
395
394
|
end
|
|
396
395
|
.,.,
|
|
397
396
|
|
|
398
|
-
module_eval
|
|
399
|
-
def _reduce_4(val, _values, result)
|
|
400
|
-
|
|
401
|
-
|
|
397
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 53
|
|
398
|
+
def _reduce_4( val, _values, result )
|
|
399
|
+
result = :INHERITANCE;
|
|
400
|
+
result
|
|
402
401
|
end
|
|
403
402
|
.,.,
|
|
404
403
|
|
|
405
|
-
# reduce 5 omitted
|
|
406
|
-
|
|
407
|
-
module_eval(<<'.,.,', 'parser.y', 61)
|
|
408
|
-
def _reduce_6(val, _values, result)
|
|
409
|
-
result = val.flatten;
|
|
410
|
-
result
|
|
411
|
-
end
|
|
412
|
-
.,.,
|
|
404
|
+
# reduce 5 omitted
|
|
413
405
|
|
|
414
|
-
module_eval
|
|
415
|
-
def
|
|
416
|
-
|
|
417
|
-
|
|
406
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 61
|
|
407
|
+
def _reduce_6( val, _values, result )
|
|
408
|
+
result = val.flatten;
|
|
409
|
+
result
|
|
418
410
|
end
|
|
419
411
|
.,.,
|
|
420
412
|
|
|
421
|
-
module_eval
|
|
422
|
-
def
|
|
423
|
-
|
|
424
|
-
|
|
413
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 65
|
|
414
|
+
def _reduce_7( val, _values, result )
|
|
415
|
+
result = LogDirectoryNode.new( val[1] );
|
|
416
|
+
result
|
|
425
417
|
end
|
|
426
418
|
.,.,
|
|
427
419
|
|
|
428
|
-
module_eval
|
|
429
|
-
def
|
|
430
|
-
|
|
431
|
-
|
|
420
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 66
|
|
421
|
+
def _reduce_8( val, _values, result )
|
|
422
|
+
result = val[0];
|
|
423
|
+
result
|
|
432
424
|
end
|
|
433
425
|
.,.,
|
|
434
426
|
|
|
435
|
-
module_eval
|
|
436
|
-
def
|
|
437
|
-
|
|
438
|
-
|
|
427
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 67
|
|
428
|
+
def _reduce_9( val, _values, result )
|
|
429
|
+
result = val[0];
|
|
430
|
+
result
|
|
439
431
|
end
|
|
440
432
|
.,.,
|
|
441
433
|
|
|
442
|
-
module_eval
|
|
443
|
-
def
|
|
444
|
-
|
|
445
|
-
|
|
434
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 68
|
|
435
|
+
def _reduce_10( val, _values, result )
|
|
436
|
+
result = val[0];
|
|
437
|
+
result
|
|
446
438
|
end
|
|
447
439
|
.,.,
|
|
448
440
|
|
|
449
|
-
module_eval
|
|
450
|
-
def
|
|
451
|
-
|
|
452
|
-
|
|
441
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 69
|
|
442
|
+
def _reduce_11( val, _values, result )
|
|
443
|
+
result = val[0];
|
|
444
|
+
result
|
|
453
445
|
end
|
|
454
446
|
.,.,
|
|
455
447
|
|
|
456
|
-
module_eval
|
|
457
|
-
def
|
|
458
|
-
|
|
459
|
-
|
|
448
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 70
|
|
449
|
+
def _reduce_12( val, _values, result )
|
|
450
|
+
result = val[0];
|
|
451
|
+
result
|
|
460
452
|
end
|
|
461
453
|
.,.,
|
|
462
454
|
|
|
463
|
-
module_eval
|
|
464
|
-
def
|
|
465
|
-
|
|
466
|
-
|
|
455
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 71
|
|
456
|
+
def _reduce_13( val, _values, result )
|
|
457
|
+
result = val[0];
|
|
458
|
+
result
|
|
467
459
|
end
|
|
468
460
|
.,.,
|
|
469
461
|
|
|
470
|
-
module_eval
|
|
471
|
-
def
|
|
472
|
-
|
|
473
|
-
|
|
462
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 75
|
|
463
|
+
def _reduce_14( val, _values, result )
|
|
464
|
+
result = val[0];
|
|
465
|
+
result
|
|
474
466
|
end
|
|
475
467
|
.,.,
|
|
476
468
|
|
|
477
|
-
module_eval
|
|
478
|
-
def
|
|
479
|
-
|
|
480
|
-
|
|
469
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 76
|
|
470
|
+
def _reduce_15( val, _values, result )
|
|
471
|
+
result = val[0];
|
|
472
|
+
result
|
|
481
473
|
end
|
|
482
474
|
.,.,
|
|
483
475
|
|
|
484
|
-
module_eval
|
|
485
|
-
def
|
|
486
|
-
|
|
487
|
-
|
|
476
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 83
|
|
477
|
+
def _reduce_16( val, _values, result )
|
|
478
|
+
result = BuildSystemDeclarationNode.new( val[1,2] );
|
|
479
|
+
result
|
|
488
480
|
end
|
|
489
481
|
.,.,
|
|
490
482
|
|
|
491
|
-
# reduce
|
|
483
|
+
# reduce 17 omitted
|
|
492
484
|
|
|
493
|
-
module_eval
|
|
494
|
-
def
|
|
495
|
-
|
|
496
|
-
|
|
485
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 88
|
|
486
|
+
def _reduce_18( val, _values, result )
|
|
487
|
+
result = val.flatten;
|
|
488
|
+
result
|
|
497
489
|
end
|
|
498
490
|
.,.,
|
|
499
491
|
|
|
500
|
-
module_eval
|
|
501
|
-
def
|
|
502
|
-
|
|
503
|
-
|
|
492
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 92
|
|
493
|
+
def _reduce_19( val, _values, result )
|
|
494
|
+
result = BuildSystemOptionNode.new( val[1,2] );
|
|
495
|
+
result
|
|
504
496
|
end
|
|
505
497
|
.,.,
|
|
506
498
|
|
|
507
|
-
module_eval
|
|
508
|
-
def
|
|
509
|
-
|
|
510
|
-
|
|
499
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 93
|
|
500
|
+
def _reduce_20( val, _values, result )
|
|
501
|
+
result = BuildSystemInplaceNode.new();
|
|
502
|
+
result
|
|
511
503
|
end
|
|
512
504
|
.,.,
|
|
513
505
|
|
|
514
|
-
module_eval
|
|
515
|
-
def
|
|
516
|
-
|
|
517
|
-
|
|
506
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 100
|
|
507
|
+
def _reduce_21( val, _values, result )
|
|
508
|
+
result = EnvironmentDeclarationNode.new( val[1..-1] );
|
|
509
|
+
result
|
|
518
510
|
end
|
|
519
511
|
.,.,
|
|
520
512
|
|
|
521
|
-
module_eval
|
|
522
|
-
def
|
|
523
|
-
|
|
524
|
-
|
|
513
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 101
|
|
514
|
+
def _reduce_22( val, _values, result )
|
|
515
|
+
result = EnvironmentDeclarationNode.new( val[1..-1] );
|
|
516
|
+
result
|
|
525
517
|
end
|
|
526
518
|
.,.,
|
|
527
519
|
|
|
528
|
-
# reduce
|
|
520
|
+
# reduce 23 omitted
|
|
529
521
|
|
|
530
|
-
module_eval
|
|
531
|
-
def
|
|
532
|
-
|
|
533
|
-
|
|
522
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 106
|
|
523
|
+
def _reduce_24( val, _values, result )
|
|
524
|
+
result = val.flatten;
|
|
525
|
+
result
|
|
534
526
|
end
|
|
535
527
|
.,.,
|
|
536
528
|
|
|
537
|
-
module_eval
|
|
538
|
-
def
|
|
539
|
-
|
|
540
|
-
|
|
529
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 110
|
|
530
|
+
def _reduce_25( val, _values, result )
|
|
531
|
+
result = EnvironmentVariableNode.new( val[1..-1] );
|
|
532
|
+
result
|
|
541
533
|
end
|
|
542
534
|
.,.,
|
|
543
535
|
|
|
544
|
-
module_eval
|
|
545
|
-
def
|
|
546
|
-
|
|
547
|
-
|
|
536
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 111
|
|
537
|
+
def _reduce_26( val, _values, result )
|
|
538
|
+
result = EnvironmentVariableNode.new( val[1..-1] );
|
|
539
|
+
result
|
|
548
540
|
end
|
|
549
541
|
.,.,
|
|
550
542
|
|
|
551
|
-
module_eval
|
|
552
|
-
def
|
|
553
|
-
|
|
554
|
-
|
|
543
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 112
|
|
544
|
+
def _reduce_27( val, _values, result )
|
|
545
|
+
result = EnvironmentVariableNode.new( val[1..-1] );
|
|
546
|
+
result
|
|
555
547
|
end
|
|
556
548
|
.,.,
|
|
557
549
|
|
|
558
|
-
module_eval
|
|
559
|
-
def
|
|
560
|
-
|
|
561
|
-
|
|
550
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 119
|
|
551
|
+
def _reduce_28( val, _values, result )
|
|
552
|
+
result = GitDeclarationNode.new( val[2] );
|
|
553
|
+
result
|
|
562
554
|
end
|
|
563
555
|
.,.,
|
|
564
556
|
|
|
565
|
-
# reduce
|
|
557
|
+
# reduce 29 omitted
|
|
566
558
|
|
|
567
|
-
module_eval
|
|
568
|
-
def
|
|
569
|
-
|
|
570
|
-
|
|
559
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 124
|
|
560
|
+
def _reduce_30( val, _values, result )
|
|
561
|
+
result = val.flatten;
|
|
562
|
+
result
|
|
571
563
|
end
|
|
572
564
|
.,.,
|
|
573
565
|
|
|
574
|
-
module_eval
|
|
575
|
-
def
|
|
576
|
-
|
|
577
|
-
|
|
566
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 128
|
|
567
|
+
def _reduce_31( val, _values, result )
|
|
568
|
+
result = GitRemoteNode.new( [ val[1], GitRemoteValueList.new( val[2] ) ] );
|
|
569
|
+
result
|
|
578
570
|
end
|
|
579
571
|
.,.,
|
|
580
572
|
|
|
581
|
-
|
|
582
|
-
def _reduce_33(val, _values, result)
|
|
583
|
-
result = GitTrackBranchNode.new( val[1] );
|
|
584
|
-
result
|
|
585
|
-
end
|
|
586
|
-
.,.,
|
|
573
|
+
# reduce 32 omitted
|
|
587
574
|
|
|
588
|
-
module_eval
|
|
589
|
-
def
|
|
590
|
-
|
|
591
|
-
|
|
575
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 133
|
|
576
|
+
def _reduce_33( val, _values, result )
|
|
577
|
+
result = val.flatten;
|
|
578
|
+
result
|
|
592
579
|
end
|
|
593
580
|
.,.,
|
|
594
581
|
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
result = val.flatten;
|
|
600
|
-
result
|
|
582
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 137
|
|
583
|
+
def _reduce_34( val, _values, result )
|
|
584
|
+
result = val[0];
|
|
585
|
+
result
|
|
601
586
|
end
|
|
602
587
|
.,.,
|
|
603
588
|
|
|
604
|
-
module_eval
|
|
605
|
-
def
|
|
606
|
-
|
|
607
|
-
|
|
589
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 138
|
|
590
|
+
def _reduce_35( val, _values, result )
|
|
591
|
+
result = UseServerNode.new( val[2] );
|
|
592
|
+
result
|
|
608
593
|
end
|
|
609
594
|
.,.,
|
|
610
595
|
|
|
611
|
-
module_eval
|
|
612
|
-
def
|
|
613
|
-
|
|
614
|
-
|
|
596
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 145
|
|
597
|
+
def _reduce_36( val, _values, result )
|
|
598
|
+
result = GitSvnDeclarationNode.new( val[2] );
|
|
599
|
+
result
|
|
615
600
|
end
|
|
616
601
|
.,.,
|
|
617
602
|
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
603
|
+
# reduce 37 omitted
|
|
604
|
+
|
|
605
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 150
|
|
606
|
+
def _reduce_38( val, _values, result )
|
|
607
|
+
result = val.flatten;
|
|
608
|
+
result
|
|
622
609
|
end
|
|
623
610
|
.,.,
|
|
624
611
|
|
|
625
|
-
# reduce
|
|
612
|
+
# reduce 39 omitted
|
|
626
613
|
|
|
627
|
-
module_eval
|
|
628
|
-
def
|
|
629
|
-
|
|
630
|
-
|
|
614
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 155
|
|
615
|
+
def _reduce_40( val, _values, result )
|
|
616
|
+
result = GitSvnExternalNode.new( val[1] );
|
|
617
|
+
result
|
|
631
618
|
end
|
|
632
619
|
.,.,
|
|
633
620
|
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
result = ModuleDeclarationNode.new( val[1..-1] );
|
|
639
|
-
result
|
|
621
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 162
|
|
622
|
+
def _reduce_41( val, _values, result )
|
|
623
|
+
result = ModuleDeclarationNode.new( val[1..-1] );
|
|
624
|
+
result
|
|
640
625
|
end
|
|
641
626
|
.,.,
|
|
642
627
|
|
|
643
|
-
module_eval
|
|
644
|
-
def
|
|
645
|
-
|
|
646
|
-
|
|
628
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 163
|
|
629
|
+
def _reduce_42( val, _values, result )
|
|
630
|
+
result = ModuleDeclarationNode.new( val[1..-1] );
|
|
631
|
+
result
|
|
647
632
|
end
|
|
648
633
|
.,.,
|
|
649
634
|
|
|
650
|
-
# reduce
|
|
635
|
+
# reduce 43 omitted
|
|
651
636
|
|
|
652
|
-
module_eval
|
|
653
|
-
def
|
|
654
|
-
|
|
655
|
-
|
|
637
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 168
|
|
638
|
+
def _reduce_44( val, _values, result )
|
|
639
|
+
result = val.flatten;
|
|
640
|
+
result
|
|
656
641
|
end
|
|
657
642
|
.,.,
|
|
658
643
|
|
|
659
|
-
module_eval
|
|
660
|
-
def
|
|
661
|
-
|
|
662
|
-
|
|
644
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 172
|
|
645
|
+
def _reduce_45( val, _values, result )
|
|
646
|
+
result = UseBuildSystemNode.new( val[2] );
|
|
647
|
+
result
|
|
663
648
|
end
|
|
664
649
|
.,.,
|
|
665
650
|
|
|
666
|
-
module_eval
|
|
667
|
-
def
|
|
668
|
-
|
|
669
|
-
|
|
651
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 173
|
|
652
|
+
def _reduce_46( val, _values, result )
|
|
653
|
+
result = UseEnvironmentNode.new( val[2] );
|
|
654
|
+
result
|
|
670
655
|
end
|
|
671
656
|
.,.,
|
|
672
657
|
|
|
673
|
-
module_eval
|
|
674
|
-
def
|
|
675
|
-
|
|
676
|
-
|
|
658
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 174
|
|
659
|
+
def _reduce_47( val, _values, result )
|
|
660
|
+
result = UseRepositoryNode.new( val[2] );
|
|
661
|
+
result
|
|
677
662
|
end
|
|
678
663
|
.,.,
|
|
679
664
|
|
|
680
|
-
module_eval
|
|
681
|
-
def
|
|
682
|
-
|
|
683
|
-
|
|
665
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 175
|
|
666
|
+
def _reduce_48( val, _values, result )
|
|
667
|
+
result = UseVcsNode.new( val[2] );
|
|
668
|
+
result
|
|
684
669
|
end
|
|
685
670
|
.,.,
|
|
686
671
|
|
|
687
|
-
module_eval
|
|
688
|
-
def
|
|
689
|
-
|
|
690
|
-
|
|
672
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 176
|
|
673
|
+
def _reduce_49( val, _values, result )
|
|
674
|
+
result = val[0];
|
|
675
|
+
result
|
|
691
676
|
end
|
|
692
677
|
.,.,
|
|
693
678
|
|
|
694
|
-
module_eval
|
|
695
|
-
def
|
|
696
|
-
|
|
697
|
-
|
|
679
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 177
|
|
680
|
+
def _reduce_50( val, _values, result )
|
|
681
|
+
result = val[0];
|
|
682
|
+
result
|
|
698
683
|
end
|
|
699
684
|
.,.,
|
|
700
685
|
|
|
701
|
-
module_eval
|
|
702
|
-
def
|
|
703
|
-
|
|
704
|
-
|
|
686
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 178
|
|
687
|
+
def _reduce_51( val, _values, result )
|
|
688
|
+
result = val[0];
|
|
689
|
+
result
|
|
705
690
|
end
|
|
706
691
|
.,.,
|
|
707
692
|
|
|
708
|
-
module_eval
|
|
709
|
-
def
|
|
710
|
-
|
|
711
|
-
|
|
693
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 179
|
|
694
|
+
def _reduce_52( val, _values, result )
|
|
695
|
+
result = val[0];
|
|
696
|
+
result
|
|
712
697
|
end
|
|
713
698
|
.,.,
|
|
714
699
|
|
|
715
|
-
module_eval
|
|
716
|
-
def
|
|
717
|
-
|
|
718
|
-
|
|
700
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 180
|
|
701
|
+
def _reduce_53( val, _values, result )
|
|
702
|
+
result = ModuleInstallPrefixNode.new( val[1] );
|
|
703
|
+
result
|
|
719
704
|
end
|
|
720
705
|
.,.,
|
|
721
706
|
|
|
722
|
-
module_eval
|
|
723
|
-
def
|
|
724
|
-
|
|
725
|
-
|
|
707
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 181
|
|
708
|
+
def _reduce_54( val, _values, result )
|
|
709
|
+
result = ModuleBuildPrefixNode.new( val[1] );
|
|
710
|
+
result
|
|
726
711
|
end
|
|
727
712
|
.,.,
|
|
728
713
|
|
|
729
|
-
module_eval
|
|
730
|
-
def
|
|
731
|
-
|
|
732
|
-
|
|
714
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 182
|
|
715
|
+
def _reduce_55( val, _values, result )
|
|
716
|
+
result = ModuleRemotePathNode.new( val[1] );
|
|
717
|
+
result
|
|
733
718
|
end
|
|
734
719
|
.,.,
|
|
735
720
|
|
|
736
|
-
module_eval
|
|
737
|
-
def
|
|
738
|
-
|
|
739
|
-
|
|
721
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 183
|
|
722
|
+
def _reduce_56( val, _values, result )
|
|
723
|
+
result = ModuleLocalPathNode.new( val[1] );
|
|
724
|
+
result
|
|
740
725
|
end
|
|
741
726
|
.,.,
|
|
742
727
|
|
|
743
|
-
module_eval
|
|
744
|
-
def
|
|
745
|
-
|
|
746
|
-
|
|
728
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 184
|
|
729
|
+
def _reduce_57( val, _values, result )
|
|
730
|
+
result = ModuleTemplateNode.new();
|
|
731
|
+
result
|
|
747
732
|
end
|
|
748
733
|
.,.,
|
|
749
734
|
|
|
750
|
-
module_eval
|
|
751
|
-
def
|
|
752
|
-
|
|
753
|
-
|
|
735
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 191
|
|
736
|
+
def _reduce_58( val, _values, result )
|
|
737
|
+
result = RepositoryDeclarationNode.new( val[1..-1] );
|
|
738
|
+
result
|
|
754
739
|
end
|
|
755
740
|
.,.,
|
|
756
741
|
|
|
757
|
-
# reduce
|
|
742
|
+
# reduce 59 omitted
|
|
758
743
|
|
|
759
|
-
module_eval
|
|
760
|
-
def
|
|
761
|
-
|
|
762
|
-
|
|
744
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 196
|
|
745
|
+
def _reduce_60( val, _values, result )
|
|
746
|
+
result = val.flatten();
|
|
747
|
+
result
|
|
763
748
|
end
|
|
764
749
|
.,.,
|
|
765
750
|
|
|
766
|
-
module_eval
|
|
767
|
-
def
|
|
768
|
-
|
|
769
|
-
|
|
751
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 200
|
|
752
|
+
def _reduce_61( val, _values, result )
|
|
753
|
+
result = RepositoryServerNode.new( val[1] );
|
|
754
|
+
result
|
|
770
755
|
end
|
|
771
756
|
.,.,
|
|
772
757
|
|
|
773
|
-
module_eval
|
|
774
|
-
def
|
|
775
|
-
|
|
776
|
-
|
|
758
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 201
|
|
759
|
+
def _reduce_62( val, _values, result )
|
|
760
|
+
result = RepositoryPathNode.new( val[1] );
|
|
761
|
+
result
|
|
777
762
|
end
|
|
778
763
|
.,.,
|
|
779
764
|
|
|
780
|
-
module_eval
|
|
781
|
-
def
|
|
782
|
-
|
|
783
|
-
|
|
765
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 202
|
|
766
|
+
def _reduce_63( val, _values, result )
|
|
767
|
+
result = RepositoryUserNode.new( val[1] );
|
|
768
|
+
result
|
|
784
769
|
end
|
|
785
770
|
.,.,
|
|
786
771
|
|
|
787
|
-
module_eval
|
|
788
|
-
def
|
|
789
|
-
|
|
790
|
-
|
|
772
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 203
|
|
773
|
+
def _reduce_64( val, _values, result )
|
|
774
|
+
result = UseSshKeyNode.new( val[2] );
|
|
775
|
+
result
|
|
791
776
|
end
|
|
792
777
|
.,.,
|
|
793
778
|
|
|
794
|
-
module_eval
|
|
795
|
-
def
|
|
796
|
-
|
|
797
|
-
|
|
779
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 204
|
|
780
|
+
def _reduce_65( val, _values, result )
|
|
781
|
+
result = val[0];
|
|
782
|
+
result
|
|
798
783
|
end
|
|
799
784
|
.,.,
|
|
800
785
|
|
|
801
|
-
module_eval
|
|
802
|
-
def
|
|
803
|
-
|
|
804
|
-
|
|
786
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 211
|
|
787
|
+
def _reduce_66( val, _values, result )
|
|
788
|
+
result = ServerDeclarationNode.new( [ val[1], ServerStatementList.new( val[2] ) ] );
|
|
789
|
+
result
|
|
805
790
|
end
|
|
806
791
|
.,.,
|
|
807
792
|
|
|
808
|
-
# reduce
|
|
793
|
+
# reduce 67 omitted
|
|
809
794
|
|
|
810
|
-
module_eval
|
|
811
|
-
def
|
|
812
|
-
|
|
813
|
-
|
|
795
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 216
|
|
796
|
+
def _reduce_68( val, _values, result )
|
|
797
|
+
result = val.flatten;
|
|
798
|
+
result
|
|
814
799
|
end
|
|
815
800
|
.,.,
|
|
816
801
|
|
|
817
|
-
module_eval
|
|
818
|
-
def
|
|
819
|
-
|
|
820
|
-
|
|
802
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 220
|
|
803
|
+
def _reduce_69( val, _values, result )
|
|
804
|
+
result = ServerHostNode.new( val[1] );
|
|
805
|
+
result
|
|
821
806
|
end
|
|
822
807
|
.,.,
|
|
823
808
|
|
|
824
|
-
module_eval
|
|
825
|
-
def
|
|
826
|
-
|
|
827
|
-
|
|
809
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 221
|
|
810
|
+
def _reduce_70( val, _values, result )
|
|
811
|
+
result = ServerProtocolNode.new( val[1] );
|
|
812
|
+
result
|
|
828
813
|
end
|
|
829
814
|
.,.,
|
|
830
815
|
|
|
831
|
-
module_eval
|
|
832
|
-
def
|
|
833
|
-
|
|
834
|
-
|
|
816
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 222
|
|
817
|
+
def _reduce_71( val, _values, result )
|
|
818
|
+
result = ServerPathNode.new( val[1] );
|
|
819
|
+
result
|
|
835
820
|
end
|
|
836
821
|
.,.,
|
|
837
822
|
|
|
838
|
-
module_eval
|
|
839
|
-
def
|
|
840
|
-
|
|
841
|
-
|
|
823
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 229
|
|
824
|
+
def _reduce_72( val, _values, result )
|
|
825
|
+
result = SshKeyDeclarationNode.new( val[1..-1] );
|
|
826
|
+
result
|
|
842
827
|
end
|
|
843
828
|
.,.,
|
|
844
829
|
|
|
845
|
-
# reduce
|
|
830
|
+
# reduce 73 omitted
|
|
846
831
|
|
|
847
|
-
module_eval
|
|
848
|
-
def
|
|
849
|
-
|
|
850
|
-
|
|
832
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 234
|
|
833
|
+
def _reduce_74( val, _values, result )
|
|
834
|
+
result = val.flatten;
|
|
835
|
+
result
|
|
851
836
|
end
|
|
852
837
|
.,.,
|
|
853
838
|
|
|
854
|
-
module_eval
|
|
855
|
-
def
|
|
856
|
-
|
|
857
|
-
|
|
839
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 238
|
|
840
|
+
def _reduce_75( val, _values, result )
|
|
841
|
+
result = SshKeyFileNode.new( val[1] );
|
|
842
|
+
result
|
|
858
843
|
end
|
|
859
844
|
.,.,
|
|
860
845
|
|
|
861
|
-
def _reduce_none(val, _values, result)
|
|
862
|
-
|
|
863
|
-
end
|
|
846
|
+
def _reduce_none( val, _values, result )
|
|
847
|
+
result
|
|
848
|
+
end
|
|
864
849
|
|
|
865
850
|
end # class Parser
|
|
866
|
-
|
|
867
|
-
end # module
|
|
851
|
+
|
|
852
|
+
end # module Cfg
|
|
853
|
+
|
|
854
|
+
end # module BuildTool
|
|
868
855
|
|
|
869
856
|
#
|
|
870
857
|
### FOOTER
|
|
871
858
|
#
|
|
859
|
+
|
|
860
|
+
|