build-tool 0.0.3 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (149) hide show
  1. data.tar.gz.sig +0 -0
  2. data/History.txt +28 -1
  3. data/Manifest.txt +91 -52
  4. data/README.txt +63 -0
  5. data/Rakefile +20 -23
  6. data/bin/build-tool +53 -0
  7. data/lib/build-tool.rb +7 -0
  8. data/lib/build-tool/GUI.rb +360 -0
  9. data/lib/build-tool/application.rb +84 -0
  10. data/lib/build-tool/build-system/autoconf.rb +60 -0
  11. data/lib/build-tool/build-system/base.rb +142 -0
  12. data/lib/build-tool/build-system/cmake.rb +119 -0
  13. data/lib/build-tool/build-system/custom.rb +115 -0
  14. data/lib/build-tool/build-system/qt.rb +113 -0
  15. data/lib/build-tool/cfg/lexer.rb +558 -0
  16. data/lib/build-tool/cfg/lexer.rex +248 -0
  17. data/lib/build-tool/cfg/lexer_base.rb +82 -0
  18. data/lib/build-tool/cfg/node.rb +94 -0
  19. data/lib/build-tool/cfg/parser.rb +871 -0
  20. data/lib/build-tool/cfg/parser.y +279 -0
  21. data/lib/build-tool/cfg/visitor.rb +471 -0
  22. data/lib/build-tool/commands.rb +639 -0
  23. data/lib/build-tool/commands/build.rb +120 -0
  24. data/lib/build-tool/commands/configure.rb +73 -0
  25. data/lib/build-tool/commands/ctags.rb +46 -0
  26. data/lib/build-tool/commands/environments.rb +29 -0
  27. data/lib/build-tool/commands/environments/list.rb +37 -0
  28. data/lib/build-tool/commands/environments/set.rb +33 -0
  29. data/lib/build-tool/commands/fetch.rb +50 -0
  30. data/lib/build-tool/commands/files.rb +73 -0
  31. data/lib/build-tool/commands/help.rb +22 -0
  32. data/lib/build-tool/commands/info.rb +48 -0
  33. data/lib/build-tool/commands/install.rb +56 -0
  34. data/lib/build-tool/commands/modules.rb +29 -0
  35. data/lib/build-tool/commands/modules/info.rb +75 -0
  36. data/lib/build-tool/commands/modules/list.rb +49 -0
  37. data/lib/build-tool/commands/modules/shell.rb +40 -0
  38. data/lib/build-tool/commands/rebase.rb +46 -0
  39. data/lib/build-tool/commands/recipes.rb +32 -0
  40. data/lib/build-tool/commands/recipes/info.rb +46 -0
  41. data/lib/build-tool/commands/recipes/install.rb +184 -0
  42. data/lib/build-tool/commands/recipes/list.rb +33 -0
  43. data/lib/build-tool/configuration.rb +115 -0
  44. data/lib/build-tool/environment.rb +119 -0
  45. data/lib/build-tool/errors.rb +9 -0
  46. data/lib/build-tool/module.rb +366 -0
  47. data/lib/build-tool/pluginbase.rb +43 -0
  48. data/lib/build-tool/recipe.rb +180 -0
  49. data/lib/build-tool/repository.rb +59 -0
  50. data/lib/build-tool/server.rb +43 -0
  51. data/lib/build-tool/singleton.rb +50 -0
  52. data/lib/build-tool/sshkey.rb +22 -0
  53. data/lib/build-tool/vcs/base.rb +105 -0
  54. data/lib/build-tool/vcs/git-svn.rb +154 -0
  55. data/lib/build-tool/vcs/git.rb +187 -0
  56. data/lib/build-tool/vcs/svn.rb +136 -0
  57. data/lib/mj/logging.rb +31 -0
  58. data/lib/mj/tools/ssh.rb +64 -0
  59. data/lib/{kde-build → mj/tools}/subprocess.rb +21 -16
  60. data/lib/mj/visitor.rb +21 -0
  61. data/recipes/kde/files/finish_installation.sh +16 -0
  62. data/recipes/kde/files/kde4.desktop +22 -0
  63. data/recipes/kde/files/xsession +89 -0
  64. data/recipes/kde/info.yaml +10 -0
  65. data/recipes/kde/recipe +585 -0
  66. data/recipes/kde/recipe-local +90 -0
  67. data/recipes/kde/settings.yaml +52 -0
  68. data/recipes/kde43/info.yaml +10 -0
  69. data/recipes/kde43/recipe +256 -0
  70. data/recipes/kde43/recipe-local +90 -0
  71. data/recipes/kde43/settings.yaml +32 -0
  72. data/recipes/kdeqt4.6/custom/qt/qtscriptgenerator/compile.sh +77 -0
  73. data/recipes/kdeqt4.6/custom/qt/qtscriptgenerator/configure.sh +70 -0
  74. data/recipes/kdeqt4.6/custom/qt/qtscriptgenerator/install.sh +39 -0
  75. data/recipes/kdeqt4.6/info.yaml +7 -0
  76. data/recipes/kdeqt4.6/recipe +155 -0
  77. data/recipes/kdeqt4.6/recipe-local +30 -0
  78. data/recipes/kdeqt4.6/settings.yaml +27 -0
  79. data/tags +745 -0
  80. data/tasks/genfiles.rake +28 -0
  81. data/tasks/rdoc.rake +34 -0
  82. data/tasks/rspec.rake +21 -0
  83. data/test.rb +28 -0
  84. data/test/commands/test_build.rb +29 -0
  85. data/test/test_build_system.rb +98 -0
  86. data/test/test_cli.rb +61 -0
  87. data/test/test_command.rb +175 -0
  88. data/test/test_configuration_parser.rb +542 -0
  89. data/test/test_environment.rb +82 -0
  90. data/test/test_helper.rb +39 -7
  91. data/test/test_module.rb +158 -0
  92. data/test/test_repository.rb +75 -0
  93. data/test/test_singleton.rb +51 -0
  94. data/test/test_ssh_key.rb +14 -0
  95. data/test/test_svn_parser.rb +28 -0
  96. data/test/test_vcs.rb +33 -0
  97. metadata +139 -90
  98. metadata.gz.sig +0 -0
  99. data/PostInstall.txt +0 -3
  100. data/TODO +0 -2
  101. data/bin/kde-build.rb +0 -21
  102. data/config/website.yml +0 -2
  103. data/config/website.yml.sample +0 -2
  104. data/lib/kde-build.rb +0 -18
  105. data/lib/kde-build/application.rb +0 -270
  106. data/lib/kde-build/build_system.rb +0 -28
  107. data/lib/kde-build/build_system/autoconf.rb +0 -108
  108. data/lib/kde-build/build_system/base.rb +0 -139
  109. data/lib/kde-build/build_system/cmake.rb +0 -94
  110. data/lib/kde-build/build_system/qtcopy.rb +0 -127
  111. data/lib/kde-build/command.rb +0 -42
  112. data/lib/kde-build/command/build.rb +0 -106
  113. data/lib/kde-build/command/compile.rb +0 -39
  114. data/lib/kde-build/command/configure.rb +0 -48
  115. data/lib/kde-build/command/ctags.rb +0 -41
  116. data/lib/kde-build/command/fetch.rb +0 -33
  117. data/lib/kde-build/command/help.rb +0 -71
  118. data/lib/kde-build/command/info.rb +0 -45
  119. data/lib/kde-build/command/install.rb +0 -39
  120. data/lib/kde-build/command/module_based.rb +0 -44
  121. data/lib/kde-build/command/rebase.rb +0 -50
  122. data/lib/kde-build/command/version.rb +0 -43
  123. data/lib/kde-build/configuration.rb +0 -209
  124. data/lib/kde-build/exception.rb +0 -6
  125. data/lib/kde-build/metaaid.rb +0 -18
  126. data/lib/kde-build/module.rb +0 -227
  127. data/lib/kde-build/module_configuration.rb +0 -107
  128. data/lib/kde-build/moduleregistry.rb +0 -85
  129. data/lib/kde-build/tools/ctags.rb +0 -59
  130. data/lib/kde-build/tools/logging.rb +0 -49
  131. data/lib/kde-build/tools/make.rb +0 -58
  132. data/lib/kde-build/tools/ssh.rb +0 -47
  133. data/lib/kde-build/vcs.rb +0 -28
  134. data/lib/kde-build/vcs/base.rb +0 -85
  135. data/lib/kde-build/vcs/git-svn.rb +0 -139
  136. data/lib/kde-build/vcs/git.rb +0 -121
  137. data/lib/kde-build/vcs/svn.rb +0 -102
  138. data/script/console +0 -10
  139. data/script/destroy +0 -14
  140. data/script/generate +0 -14
  141. data/script/txt2html +0 -71
  142. data/test.yaml.tmpl +0 -632
  143. data/test/test_kde-build.rb +0 -11
  144. data/test/test_vcs_svn.rb +0 -44
  145. data/website/index.html +0 -84
  146. data/website/index.txt +0 -59
  147. data/website/javascripts/rounded_corners_lite.inc.js +0 -285
  148. data/website/stylesheets/screen.css +0 -159
  149. data/website/template.html.erb +0 -50
@@ -1,632 +0,0 @@
1
- # vim:ft=yaml
2
- #############################################################################
3
- #
4
- # This file is first parsed by erb
5
- #
6
- # - (http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/classes/ERB.html)
7
- #
8
- # Then it is interpreted as a yaml file
9
- #
10
- # - http://de.wikipedia.org/wiki/YAML
11
- #
12
- #############################################################################
13
- <%
14
- #########################################################################
15
- # ADAPT THE FOLLOWING LINES TO YOU NEEDS
16
- #########################################################################
17
-
18
- #
19
- ### LOCAL PATH
20
- #
21
-
22
- # qt installation directory
23
- QTDIR = "/opt/qt/master"
24
-
25
- # kdesupport and 3rd party installation directory
26
- EXTRADIR = "/opt/kde/trunk/extra"
27
-
28
- # kde installation directory
29
- KDEDIR = "/opt/kde/trunk/kde"
30
-
31
- # The build directory
32
- # <dir>/src/... The checkouts
33
- # <dir>/bld/... The out of place builds
34
- # <dir>/log/... The logfiles
35
- WORK_DIRECTORY = "~/kde/trunk"
36
-
37
- #
38
- ### REPOSITORY SERVERS
39
- #
40
-
41
- # kde svn server
42
- # KDESVNSERVER = "svn+ssh://<your_username>@svn.kde.org/home"
43
- KDESVNSERVER = "svn://anonsvn.kde.org/home"
44
-
45
- # gitorius server. qt is hosted there ( http://qt.gitorious.org )
46
- GITORIOUS = "git://gitorious.org"
47
-
48
- #
49
- ### COMMON BUILD SETTINGS
50
- #
51
-
52
- # Set to the lib suffix used by your distro. Check for /usr/lib(?). Added
53
- # automatically to CMAKE_OPTION below. AutoConf doesn't need it apparently
54
- LIB_SUFFIX = "64" # (64|32|"")
55
-
56
- # The c++ compile flags to use. Added automatically to CMAKE_OPTION and
57
- # AUTOCONF_OPTIONS below.
58
- CXXFLAGS= "-Wall -pipe -O0"
59
-
60
- # Set to "number of cores you processor has" + 1 for optimal performance with modest system load
61
- MAKE_OPTIONS = "-j2"
62
-
63
- # The cmake options to use (see http://cmake.org/cmake/documentation.html)
64
- # CMAKE_OPTIONS="debug" -> Compile with debugging symbols
65
- # CMAKE_VERBOSE_MAKEFILE -> Print out the executed commands.
66
- cmake_options = "-DCMAKE_VERBOSE_MAKEFILE=1 -DCMAKE_BUILD_TYPE=DEBUG"
67
-
68
- # The autoconf options
69
- autoconf_options = ""
70
-
71
- #########################################################################
72
- # YOU SHOULDN'T HAVE TO CHANGE THE NEXT LINES
73
- #########################################################################
74
-
75
- #
76
- ### add some additional settings to cmake_options
77
- #
78
- if LIB_SUFFIX
79
- cmake_options += " -DLIB_SUFFIX='#{LIB_SUFFIX}'"
80
- end
81
- if CXXFLAGS
82
- cmake_options += " -DCMAKE_CXX_FLAGS='#{CXXFLAGS}'"
83
- end
84
- # Variables in all uppercase are Constants in ruby
85
- CMAKE_OPTIONS = cmake_options
86
-
87
- #
88
- ### add some additional settings to autoconf_options
89
- #
90
- if CXXFLAGS
91
- autoconf_options += " CXXFLAGS='#{CXXFLAGS}'"
92
- end
93
- # Variables in all uppercase are Constants in ruby
94
- AUTOCONF_OPTIONS = autoconf_options
95
-
96
- # Provided to kde packages when configuring
97
- KDEDIRS = "#{EXTRADIR}:#{KDEDIR}"
98
-
99
- %>
100
-
101
- ############################
102
- # GLOBAL CONFIGURATION #
103
- ############################
104
- - :global: !michael-jansen.biz,2009/ApplicationConfiguration
105
- workdir: <%= WORK_DIRECTORY %>
106
-
107
- ############################
108
- # MAKE #
109
- ############################
110
- - :make: !michael-jansen.biz,2009/MakeConfiguration
111
- # executable: "/usr/bin/make"
112
- options: <%= MAKE_OPTIONS %>
113
-
114
- ############################
115
- # CTAGS - <TODO> #
116
- ############################
117
- - :tags: !michael-jansen.biz,2009/CTagsConfiguration
118
- # executable: "/usr/bin/ctags"
119
- # options: "--exclude=$HOME/.grepexclude --exclude=*.html"
120
- output: <%= WORK_DIRECTORY %>/ctags
121
-
122
-
123
- ############################
124
- # Packages #
125
- ############################
126
- #
127
- # A package defines a name for a configurable set of modules. Specifying
128
- # modules is possible using:
129
- #
130
- # - <modulename> -> The module <modulename>
131
- #
132
- # - :<packagename> -> The modules from package <packagename>
133
- #
134
- # - <path>/ -> All modules named <path>/<modulename> in the same
135
- # order defined in this logfile
136
- #
137
- - :tags: !michael-jansen.biz,2009/Packages
138
- - default: kdelibs kdepimlibs kdebase/ kdepim
139
- - plasma: playground/nepomuk-kde kdeplasma-addons playground/plasma-applets/
140
- - devel: kdesdk kdev/
141
- - graphics: extra/lensfun poppler kdegraphics extragear/graphics/
142
- - multimedia: kdemultimedia qtscriptgenerator extragear/amarok
143
- - other: kdeedu kdenetwork kdegames koffice
144
- - qt: qtmaster qca qimageblitz
145
- - all: :default :plasma :graphics :multimedia kdenetwork extragear/amarok
146
- - complete: :default
147
-
148
-
149
- ############################
150
- # MODULE DEFINITIONS DOKU #
151
- ############################
152
- #
153
- ### THE BLOCK BELOW IS NOT PART OF THE CONFIGURATION. IT'S ONLY DOCUMENTATION
154
- #
155
- <% if false # ERB will remove it %>
156
- - !michael-jansen.biz,2009/ModuleConfiguration
157
- # The module name.
158
- - name: kdesupport/automoc
159
- # Some example constants
160
- - *env
161
- - *sshkey
162
- # The repository to fetch from.
163
- - repository: <%= KDESVNSERVER %>/kde/trunk
164
- # The remote directory for fetch from relative to repository
165
- - remote-path: kdesupport/automoc
166
- # The installation directory
167
- - prefix: <%= EXTRADIR %>
168
- # The ssh key needed to talk to the repository (optional). Will be
169
- # loaded with ssh-add if necessary. Make sure ssh-agent is running
170
- - ssh-file: ~/.ssh/id_dsa
171
- - ssh-key: "1024 aa:8b:12:f4:67:8d:c4:6d:4d:d3:1d:cc:15:ee:ce:e8"
172
- # Whatever environment variables should be set before the configuration
173
- # script is run.
174
- - env:
175
- - PATH: <%= "#{QTDIR}:#{KDEDIRS}".split(":").collect { |d| d+"/bin" }.join(":")%>:/usr/X11R6/bin:/usr/bin:/bin
176
- - KDEDIRS: <%= KDEDIRS %>
177
- # The version controls system to use. Currently svn, git and git-svn are
178
- # supported
179
- - vcs: (git|svn|git-svn)
180
- # It's also possible to specify some more options to the vcs system.
181
- - vcs
182
- # The build system to use
183
- - name: git-svn
184
- # Branch to checkout (GIT)
185
- - remote-branch: 4.5
186
- # Fetch some externals (GIT-SVN)
187
- - externals:
188
- - kget/transfer-plugins/bittorrent/libbtcore: <%= KDESVNSERVER %>/kde/branches/stable/extragear-kde4/network/ktorrent/libbtcore
189
- # The build system to use. Currently autoconf(partially), cmake, qmake are
190
- # supported
191
- - build-system: (cmake|qmake|autoconf)
192
- # It's also possible to specify some more options to the build system.
193
- - build-system
194
- # The build system to use
195
- - name: cmake
196
- # Make an in source build (ALL)
197
- - inplace: true
198
- # Options to supply to the configuration script (ALL)
199
- - options: <%= CMAKE_OPTIONS %>
200
- - options: "--enable-debug"
201
- # CMAKE_PREFIX_PATH (CMAKE)
202
- - cmake-prefix-path: /my/local/install
203
- # Build-tool knows how to use autogen.sh. Supply some options (AUTOCONF)
204
- - autogen-options: --noconfigure
205
- <% end %>
206
-
207
-
208
-
209
- ############################
210
- # YAML CONSTANTS #
211
- ############################
212
- #
213
- # Some convenience yaml constants. Mix them into the module definition with
214
- # - *<constant>
215
- #
216
- - &sshkey
217
- - ssh-file: ~/.ssh/id_dsa
218
- - ssh-key: "1024 aa:8b:12:f4:67:8d:c4:6d:4d:d3:1d:cc:15:ee:ce:e8"
219
-
220
- - &env
221
- - env:
222
- - PATH: <%= "#{QTDIR}:#{KDEDIRS}".split(":").collect { |d| d+"/bin" }.join(":")%>:/usr/X11R6/bin:/usr/bin:/bin
223
- - KDEDIRS: <%= KDEDIRS %>
224
- - PKG_CONFIG_PATH: <%= "#{QTDIR}/lib/pkgconfig:#{QTDIR}/lib64/pkgconfig:#{KDEDIR}/lib#{LIB_SUFFIX}/pkgconfig:#{EXTRADIR}/lib#{LIB_SUFFIX}/pkgconfig" %>
225
-
226
- - &qt
227
- - *env
228
- - *sshkey
229
- - prefix: <%= QTDIR %>
230
-
231
- - &kde
232
- - *env
233
- - *sshkey
234
- - repository: <%= KDESVNSERVER %>/kde/trunk
235
- - prefix: <%= KDEDIR %>
236
- - build-system:
237
- - name: cmake
238
- - options: <%= CMAKE_OPTIONS %>
239
- - cmake-prefix-path: "<%= QTDIR %>:<%= KDEDIRS %>:<%= EXTRADIR %>"
240
-
241
- ############################
242
- # KDESUPPORT #
243
- ############################
244
- <% for mod in [ 'automoc', 'polkit-qt', 'soprano', 'akonadi', 'phonon', 'strigi', 'taglib', 'taglib-extras', 'telepathy-qt', 'tapioca-qt', 'decibel', 'oxygen-icons' ] %>
245
- - !michael-jansen.biz,2009/ModuleConfiguration
246
- - name: kdesupport/<%= mod %>
247
- - *env
248
- - *sshkey
249
- - repository: <%= KDESVNSERVER %>/kde/trunk
250
- - vcs: git-svn
251
- - prefix: <%= EXTRADIR %>
252
- - build-system:
253
- - name: cmake
254
- - options: <%= CMAKE_OPTIONS %>
255
- - cmake-prefix-path: "<%= QTDIR %>:<%= EXTRADIR %>"
256
- - remote-path: kdesupport/<%= mod %>
257
- <% end %>
258
-
259
- - !michael-jansen.biz,2009/ModuleConfiguration
260
- - *env
261
- - repository: git://anongit.freedesktop.org
262
- - name: kdesupport/networkmanager
263
- - remote-path: NetworkManager/NetworkManager.git
264
- - local-path: kdesupport/networkmanager
265
- - vcs: git
266
- - prefix: <%= EXTRADIR %>
267
- - build-system:
268
- - name: autoconf
269
- - options: "<%= AUTOCONF_OPTIONS %>"
270
- - inplace: true
271
- - autogen-options: -test
272
-
273
- - !michael-jansen.biz,2009/ModuleConfiguration
274
- - *env
275
- - repository: git://anongit.freedesktop.org
276
- - name: poppler
277
- - remote-path: poppler/poppler.git
278
- - local-path: kdesupport/poppler
279
- - vcs: git
280
- - prefix: <%= EXTRADIR %>
281
- - build-system:
282
- - name: autoconf
283
- - options: "<%= AUTOCONF_OPTIONS %>"
284
- - inplace: true
285
- - autogen-options: -test
286
-
287
- ############################
288
- # Qt #
289
- ############################
290
- - !michael-jansen.biz,2009/ModuleConfiguration
291
- - *qt
292
- - name: qtmaster
293
- - local-path: qtmaster
294
- - remote-path: qt/qt.git
295
- - repository: <%= GITORIOUS %>
296
- - vcs:
297
- - name: git
298
- # Checkout qt's 4.5 branch. master points to the work in progress
299
- # version 4.6
300
- - remote-branch: 4.5
301
- - build-system:
302
- - name: qtcopy
303
- # -qt-gif ............ Compile the plugin for GIF reading support.
304
- # -no-exceptions ..... Disable exceptions on compilers that support it.
305
- # -fast .............. Configure Qt quickly by generating Makefiles only for
306
- # library and subdirectory targets. All other Makefiles
307
- # are created as wrappers, which will in turn run qmake.
308
- # -nomake <part> ..... Exclude part from the list of parts to be built.
309
- # -no-phonon ......... Do not build the Phonon module. kde has it's own in
310
- # kdesupport
311
- - options: "--debug -qt-gif -no-exceptions -fast -qdbus -nomake examples -nomake demos -no-phonon -developer-build"
312
-
313
- - !michael-jansen.biz,2009/ModuleConfiguration
314
- - *qt
315
- - name: qca
316
- - remote-path: kdesupport/qca
317
- - local-path: qca
318
- - repository: <%= KDESVNSERVER %>/kde/trunk
319
- - vcs: git-svn
320
- - build-system:
321
- - name: cmake
322
- - options: <%= CMAKE_OPTIONS %>
323
-
324
- - !michael-jansen.biz,2009/ModuleConfiguration
325
- - *qt
326
- - name: qimageblitz
327
- - remote-path: kdesupport/qimageblitz
328
- - local-path: qimageblitz
329
- - repository: <%= KDESVNSERVER %>/kde/trunk
330
- - vcs: git-svn
331
- - build-system:
332
- - name: cmake
333
- - options: <%= CMAKE_OPTIONS %>
334
-
335
- ############################
336
- # KDE CORE #
337
- ############################
338
- <% for mod in [ 'kdelibs', 'kdepimlibs', 'kdebase/runtime', 'kdebase/workspace', 'kdebase/apps', 'kdepim', 'kdemultimedia', 'kdenetwork', 'kdesdk', 'kdeutils', 'kdeedu', 'kdegraphics', 'kdegames', 'kdebindings', 'kdeadmin' ] %>
339
- - !michael-jansen.biz,2009/ModuleConfiguration
340
- - name: <%= mod %>
341
- - *kde
342
- - remote-path: KDE/<%= mod %>
343
- - local-path: <%= mod %>
344
- - vcs:
345
- - name: git-svn
346
- <% if mod == "kdenetwork" %>
347
- - externals:
348
- - kget/transfer-plugins/bittorrent/libbtcore: <%= KDESVNSERVER %>/kde/branches/stable/extragear-kde4/network/ktorrent/libbtcore
349
- <% elsif mod == "kdebase/workspace" %>
350
- - externals:
351
- - kwin/clients/oxygen/lib: <%= KDESVNSERVER %>/kde/trunk/KDE/kdebase/runtime/kstyles/oxygen/lib
352
- - kwin/clients/ozone/lib: <%= KDESVNSERVER %>/kde/trunk/KDE/kdebase/runtime/kstyles/oxygen/lib
353
- <% end %>
354
- <% end %>
355
-
356
-
357
- ############################
358
- # PLASMA #
359
- ############################
360
- <% for mod, path in {
361
- 'playground/nepomuk-kde' => 'playground/base/nepomuk-kde',
362
- 'kdeplasma-addons' => 'KDE/kdeplasma-addons'
363
- } %>
364
- - !michael-jansen.biz,2009/ModuleConfiguration
365
- - name: <%= mod %>
366
- - *kde
367
- - remote-path: <%= path %>
368
- - local-path: <%= mod %>
369
- - vcs: git-svn
370
- <% end %>
371
-
372
- ############################
373
- # KDEVELOP #
374
- ############################
375
- <% for mod in [ 'kdevplatform', 'kdevelop' ] %>
376
- # kdevelop heavily relies on svn_externals. Use svn
377
- - !michael-jansen.biz,2009/ModuleConfiguration
378
- - *env
379
- - *sshkey
380
- - name: kdev/<%= mod %>
381
- - remote-path: KDE/<%= mod %>
382
- - local-path: kdev/<%= mod %>
383
- - repository: <%= KDESVNSERVER %>/kde/trunk
384
- - vcs: svn
385
- - prefix: <%= KDEDIR %>
386
- - build-system:
387
- - name: cmake
388
- - options: <%= CMAKE_OPTIONS %>
389
- - cmake-prefix-path: "<%= QTDIR %>:<%= KDEDIRS %>:<%= EXTRADIR %>"
390
- <% end %>
391
-
392
- #########################################
393
- # EXTREAGEAR / KDEVELOP PLUGINS #
394
- #########################################
395
- <% for mod in [ 'kdevelop-pg-qt', 'kdevelop-pg' ] %>
396
- - !michael-jansen.biz,2009/ModuleConfiguration
397
- - name: kdev/<%= mod %>
398
- - *kde
399
- - remote-path: playground/devtools/<%= mod %>
400
- - local-path: kdev/<%= mod %>
401
- - vcs: git-svn
402
- <% end %>
403
-
404
- <% for mod in [ 'duchainviewer', 'cppunit', 'metrics', 'python', 'ruby', 'newgdb', 'sloc', 'teamwork' ] %>
405
- - !michael-jansen.biz,2009/ModuleConfiguration
406
- - name: kdev/<%= mod %>
407
- - *kde
408
- - remote-path: playground/devtools/kdevelop4-extra-plugins/<%= mod %>
409
- - local-path: kdev/<%= mod %>
410
- - vcs: git-svn
411
- <% end %>
412
-
413
-
414
- ############################
415
- # KOFFICE #
416
- ############################
417
- - !michael-jansen.biz,2009/ModuleConfiguration
418
- - name: koffice
419
- - *kde
420
- - remote-path: koffice
421
- - vcs:
422
- - name: git-svn
423
- - externals:
424
- - kdgantt: <%= KDESVNSERVER %>/kde/trunk/KDE/kdepim/kdgantt
425
-
426
- ############################
427
- # EXTRAGEAR / GRAPHICS #
428
- ############################
429
- <% for mod in [ 'digikam', 'kipi-plugins', 'skanlite', 'kphotoalbum' ] %>
430
- - !michael-jansen.biz,2009/ModuleConfiguration
431
- - name: extragear/graphics/<%= mod %>
432
- - *kde
433
- - remote-path: extragear/graphics/<%= mod %>
434
- - local-path: extragear/graphics/<%= mod %>
435
- - vcs: git-svn
436
- <% end %>
437
-
438
- ############################
439
- # EXTRAGEAR / MULTIMEDIA #
440
- ############################
441
- <% for mod in [ 'amarok', 'k3b', 'kaffeine', 'kmplayer' ] %>
442
- - !michael-jansen.biz,2009/ModuleConfiguration
443
- - name: extragear/<%= mod %>
444
- - *kde
445
- - remote-path: extragear/multimedia/<%= mod %>
446
- - local-path: extragear/multimedia/<%= mod %>
447
- - vcs: git-svn
448
- <% end %>
449
-
450
- ############################
451
- # EXTRAGEAR / NETWORK #
452
- ############################
453
- <% for mod in [ 'konversation', 'ktorrent' ] %>
454
- - !michael-jansen.biz,2009/ModuleConfiguration
455
- - name: extragear/<%= mod %>
456
- - *kde
457
- - remote-path: extragear/network/<%= mod %>
458
- - local-path: extragear/network/<%= mod %>
459
- - vcs: git-svn
460
- <% end %>
461
-
462
- ############################
463
- # EXTRAGEAR / OFFICE #
464
- ############################
465
- <% for mod in [ 'kile', 'tellico' ] %>
466
- - !michael-jansen.biz,2009/ModuleConfiguration
467
- - name: extragear/<%= mod %>
468
- - *kde
469
- - remote-path: extragear/office/<%= mod %>
470
- - local-path: extragear/office/<%= mod %>
471
- - vcs: git-svn
472
- <% end %>
473
-
474
- ############################
475
- # EXTRAGEAR / PIM #
476
- ############################
477
- <% for mod in [ 'ksig', 'googledata' ] %>
478
- - !michael-jansen.biz,2009/ModuleConfiguration
479
- - name: extragear/<%= mod %>
480
- - *kde
481
- - remote-path: extragear/pim/<%= mod %>
482
- - local-path: extragear/pim/<%= mod %>
483
- - vcs: git-svn
484
- <% end %>
485
-
486
- ############################
487
- # EXTRAGEAR / UTILS #
488
- ############################
489
- <% for mod in [ 'yakuake' ] %>
490
- - !michael-jansen.biz,2009/ModuleConfiguration
491
- - name: extragear/<%= mod %>
492
- - *kde
493
- - remote-path: extragear/utils/<%= mod %>
494
- - local-path: extragear/utils/<%= mod %>
495
- - vcs: git-svn
496
- <% end %>
497
-
498
- ##############################
499
- # PLAYGROUND / BASE / PLASMA #
500
- ##############################
501
- <% for mod in [
502
- 'activewindowcontrol',
503
- 'adjustableclock',
504
- 'blackboard',
505
- 'cia.vc',
506
- 'cmake',
507
- 'commandwatch',
508
- 'contacts',
509
- 'cpufrequency-selector',
510
- 'crystal',
511
- 'darkstat',
512
- 'debugapplet',
513
- 'desktop',
514
- 'embed-win',
515
- 'embedded-ivan',
516
- 'fancytasks',
517
- 'flippoid',
518
- 'fortunoid',
519
- 'grid',
520
- 'groupphoto',
521
- 'java',
522
- 'kbstateapplet',
523
- 'kconfigmenu',
524
- 'keren',
525
- 'keyboardLeds',
526
- 'keystatejs',
527
- 'killswitch',
528
- 'knowledgebase',
529
- 'konsolator',
530
- 'kuickquiz',
531
- 'lionmail',
532
- 'meltdown',
533
- 'menubar',
534
- 'mid_control',
535
- 'miniplayer',
536
- 'moodbar',
537
- 'nepomuktags',
538
- 'network',
539
- 'networkmanager',
540
- 'openbrain',
541
- 'panelspacer',
542
- 'peachydock',
543
- 'plasmaboard',
544
- 'plasmobiff',
545
- 'presence',
546
- 'rotator',
547
- 'runcommand',
548
- 'script',
549
- 'serverhotlink',
550
- 'slideInSlideOut',
551
- 'spellcheck',
552
- 'stockwidget',
553
- 'suspend-applet',
554
- 'svgpaneltest',
555
- 'systemcommand',
556
- 'test',
557
- 'timeline',
558
- 'timetracker',
559
- 'toggle-compositing',
560
- 'togglepanel',
561
- 'train-clock',
562
- 'translatoid',
563
- 'victorycalendar',
564
- 'webapp',
565
- 'welcome',
566
- 'wifi-signal-strength',
567
- 'windowlist',
568
- 'windows-startmenu' ] %>
569
- - !michael-jansen.biz,2009/ModuleConfiguration
570
- - name: playground/plasma-applets/<%= mod %>
571
- - *kde
572
- - remote-path: playground/base/plasma/applets/<%= mod %>
573
- - local-path: playground/plasma-applets/<%= mod %>
574
- - vcs: git-svn
575
- <% end %>
576
-
577
- ##############################
578
- # PLAYGROUND / NETWORK #
579
- ##############################
580
- <% for mod in [
581
- 'kopete',
582
- 'kbluetooth4',
583
- 'kepas',
584
- 'rekonq'
585
- ] %>
586
- - !michael-jansen.biz,2009/ModuleConfiguration
587
- - name: playground/network-<%= mod %>
588
- - *kde
589
- - remote-path: playground/network/<%= mod %>
590
- - local-path: playground/network-<%= mod %>
591
- - vcs: git-svn
592
- <% end %>
593
-
594
- ##############################
595
- # 3RD - PARTY / LENSFUN #
596
- ##############################
597
- - !michael-jansen.biz,2009/ModuleConfiguration
598
- - name: extra/lensfun
599
- - local-path: extra/lensfun
600
- - remote-path: lensfun/trunk
601
- - repository: http://svn.berlios.de/svnroot/repos
602
- - vcs: git-svn
603
- - prefix: <%= KDEDIR %>
604
- - build-system:
605
- - name: autoconf
606
- # Lensfun build system (only autoconf compatibel requires an inplace
607
- # build
608
- - inplace: true
609
-
610
-
611
- ############################
612
- # NOT YET PORTED #
613
- ############################
614
-
615
- # ; ===========================================================================
616
- # [module:qtscriptgenerator]
617
- # vcs= git
618
- # build_system= qmake
619
- # repository=git://labs.trolltech.com/qtscriptgenerator
620
- # prefix= %(kde4svn)s
621
- #
622
- #
623
- # ; ===========================================================================
624
- # [module:l10n]
625
- # ; Keep svn here because the others would try to checkout l10n completely
626
- # vcs= svn
627
- # ; List of languages separated with spaces
628
- # languages=de
629
- # build_system= kde-l10n
630
- # svn-root= %(kde-svn-server)s/trunk/l10n-kde4
631
- # prefix= %(kde4svn)s
632
- #