build-tool 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
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, :command_log, :null => false
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
@@ -2,6 +2,6 @@ $:.unshift(File.dirname(__FILE__)) unless
2
2
  $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
3
3
 
4
4
  module BuildTool
5
- VERSION = '0.3.1'
5
+ VERSION = '0.3.2'
6
6
  end
7
7
 
@@ -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
- logger.warn( "Could not link build directory to source directory for inplace build of #{@module.name}." )
94
+ raise ConfigurationError, "Build directory #{build_directory} exists and is not a symlink!"
95
95
  end
96
- elsif !$noop
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
- return true
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
- else
111
- return false
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
 
@@ -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 = :REMOTE; [:REMOTE, text]; }
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 = :REMOTE; [:REMOTE, text]; }
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
  #
@@ -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..id2c539b3d08', 'lib/build-tool/cfg/parser.y', 350
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..id2c539b3d08
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, :_reduce_50,
99
- 1, 79, :_reduce_51,
100
- 3, 79, :_reduce_52,
101
- 4, 66, :_reduce_53,
102
- 0, 80, :_reduce_none,
103
- 2, 80, :_reduce_55,
104
- 1, 81, :_reduce_56,
105
- 2, 81, :_reduce_57,
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, :_reduce_81,
130
- 2, 85, :_reduce_82,
131
- 2, 85, :_reduce_83,
132
- 3, 85, :_reduce_84,
133
- 3, 85, :_reduce_85,
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, :_reduce_90,
139
- 2, 87, :_reduce_91,
140
- 2, 87, :_reduce_92,
140
+ 2, 86, :_reduce_92,
141
141
  2, 87, :_reduce_93,
142
- 4, 60, :_reduce_94,
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, :_reduce_103 ]
147
+ 2, 75, :_reduce_99 ]
152
148
 
153
- racc_reduce_n = 104
149
+ racc_reduce_n = 100
154
150
 
155
- racc_shift_n = 190
151
+ racc_shift_n = 184
156
152
 
157
153
  racc_action_table = [
158
- 71, 124, 74, 15, 77, 120, 116, 45, 1, 158,
159
- 117, 36, 123, 125, 24, 158, 121, 26, 82, 63,
160
- 122, 70, 115, 37, 71, 139, 74, 15, 77, 154,
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, 127, 71, 53,
163
- 74, 15, 77, 141, 64, 3, 1, 24, 53, 140,
164
- 26, 54, 78, 55, 38, 66, 82, 63, 73, 70,
165
- 54, 6, 55, 6, 91, 128, 39, 91, 64, 3,
166
- 182, 90, 182, 33, 90, 130, 78, 113, 15, 66,
167
- 20, 21, 73, 1, 15, 7, 20, 21, 132, 1,
168
- 18, 7, 133, 50, 86, 5, 18, 9, 135, 6,
169
- 136, 5, 12, 9, 112, 111, 3, 6, 46, 47,
170
- 12, 109, 3, 6, 15, 24, 12, 24, 26, 1,
171
- 26, 7, 15, 41, 108, 24, 18, 1, 26, 7,
172
- 107, 146, 58, 9, 18, 24, 100, 106, 26, 101,
173
- 58, 9, 3, 6, 24, 59, 12, 26, 104, 50,
174
- 3, 6, 103, 59, 12, 6, 24, 24, 12, 26,
175
- 26, 41, 152, 24, 46, 47, 26, 24, 24, 24,
176
- 26, 26, 26, 24, 24, 24, 26, 26, 26, 24,
177
- 24, 24, 26, 26, 26, 24, 24, 154, 26, 26,
178
- 28, 163, 97, 165, 96, 167, 168, 169, 170, 170,
179
- 154, 172, 173, 174, 175, 176, 87, 178, 163, 180,
180
- 181, 86, 186, 187, 35, 166 ]
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
- 76, 73, 76, 76, 76, 66, 64, 25, 76, 160,
184
- 66, 20, 73, 73, 44, 125, 70, 44, 76, 76,
185
- 71, 76, 63, 20, 31, 96, 31, 31, 31, 160,
186
- 76, 76, 31, 66, 25, 125, 38, 73, 76, 38,
187
- 31, 76, 31, 31, 76, 31, 66, 74, 131, 57,
188
- 131, 131, 131, 96, 31, 31, 131, 39, 29, 96,
189
- 39, 57, 31, 57, 21, 31, 131, 131, 31, 131,
190
- 29, 172, 29, 184, 34, 75, 21, 89, 131, 131,
191
- 172, 34, 184, 14, 89, 77, 131, 60, 0, 131,
192
- 0, 0, 131, 0, 22, 0, 22, 22, 82, 22,
193
- 0, 22, 84, 52, 85, 0, 22, 0, 86, 52,
194
- 88, 22, 52, 22, 59, 58, 0, 0, 52, 52,
195
- 0, 56, 22, 22, 61, 12, 22, 3, 12, 61,
196
- 3, 61, 30, 99, 55, 120, 61, 30, 120, 30,
197
- 54, 112, 61, 61, 30, 37, 46, 53, 37, 46,
198
- 30, 30, 61, 61, 47, 61, 61, 47, 51, 27,
199
- 30, 30, 50, 30, 30, 27, 119, 118, 27, 119,
200
- 118, 43, 122, 36, 27, 27, 36, 117, 101, 100,
201
- 117, 101, 100, 6, 1, 90, 6, 1, 90, 15,
202
- 80, 7, 15, 80, 7, 9, 186, 123, 9, 186,
203
- 5, 126, 42, 138, 41, 140, 141, 142, 145, 151,
204
- 153, 154, 155, 156, 158, 159, 33, 161, 162, 163,
205
- 164, 32, 182, 183, 18, 139 ]
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, 145, nil, 88, nil, 161, 144, 152, nil, 156,
209
- nil, nil, 86, nil, 83, 150, nil, nil, 185, nil,
210
- -2, 51, 88, nil, nil, -12, nil, 130, nil, 41,
211
- 126, 21, 207, 216, 54, nil, 134, 106, -3, 18,
212
- nil, 162, 192, 125, -25, nil, 111, 115, nil, nil,
213
- 123, 148, 74, 108, 101, 95, 111, 32, 108, 107,
214
- 77, 118, nil, -17, -33, nil, -1, nil, nil, nil,
215
- 9, -8, nil, -3, 8, 65, -3, 46, nil, nil,
216
- 151, nil, 59, nil, 92, 90, 69, nil, 100, 57,
217
- 146, nil, nil, nil, nil, nil, 23, nil, nil, 87,
218
- 140, 139, nil, nil, nil, nil, nil, nil, nil, nil,
219
- nil, nil, 102, nil, nil, nil, nil, 138, 128, 127,
220
- 96, nil, 133, 165, nil, 3, 175, nil, nil, nil,
221
- nil, 45, nil, nil, nil, nil, nil, nil, 164, 186,
222
- 166, 167, 197, nil, nil, 169, nil, nil, nil, nil,
223
- nil, 170, nil, 178, 172, 202, 203, nil, 175, 205,
224
- -3, 207, 192, 180, 210, nil, nil, nil, nil, nil,
225
- nil, nil, 36, nil, nil, nil, nil, nil, nil, nil,
226
- nil, nil, 187, 213, 38, nil, 157, nil, 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, -104, -13, -104, -14, -104, -104, -104, -15, -104,
230
- -16, -17, -104, -18, -104, -104, -19, -1, -104, -20,
231
- -104, -104, -5, -12, -2, -34, -3, -80, -7, -89,
232
- -40, -61, -95, -104, -28, -58, -104, -104, -104, -104,
233
- -6, -104, -104, -34, -104, -4, -104, -104, -87, -86,
234
- -104, -104, -80, -104, -104, -104, -104, -89, -104, -104,
235
- -104, -40, -42, -104, -104, -69, -104, -23, -72, -24,
236
- -104, -104, -71, -104, -104, -104, -61, -104, -77, -70,
237
- -104, -21, -104, -22, -104, -95, -104, 190, -104, -28,
238
- -104, -31, -8, -10, -9, -11, -104, -32, -35, -34,
239
- -104, -104, -83, -82, -79, -81, -91, -93, -92, -88,
240
- -90, -102, -104, -39, -41, -76, -75, -104, -104, -104,
241
- -104, -102, -104, -46, -26, -54, -99, -74, -59, -62,
242
- -68, -61, -73, -94, -96, -97, -27, -29, -104, -104,
243
- -104, -104, -104, -85, -84, -43, -44, -64, -65, -66,
244
- -63, -67, -78, -46, -104, -104, -104, -56, -104, -104,
245
- -54, -104, -99, -104, -104, -30, -38, -36, -37, -33,
246
- -103, -47, -49, -45, -25, -57, -53, -55, -98, -100,
247
- -101, -60, -104, -104, -49, -51, -104, -48, -50, -52 ]
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
- 25, 48, 27, 75, 72, 29, 30, 68, 31, 65,
251
- 42, 32, 88, 84, 34, 161, 60, 56, 157, 62,
252
- 159, 156, 17, 14, 145, nil, 48, 155, 98, 183,
253
- nil, 51, nil, 49, 151, 92, 93, 94, 95, nil,
254
- nil, 188, nil, 99, 40, 110, 102, 114, 129, 72,
255
- 62, 179, 68, 157, 65, 177, 105, 171, 49, 44,
256
- nil, nil, nil, nil, nil, 80, 134, 137, nil, nil,
257
- nil, nil, nil, nil, nil, nil, nil, nil, nil, 131,
258
- nil, nil, nil, nil, 142, nil, nil, nil, nil, 138,
259
- nil, nil, nil, nil, nil, nil, nil, nil, nil, 143,
260
- 144, nil, nil, 164, 72, nil, nil, 68, nil, 65,
261
- nil, nil, nil, nil, nil, nil, 147, 148, 149, 150,
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, 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
- 3, 11, 3, 34, 10, 3, 3, 8, 3, 7,
272
- 23, 3, 21, 40, 3, 42, 25, 38, 29, 6,
273
- 32, 20, 2, 1, 27, nil, 11, 28, 23, 30,
274
- nil, 36, nil, 12, 27, 3, 3, 3, 3, nil,
275
- nil, 30, nil, 3, 2, 38, 3, 25, 34, 10,
276
- 6, 42, 8, 29, 7, 32, 36, 28, 12, 4,
277
- nil, nil, nil, nil, nil, 4, 40, 21, nil, nil,
278
- nil, nil, nil, nil, nil, nil, nil, nil, nil, 3,
279
- nil, nil, nil, nil, 23, nil, nil, nil, nil, 3,
280
- nil, nil, nil, nil, nil, nil, nil, nil, nil, 3,
281
- 3, nil, nil, 34, 10, nil, nil, 8, nil, 7,
282
- nil, nil, nil, nil, nil, nil, 3, 3, 3, 3,
283
- nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
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, 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, 23, 22, -1, 34, nil, -11, -22, -24, nil,
293
- -27, -26, 6, nil, nil, nil, nil, nil, nil, nil,
294
- -103, -22, nil, -15, nil, -14, nil, -87, -96, -107,
295
- -143, nil, -105, nil, -28, nil, 4, nil, -12, nil,
296
- -19, nil, -111, nil ]
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, 184, nil, 160, nil, 76, nil, 52, nil, 57,
303
- nil, 85, nil, 162 ]
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
- 'git_remote_values',
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 = GitRemoteNode.new( [ val[1], GitRemoteValueList.new( val[2] ) ] );
762
+ result = RepositoryDeclarationNode.new( val[1..-1]);
777
763
  result
778
764
  end
779
765
  .,.,
780
766
 
781
- # reduce 49 omitted
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 54 omitted
774
+ # reduce 50 omitted
812
775
 
813
- module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 211
814
- def _reduce_55( val, _values, result )
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', 215
821
- def _reduce_56( val, _values, result )
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', 216
828
- def _reduce_57( val, _values, result )
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', 223
835
- def _reduce_58( val, _values, result )
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', 230
842
- def _reduce_59( val, _values, result )
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', 231
849
- def _reduce_60( val, _values, result )
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 61 omitted
818
+ # reduce 57 omitted
856
819
 
857
- module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 236
858
- def _reduce_62( val, _values, result )
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', 240
865
- def _reduce_63( val, _values, result )
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', 241
872
- def _reduce_64( val, _values, result )
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', 242
879
- def _reduce_65( val, _values, result )
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', 243
886
- def _reduce_66( val, _values, result )
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', 244
893
- def _reduce_67( val, _values, result )
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', 245
900
- def _reduce_68( val, _values, result )
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', 246
907
- def _reduce_69( val, _values, result )
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', 247
914
- def _reduce_70( val, _values, result )
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', 248
921
- def _reduce_71( val, _values, result )
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', 249
928
- def _reduce_72( val, _values, result )
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', 250
935
- def _reduce_73( val, _values, result )
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', 251
942
- def _reduce_74( val, _values, result )
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', 252
949
- def _reduce_75( val, _values, result )
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', 253
956
- def _reduce_76( val, _values, result )
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', 254
963
- def _reduce_77( val, _values, result )
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', 255
970
- def _reduce_78( val, _values, result )
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', 262
977
- def _reduce_79( val, _values, result )
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 80 omitted
946
+ # reduce 76 omitted
984
947
 
985
- module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 267
986
- def _reduce_81( val, _values, result )
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', 271
993
- def _reduce_82( val, _values, result )
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', 272
1000
- def _reduce_83( val, _values, result )
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', 273
1007
- def _reduce_84( val, _values, result )
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', 274
1014
- def _reduce_85( val, _values, result )
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', 275
1021
- def _reduce_86( val, _values, result )
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', 276
1028
- def _reduce_87( val, _values, result )
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', 283
1035
- def _reduce_88( val, _values, result )
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 89 omitted
1004
+ # reduce 85 omitted
1042
1005
 
1043
- module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 288
1044
- def _reduce_90( val, _values, result )
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', 292
1051
- def _reduce_91( val, _values, result )
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', 293
1058
- def _reduce_92( val, _values, result )
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', 294
1065
- def _reduce_93( val, _values, result )
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', 301
1072
- def _reduce_94( val, _values, result )
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 95 omitted
1041
+ # reduce 91 omitted
1079
1042
 
1080
- module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 306
1081
- def _reduce_96( val, _values, result )
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', 310
1088
- def _reduce_97( val, _values, result )
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', 317
1095
- def _reduce_98( val, _values, result )
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 99 omitted
1064
+ # reduce 95 omitted
1102
1065
 
1103
- module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 322
1104
- def _reduce_100( val, _values, result )
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', 326
1111
- def _reduce_101( val, _values, result )
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 102 omitted
1080
+ # reduce 98 omitted
1118
1081
 
1119
- module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 334
1120
- def _reduce_103( val, _values, result )
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