build-tool 0.1.4 → 0.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 +2 -3
- data/History.txt +29 -0
- data/Manifest.txt +39 -10
- data/README.txt +5 -8
- data/Rakefile +14 -6
- data/bin/build-tool +3 -35
- data/db/migrations/001_command_histories.rb +20 -0
- data/db/migrations/002_module_events.rb +24 -0
- data/db/migrations/003_command_histories_add_logfile.rb +19 -0
- data/lib/build-tool.rb +1 -1
- data/lib/build-tool/application.rb +103 -30
- data/lib/build-tool/build-system/autoconf.rb +69 -6
- data/lib/build-tool/build-system/base.rb +2 -25
- data/lib/build-tool/build-system/custom.rb +6 -19
- data/lib/build-tool/build-system/kdel10n.rb +39 -0
- data/lib/build-tool/build-system/none.rb +82 -0
- data/lib/build-tool/cfg/lexer.rb +133 -7
- data/lib/build-tool/cfg/lexer.rex +58 -6
- data/lib/build-tool/cfg/node.rb +13 -1
- data/lib/build-tool/cfg/parser.rb +519 -333
- data/lib/build-tool/cfg/parser.y +74 -11
- data/lib/build-tool/cfg/visitor.rb +182 -20
- data/lib/build-tool/command_actions.rb +202 -0
- data/lib/build-tool/commands.rb +193 -49
- data/lib/build-tool/commands/build.rb +13 -8
- data/lib/build-tool/commands/configure.rb +8 -3
- data/lib/build-tool/commands/environments.rb +4 -8
- data/lib/build-tool/commands/environments/list.rb +8 -0
- data/lib/build-tool/commands/fetch.rb +7 -2
- data/lib/build-tool/commands/gc.rb +53 -0
- data/lib/build-tool/commands/history.rb +111 -0
- data/lib/build-tool/commands/install.rb +6 -1
- data/lib/build-tool/commands/lsfeatures.rb +73 -0
- data/lib/build-tool/commands/modules.rb +3 -7
- data/lib/build-tool/commands/modules/info.rb +15 -6
- data/lib/build-tool/commands/modules/list.rb +10 -5
- data/lib/build-tool/commands/rebase.rb +6 -1
- data/lib/build-tool/commands/recipes.rb +3 -7
- data/lib/build-tool/configuration.rb +24 -1
- data/lib/build-tool/environment.rb +17 -3
- data/lib/build-tool/feature.rb +47 -0
- data/lib/build-tool/history.rb +173 -0
- data/lib/build-tool/module.rb +49 -90
- data/lib/build-tool/recipe.rb +5 -0
- data/lib/build-tool/vcs/archive.rb +140 -0
- data/lib/build-tool/vcs/base.rb +5 -5
- data/lib/build-tool/vcs/git-svn.rb +4 -0
- data/lib/build-tool/vcs/git.rb +4 -0
- data/lib/mj/logging.rb +11 -0
- data/recipes/{kdeqt4.6 → kde}/custom/qt/qtscriptgenerator/compile.sh +0 -0
- data/recipes/{kdeqt4.6 → kde}/custom/qt/qtscriptgenerator/configure.sh +0 -0
- data/recipes/{kdeqt4.6 → kde}/custom/qt/qtscriptgenerator/install.sh +0 -0
- data/recipes/kde/custom/scripting/pyqt4/compile.sh +10 -0
- data/recipes/kde/custom/scripting/pyqt4/configure.sh +14 -0
- data/recipes/kde/custom/scripting/pyqt4/install.sh +10 -0
- data/recipes/kde/custom/scripting/sip/compile.sh +10 -0
- data/recipes/kde/custom/scripting/sip/configure.sh +13 -0
- data/recipes/kde/custom/scripting/sip/install.sh +10 -0
- data/recipes/kde/files/xsession +8 -4
- data/recipes/kde/kde-bindings.recipe +22 -0
- data/recipes/kde/kde-core.recipe +104 -0
- data/recipes/kde/kde-devel.recipe +38 -0
- data/recipes/kde/kde-finance.recipe +17 -0
- data/recipes/kde/kde-graphics.recipe +27 -0
- data/recipes/kde/kde-kdevelop.recipe +116 -0
- data/recipes/kde/kde-l10n.recipe +14 -0
- data/recipes/kde/kde-multimedia.recipe +31 -0
- data/recipes/kde/kde-network.recipe +55 -0
- data/recipes/kde/kde-office.recipe +28 -0
- data/recipes/kde/kde-plasma.recipe +117 -0
- data/recipes/{kdeqt4.6/recipe → kde/kde-qt.recipe} +25 -57
- data/recipes/kde/kde-scripting.recipe +63 -0
- data/recipes/kde/kde-support.recipe +73 -0
- data/recipes/kde/kde-utils.recipe +22 -0
- data/recipes/kde/kde-webdev.recipe +41 -0
- data/recipes/kde/recipe +92 -532
- data/recipes/kde/recipe-local +58 -2
- data/recipes/kde/settings.yaml +17 -0
- data/recipes/kde43/recipe-local +58 -2
- data/test/test_configuration_parser.rb +76 -21
- data/test/test_feature.rb +34 -0
- data/test/test_history.rb +149 -0
- metadata +185 -30
- metadata.gz.sig +0 -0
- data/lib/build-tool/pluginbase.rb +0 -43
- data/recipes/kdeqt4.6/info.yaml +0 -7
- data/recipes/kdeqt4.6/recipe-local +0 -30
- data/recipes/kdeqt4.6/settings.yaml +0 -27
- data/tasks/rdoc.rake +0 -34
- data/test.rb +0 -28
@@ -51,6 +51,14 @@ macro
|
|
51
51
|
rule
|
52
52
|
|
53
53
|
log-directory\b { [ :LOG_DIRECTORY, text ]; }
|
54
|
+
include\b { [ :INCLUDE, text ]; }
|
55
|
+
feature\b { [ :FEATURE, text ]; }
|
56
|
+
long\b { [ :LONG, text ]; }
|
57
|
+
short\b { [ :SHORT, text ]; }
|
58
|
+
description\b { [ :DESCRIPTION, text ]; }
|
59
|
+
end\b { [ :END, text ]; }
|
60
|
+
enable\b { @states.push @state; @state = :ENABLE; [:ENABLE, text]; }
|
61
|
+
disable\b { @states.push @state; @state = :DISABLE; [:DISABLE, text]; }
|
54
62
|
vcs\b { @states.push @state; @state = :VCS; [:VCS, text]; }
|
55
63
|
build-system\b { @states.push @state; @state = :BUILD_SYSTEM; [:BUILD_SYSTEM, text]; }
|
56
64
|
server\b { @states.push @state; @state = :SERVER; [:SERVER, text]; }
|
@@ -67,6 +75,19 @@ rule
|
|
67
75
|
{STRINGERROR} { [:GARBAGE, text]; }
|
68
76
|
. { [:GARBAGE, text]; }
|
69
77
|
|
78
|
+
#
|
79
|
+
### ARCHIVE
|
80
|
+
#
|
81
|
+
:ARCHIVE end\b { @state = @states.pop; [ :END, text ]; }
|
82
|
+
# COMMON
|
83
|
+
:ARCHIVE {STRING} { [:STRING, @ss[1]]; }
|
84
|
+
:ARCHIVE {TOKEN} { [:TOKEN, text]; }
|
85
|
+
:ARCHIVE {COMMENT} { [:COMMENT, text]; }
|
86
|
+
:ARCHIVE {BLANK} { [:IGNORE, text]; }
|
87
|
+
:ARCHIVE {LF} { [:IGNORE, text]; }
|
88
|
+
:ARCHIVE {STRINGERROR} { [:GARBAGE, text]; }
|
89
|
+
:ARCHIVE . { [:GARBAGE, text]; }
|
90
|
+
|
70
91
|
#
|
71
92
|
### BUILD SYSTEM
|
72
93
|
#
|
@@ -82,6 +103,36 @@ rule
|
|
82
103
|
:BUILD_SYSTEM {STRINGERROR} { [:GARBAGE, text]; }
|
83
104
|
:BUILD_SYSTEM . { [:GARBAGE, text]; }
|
84
105
|
|
106
|
+
#
|
107
|
+
### DISABLE
|
108
|
+
#
|
109
|
+
:DISABLE feature\b { @state = @states.pop; [:FEATURE, text]; }
|
110
|
+
:DISABLE module\b { @state = @states.pop; [:MODULE, text]; }
|
111
|
+
|
112
|
+
# COMMON
|
113
|
+
:DISABLE {STRING} { [:STRING, @ss[1]]; }
|
114
|
+
:DISABLE {TOKEN} { [:TOKEN, text]; }
|
115
|
+
:DISABLE {COMMENT} { [:COMMENT, text]; }
|
116
|
+
:DISABLE {BLANK} { [:IGNORE, text]; }
|
117
|
+
:DISABLE {LF} { [:IGNORE, text]; }
|
118
|
+
:DISABLE {STRINGERROR} { [:GARBAGE, text]; }
|
119
|
+
:DISABLE . { [:GARBAGE, text]; }
|
120
|
+
|
121
|
+
#
|
122
|
+
### ENABLE
|
123
|
+
#
|
124
|
+
:ENABLE feature\b { @state = @states.pop; [:FEATURE, text]; }
|
125
|
+
:ENABLE module\b { @state = @states.pop; [:MODULE, text]; }
|
126
|
+
|
127
|
+
# COMMON
|
128
|
+
:ENABLE {STRING} { [:STRING, @ss[1]]; }
|
129
|
+
:ENABLE {TOKEN} { [:TOKEN, text]; }
|
130
|
+
:ENABLE {COMMENT} { [:COMMENT, text]; }
|
131
|
+
:ENABLE {BLANK} { [:IGNORE, text]; }
|
132
|
+
:ENABLE {LF} { [:IGNORE, text]; }
|
133
|
+
:ENABLE {STRINGERROR} { [:GARBAGE, text]; }
|
134
|
+
:ENABLE . { [:GARBAGE, text]; }
|
135
|
+
|
85
136
|
#
|
86
137
|
### ENVIRONMENT DEFINITION
|
87
138
|
#
|
@@ -161,12 +212,12 @@ rule
|
|
161
212
|
#
|
162
213
|
### REPOSITORY
|
163
214
|
#
|
164
|
-
:REPOSITORY
|
165
|
-
:REPOSITORY
|
166
|
-
:REPOSITORY
|
167
|
-
:REPOSITORY ssh-key
|
168
|
-
:REPOSITORY use\b
|
169
|
-
:REPOSITORY end
|
215
|
+
:REPOSITORY path\b { [:PATH, text]; }
|
216
|
+
:REPOSITORY user\b { [:USER, text]; }
|
217
|
+
:REPOSITORY server\b { @states.push @state; @state = :SERVER; [:SERVER, text]; }
|
218
|
+
:REPOSITORY ssh-key\b { @states.push @state; @state = :SSH_KEY; [:SSH_KEY, text]; }
|
219
|
+
:REPOSITORY use\b { @states.push @state; @state = :USE; [:USE, text]; }
|
220
|
+
:REPOSITORY end\b { @state = @states.pop; [:END, text]; }
|
170
221
|
# COMMON
|
171
222
|
:REPOSITORY {STRING} { [:STRING, @ss[1]]; }
|
172
223
|
:REPOSITORY {TOKEN} { [:TOKEN, text]; }
|
@@ -230,6 +281,7 @@ rule
|
|
230
281
|
#
|
231
282
|
:VCS git-svn\b { @state = :GIT; [:GIT_SVN, text]; }
|
232
283
|
:VCS git\b { @state = :GIT; [:GIT, text]; }
|
284
|
+
:VCS archive\b { @state = :ARCHIVE; [:ARCHIVE, text]; }
|
233
285
|
# COMMON
|
234
286
|
:VCS {STRING} { [:STRING, @ss[1]]; }
|
235
287
|
:VCS {TOKEN} { [:TOKEN, text]; }
|
data/lib/build-tool/cfg/node.rb
CHANGED
@@ -21,6 +21,8 @@ module BuildTool; module Cfg;
|
|
21
21
|
end # class Node
|
22
22
|
|
23
23
|
%w[
|
24
|
+
ArchiveDeclaration
|
25
|
+
|
24
26
|
BuildSystemDeclaration
|
25
27
|
BuildSystemOption
|
26
28
|
BuildSystemInplace
|
@@ -28,6 +30,15 @@ module BuildTool; module Cfg;
|
|
28
30
|
EnvironmentDeclaration
|
29
31
|
EnvironmentVariable
|
30
32
|
|
33
|
+
EnableFeature
|
34
|
+
DisableFeature
|
35
|
+
EnableModule
|
36
|
+
DisableModule
|
37
|
+
|
38
|
+
Feature
|
39
|
+
ShortDescription
|
40
|
+
LongDescription
|
41
|
+
|
31
42
|
GitSvnDeclaration
|
32
43
|
|
33
44
|
GitDeclaration
|
@@ -37,6 +48,8 @@ module BuildTool; module Cfg;
|
|
37
48
|
|
38
49
|
GitSvnExternal
|
39
50
|
|
51
|
+
Include
|
52
|
+
|
40
53
|
LogDirectory
|
41
54
|
|
42
55
|
ModuleBuildPrefix
|
@@ -48,7 +61,6 @@ module BuildTool; module Cfg;
|
|
48
61
|
|
49
62
|
RepositoryDeclaration
|
50
63
|
RepositoryPath
|
51
|
-
RepositoryServer
|
52
64
|
RepositoryUser
|
53
65
|
|
54
66
|
ServerDeclaration
|
@@ -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..id73b9f9dc71', 'lib/build-tool/cfg/parser.y', 318
|
26
26
|
#
|
27
27
|
### INNER
|
28
28
|
#
|
@@ -40,245 +40,295 @@ 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..id73b9f9dc71
|
44
44
|
|
45
45
|
##### racc 1.4.5 generates ###
|
46
46
|
|
47
47
|
racc_reduce_table = [
|
48
48
|
0, 0, :racc_error,
|
49
|
-
1,
|
50
|
-
1,
|
51
|
-
1,
|
52
|
-
1,
|
53
|
-
0,
|
54
|
-
2,
|
55
|
-
2,
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
1,
|
61
|
-
1,
|
62
|
-
1,
|
63
|
-
1,
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
1,
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
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,
|
49
|
+
1, 45, :_reduce_1,
|
50
|
+
1, 47, :_reduce_2,
|
51
|
+
1, 47, :_reduce_3,
|
52
|
+
1, 48, :_reduce_4,
|
53
|
+
0, 46, :_reduce_none,
|
54
|
+
2, 46, :_reduce_6,
|
55
|
+
2, 49, :_reduce_7,
|
56
|
+
3, 49, :_reduce_8,
|
57
|
+
3, 49, :_reduce_9,
|
58
|
+
3, 49, :_reduce_10,
|
59
|
+
3, 49, :_reduce_11,
|
60
|
+
1, 49, :_reduce_12,
|
61
|
+
1, 50, :_reduce_13,
|
62
|
+
1, 50, :_reduce_14,
|
63
|
+
1, 50, :_reduce_15,
|
64
|
+
1, 50, :_reduce_16,
|
65
|
+
1, 50, :_reduce_17,
|
66
|
+
1, 50, :_reduce_18,
|
67
|
+
1, 50, :_reduce_19,
|
68
|
+
1, 50, :_reduce_20,
|
69
|
+
1, 59, :_reduce_21,
|
70
|
+
1, 59, :_reduce_22,
|
71
|
+
1, 59, :_reduce_23,
|
72
|
+
4, 62, :_reduce_24,
|
107
73
|
0, 63, :_reduce_none,
|
108
|
-
|
109
|
-
|
110
|
-
2, 64, :
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
0,
|
116
|
-
2,
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
4,
|
121
|
-
0,
|
122
|
-
2,
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
74
|
+
4, 51, :_reduce_26,
|
75
|
+
0, 64, :_reduce_none,
|
76
|
+
2, 64, :_reduce_28,
|
77
|
+
3, 65, :_reduce_29,
|
78
|
+
1, 65, :_reduce_30,
|
79
|
+
4, 52, :_reduce_31,
|
80
|
+
6, 52, :_reduce_32,
|
81
|
+
0, 66, :_reduce_none,
|
82
|
+
2, 66, :_reduce_34,
|
83
|
+
4, 67, :_reduce_35,
|
84
|
+
4, 67, :_reduce_36,
|
85
|
+
4, 67, :_reduce_37,
|
86
|
+
4, 58, :_reduce_38,
|
87
|
+
0, 68, :_reduce_none,
|
88
|
+
2, 68, :_reduce_40,
|
89
|
+
1, 69, :_reduce_41,
|
90
|
+
3, 69, :_reduce_42,
|
91
|
+
3, 69, :_reduce_43,
|
92
|
+
4, 60, :_reduce_44,
|
93
|
+
0, 70, :_reduce_none,
|
94
|
+
2, 70, :_reduce_46,
|
95
|
+
4, 71, :_reduce_47,
|
96
|
+
0, 72, :_reduce_none,
|
97
|
+
2, 72, :_reduce_49,
|
98
|
+
1, 73, :_reduce_50,
|
99
|
+
3, 73, :_reduce_51,
|
100
|
+
4, 61, :_reduce_52,
|
101
|
+
0, 74, :_reduce_none,
|
102
|
+
2, 74, :_reduce_54,
|
103
|
+
1, 75, :_reduce_55,
|
104
|
+
2, 75, :_reduce_56,
|
105
|
+
2, 57, :_reduce_57,
|
106
|
+
4, 53, :_reduce_58,
|
107
|
+
6, 53, :_reduce_59,
|
108
|
+
0, 76, :_reduce_none,
|
109
|
+
2, 76, :_reduce_61,
|
110
|
+
3, 77, :_reduce_62,
|
111
|
+
3, 77, :_reduce_63,
|
112
|
+
3, 77, :_reduce_64,
|
113
|
+
3, 77, :_reduce_65,
|
114
|
+
1, 77, :_reduce_66,
|
115
|
+
1, 77, :_reduce_67,
|
116
|
+
1, 77, :_reduce_68,
|
117
|
+
1, 77, :_reduce_69,
|
118
|
+
2, 77, :_reduce_70,
|
119
|
+
2, 77, :_reduce_71,
|
120
|
+
2, 77, :_reduce_72,
|
121
|
+
2, 77, :_reduce_73,
|
122
|
+
1, 77, :_reduce_74,
|
123
|
+
4, 54, :_reduce_75,
|
124
|
+
0, 78, :_reduce_none,
|
125
|
+
2, 78, :_reduce_77,
|
126
|
+
2, 79, :_reduce_78,
|
127
|
+
2, 79, :_reduce_79,
|
128
|
+
3, 79, :_reduce_80,
|
129
|
+
3, 79, :_reduce_81,
|
130
|
+
1, 79, :_reduce_82,
|
131
|
+
1, 79, :_reduce_83,
|
132
|
+
4, 55, :_reduce_84,
|
133
|
+
0, 80, :_reduce_none,
|
134
|
+
2, 80, :_reduce_86,
|
135
|
+
2, 81, :_reduce_87,
|
136
|
+
2, 81, :_reduce_88,
|
137
|
+
2, 81, :_reduce_89,
|
138
|
+
4, 56, :_reduce_90,
|
139
|
+
0, 82, :_reduce_none,
|
140
|
+
2, 82, :_reduce_92,
|
141
|
+
2, 83, :_reduce_93 ]
|
142
|
+
|
143
|
+
racc_reduce_n = 94
|
144
|
+
|
145
|
+
racc_shift_n = 173
|
128
146
|
|
129
147
|
racc_action_table = [
|
130
|
-
52,
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
148
|
+
52, 11, 52, 11, 102, 142, 22, 142, 22, 105,
|
149
|
+
60, 116, 86, 21, 69, 151, 63, 64, 63, 64,
|
150
|
+
68, 167, 84, 140, 87, 140, 61, 19, 61, 19,
|
151
|
+
103, 52, 11, 51, 91, 51, 58, 22, 58, 67,
|
152
|
+
152, 67, 104, 36, 118, 60, 150, 63, 64, 11,
|
153
|
+
34, 16, 18, 86, 22, 37, 3, 61, 19, 114,
|
154
|
+
111, 13, 35, 84, 51, 87, 2, 58, 7, 21,
|
155
|
+
67, 110, 112, 11, 46, 19, 21, 167, 22, 6,
|
156
|
+
3, 80, 69, 120, 122, 13, 119, 21, 68, 123,
|
157
|
+
6, 42, 7, 33, 125, 81, 82, 126, 127, 19,
|
158
|
+
21, 91, 41, 6, 11, 109, 16, 18, 130, 22,
|
159
|
+
11, 3, 26, 131, 27, 22, 13, 3, 80, 132,
|
160
|
+
108, 2, 13, 7, 21, 107, 106, 6, 42, 7,
|
161
|
+
19, 21, 81, 82, 6, 47, 19, 21, 100, 41,
|
162
|
+
6, 26, 26, 27, 27, 26, 26, 27, 27, 26,
|
163
|
+
26, 27, 27, 26, 26, 27, 27, 26, 26, 27,
|
164
|
+
27, 26, 26, 27, 27, 26, 26, 27, 27, 26,
|
165
|
+
26, 27, 27, 26, 26, 27, 27, 26, 26, 27,
|
166
|
+
27, 26, 140, 27, 47, 146, 97, 96, 91, 94,
|
167
|
+
93, 154, 140, 156, 157, 158, 159, 28, 161, 162,
|
168
|
+
163, 164, 92, 169, 170, 24, 153 ]
|
146
169
|
|
147
170
|
racc_action_check = [
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
0, 0,
|
154
|
-
|
155
|
-
30,
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
12,
|
161
|
-
|
162
|
-
|
163
|
-
120,
|
171
|
+
101, 101, 50, 50, 58, 145, 101, 112, 50, 58,
|
172
|
+
40, 78, 39, 168, 31, 130, 101, 101, 50, 50,
|
173
|
+
31, 168, 39, 145, 39, 112, 101, 101, 50, 50,
|
174
|
+
58, 30, 30, 101, 40, 50, 101, 30, 50, 101,
|
175
|
+
130, 50, 58, 18, 80, 30, 130, 30, 30, 0,
|
176
|
+
16, 0, 0, 85, 0, 18, 0, 30, 30, 70,
|
177
|
+
67, 0, 16, 85, 30, 85, 0, 30, 0, 156,
|
178
|
+
30, 67, 67, 25, 28, 0, 0, 156, 25, 0,
|
179
|
+
25, 79, 71, 81, 83, 25, 81, 79, 71, 84,
|
180
|
+
79, 25, 25, 13, 86, 79, 79, 87, 88, 25,
|
181
|
+
25, 89, 25, 25, 12, 66, 12, 12, 91, 12,
|
182
|
+
44, 12, 37, 92, 37, 44, 12, 44, 38, 93,
|
183
|
+
64, 12, 44, 12, 38, 63, 61, 38, 44, 44,
|
184
|
+
12, 12, 38, 38, 12, 29, 44, 44, 52, 44,
|
185
|
+
44, 36, 3, 36, 3, 21, 6, 21, 6, 35,
|
186
|
+
120, 35, 120, 119, 7, 119, 7, 34, 105, 34,
|
187
|
+
105, 54, 104, 54, 104, 103, 102, 103, 102, 11,
|
188
|
+
90, 11, 90, 82, 68, 82, 68, 19, 22, 19,
|
189
|
+
22, 170, 110, 170, 49, 113, 48, 47, 129, 43,
|
190
|
+
42, 138, 139, 140, 141, 142, 144, 5, 149, 150,
|
191
|
+
151, 152, 41, 166, 167, 2, 133 ]
|
164
192
|
|
165
193
|
racc_action_pointer = [
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
nil,
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
nil, nil, nil, nil,
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
nil, nil,
|
194
|
+
44, nil, 169, 106, nil, 197, 110, 118, nil, nil,
|
195
|
+
nil, 133, 99, 57, nil, nil, 38, nil, 31, 141,
|
196
|
+
nil, 109, 142, nil, nil, 68, nil, nil, 74, 122,
|
197
|
+
27, -5, nil, nil, 121, 113, 105, 76, 92, -4,
|
198
|
+
-8, 196, 184, 180, 105, nil, nil, 151, 177, 171,
|
199
|
+
-2, nil, 102, nil, 125, nil, nil, nil, -1, nil,
|
200
|
+
nil, 90, nil, 89, 84, nil, 96, 57, 138, nil,
|
201
|
+
50, 63, nil, nil, nil, nil, nil, nil, 2, 55,
|
202
|
+
8, 51, 137, 75, 53, 37, 58, 61, 89, 59,
|
203
|
+
134, 70, 77, 83, nil, nil, nil, nil, nil, nil,
|
204
|
+
nil, -4, 130, 129, 126, 122, nil, nil, nil, nil,
|
205
|
+
153, nil, -4, 149, nil, nil, nil, nil, nil, 117,
|
206
|
+
114, nil, nil, nil, nil, nil, nil, nil, nil, 146,
|
207
|
+
13, nil, nil, 197, nil, nil, nil, nil, 182, 163,
|
208
|
+
157, 185, 159, nil, 187, -6, nil, nil, nil, 189,
|
209
|
+
163, 164, 165, nil, nil, nil, 37, nil, nil, nil,
|
210
|
+
nil, nil, nil, nil, nil, nil, 194, 172, -19, nil,
|
211
|
+
145, nil, nil ]
|
180
212
|
|
181
213
|
racc_action_default = [
|
182
|
-
-5, -
|
183
|
-
-
|
184
|
-
-
|
185
|
-
-
|
186
|
-
-
|
187
|
-
|
188
|
-
|
189
|
-
-
|
190
|
-
-
|
191
|
-
-
|
192
|
-
-
|
193
|
-
-
|
194
|
-
-
|
195
|
-
-
|
214
|
+
-5, -17, -94, -94, -18, -94, -94, -94, -19, -1,
|
215
|
+
-20, -94, -5, -94, -12, -13, -94, -14, -94, -94,
|
216
|
+
-15, -94, -94, -16, -7, -39, -2, -3, -94, -91,
|
217
|
+
-60, -27, -6, -57, -94, -94, -94, -94, -76, -85,
|
218
|
+
-33, -94, -94, -94, -39, -41, 173, -94, -94, -91,
|
219
|
+
-60, -74, -94, -67, -94, -21, -22, -66, -94, -23,
|
220
|
+
-4, -94, -69, -94, -94, -68, -94, -94, -94, -30,
|
221
|
+
-94, -27, -8, -10, -9, -11, -83, -82, -94, -76,
|
222
|
+
-94, -94, -94, -94, -94, -85, -94, -94, -94, -33,
|
223
|
+
-94, -94, -94, -94, -38, -40, -93, -90, -92, -61,
|
224
|
+
-71, -60, -94, -94, -94, -94, -72, -70, -73, -58,
|
225
|
+
-45, -25, -53, -94, -26, -28, -75, -77, -78, -94,
|
226
|
+
-94, -79, -84, -89, -86, -87, -88, -31, -34, -33,
|
227
|
+
-94, -43, -42, -94, -62, -64, -65, -63, -94, -45,
|
228
|
+
-94, -94, -94, -55, -94, -53, -29, -80, -81, -94,
|
229
|
+
-94, -94, -94, -59, -44, -46, -48, -24, -56, -52,
|
230
|
+
-54, -32, -35, -37, -36, -50, -94, -94, -48, -47,
|
231
|
+
-94, -49, -51 ]
|
196
232
|
|
197
233
|
racc_goto_table = [
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
nil,
|
204
|
-
nil, nil, nil,
|
205
|
-
nil,
|
234
|
+
25, 76, 65, 29, 30, 88, 66, 62, 31, 57,
|
235
|
+
83, 78, 77, 143, 144, 70, 38, 48, 39, 40,
|
236
|
+
138, 43, 65, 9, 45, 141, 99, 62, 54, 57,
|
237
|
+
5, 72, 73, 74, 75, 32, 166, 98, 90, nil,
|
238
|
+
95, nil, 76, 45, nil, nil, 143, 160, 171, 155,
|
239
|
+
nil, 101, 117, 77, 128, 115, 124, nil, nil, nil,
|
240
|
+
nil, nil, nil, nil, nil, 113, nil, nil, nil, nil,
|
241
|
+
nil, nil, nil, 65, nil, nil, nil, 133, 62, 121,
|
242
|
+
57, nil, nil, nil, nil, nil, nil, 129, nil, nil,
|
243
|
+
nil, nil, nil, nil, 149, nil, nil, nil, nil, 134,
|
244
|
+
135, 136, 137, nil, nil, nil, nil, nil, nil, nil,
|
245
|
+
nil, nil, nil, nil, nil, nil, 147, 148, nil, 165,
|
206
246
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
207
|
-
nil,
|
247
|
+
nil, 165, nil, nil, nil, nil, nil, nil, nil, nil,
|
208
248
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
209
249
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
210
|
-
nil, nil, nil, nil, nil, nil, nil,
|
211
|
-
nil, nil, nil, nil, nil, 139 ]
|
250
|
+
nil, nil, nil, nil, nil, nil, nil, 172 ]
|
212
251
|
|
213
252
|
racc_goto_check = [
|
214
|
-
3,
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
nil,
|
220
|
-
nil, nil, nil,
|
221
|
-
nil,
|
222
|
-
|
223
|
-
nil, nil,
|
253
|
+
3, 11, 10, 3, 3, 22, 32, 8, 3, 7,
|
254
|
+
36, 34, 12, 27, 30, 20, 3, 38, 3, 3,
|
255
|
+
26, 24, 10, 2, 6, 19, 32, 8, 4, 7,
|
256
|
+
1, 3, 3, 3, 3, 2, 28, 38, 4, nil,
|
257
|
+
24, nil, 11, 6, nil, nil, 27, 30, 28, 26,
|
258
|
+
nil, 3, 34, 12, 22, 20, 36, nil, nil, nil,
|
259
|
+
nil, nil, nil, nil, nil, 3, nil, nil, nil, nil,
|
260
|
+
nil, nil, nil, 10, nil, nil, nil, 32, 8, 3,
|
261
|
+
7, nil, nil, nil, nil, nil, nil, 3, nil, nil,
|
262
|
+
nil, nil, nil, nil, 22, nil, nil, nil, nil, 3,
|
263
|
+
3, 3, 3, nil, nil, nil, nil, nil, nil, nil,
|
264
|
+
nil, nil, nil, nil, nil, nil, 3, 3, nil, 11,
|
224
265
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
266
|
+
nil, 11, nil, nil, nil, nil, nil, nil, nil, nil,
|
225
267
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
226
268
|
nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
|
227
|
-
nil, nil, nil, nil, nil, 3 ]
|
269
|
+
nil, nil, nil, nil, nil, nil, nil, 3 ]
|
228
270
|
|
229
271
|
racc_goto_pointer = [
|
230
|
-
nil,
|
231
|
-
-
|
232
|
-
-
|
233
|
-
nil, -
|
272
|
+
nil, 30, 23, -3, -2, nil, -1, -21, -23, nil,
|
273
|
+
-28, -37, -26, nil, nil, nil, nil, nil, nil, -86,
|
274
|
+
-16, nil, -35, nil, -4, nil, -90, -99, -120, nil,
|
275
|
+
-98, nil, -24, nil, -27, nil, -29, nil, -12, nil ]
|
234
276
|
|
235
277
|
racc_goto_default = [
|
236
|
-
nil, nil, nil, nil, nil, 14,
|
237
|
-
4,
|
238
|
-
|
239
|
-
|
278
|
+
nil, nil, nil, nil, nil, 12, 14, 15, 17, 20,
|
279
|
+
23, 1, 4, 8, 10, 53, 55, 56, 59, nil,
|
280
|
+
nil, 71, nil, 89, nil, 44, nil, 139, nil, 168,
|
281
|
+
nil, 145, nil, 50, nil, 79, nil, 85, nil, 49 ]
|
240
282
|
|
241
283
|
racc_token_table = {
|
242
284
|
false => 0,
|
243
285
|
Object.new => 1,
|
244
286
|
:APPEND => 2,
|
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
|
-
:
|
287
|
+
:ARCHIVE => 3,
|
288
|
+
:BUILD_PREFIX => 4,
|
289
|
+
:BUILD_SYSTEM => 5,
|
290
|
+
:DESCRIPTION => 6,
|
291
|
+
:DISABLE => 7,
|
292
|
+
:ENABLE => 8,
|
293
|
+
:END => 9,
|
294
|
+
:ENVIRONMENT => 10,
|
295
|
+
:EXTERNAL => 11,
|
296
|
+
:FEATURE => 12,
|
297
|
+
:FILE => 13,
|
298
|
+
:GIT => 14,
|
299
|
+
:GIT_SVN => 15,
|
300
|
+
:HOST => 16,
|
301
|
+
:INCLUDE => 17,
|
302
|
+
:INHERITANCE => 18,
|
303
|
+
:INPLACE => 19,
|
304
|
+
:INSTALL_PREFIX => 20,
|
305
|
+
:LOCAL_PATH => 21,
|
306
|
+
:LOG_DIRECTORY => 22,
|
307
|
+
:LONG => 23,
|
308
|
+
:MODULE => 24,
|
309
|
+
:OPTION => 25,
|
310
|
+
:PATH => 26,
|
311
|
+
:PREPEND => 27,
|
312
|
+
:PROTOCOL => 28,
|
313
|
+
:REMOTE => 29,
|
314
|
+
:REMOTE_PATH => 30,
|
315
|
+
:REPOSITORY => 31,
|
316
|
+
:SERVER => 32,
|
317
|
+
:SET => 33,
|
318
|
+
:SHORT => 34,
|
319
|
+
:SSH_KEY => 35,
|
320
|
+
:STRING => 36,
|
321
|
+
:TEMPLATE => 37,
|
322
|
+
:TOKEN => 38,
|
323
|
+
:TRACK_BRANCH => 39,
|
324
|
+
:USE => 40,
|
325
|
+
:USER => 41,
|
326
|
+
:VAR => 42,
|
327
|
+
:VCS => 43 }
|
278
328
|
|
279
329
|
racc_use_result_var = true
|
280
330
|
|
281
|
-
racc_nt_base =
|
331
|
+
racc_nt_base = 44
|
282
332
|
|
283
333
|
Racc_arg = [
|
284
334
|
racc_action_table,
|
@@ -300,20 +350,27 @@ Racc_token_to_s_table = [
|
|
300
350
|
'$end',
|
301
351
|
'error',
|
302
352
|
'APPEND',
|
353
|
+
'ARCHIVE',
|
303
354
|
'BUILD_PREFIX',
|
304
355
|
'BUILD_SYSTEM',
|
356
|
+
'DESCRIPTION',
|
357
|
+
'DISABLE',
|
358
|
+
'ENABLE',
|
305
359
|
'END',
|
306
360
|
'ENVIRONMENT',
|
307
361
|
'EXTERNAL',
|
362
|
+
'FEATURE',
|
308
363
|
'FILE',
|
309
364
|
'GIT',
|
310
365
|
'GIT_SVN',
|
311
366
|
'HOST',
|
367
|
+
'INCLUDE',
|
312
368
|
'INHERITANCE',
|
313
369
|
'INPLACE',
|
314
370
|
'INSTALL_PREFIX',
|
315
371
|
'LOCAL_PATH',
|
316
372
|
'LOG_DIRECTORY',
|
373
|
+
'LONG',
|
317
374
|
'MODULE',
|
318
375
|
'OPTION',
|
319
376
|
'PATH',
|
@@ -324,6 +381,7 @@ Racc_token_to_s_table = [
|
|
324
381
|
'REPOSITORY',
|
325
382
|
'SERVER',
|
326
383
|
'SET',
|
384
|
+
'SHORT',
|
327
385
|
'SSH_KEY',
|
328
386
|
'STRING',
|
329
387
|
'TEMPLATE',
|
@@ -335,9 +393,10 @@ Racc_token_to_s_table = [
|
|
335
393
|
'VCS',
|
336
394
|
'$start',
|
337
395
|
'main',
|
338
|
-
'
|
396
|
+
'top_level_statements',
|
339
397
|
'identifier',
|
340
398
|
'inheritance',
|
399
|
+
'top_level_statement',
|
341
400
|
'statement',
|
342
401
|
'build_system_declaration',
|
343
402
|
'environment_declaration',
|
@@ -345,13 +404,19 @@ Racc_token_to_s_table = [
|
|
345
404
|
'repository_declaration',
|
346
405
|
'server_declaration',
|
347
406
|
'ssh_key_declaration',
|
407
|
+
'include_directive',
|
408
|
+
'feature_declaration',
|
348
409
|
'vcs_declaration',
|
349
410
|
'git_declaration',
|
350
411
|
'git_svn_declaration',
|
412
|
+
'archive_declaration',
|
413
|
+
'archive_statements',
|
351
414
|
'build_system_statements',
|
352
415
|
'build_system_statement',
|
353
416
|
'environment_statements',
|
354
417
|
'environment_statement',
|
418
|
+
'feature_statements',
|
419
|
+
'feature_statement',
|
355
420
|
'git_statements',
|
356
421
|
'git_statement',
|
357
422
|
'git_remote_values',
|
@@ -373,28 +438,28 @@ Racc_debug_parser = false
|
|
373
438
|
|
374
439
|
# reduce 0 omitted
|
375
440
|
|
376
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
441
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 48
|
377
442
|
def _reduce_1( val, _values, result )
|
378
443
|
result = ConfigurationFileList.new( val[0] );
|
379
444
|
result
|
380
445
|
end
|
381
446
|
.,.,
|
382
447
|
|
383
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
448
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 56
|
384
449
|
def _reduce_2( val, _values, result )
|
385
450
|
result = val[0];
|
386
451
|
result
|
387
452
|
end
|
388
453
|
.,.,
|
389
454
|
|
390
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
455
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 57
|
391
456
|
def _reduce_3( val, _values, result )
|
392
457
|
result = val[0];
|
393
458
|
result
|
394
459
|
end
|
395
460
|
.,.,
|
396
461
|
|
397
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
462
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 61
|
398
463
|
def _reduce_4( val, _values, result )
|
399
464
|
result = :INHERITANCE;
|
400
465
|
result
|
@@ -403,441 +468,562 @@ module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 53
|
|
403
468
|
|
404
469
|
# reduce 5 omitted
|
405
470
|
|
406
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
471
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 69
|
407
472
|
def _reduce_6( val, _values, result )
|
408
473
|
result = val.flatten;
|
409
474
|
result
|
410
475
|
end
|
411
476
|
.,.,
|
412
477
|
|
413
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
478
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 73
|
414
479
|
def _reduce_7( val, _values, result )
|
415
480
|
result = LogDirectoryNode.new( val[1] );
|
416
481
|
result
|
417
482
|
end
|
418
483
|
.,.,
|
419
484
|
|
420
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
485
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 74
|
421
486
|
def _reduce_8( val, _values, result )
|
422
|
-
result = val[
|
487
|
+
result = DisableFeatureNode.new( val[2] );
|
423
488
|
result
|
424
489
|
end
|
425
490
|
.,.,
|
426
491
|
|
427
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
492
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 75
|
428
493
|
def _reduce_9( val, _values, result )
|
429
|
-
result = val[
|
494
|
+
result = EnableFeatureNode.new( val[2] );
|
430
495
|
result
|
431
496
|
end
|
432
497
|
.,.,
|
433
498
|
|
434
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
499
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 76
|
435
500
|
def _reduce_10( val, _values, result )
|
436
|
-
result = val[
|
501
|
+
result = DisableModuleNode.new( val[2] );
|
437
502
|
result
|
438
503
|
end
|
439
504
|
.,.,
|
440
505
|
|
441
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
506
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 77
|
442
507
|
def _reduce_11( val, _values, result )
|
443
|
-
result = val[
|
508
|
+
result = EnableModuleNode.new( val[2] );
|
444
509
|
result
|
445
510
|
end
|
446
511
|
.,.,
|
447
512
|
|
448
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
513
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 78
|
449
514
|
def _reduce_12( val, _values, result )
|
450
515
|
result = val[0];
|
451
516
|
result
|
452
517
|
end
|
453
518
|
.,.,
|
454
519
|
|
455
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
520
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 86
|
456
521
|
def _reduce_13( val, _values, result )
|
457
522
|
result = val[0];
|
458
523
|
result
|
459
524
|
end
|
460
525
|
.,.,
|
461
526
|
|
462
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
527
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 87
|
463
528
|
def _reduce_14( val, _values, result )
|
464
529
|
result = val[0];
|
465
530
|
result
|
466
531
|
end
|
467
532
|
.,.,
|
468
533
|
|
469
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
534
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 88
|
470
535
|
def _reduce_15( val, _values, result )
|
471
536
|
result = val[0];
|
472
537
|
result
|
473
538
|
end
|
474
539
|
.,.,
|
475
540
|
|
476
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
541
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 89
|
477
542
|
def _reduce_16( val, _values, result )
|
478
|
-
result =
|
543
|
+
result = val[0];
|
479
544
|
result
|
480
545
|
end
|
481
546
|
.,.,
|
482
547
|
|
483
|
-
|
548
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 90
|
549
|
+
def _reduce_17( val, _values, result )
|
550
|
+
result = val[0];
|
551
|
+
result
|
552
|
+
end
|
553
|
+
.,.,
|
484
554
|
|
485
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
555
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 91
|
486
556
|
def _reduce_18( val, _values, result )
|
487
|
-
result = val
|
557
|
+
result = val[0];
|
488
558
|
result
|
489
559
|
end
|
490
560
|
.,.,
|
491
561
|
|
492
562
|
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 92
|
493
563
|
def _reduce_19( val, _values, result )
|
494
|
-
result =
|
564
|
+
result = val[0];
|
495
565
|
result
|
496
566
|
end
|
497
567
|
.,.,
|
498
568
|
|
499
569
|
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 93
|
500
570
|
def _reduce_20( val, _values, result )
|
501
|
-
result =
|
571
|
+
result = val[0];
|
502
572
|
result
|
503
573
|
end
|
504
574
|
.,.,
|
505
575
|
|
506
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
576
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 97
|
507
577
|
def _reduce_21( val, _values, result )
|
508
|
-
result =
|
578
|
+
result = val[0];
|
509
579
|
result
|
510
580
|
end
|
511
581
|
.,.,
|
512
582
|
|
513
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
583
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 98
|
514
584
|
def _reduce_22( val, _values, result )
|
515
|
-
result =
|
585
|
+
result = val[0];
|
516
586
|
result
|
517
587
|
end
|
518
588
|
.,.,
|
519
589
|
|
520
|
-
|
590
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 99
|
591
|
+
def _reduce_23( val, _values, result )
|
592
|
+
result = val[0];
|
593
|
+
result
|
594
|
+
end
|
595
|
+
.,.,
|
521
596
|
|
522
597
|
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 106
|
523
598
|
def _reduce_24( val, _values, result )
|
599
|
+
result = ArchiveDeclarationNode.new( val[2] );
|
600
|
+
result
|
601
|
+
end
|
602
|
+
.,.,
|
603
|
+
|
604
|
+
# reduce 25 omitted
|
605
|
+
|
606
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 121
|
607
|
+
def _reduce_26( val, _values, result )
|
608
|
+
result = BuildSystemDeclarationNode.new( val[1,2] );
|
609
|
+
result
|
610
|
+
end
|
611
|
+
.,.,
|
612
|
+
|
613
|
+
# reduce 27 omitted
|
614
|
+
|
615
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 126
|
616
|
+
def _reduce_28( val, _values, result )
|
617
|
+
result = val.flatten;
|
618
|
+
result
|
619
|
+
end
|
620
|
+
.,.,
|
621
|
+
|
622
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 130
|
623
|
+
def _reduce_29( val, _values, result )
|
624
|
+
result = BuildSystemOptionNode.new( val[1,2] );
|
625
|
+
result
|
626
|
+
end
|
627
|
+
.,.,
|
628
|
+
|
629
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 131
|
630
|
+
def _reduce_30( val, _values, result )
|
631
|
+
result = BuildSystemInplaceNode.new();
|
632
|
+
result
|
633
|
+
end
|
634
|
+
.,.,
|
635
|
+
|
636
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 138
|
637
|
+
def _reduce_31( val, _values, result )
|
638
|
+
result = EnvironmentDeclarationNode.new( val[1..-1] );
|
639
|
+
result
|
640
|
+
end
|
641
|
+
.,.,
|
642
|
+
|
643
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 139
|
644
|
+
def _reduce_32( val, _values, result )
|
645
|
+
result = EnvironmentDeclarationNode.new( val[1..-1] );
|
646
|
+
result
|
647
|
+
end
|
648
|
+
.,.,
|
649
|
+
|
650
|
+
# reduce 33 omitted
|
651
|
+
|
652
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 144
|
653
|
+
def _reduce_34( val, _values, result )
|
524
654
|
result = val.flatten;
|
525
655
|
result
|
526
656
|
end
|
527
657
|
.,.,
|
528
658
|
|
529
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
530
|
-
def
|
659
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 148
|
660
|
+
def _reduce_35( val, _values, result )
|
531
661
|
result = EnvironmentVariableNode.new( val[1..-1] );
|
532
662
|
result
|
533
663
|
end
|
534
664
|
.,.,
|
535
665
|
|
536
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
537
|
-
def
|
666
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 149
|
667
|
+
def _reduce_36( val, _values, result )
|
538
668
|
result = EnvironmentVariableNode.new( val[1..-1] );
|
539
669
|
result
|
540
670
|
end
|
541
671
|
.,.,
|
542
672
|
|
543
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
544
|
-
def
|
673
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 150
|
674
|
+
def _reduce_37( val, _values, result )
|
545
675
|
result = EnvironmentVariableNode.new( val[1..-1] );
|
546
676
|
result
|
547
677
|
end
|
548
678
|
.,.,
|
549
679
|
|
550
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
551
|
-
def
|
680
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 157
|
681
|
+
def _reduce_38( val, _values, result )
|
682
|
+
result = FeatureNode.new( val[1..-2] )
|
683
|
+
result
|
684
|
+
end
|
685
|
+
.,.,
|
686
|
+
|
687
|
+
# reduce 39 omitted
|
688
|
+
|
689
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 162
|
690
|
+
def _reduce_40( val, _values, result )
|
691
|
+
result = val.flatten;
|
692
|
+
result
|
693
|
+
end
|
694
|
+
.,.,
|
695
|
+
|
696
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 166
|
697
|
+
def _reduce_41( val, _values, result )
|
698
|
+
result = val.flatten;
|
699
|
+
result
|
700
|
+
end
|
701
|
+
.,.,
|
702
|
+
|
703
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 167
|
704
|
+
def _reduce_42( val, _values, result )
|
705
|
+
result = LongDescriptionNode.new( val[2] );
|
706
|
+
result
|
707
|
+
end
|
708
|
+
.,.,
|
709
|
+
|
710
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 168
|
711
|
+
def _reduce_43( val, _values, result )
|
712
|
+
result = ShortDescriptionNode.new( val[2] );
|
713
|
+
result
|
714
|
+
end
|
715
|
+
.,.,
|
716
|
+
|
717
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 175
|
718
|
+
def _reduce_44( val, _values, result )
|
552
719
|
result = GitDeclarationNode.new( val[2] );
|
553
720
|
result
|
554
721
|
end
|
555
722
|
.,.,
|
556
723
|
|
557
|
-
# reduce
|
724
|
+
# reduce 45 omitted
|
558
725
|
|
559
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
560
|
-
def
|
726
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 180
|
727
|
+
def _reduce_46( val, _values, result )
|
561
728
|
result = val.flatten;
|
562
729
|
result
|
563
730
|
end
|
564
731
|
.,.,
|
565
732
|
|
566
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
567
|
-
def
|
733
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 184
|
734
|
+
def _reduce_47( val, _values, result )
|
568
735
|
result = GitRemoteNode.new( [ val[1], GitRemoteValueList.new( val[2] ) ] );
|
569
736
|
result
|
570
737
|
end
|
571
738
|
.,.,
|
572
739
|
|
573
|
-
# reduce
|
740
|
+
# reduce 48 omitted
|
574
741
|
|
575
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
576
|
-
def
|
742
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 189
|
743
|
+
def _reduce_49( val, _values, result )
|
577
744
|
result = val.flatten;
|
578
745
|
result
|
579
746
|
end
|
580
747
|
.,.,
|
581
748
|
|
582
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
583
|
-
def
|
749
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 193
|
750
|
+
def _reduce_50( val, _values, result )
|
584
751
|
result = val[0];
|
585
752
|
result
|
586
753
|
end
|
587
754
|
.,.,
|
588
755
|
|
589
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
590
|
-
def
|
756
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 194
|
757
|
+
def _reduce_51( val, _values, result )
|
591
758
|
result = UseServerNode.new( val[2] );
|
592
759
|
result
|
593
760
|
end
|
594
761
|
.,.,
|
595
762
|
|
596
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
597
|
-
def
|
763
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 201
|
764
|
+
def _reduce_52( val, _values, result )
|
598
765
|
result = GitSvnDeclarationNode.new( val[2] );
|
599
766
|
result
|
600
767
|
end
|
601
768
|
.,.,
|
602
769
|
|
603
|
-
# reduce
|
770
|
+
# reduce 53 omitted
|
604
771
|
|
605
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
606
|
-
def
|
772
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 206
|
773
|
+
def _reduce_54( val, _values, result )
|
607
774
|
result = val.flatten;
|
608
775
|
result
|
609
776
|
end
|
610
777
|
.,.,
|
611
778
|
|
612
|
-
|
779
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 210
|
780
|
+
def _reduce_55( val, _values, result )
|
781
|
+
result = val[0];
|
782
|
+
result
|
783
|
+
end
|
784
|
+
.,.,
|
613
785
|
|
614
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
615
|
-
def
|
786
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 211
|
787
|
+
def _reduce_56( val, _values, result )
|
616
788
|
result = GitSvnExternalNode.new( val[1] );
|
617
789
|
result
|
618
790
|
end
|
619
791
|
.,.,
|
620
792
|
|
621
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
622
|
-
def
|
793
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 218
|
794
|
+
def _reduce_57( val, _values, result )
|
795
|
+
result = IncludeNode.new( val[1] )
|
796
|
+
result
|
797
|
+
end
|
798
|
+
.,.,
|
799
|
+
|
800
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 225
|
801
|
+
def _reduce_58( val, _values, result )
|
623
802
|
result = ModuleDeclarationNode.new( val[1..-1] );
|
624
803
|
result
|
625
804
|
end
|
626
805
|
.,.,
|
627
806
|
|
628
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
629
|
-
def
|
807
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 226
|
808
|
+
def _reduce_59( val, _values, result )
|
630
809
|
result = ModuleDeclarationNode.new( val[1..-1] );
|
631
810
|
result
|
632
811
|
end
|
633
812
|
.,.,
|
634
813
|
|
635
|
-
# reduce
|
814
|
+
# reduce 60 omitted
|
636
815
|
|
637
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
638
|
-
def
|
816
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 231
|
817
|
+
def _reduce_61( val, _values, result )
|
639
818
|
result = val.flatten;
|
640
819
|
result
|
641
820
|
end
|
642
821
|
.,.,
|
643
822
|
|
644
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
645
|
-
def
|
823
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 235
|
824
|
+
def _reduce_62( val, _values, result )
|
646
825
|
result = UseBuildSystemNode.new( val[2] );
|
647
826
|
result
|
648
827
|
end
|
649
828
|
.,.,
|
650
829
|
|
651
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
652
|
-
def
|
830
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 236
|
831
|
+
def _reduce_63( val, _values, result )
|
653
832
|
result = UseEnvironmentNode.new( val[2] );
|
654
833
|
result
|
655
834
|
end
|
656
835
|
.,.,
|
657
836
|
|
658
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
659
|
-
def
|
837
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 237
|
838
|
+
def _reduce_64( val, _values, result )
|
660
839
|
result = UseRepositoryNode.new( val[2] );
|
661
840
|
result
|
662
841
|
end
|
663
842
|
.,.,
|
664
843
|
|
665
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
666
|
-
def
|
844
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 238
|
845
|
+
def _reduce_65( val, _values, result )
|
667
846
|
result = UseVcsNode.new( val[2] );
|
668
847
|
result
|
669
848
|
end
|
670
849
|
.,.,
|
671
850
|
|
672
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
673
|
-
def
|
851
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 239
|
852
|
+
def _reduce_66( val, _values, result )
|
674
853
|
result = val[0];
|
675
854
|
result
|
676
855
|
end
|
677
856
|
.,.,
|
678
857
|
|
679
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
680
|
-
def
|
858
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 240
|
859
|
+
def _reduce_67( val, _values, result )
|
681
860
|
result = val[0];
|
682
861
|
result
|
683
862
|
end
|
684
863
|
.,.,
|
685
864
|
|
686
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
687
|
-
def
|
865
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 241
|
866
|
+
def _reduce_68( val, _values, result )
|
688
867
|
result = val[0];
|
689
868
|
result
|
690
869
|
end
|
691
870
|
.,.,
|
692
871
|
|
693
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
694
|
-
def
|
872
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 242
|
873
|
+
def _reduce_69( val, _values, result )
|
695
874
|
result = val[0];
|
696
875
|
result
|
697
876
|
end
|
698
877
|
.,.,
|
699
878
|
|
700
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
701
|
-
def
|
879
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 243
|
880
|
+
def _reduce_70( val, _values, result )
|
702
881
|
result = ModuleInstallPrefixNode.new( val[1] );
|
703
882
|
result
|
704
883
|
end
|
705
884
|
.,.,
|
706
885
|
|
707
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
708
|
-
def
|
886
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 244
|
887
|
+
def _reduce_71( val, _values, result )
|
709
888
|
result = ModuleBuildPrefixNode.new( val[1] );
|
710
889
|
result
|
711
890
|
end
|
712
891
|
.,.,
|
713
892
|
|
714
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
715
|
-
def
|
893
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 245
|
894
|
+
def _reduce_72( val, _values, result )
|
716
895
|
result = ModuleRemotePathNode.new( val[1] );
|
717
896
|
result
|
718
897
|
end
|
719
898
|
.,.,
|
720
899
|
|
721
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
722
|
-
def
|
900
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 246
|
901
|
+
def _reduce_73( val, _values, result )
|
723
902
|
result = ModuleLocalPathNode.new( val[1] );
|
724
903
|
result
|
725
904
|
end
|
726
905
|
.,.,
|
727
906
|
|
728
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
729
|
-
def
|
907
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 247
|
908
|
+
def _reduce_74( val, _values, result )
|
730
909
|
result = ModuleTemplateNode.new();
|
731
910
|
result
|
732
911
|
end
|
733
912
|
.,.,
|
734
913
|
|
735
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
736
|
-
def
|
914
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 254
|
915
|
+
def _reduce_75( val, _values, result )
|
737
916
|
result = RepositoryDeclarationNode.new( val[1..-1] );
|
738
917
|
result
|
739
918
|
end
|
740
919
|
.,.,
|
741
920
|
|
742
|
-
# reduce
|
921
|
+
# reduce 76 omitted
|
743
922
|
|
744
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
745
|
-
def
|
923
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 259
|
924
|
+
def _reduce_77( val, _values, result )
|
746
925
|
result = val.flatten();
|
747
926
|
result
|
748
927
|
end
|
749
928
|
.,.,
|
750
929
|
|
751
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
752
|
-
def
|
753
|
-
result =
|
930
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 263
|
931
|
+
def _reduce_78( val, _values, result )
|
932
|
+
result = RepositoryPathNode.new( val[1] );
|
754
933
|
result
|
755
934
|
end
|
756
935
|
.,.,
|
757
936
|
|
758
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
759
|
-
def
|
760
|
-
result =
|
937
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 264
|
938
|
+
def _reduce_79( val, _values, result )
|
939
|
+
result = RepositoryUserNode.new( val[1] );
|
761
940
|
result
|
762
941
|
end
|
763
942
|
.,.,
|
764
943
|
|
765
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
766
|
-
def
|
767
|
-
result =
|
944
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 265
|
945
|
+
def _reduce_80( val, _values, result )
|
946
|
+
result = UseSshKeyNode.new( val[2] );
|
768
947
|
result
|
769
948
|
end
|
770
949
|
.,.,
|
771
950
|
|
772
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
773
|
-
def
|
774
|
-
result =
|
951
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 266
|
952
|
+
def _reduce_81( val, _values, result )
|
953
|
+
result = UseServerNode.new( val[2] );
|
775
954
|
result
|
776
955
|
end
|
777
956
|
.,.,
|
778
957
|
|
779
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
780
|
-
def
|
958
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 267
|
959
|
+
def _reduce_82( val, _values, result )
|
781
960
|
result = val[0];
|
782
961
|
result
|
783
962
|
end
|
784
963
|
.,.,
|
785
964
|
|
786
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
787
|
-
def
|
965
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 268
|
966
|
+
def _reduce_83( val, _values, result )
|
967
|
+
result = val[0];
|
968
|
+
result
|
969
|
+
end
|
970
|
+
.,.,
|
971
|
+
|
972
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 275
|
973
|
+
def _reduce_84( val, _values, result )
|
788
974
|
result = ServerDeclarationNode.new( [ val[1], ServerStatementList.new( val[2] ) ] );
|
789
975
|
result
|
790
976
|
end
|
791
977
|
.,.,
|
792
978
|
|
793
|
-
# reduce
|
979
|
+
# reduce 85 omitted
|
794
980
|
|
795
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
796
|
-
def
|
981
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 280
|
982
|
+
def _reduce_86( val, _values, result )
|
797
983
|
result = val.flatten;
|
798
984
|
result
|
799
985
|
end
|
800
986
|
.,.,
|
801
987
|
|
802
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
803
|
-
def
|
988
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 284
|
989
|
+
def _reduce_87( val, _values, result )
|
804
990
|
result = ServerHostNode.new( val[1] );
|
805
991
|
result
|
806
992
|
end
|
807
993
|
.,.,
|
808
994
|
|
809
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
810
|
-
def
|
995
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 285
|
996
|
+
def _reduce_88( val, _values, result )
|
811
997
|
result = ServerProtocolNode.new( val[1] );
|
812
998
|
result
|
813
999
|
end
|
814
1000
|
.,.,
|
815
1001
|
|
816
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
817
|
-
def
|
1002
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 286
|
1003
|
+
def _reduce_89( val, _values, result )
|
818
1004
|
result = ServerPathNode.new( val[1] );
|
819
1005
|
result
|
820
1006
|
end
|
821
1007
|
.,.,
|
822
1008
|
|
823
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
824
|
-
def
|
1009
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 293
|
1010
|
+
def _reduce_90( val, _values, result )
|
825
1011
|
result = SshKeyDeclarationNode.new( val[1..-1] );
|
826
1012
|
result
|
827
1013
|
end
|
828
1014
|
.,.,
|
829
1015
|
|
830
|
-
# reduce
|
1016
|
+
# reduce 91 omitted
|
831
1017
|
|
832
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
833
|
-
def
|
1018
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 298
|
1019
|
+
def _reduce_92( val, _values, result )
|
834
1020
|
result = val.flatten;
|
835
1021
|
result
|
836
1022
|
end
|
837
1023
|
.,.,
|
838
1024
|
|
839
|
-
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y',
|
840
|
-
def
|
1025
|
+
module_eval <<'.,.,', 'lib/build-tool/cfg/parser.y', 302
|
1026
|
+
def _reduce_93( val, _values, result )
|
841
1027
|
result = SshKeyFileNode.new( val[1] );
|
842
1028
|
result
|
843
1029
|
end
|