build-tool 0.3.1 → 0.3.2
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 +15 -0
- data/db/migrations/002_module_events.rb +1 -1
- data/lib/build-tool.rb +1 -1
- data/lib/build-tool/application.rb +1 -0
- data/lib/build-tool/build-system/base.rb +11 -10
- data/lib/build-tool/cfg/lexer.rb +1 -41
- data/lib/build-tool/cfg/lexer.rex +1 -17
- data/lib/build-tool/cfg/node.rb +0 -3
- data/lib/build-tool/cfg/parser.rb +262 -299
- data/lib/build-tool/cfg/parser.y +1 -11
- data/lib/build-tool/cfg/visitor.rb +4 -42
- data/lib/build-tool/commands.rb +24 -7
- data/lib/build-tool/commands/modules/list.rb +0 -1
- data/lib/build-tool/vcs/git.rb +1 -29
- data/lib/mj/logging.rb +44 -3
- metadata +4 -4
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
Binary file
|
data/History.txt
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
== 0.3.2
|
2
|
+
- Main Features
|
3
|
+
- none
|
4
|
+
- Bugfixes
|
5
|
+
- Fix the database initialization. SQLite3 seems to start enforcing foreign keys. And ours had a
|
6
|
+
typo.
|
7
|
+
- Fix the "vcs git remote "whatever" end end" stuff. Handle it exactly like a repository. This
|
8
|
+
fixes the qt/qt modules initialization from the kdeqt recipe. It tried to clone a pure server
|
9
|
+
url because the path part was not possible to specify for remotes.
|
10
|
+
- Fix a bug with the sequel logging stuff that only happened if sequel reported an error.
|
11
|
+
- Imporve the warning that say "The following command sometimes fails ..." on git clone.
|
12
|
+
- If a module is specified for a command and inactive issue a warning. Same for specified groups
|
13
|
+
with only inactive modules.
|
14
|
+
|
15
|
+
|
1
16
|
== 0.3.1
|
2
17
|
- Main Features
|
3
18
|
- BuildSystem: QMake support
|
@@ -6,7 +6,7 @@ Class.new( Sequel::Migration ) do
|
|
6
6
|
def up
|
7
7
|
create_table :module_logs do
|
8
8
|
primary_key :id
|
9
|
-
foreign_key :command_log_id, :
|
9
|
+
foreign_key :command_log_id, :command_logs, :null => false
|
10
10
|
String :module, :null => false
|
11
11
|
String :event, :size => 20, :null => false
|
12
12
|
String :logfile
|
data/lib/build-tool.rb
CHANGED
@@ -134,6 +134,7 @@ def BuildTool.main(name, args, root_directory)
|
|
134
134
|
Logging.logger.root.level = :debug
|
135
135
|
# Special case for the configurationParser. It is very verbose if active.
|
136
136
|
Logging.logger['BuildTool::Cfg::Parser'].level = :info
|
137
|
+
Logging.logger['MJ::Logging::LoggerAdapter'].level = :warn
|
137
138
|
Logging.logger.root.appenders = Logging.appenders.stdout(
|
138
139
|
:layout => MJ::Logging::BasicLayout.new(),
|
139
140
|
:level => :info)
|
@@ -91,25 +91,26 @@ module BuildTool; module BuildSystem
|
|
91
91
|
if !out_of_source
|
92
92
|
if File.exist? build_directory
|
93
93
|
if !File.symlink?( build_directory )
|
94
|
-
|
94
|
+
raise ConfigurationError, "Build directory #{build_directory} exists and is not a symlink!"
|
95
95
|
end
|
96
|
-
|
96
|
+
return true
|
97
|
+
elsif create && !$noop
|
97
98
|
FileUtils.mkdir_p( Pathname.new( build_directory ).parent )
|
98
99
|
File.symlink( source_directory, build_directory )
|
100
|
+
return true
|
99
101
|
end
|
102
|
+
return false
|
100
103
|
else
|
101
104
|
if File.exist? build_directory
|
102
|
-
if File.directory? build_directory
|
103
|
-
|
104
|
-
else
|
105
|
-
raise ConfigurationError, "Build directory #{build_directory} exists and is no directory!"
|
105
|
+
if !File.directory? build_directory
|
106
|
+
raise ConfigurationError, "Build directory #{build_directory} exists and is not a directory!"
|
106
107
|
end
|
107
|
-
elsif create
|
108
|
-
FileUtils.mkdir_p( build_directory ) if !$noop
|
109
108
|
return true
|
110
|
-
|
111
|
-
|
109
|
+
elsif create && !$noop
|
110
|
+
FileUtils.mkdir_p( build_directory )
|
111
|
+
return true
|
112
112
|
end
|
113
|
+
return false
|
113
114
|
end
|
114
115
|
end
|
115
116
|
|
data/lib/build-tool/cfg/lexer.rb
CHANGED
@@ -323,7 +323,7 @@ class Lexer < Racc::Parser
|
|
323
323
|
action { [:TRACK_BRANCH, text]; }
|
324
324
|
|
325
325
|
when (text = @ss.scan(/remote\b/))
|
326
|
-
action { @states.push @state; @state = :
|
326
|
+
action { @states.push @state; @state = :REPOSITORY; [:REMOTE, text]; }
|
327
327
|
|
328
328
|
when (text = @ss.scan(/end\b/))
|
329
329
|
action { @state = @states.pop; [ :END, text ]; }
|
@@ -430,46 +430,6 @@ class Lexer < Racc::Parser
|
|
430
430
|
raise ScanError, "can not match: '" + text + "'"
|
431
431
|
end # if
|
432
432
|
|
433
|
-
when :REMOTE
|
434
|
-
case
|
435
|
-
when (text = @ss.scan(/path\b/))
|
436
|
-
action { [:PATH, text]; }
|
437
|
-
|
438
|
-
when (text = @ss.scan(/server\b/))
|
439
|
-
action { @states.push @state; @state = :SERVER; [:SERVER, text]; }
|
440
|
-
|
441
|
-
when (text = @ss.scan(/use\b/))
|
442
|
-
action { @states.push @state; @state = :USE; [:USE, text]; }
|
443
|
-
|
444
|
-
when (text = @ss.scan(/end\b/))
|
445
|
-
action { @state = @states.pop; [ :END, text ]; }
|
446
|
-
|
447
|
-
when (text = @ss.scan(/"([^\"\r\n]*)"/))
|
448
|
-
action { [:STRING, @ss[1]]; }
|
449
|
-
|
450
|
-
when (text = @ss.scan(/[a-zA-Z][A-Za-z_0-9-]*/))
|
451
|
-
action { [:TOKEN, text]; }
|
452
|
-
|
453
|
-
when (text = @ss.scan(/\#[^\r\n]*/))
|
454
|
-
action { [:COMMENT, text]; }
|
455
|
-
|
456
|
-
when (text = @ss.scan(/[ \t]+/))
|
457
|
-
action { [:IGNORE, text]; }
|
458
|
-
|
459
|
-
when (text = @ss.scan(/[\r\n]/))
|
460
|
-
action { [:IGNORE, text]; }
|
461
|
-
|
462
|
-
when (text = @ss.scan(/"([^\"\r\n]*)$/))
|
463
|
-
action { [:GARBAGE, text]; }
|
464
|
-
|
465
|
-
when (text = @ss.scan(/./))
|
466
|
-
action { [:GARBAGE, text]; }
|
467
|
-
|
468
|
-
else
|
469
|
-
text = @ss.string[@ss.pos .. -1]
|
470
|
-
raise ScanError, "can not match: '" + text + "'"
|
471
|
-
end # if
|
472
|
-
|
473
433
|
when :REPOSITORY
|
474
434
|
case
|
475
435
|
when (text = @ss.scan(/path\b/))
|
@@ -156,7 +156,7 @@ rule
|
|
156
156
|
#
|
157
157
|
:GIT external\b { [:EXTERNAL, text]; }
|
158
158
|
:GIT track-branch\b { [:TRACK_BRANCH, text]; }
|
159
|
-
:GIT remote\b { @states.push @state; @state = :
|
159
|
+
:GIT remote\b { @states.push @state; @state = :REPOSITORY; [:REMOTE, text]; }
|
160
160
|
:GIT end\b { @state = @states.pop; [ :END, text ]; }
|
161
161
|
# COMMON
|
162
162
|
:GIT {STRING} { [:STRING, @ss[1]]; }
|
@@ -197,22 +197,6 @@ rule
|
|
197
197
|
:MODULE {STRINGERROR} { [:GARBAGE, text]; }
|
198
198
|
:MODULE . { [:GARBAGE, text]; }
|
199
199
|
|
200
|
-
#
|
201
|
-
### REMOTE
|
202
|
-
#
|
203
|
-
:REMOTE path\b { [:PATH, text]; }
|
204
|
-
:REMOTE server\b { @states.push @state; @state = :SERVER; [:SERVER, text]; }
|
205
|
-
:REMOTE use\b { @states.push @state; @state = :USE; [:USE, text]; }
|
206
|
-
:REMOTE end\b { @state = @states.pop; [ :END, text ]; }
|
207
|
-
# COMMON
|
208
|
-
:REMOTE {STRING} { [:STRING, @ss[1]]; }
|
209
|
-
:REMOTE {TOKEN} { [:TOKEN, text]; }
|
210
|
-
:REMOTE {COMMENT} { [:COMMENT, text]; }
|
211
|
-
:REMOTE {BLANK} { [:IGNORE, text]; }
|
212
|
-
:REMOTE {LF} { [:IGNORE, text]; }
|
213
|
-
:REMOTE {STRINGERROR} { [:GARBAGE, text]; }
|
214
|
-
:REMOTE . { [:GARBAGE, text]; }
|
215
|
-
|
216
200
|
#
|
217
201
|
### REPOSITORY
|
218
202
|
#
|
data/lib/build-tool/cfg/node.rb
CHANGED
@@ -43,7 +43,6 @@ module BuildTool; module Cfg;
|
|
43
43
|
GitSvnDeclaration
|
44
44
|
|
45
45
|
GitDeclaration
|
46
|
-
GitRemote
|
47
46
|
GitRemotePath
|
48
47
|
GitServer
|
49
48
|
|
@@ -93,8 +92,6 @@ module BuildTool; module Cfg;
|
|
93
92
|
end
|
94
93
|
|
95
94
|
%w[
|
96
|
-
GitRemoteValue
|
97
|
-
|
98
95
|
ConfigurationFile
|
99
96
|
|
100
97
|
ServerStatement
|
@@ -22,7 +22,7 @@ module BuildTool
|
|
22
22
|
|
23
23
|
class Parser < BuildTool::Cfg::Lexer
|
24
24
|
|
25
|
-
module_eval <<'..end lib/build-tool/cfg/parser.y modeval..
|
25
|
+
module_eval <<'..end lib/build-tool/cfg/parser.y modeval..id760acbd958', 'lib/build-tool/cfg/parser.y', 340
|
26
26
|
#
|
27
27
|
### INNER
|
28
28
|
#
|
@@ -40,7 +40,7 @@ def parse_string( string, file = "<string>" )
|
|
40
40
|
return configuration
|
41
41
|
end
|
42
42
|
|
43
|
-
..end lib/build-tool/cfg/parser.y modeval..
|
43
|
+
..end lib/build-tool/cfg/parser.y modeval..id760acbd958
|
44
44
|
|
45
45
|
##### racc 1.4.5 generates ###
|
46
46
|
|
@@ -94,213 +94,201 @@ racc_reduce_table = [
|
|
94
94
|
0, 76, :_reduce_none,
|
95
95
|
2, 76, :_reduce_47,
|
96
96
|
4, 77, :_reduce_48,
|
97
|
+
4, 66, :_reduce_49,
|
98
|
+
0, 79, :_reduce_none,
|
99
|
+
2, 79, :_reduce_51,
|
100
|
+
1, 80, :_reduce_52,
|
101
|
+
2, 80, :_reduce_53,
|
102
|
+
2, 61, :_reduce_54,
|
103
|
+
4, 57, :_reduce_55,
|
104
|
+
6, 57, :_reduce_56,
|
105
|
+
0, 81, :_reduce_none,
|
106
|
+
2, 81, :_reduce_58,
|
107
|
+
3, 82, :_reduce_59,
|
108
|
+
3, 82, :_reduce_60,
|
109
|
+
3, 82, :_reduce_61,
|
110
|
+
3, 82, :_reduce_62,
|
111
|
+
3, 82, :_reduce_63,
|
112
|
+
2, 82, :_reduce_64,
|
113
|
+
1, 82, :_reduce_65,
|
114
|
+
1, 82, :_reduce_66,
|
115
|
+
1, 82, :_reduce_67,
|
116
|
+
1, 82, :_reduce_68,
|
117
|
+
2, 82, :_reduce_69,
|
118
|
+
2, 82, :_reduce_70,
|
119
|
+
2, 82, :_reduce_71,
|
120
|
+
2, 82, :_reduce_72,
|
121
|
+
1, 82, :_reduce_73,
|
122
|
+
3, 82, :_reduce_74,
|
123
|
+
4, 58, :_reduce_75,
|
97
124
|
0, 78, :_reduce_none,
|
98
|
-
2, 78, :
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
1,
|
105
|
-
|
106
|
-
2, 61, :_reduce_58,
|
107
|
-
4, 57, :_reduce_59,
|
108
|
-
6, 57, :_reduce_60,
|
109
|
-
0, 82, :_reduce_none,
|
110
|
-
2, 82, :_reduce_62,
|
111
|
-
3, 83, :_reduce_63,
|
112
|
-
3, 83, :_reduce_64,
|
113
|
-
3, 83, :_reduce_65,
|
114
|
-
3, 83, :_reduce_66,
|
115
|
-
3, 83, :_reduce_67,
|
116
|
-
2, 83, :_reduce_68,
|
117
|
-
1, 83, :_reduce_69,
|
118
|
-
1, 83, :_reduce_70,
|
119
|
-
1, 83, :_reduce_71,
|
120
|
-
1, 83, :_reduce_72,
|
121
|
-
2, 83, :_reduce_73,
|
122
|
-
2, 83, :_reduce_74,
|
123
|
-
2, 83, :_reduce_75,
|
124
|
-
2, 83, :_reduce_76,
|
125
|
-
1, 83, :_reduce_77,
|
126
|
-
3, 83, :_reduce_78,
|
127
|
-
4, 58, :_reduce_79,
|
125
|
+
2, 78, :_reduce_77,
|
126
|
+
2, 83, :_reduce_78,
|
127
|
+
2, 83, :_reduce_79,
|
128
|
+
3, 83, :_reduce_80,
|
129
|
+
3, 83, :_reduce_81,
|
130
|
+
1, 83, :_reduce_82,
|
131
|
+
1, 83, :_reduce_83,
|
132
|
+
4, 59, :_reduce_84,
|
128
133
|
0, 84, :_reduce_none,
|
129
|
-
2, 84, :
|
130
|
-
2, 85, :
|
131
|
-
2, 85, :
|
132
|
-
|
133
|
-
|
134
|
-
1, 85, :_reduce_86,
|
135
|
-
1, 85, :_reduce_87,
|
136
|
-
4, 59, :_reduce_88,
|
134
|
+
2, 84, :_reduce_86,
|
135
|
+
2, 85, :_reduce_87,
|
136
|
+
2, 85, :_reduce_88,
|
137
|
+
2, 85, :_reduce_89,
|
138
|
+
4, 60, :_reduce_90,
|
137
139
|
0, 86, :_reduce_none,
|
138
|
-
2, 86, :
|
139
|
-
2, 87, :_reduce_91,
|
140
|
-
2, 87, :_reduce_92,
|
140
|
+
2, 86, :_reduce_92,
|
141
141
|
2, 87, :_reduce_93,
|
142
|
-
4,
|
142
|
+
4, 65, :_reduce_94,
|
143
143
|
0, 88, :_reduce_none,
|
144
144
|
2, 88, :_reduce_96,
|
145
145
|
2, 89, :_reduce_97,
|
146
|
-
4, 65, :_reduce_98,
|
147
|
-
0, 90, :_reduce_none,
|
148
|
-
2, 90, :_reduce_100,
|
149
|
-
2, 91, :_reduce_101,
|
150
146
|
0, 75, :_reduce_none,
|
151
|
-
2, 75, :
|
147
|
+
2, 75, :_reduce_99 ]
|
152
148
|
|
153
|
-
racc_reduce_n =
|
149
|
+
racc_reduce_n = 100
|
154
150
|
|
155
|
-
racc_shift_n =
|
151
|
+
racc_shift_n = 184
|
156
152
|
|
157
153
|
racc_action_table = [
|
158
|
-
71, 124,
|
159
|
-
117, 36, 123, 125, 24, 158,
|
160
|
-
|
154
|
+
71, 124, 75, 15, 77, 120, 154, 45, 1, 158,
|
155
|
+
117, 36, 123, 125, 24, 158, 116, 26, 82, 63,
|
156
|
+
113, 70, 121, 37, 71, 139, 75, 15, 77, 154,
|
161
157
|
64, 3, 1, 118, 41, 154, 24, 126, 78, 26,
|
162
|
-
45, 66, 82, 63, 73, 70, 119,
|
163
|
-
|
164
|
-
26, 54, 78,
|
165
|
-
54,
|
166
|
-
|
167
|
-
20, 21, 73, 1, 15, 7,
|
168
|
-
18, 7, 133,
|
169
|
-
|
170
|
-
12,
|
171
|
-
|
172
|
-
|
173
|
-
58, 9, 3, 6,
|
174
|
-
3, 6,
|
175
|
-
|
176
|
-
|
177
|
-
24, 24, 26, 26, 26, 24, 24,
|
178
|
-
|
179
|
-
154, 172, 173, 174, 175, 176,
|
180
|
-
|
158
|
+
45, 66, 82, 63, 73, 70, 119, 122, 71, 53,
|
159
|
+
75, 15, 77, 141, 64, 3, 1, 24, 53, 140,
|
160
|
+
26, 54, 78, 57, 38, 66, 82, 63, 73, 70,
|
161
|
+
54, 112, 57, 91, 91, 127, 39, 128, 64, 3,
|
162
|
+
90, 90, 24, 111, 24, 26, 78, 26, 15, 66,
|
163
|
+
20, 21, 73, 1, 15, 7, 130, 110, 132, 1,
|
164
|
+
18, 7, 133, 134, 84, 5, 18, 9, 24, 136,
|
165
|
+
108, 26, 58, 9, 107, 24, 3, 6, 26, 106,
|
166
|
+
12, 24, 3, 6, 26, 59, 12, 15, 100, 20,
|
167
|
+
21, 101, 1, 15, 7, 41, 105, 103, 1, 18,
|
168
|
+
7, 146, 41, 97, 5, 18, 9, 24, 96, 87,
|
169
|
+
26, 58, 9, 152, 52, 3, 6, 115, 84, 12,
|
170
|
+
6, 3, 6, 12, 59, 12, 52, 163, 52, 46,
|
171
|
+
47, 35, 6, 24, 6, 12, 26, 12, 165, 166,
|
172
|
+
167, 46, 47, 46, 47, 24, 24, 24, 26, 26,
|
173
|
+
26, 24, 24, 24, 26, 26, 26, 24, 24, 24,
|
174
|
+
26, 26, 26, 24, 24, 168, 26, 26, 169, 170,
|
175
|
+
170, 154, 172, 173, 174, 175, 176, 33, 178, 163,
|
176
|
+
180, 181, 28, 183 ]
|
181
177
|
|
182
178
|
racc_action_check = [
|
183
|
-
|
184
|
-
66, 20, 73, 73,
|
185
|
-
|
186
|
-
|
187
|
-
31,
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
0, 0,
|
193
|
-
0,
|
194
|
-
|
195
|
-
0,
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
153, 154, 155, 156, 158, 159,
|
205
|
-
164,
|
179
|
+
131, 73, 131, 131, 131, 66, 123, 25, 131, 125,
|
180
|
+
66, 20, 73, 73, 118, 160, 64, 118, 131, 131,
|
181
|
+
60, 131, 70, 20, 31, 96, 31, 31, 31, 125,
|
182
|
+
131, 131, 31, 66, 25, 160, 37, 73, 131, 37,
|
183
|
+
31, 131, 31, 31, 131, 31, 66, 71, 76, 29,
|
184
|
+
76, 76, 76, 96, 31, 31, 76, 38, 56, 96,
|
185
|
+
38, 29, 31, 29, 21, 31, 76, 76, 31, 76,
|
186
|
+
56, 59, 56, 89, 34, 74, 21, 75, 76, 76,
|
187
|
+
89, 34, 39, 58, 119, 39, 76, 119, 0, 76,
|
188
|
+
0, 0, 76, 0, 30, 0, 77, 57, 82, 30,
|
189
|
+
0, 30, 84, 85, 86, 0, 30, 0, 7, 88,
|
190
|
+
55, 7, 30, 30, 54, 117, 0, 0, 117, 53,
|
191
|
+
0, 44, 30, 30, 44, 30, 30, 22, 46, 22,
|
192
|
+
22, 46, 22, 61, 22, 99, 52, 48, 61, 22,
|
193
|
+
61, 112, 43, 42, 22, 61, 22, 47, 41, 33,
|
194
|
+
47, 61, 61, 122, 51, 22, 22, 63, 32, 22,
|
195
|
+
51, 61, 61, 51, 61, 61, 172, 126, 27, 51,
|
196
|
+
51, 18, 172, 101, 27, 172, 101, 27, 138, 139,
|
197
|
+
140, 172, 172, 27, 27, 120, 100, 6, 120, 100,
|
198
|
+
6, 90, 9, 12, 90, 9, 12, 80, 15, 3,
|
199
|
+
80, 15, 3, 1, 36, 141, 1, 36, 142, 145,
|
200
|
+
151, 153, 154, 155, 156, 158, 159, 14, 161, 162,
|
201
|
+
163, 164, 5, 182 ]
|
206
202
|
|
207
203
|
racc_action_pointer = [
|
208
|
-
82,
|
209
|
-
nil, nil,
|
210
|
-
-2, 51,
|
211
|
-
|
212
|
-
nil,
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
nil, nil, 102, nil, nil, nil, nil,
|
220
|
-
|
221
|
-
nil,
|
222
|
-
|
223
|
-
nil,
|
224
|
-
|
225
|
-
nil, nil,
|
226
|
-
nil, nil,
|
204
|
+
82, 164, nil, 160, nil, 183, 148, 69, nil, 153,
|
205
|
+
nil, nil, 154, nil, 217, 159, nil, nil, 132, nil,
|
206
|
+
-2, 51, 121, nil, nil, -12, nil, 139, nil, 32,
|
207
|
+
88, 21, 144, 149, 54, nil, 165, -3, 18, 43,
|
208
|
+
nil, 106, 133, 96, 82, nil, 93, 108, 127, nil,
|
209
|
+
nil, 125, 97, 80, 75, 100, 41, 58, 76, 64,
|
210
|
+
10, 127, nil, 118, -23, nil, -1, nil, nil, nil,
|
211
|
+
15, 19, nil, -3, 65, 38, 45, 57, nil, nil,
|
212
|
+
158, nil, 59, nil, 63, 93, 90, nil, 99, 53,
|
213
|
+
152, nil, nil, nil, nil, nil, 23, nil, nil, 89,
|
214
|
+
147, 134, nil, nil, nil, nil, nil, nil, nil, nil,
|
215
|
+
nil, nil, 102, nil, nil, nil, nil, 76, -25, 45,
|
216
|
+
146, nil, 114, -26, nil, -3, 141, nil, nil, nil,
|
217
|
+
nil, -3, nil, nil, nil, nil, nil, nil, 139, 140,
|
218
|
+
141, 166, 198, nil, nil, 170, nil, nil, nil, nil,
|
219
|
+
nil, 171, nil, 179, 173, 203, 204, nil, 176, 206,
|
220
|
+
3, 208, 193, 181, 211, nil, nil, nil, nil, nil,
|
221
|
+
nil, nil, 137, nil, nil, nil, nil, nil, nil, nil,
|
222
|
+
nil, nil, 213, nil ]
|
227
223
|
|
228
224
|
racc_action_default = [
|
229
|
-
-5, -
|
230
|
-
-16, -17, -
|
231
|
-
-
|
232
|
-
-40, -
|
233
|
-
-6, -
|
234
|
-
|
235
|
-
-
|
236
|
-
-
|
237
|
-
-
|
238
|
-
-
|
239
|
-
-
|
240
|
-
-
|
241
|
-
-
|
242
|
-
-
|
243
|
-
-
|
244
|
-
-
|
245
|
-
-
|
246
|
-
|
247
|
-
|
225
|
+
-5, -100, -13, -100, -14, -100, -100, -100, -15, -100,
|
226
|
+
-16, -17, -100, -18, -100, -100, -19, -1, -100, -20,
|
227
|
+
-100, -100, -5, -12, -2, -34, -3, -76, -7, -85,
|
228
|
+
-40, -57, -91, -100, -28, -54, -100, -100, -100, -100,
|
229
|
+
-6, -100, -100, -34, -100, -4, -100, -100, -100, -83,
|
230
|
+
-82, -76, -100, -100, -100, -100, -85, -100, -100, -100,
|
231
|
+
-100, -40, -42, -100, -100, -65, -100, -23, -68, -24,
|
232
|
+
-100, -100, -67, -100, -100, -100, -57, -100, -73, -66,
|
233
|
+
-100, -21, -100, -22, -100, -100, -91, 184, -100, -28,
|
234
|
+
-100, -31, -8, -10, -9, -11, -100, -32, -35, -34,
|
235
|
+
-100, -100, -79, -75, -77, -78, -87, -89, -84, -86,
|
236
|
+
-88, -98, -100, -39, -41, -72, -71, -100, -100, -100,
|
237
|
+
-100, -98, -100, -46, -26, -50, -95, -55, -70, -58,
|
238
|
+
-64, -57, -69, -93, -90, -92, -27, -29, -100, -100,
|
239
|
+
-100, -100, -100, -81, -80, -43, -44, -60, -61, -62,
|
240
|
+
-59, -63, -74, -46, -100, -100, -100, -52, -100, -100,
|
241
|
+
-50, -100, -95, -100, -100, -30, -38, -36, -37, -33,
|
242
|
+
-99, -47, -76, -45, -25, -53, -49, -51, -94, -96,
|
243
|
+
-97, -56, -100, -48 ]
|
248
244
|
|
249
245
|
racc_goto_table = [
|
250
|
-
|
251
|
-
|
252
|
-
159,
|
253
|
-
|
254
|
-
nil,
|
255
|
-
|
256
|
-
nil, nil, nil, nil, nil,
|
257
|
-
nil, nil, nil, nil, nil, nil, nil, nil,
|
258
|
-
nil, nil,
|
259
|
-
nil, nil,
|
260
|
-
|
261
|
-
nil, nil, nil, nil, nil, nil,
|
246
|
+
48, 50, 49, 25, 42, 27, 65, 74, 29, 30,
|
247
|
+
68, 31, 72, 88, 32, 85, 62, 34, 161, 60,
|
248
|
+
17, 157, 98, 159, 104, 50, 49, 145, 44, 155,
|
249
|
+
156, 14, nil, 55, 80, nil, nil, 151, 92, 93,
|
250
|
+
94, 95, 40, nil, nil, nil, 99, 62, nil, 102,
|
251
|
+
114, 65, 129, nil, 179, 68, 157, 72, 177, 171,
|
252
|
+
109, nil, nil, nil, nil, nil, nil, nil, 137, 135,
|
253
|
+
nil, nil, nil, nil, nil, nil, nil, nil, 142, nil,
|
254
|
+
nil, nil, 131, nil, nil, nil, nil, nil, nil, nil,
|
255
|
+
nil, nil, 138, nil, nil, nil, nil, nil, nil, nil,
|
256
|
+
nil, nil, 143, 144, nil, nil, 65, 164, nil, nil,
|
257
|
+
68, nil, 72, nil, nil, nil, nil, nil, nil, 147,
|
258
|
+
148, 149, 150, nil, nil, nil, nil, nil, nil, nil,
|
262
259
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
263
|
-
nil, nil, nil, nil, nil,
|
264
|
-
nil, nil, nil, nil, nil, nil, 185, nil, nil, nil,
|
265
|
-
nil, nil, nil, nil, nil, nil, nil, nil, 185, nil,
|
266
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
267
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
268
|
-
nil, nil, nil, nil, nil, 189 ]
|
260
|
+
nil, nil, nil, nil, nil, 182, 50, 49 ]
|
269
261
|
|
270
262
|
racc_goto_check = [
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
nil, 36, nil,
|
275
|
-
nil,
|
276
|
-
|
277
|
-
nil, nil, nil, nil, nil,
|
278
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
279
|
-
nil, nil, nil, nil,
|
280
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
281
|
-
|
282
|
-
nil, nil, nil, nil, nil, nil,
|
283
|
-
|
284
|
-
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
285
|
-
nil, nil, nil, nil, nil, nil, 11, nil, nil, nil,
|
286
|
-
nil, nil, nil, nil, nil, nil, nil, nil, 11, nil,
|
263
|
+
30, 12, 11, 3, 23, 3, 7, 33, 3, 3,
|
264
|
+
8, 3, 10, 21, 3, 38, 6, 3, 40, 25,
|
265
|
+
2, 29, 23, 31, 30, 12, 11, 27, 4, 28,
|
266
|
+
20, 1, nil, 36, 4, nil, nil, 27, 3, 3,
|
267
|
+
3, 3, 2, nil, nil, nil, 3, 6, nil, 3,
|
268
|
+
25, 7, 33, nil, 40, 8, 29, 10, 31, 28,
|
269
|
+
36, nil, nil, nil, nil, nil, nil, nil, 21, 38,
|
270
|
+
nil, nil, nil, nil, nil, nil, nil, nil, 23, nil,
|
271
|
+
nil, nil, 3, nil, nil, nil, nil, nil, nil, nil,
|
272
|
+
nil, nil, 3, nil, nil, nil, nil, nil, nil, nil,
|
273
|
+
nil, nil, 3, 3, nil, nil, 7, 33, nil, nil,
|
274
|
+
8, nil, 10, nil, nil, nil, nil, nil, nil, 3,
|
275
|
+
3, 3, 3, nil, nil, nil, nil, nil, nil, nil,
|
287
276
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
288
|
-
nil, nil, nil, nil, nil,
|
289
|
-
nil, nil, nil, nil, nil, 3 ]
|
277
|
+
nil, nil, nil, nil, nil, 30, 12, 11 ]
|
290
278
|
|
291
279
|
racc_goto_pointer = [
|
292
|
-
nil,
|
293
|
-
-
|
294
|
-
|
295
|
-
|
296
|
-
|
280
|
+
nil, 31, 20, 2, 3, nil, -14, -25, -21, nil,
|
281
|
+
-19, -25, -26, nil, nil, nil, nil, nil, nil, nil,
|
282
|
+
-94, -21, nil, -21, nil, -11, nil, -84, -94, -104,
|
283
|
+
-27, -102, nil, -24, nil, nil, 4, nil, -17, nil,
|
284
|
+
-108, nil ]
|
297
285
|
|
298
286
|
racc_goto_default = [
|
299
287
|
nil, nil, nil, nil, nil, 22, 23, 2, 4, 8,
|
300
288
|
10, 11, 13, 16, 19, 79, 81, 83, 67, 69,
|
301
289
|
nil, nil, 89, nil, 43, nil, 61, nil, nil, 153,
|
302
|
-
nil,
|
303
|
-
nil,
|
290
|
+
nil, nil, 160, nil, 76, 51, nil, 56, nil, 86,
|
291
|
+
nil, 162 ]
|
304
292
|
|
305
293
|
racc_token_table = {
|
306
294
|
false => 0,
|
@@ -451,13 +439,11 @@ Racc_token_to_s_table = [
|
|
451
439
|
'multiline_string',
|
452
440
|
'git_statements',
|
453
441
|
'git_statement',
|
454
|
-
'
|
455
|
-
'git_remote_value',
|
442
|
+
'repository_statements',
|
456
443
|
'git_svn_statements',
|
457
444
|
'git_svn_statement',
|
458
445
|
'module_statements',
|
459
446
|
'module_statement',
|
460
|
-
'repository_statements',
|
461
447
|
'repository_statement',
|
462
448
|
'server_statements',
|
463
449
|
'server_statement',
|
@@ -773,351 +759,328 @@ module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 185
|
|
773
759
|
|
774
760
|
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 189
|
775
761
|
def _reduce_48( val, _values, result )
|
776
|
-
result =
|
762
|
+
result = RepositoryDeclarationNode.new( val[1..-1]);
|
777
763
|
result
|
778
764
|
end
|
779
765
|
.,.,
|
780
766
|
|
781
|
-
|
782
|
-
|
783
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 194
|
784
|
-
def _reduce_50( val, _values, result )
|
785
|
-
result = val.flatten;
|
786
|
-
result
|
787
|
-
end
|
788
|
-
.,.,
|
789
|
-
|
790
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 198
|
791
|
-
def _reduce_51( val, _values, result )
|
792
|
-
result = val[0];
|
793
|
-
result
|
794
|
-
end
|
795
|
-
.,.,
|
796
|
-
|
797
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 199
|
798
|
-
def _reduce_52( val, _values, result )
|
799
|
-
result = UseServerNode.new( val[2] );
|
800
|
-
result
|
801
|
-
end
|
802
|
-
.,.,
|
803
|
-
|
804
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 206
|
805
|
-
def _reduce_53( val, _values, result )
|
767
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 196
|
768
|
+
def _reduce_49( val, _values, result )
|
806
769
|
result = GitSvnDeclarationNode.new( val[2] );
|
807
770
|
result
|
808
771
|
end
|
809
772
|
.,.,
|
810
773
|
|
811
|
-
# reduce
|
774
|
+
# reduce 50 omitted
|
812
775
|
|
813
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
814
|
-
def
|
776
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 201
|
777
|
+
def _reduce_51( val, _values, result )
|
815
778
|
result = val.flatten;
|
816
779
|
result
|
817
780
|
end
|
818
781
|
.,.,
|
819
782
|
|
820
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
821
|
-
def
|
783
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 205
|
784
|
+
def _reduce_52( val, _values, result )
|
822
785
|
result = val[0];
|
823
786
|
result
|
824
787
|
end
|
825
788
|
.,.,
|
826
789
|
|
827
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
828
|
-
def
|
790
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 206
|
791
|
+
def _reduce_53( val, _values, result )
|
829
792
|
result = GitSvnExternalNode.new( val[1] );
|
830
793
|
result
|
831
794
|
end
|
832
795
|
.,.,
|
833
796
|
|
834
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
835
|
-
def
|
797
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 213
|
798
|
+
def _reduce_54( val, _values, result )
|
836
799
|
result = IncludeNode.new( val[1] )
|
837
800
|
result
|
838
801
|
end
|
839
802
|
.,.,
|
840
803
|
|
841
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
842
|
-
def
|
804
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 220
|
805
|
+
def _reduce_55( val, _values, result )
|
843
806
|
result = ModuleDeclarationNode.new( val[1..-1] );
|
844
807
|
result
|
845
808
|
end
|
846
809
|
.,.,
|
847
810
|
|
848
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
849
|
-
def
|
811
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 221
|
812
|
+
def _reduce_56( val, _values, result )
|
850
813
|
result = ModuleDeclarationNode.new( val[1..-1] );
|
851
814
|
result
|
852
815
|
end
|
853
816
|
.,.,
|
854
817
|
|
855
|
-
# reduce
|
818
|
+
# reduce 57 omitted
|
856
819
|
|
857
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
858
|
-
def
|
820
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 226
|
821
|
+
def _reduce_58( val, _values, result )
|
859
822
|
result = val.flatten;
|
860
823
|
result
|
861
824
|
end
|
862
825
|
.,.,
|
863
826
|
|
864
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
865
|
-
def
|
827
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 230
|
828
|
+
def _reduce_59( val, _values, result )
|
866
829
|
result = UseBuildSystemNode.new( val[2] );
|
867
830
|
result
|
868
831
|
end
|
869
832
|
.,.,
|
870
833
|
|
871
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
872
|
-
def
|
834
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 231
|
835
|
+
def _reduce_60( val, _values, result )
|
873
836
|
result = UseEnvironmentNode.new( val[2] );
|
874
837
|
result
|
875
838
|
end
|
876
839
|
.,.,
|
877
840
|
|
878
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
879
|
-
def
|
841
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 232
|
842
|
+
def _reduce_61( val, _values, result )
|
880
843
|
result = UseRepositoryNode.new( val[2] );
|
881
844
|
result
|
882
845
|
end
|
883
846
|
.,.,
|
884
847
|
|
885
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
886
|
-
def
|
848
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 233
|
849
|
+
def _reduce_62( val, _values, result )
|
887
850
|
result = UseVcsNode.new( val[2] );
|
888
851
|
result
|
889
852
|
end
|
890
853
|
.,.,
|
891
854
|
|
892
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
893
|
-
def
|
855
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 234
|
856
|
+
def _reduce_63( val, _values, result )
|
894
857
|
result = LongDescriptionNode.new( val[2] );
|
895
858
|
result
|
896
859
|
end
|
897
860
|
.,.,
|
898
861
|
|
899
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
900
|
-
def
|
862
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 235
|
863
|
+
def _reduce_64( val, _values, result )
|
901
864
|
result = ShortDescriptionNode.new( val[1] );
|
902
865
|
result
|
903
866
|
end
|
904
867
|
.,.,
|
905
868
|
|
906
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
907
|
-
def
|
869
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 236
|
870
|
+
def _reduce_65( val, _values, result )
|
908
871
|
result = val[0];
|
909
872
|
result
|
910
873
|
end
|
911
874
|
.,.,
|
912
875
|
|
913
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
914
|
-
def
|
876
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 237
|
877
|
+
def _reduce_66( val, _values, result )
|
915
878
|
result = val[0];
|
916
879
|
result
|
917
880
|
end
|
918
881
|
.,.,
|
919
882
|
|
920
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
921
|
-
def
|
883
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 238
|
884
|
+
def _reduce_67( val, _values, result )
|
922
885
|
result = val[0];
|
923
886
|
result
|
924
887
|
end
|
925
888
|
.,.,
|
926
889
|
|
927
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
928
|
-
def
|
890
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 239
|
891
|
+
def _reduce_68( val, _values, result )
|
929
892
|
result = val[0];
|
930
893
|
result
|
931
894
|
end
|
932
895
|
.,.,
|
933
896
|
|
934
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
935
|
-
def
|
897
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 240
|
898
|
+
def _reduce_69( val, _values, result )
|
936
899
|
result = ModuleInstallPrefixNode.new( val[1] );
|
937
900
|
result
|
938
901
|
end
|
939
902
|
.,.,
|
940
903
|
|
941
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
942
|
-
def
|
904
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 241
|
905
|
+
def _reduce_70( val, _values, result )
|
943
906
|
result = ModuleBuildPrefixNode.new( val[1] );
|
944
907
|
result
|
945
908
|
end
|
946
909
|
.,.,
|
947
910
|
|
948
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
949
|
-
def
|
911
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 242
|
912
|
+
def _reduce_71( val, _values, result )
|
950
913
|
result = ModuleRemotePathNode.new( val[1] );
|
951
914
|
result
|
952
915
|
end
|
953
916
|
.,.,
|
954
917
|
|
955
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
956
|
-
def
|
918
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 243
|
919
|
+
def _reduce_72( val, _values, result )
|
957
920
|
result = ModuleLocalPathNode.new( val[1] );
|
958
921
|
result
|
959
922
|
end
|
960
923
|
.,.,
|
961
924
|
|
962
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
963
|
-
def
|
925
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 244
|
926
|
+
def _reduce_73( val, _values, result )
|
964
927
|
result = ModuleTemplateNode.new();
|
965
928
|
result
|
966
929
|
end
|
967
930
|
.,.,
|
968
931
|
|
969
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
970
|
-
def
|
932
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 245
|
933
|
+
def _reduce_74( val, _values, result )
|
971
934
|
result = ApplyPatchesNode.new(val[2]);
|
972
935
|
result
|
973
936
|
end
|
974
937
|
.,.,
|
975
938
|
|
976
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
977
|
-
def
|
939
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 252
|
940
|
+
def _reduce_75( val, _values, result )
|
978
941
|
result = RepositoryDeclarationNode.new( val[1..-1] );
|
979
942
|
result
|
980
943
|
end
|
981
944
|
.,.,
|
982
945
|
|
983
|
-
# reduce
|
946
|
+
# reduce 76 omitted
|
984
947
|
|
985
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
986
|
-
def
|
948
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 257
|
949
|
+
def _reduce_77( val, _values, result )
|
987
950
|
result = val.flatten();
|
988
951
|
result
|
989
952
|
end
|
990
953
|
.,.,
|
991
954
|
|
992
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
993
|
-
def
|
955
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 261
|
956
|
+
def _reduce_78( val, _values, result )
|
994
957
|
result = RepositoryPathNode.new( val[1] );
|
995
958
|
result
|
996
959
|
end
|
997
960
|
.,.,
|
998
961
|
|
999
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1000
|
-
def
|
962
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 262
|
963
|
+
def _reduce_79( val, _values, result )
|
1001
964
|
result = RepositoryUserNode.new( val[1] );
|
1002
965
|
result
|
1003
966
|
end
|
1004
967
|
.,.,
|
1005
968
|
|
1006
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1007
|
-
def
|
969
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 263
|
970
|
+
def _reduce_80( val, _values, result )
|
1008
971
|
result = UseSshKeyNode.new( val[2] );
|
1009
972
|
result
|
1010
973
|
end
|
1011
974
|
.,.,
|
1012
975
|
|
1013
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1014
|
-
def
|
976
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 264
|
977
|
+
def _reduce_81( val, _values, result )
|
1015
978
|
result = UseServerNode.new( val[2] );
|
1016
979
|
result
|
1017
980
|
end
|
1018
981
|
.,.,
|
1019
982
|
|
1020
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1021
|
-
def
|
983
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 265
|
984
|
+
def _reduce_82( val, _values, result )
|
1022
985
|
result = val[0];
|
1023
986
|
result
|
1024
987
|
end
|
1025
988
|
.,.,
|
1026
989
|
|
1027
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1028
|
-
def
|
990
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 266
|
991
|
+
def _reduce_83( val, _values, result )
|
1029
992
|
result = val[0];
|
1030
993
|
result
|
1031
994
|
end
|
1032
995
|
.,.,
|
1033
996
|
|
1034
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1035
|
-
def
|
997
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 273
|
998
|
+
def _reduce_84( val, _values, result )
|
1036
999
|
result = ServerDeclarationNode.new( [ val[1], ServerStatementList.new( val[2] ) ] );
|
1037
1000
|
result
|
1038
1001
|
end
|
1039
1002
|
.,.,
|
1040
1003
|
|
1041
|
-
# reduce
|
1004
|
+
# reduce 85 omitted
|
1042
1005
|
|
1043
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1044
|
-
def
|
1006
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 278
|
1007
|
+
def _reduce_86( val, _values, result )
|
1045
1008
|
result = val.flatten;
|
1046
1009
|
result
|
1047
1010
|
end
|
1048
1011
|
.,.,
|
1049
1012
|
|
1050
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1051
|
-
def
|
1013
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 282
|
1014
|
+
def _reduce_87( val, _values, result )
|
1052
1015
|
result = ServerHostNode.new( val[1] );
|
1053
1016
|
result
|
1054
1017
|
end
|
1055
1018
|
.,.,
|
1056
1019
|
|
1057
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1058
|
-
def
|
1020
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 283
|
1021
|
+
def _reduce_88( val, _values, result )
|
1059
1022
|
result = ServerProtocolNode.new( val[1] );
|
1060
1023
|
result
|
1061
1024
|
end
|
1062
1025
|
.,.,
|
1063
1026
|
|
1064
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1065
|
-
def
|
1027
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 284
|
1028
|
+
def _reduce_89( val, _values, result )
|
1066
1029
|
result = ServerPathNode.new( val[1] );
|
1067
1030
|
result
|
1068
1031
|
end
|
1069
1032
|
.,.,
|
1070
1033
|
|
1071
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1072
|
-
def
|
1034
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 291
|
1035
|
+
def _reduce_90( val, _values, result )
|
1073
1036
|
result = SshKeyDeclarationNode.new( val[1..-1] );
|
1074
1037
|
result
|
1075
1038
|
end
|
1076
1039
|
.,.,
|
1077
1040
|
|
1078
|
-
# reduce
|
1041
|
+
# reduce 91 omitted
|
1079
1042
|
|
1080
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1081
|
-
def
|
1043
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 296
|
1044
|
+
def _reduce_92( val, _values, result )
|
1082
1045
|
result = val.flatten;
|
1083
1046
|
result
|
1084
1047
|
end
|
1085
1048
|
.,.,
|
1086
1049
|
|
1087
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1088
|
-
def
|
1050
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 300
|
1051
|
+
def _reduce_93( val, _values, result )
|
1089
1052
|
result = SshKeyFileNode.new( val[1] );
|
1090
1053
|
result
|
1091
1054
|
end
|
1092
1055
|
.,.,
|
1093
1056
|
|
1094
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1095
|
-
def
|
1057
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 307
|
1058
|
+
def _reduce_94( val, _values, result )
|
1096
1059
|
result = SvnDeclarationNode.new( val[2] );
|
1097
1060
|
result
|
1098
1061
|
end
|
1099
1062
|
.,.,
|
1100
1063
|
|
1101
|
-
# reduce
|
1064
|
+
# reduce 95 omitted
|
1102
1065
|
|
1103
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1104
|
-
def
|
1066
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 312
|
1067
|
+
def _reduce_96( val, _values, result )
|
1105
1068
|
result = val.flatten;
|
1106
1069
|
result
|
1107
1070
|
end
|
1108
1071
|
.,.,
|
1109
1072
|
|
1110
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1111
|
-
def
|
1073
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 316
|
1074
|
+
def _reduce_97( val, _values, result )
|
1112
1075
|
result = SvnCheckoutOnlyNode.new(val[1]);
|
1113
1076
|
result
|
1114
1077
|
end
|
1115
1078
|
.,.,
|
1116
1079
|
|
1117
|
-
# reduce
|
1080
|
+
# reduce 98 omitted
|
1118
1081
|
|
1119
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
1120
|
-
def
|
1082
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 324
|
1083
|
+
def _reduce_99( val, _values, result )
|
1121
1084
|
result = val[0] ? val[0] + "\n" + val[1] : val[1];
|
1122
1085
|
result
|
1123
1086
|
end
|