build-tool 0.1.2 → 0.1.3

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