build-tool 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data.tar.gz.sig +0 -0
- data/History.txt +3 -0
- data/lib/build-tool.rb +1 -1
- data/recipes/kde/recipe +17 -12
- data/recipes/kde/settings.yaml +8 -8
- data/recipes/kdeqt4.6/recipe +0 -1
- metadata +11 -5
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
|
Binary file
|
data/History.txt
CHANGED
data/lib/build-tool.rb
CHANGED
data/recipes/kde/recipe
CHANGED
|
@@ -97,7 +97,6 @@ module "kdesupport/automoc" < kdesupport end
|
|
|
97
97
|
module "kdesupport/polkit-qt" < kdesupport end
|
|
98
98
|
module "kdesupport/soprano" < kdesupport end
|
|
99
99
|
module "kdesupport/akonadi" < kdesupport end
|
|
100
|
-
# We use phonon from qt
|
|
101
100
|
module "kdesupport/phonon" < kdesupport end
|
|
102
101
|
module "kdesupport/strigi" < kdesupport end
|
|
103
102
|
module "kdesupport/attica" < kdesupport end
|
|
@@ -237,6 +236,7 @@ module "multimedia/amarok" < kde
|
|
|
237
236
|
path "amarok/amarok.git"
|
|
238
237
|
end
|
|
239
238
|
use vcs git
|
|
239
|
+
# The remote branch to use
|
|
240
240
|
remote-path "master"
|
|
241
241
|
end
|
|
242
242
|
|
|
@@ -278,8 +278,13 @@ module "network/kdenetwork" < kde
|
|
|
278
278
|
end
|
|
279
279
|
|
|
280
280
|
module "network/konversation" < kde
|
|
281
|
-
|
|
282
|
-
|
|
281
|
+
repository konversation
|
|
282
|
+
server "gitorious.org"
|
|
283
|
+
path "konversation/konversation.git"
|
|
284
|
+
end
|
|
285
|
+
use vcs git
|
|
286
|
+
# The remote branch to use
|
|
287
|
+
remote-path "master"
|
|
283
288
|
end
|
|
284
289
|
|
|
285
290
|
module "network/knemo" < kde
|
|
@@ -555,7 +560,7 @@ end
|
|
|
555
560
|
#############################################################################
|
|
556
561
|
# OFFICE STUFF
|
|
557
562
|
#############################################################################
|
|
558
|
-
environment
|
|
563
|
+
environment office < kdebase
|
|
559
564
|
var CMAKE_PREFIX_PATH prepend "<%= settings['KOFFICE_PREFIX'] %>"
|
|
560
565
|
var KDEDIRS prepend "<%= settings['KOFFICE_PREFIX'] %>"
|
|
561
566
|
var LD_LIBRARY_PATH prepend "<%= settings['KOFFICE_PREFIX'] %>/lib<%= settings['LIB_SUFFIX'] %>"
|
|
@@ -564,26 +569,26 @@ environment kdeoffice < kdebase
|
|
|
564
569
|
var XDG_DATA_DIRS prepend "<%= settings['KOFFICE_PREFIX'] %>"
|
|
565
570
|
end
|
|
566
571
|
|
|
567
|
-
module
|
|
568
|
-
use
|
|
572
|
+
module office < kde TEMPLATE
|
|
573
|
+
use repository kde
|
|
574
|
+
end
|
|
575
|
+
|
|
576
|
+
module "office/koffice" < office
|
|
569
577
|
install-prefix "<%= settings['KOFFICE_PREFIX'] %>"
|
|
570
578
|
remote-path "koffice"
|
|
571
579
|
end
|
|
572
580
|
|
|
573
|
-
module "office/kile" <
|
|
574
|
-
use repository kde
|
|
581
|
+
module "office/kile" < office
|
|
575
582
|
install-prefix "<%= settings['KOFFICE_PREFIX'] %>"
|
|
576
583
|
remote-path "extragear/office/kile"
|
|
577
584
|
end
|
|
578
585
|
|
|
579
|
-
module "office/tellico" <
|
|
580
|
-
use repository kde
|
|
586
|
+
module "office/tellico" < office
|
|
581
587
|
install-prefix "<%= settings['KOFFICE_PREFIX'] %>"
|
|
582
588
|
remote-path "extragear/office/tellico"
|
|
583
589
|
end
|
|
584
590
|
|
|
585
|
-
module "office/skrooge" <
|
|
586
|
-
use repository kde
|
|
591
|
+
module "office/skrooge" < office
|
|
587
592
|
install-prefix "<%= settings['KOFFICE_PREFIX'] %>"
|
|
588
593
|
remote-path "extragear/office/skrooge"
|
|
589
594
|
end
|
data/recipes/kde/settings.yaml
CHANGED
|
@@ -6,24 +6,24 @@ SETTINGS:
|
|
|
6
6
|
# BUILD_DIR/src -> sources
|
|
7
7
|
# BUILD_DIR/bld -> builds
|
|
8
8
|
# BUILD_DIR/log -> log files
|
|
9
|
-
BUILD_DIR:
|
|
9
|
+
BUILD_DIR: "~/kde4/trunk"
|
|
10
10
|
|
|
11
11
|
# Install prefix for kdesupport
|
|
12
|
-
KDESUPPORT_PREFIX:
|
|
12
|
+
KDESUPPORT_PREFIX: "/kde4/trunk/support"
|
|
13
13
|
|
|
14
14
|
# Install prefix for kde
|
|
15
|
-
KDE_PREFIX:
|
|
15
|
+
KDE_PREFIX: "/kde4/trunk/kde"
|
|
16
16
|
|
|
17
17
|
# Install prefix for kdedevel
|
|
18
|
-
KDEDEVEL_PREFIX:
|
|
18
|
+
KDEDEVEL_PREFIX: "/kde4/trunk/devel"
|
|
19
19
|
|
|
20
20
|
# Install prefix for koffice
|
|
21
|
-
KOFFICE_PREFIX:
|
|
22
|
-
|
|
21
|
+
KOFFICE_PREFIX: "/kde4/trunk/office"
|
|
23
22
|
|
|
24
23
|
# LIB_SUFFIX (""|32|64)
|
|
25
24
|
# see `gcc -v`. Look for --libdir=/usr/lib....
|
|
26
25
|
LIB_SUFFIX: "64"
|
|
26
|
+
|
|
27
27
|
# See "man make".
|
|
28
28
|
MAKEFLAGS: "-j2"
|
|
29
29
|
|
|
@@ -47,6 +47,6 @@ SETTINGS:
|
|
|
47
47
|
# These directories have to be set. If not you will probably experience
|
|
48
48
|
# problems like:
|
|
49
49
|
# > Can not find mime type "application/octet-stream"
|
|
50
|
-
# or others along that line.
|
|
51
|
-
XDG_DATA_DIRS: "/usr/
|
|
50
|
+
# if not or others along that line.
|
|
51
|
+
XDG_DATA_DIRS: "/usr/share:/share"
|
|
52
52
|
|
data/recipes/kdeqt4.6/recipe
CHANGED
|
@@ -103,7 +103,6 @@ end
|
|
|
103
103
|
# -declarative # Build the declarative module.
|
|
104
104
|
module "qt/qt" < qt
|
|
105
105
|
build-system qt
|
|
106
|
-
# option flags "-developer-build -qt-gif -debug -fast -no-separate-debug-info -system-libpng -system-libjpeg -system-zlib -dbus -webkit -plugin-sql-mysql -nomake examples -nomake demos -confirm-license -opensource -libdir <%= settings['QT_PREFIX'] %>/lib<%= settings['LIB_SUFFIX'] %>"
|
|
107
106
|
option flags "-no-phonon -developer-build -debug -fast -no-separate-debug-info -nomake examples -nomake demos -confirm-license -opensource -libdir <%= settings['QT_PREFIX'] %>/lib<%= settings['LIB_SUFFIX'] %> -plugindir <%= settings['QT_PREFIX'] %>/lib<%= settings['LIB_SUFFIX'] %>/plugins"
|
|
108
107
|
end
|
|
109
108
|
use environment default
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: build-tool
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Jansen
|
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
|
30
30
|
M3zOaQdtTmiQPBqNIsE=
|
|
31
31
|
-----END CERTIFICATE-----
|
|
32
32
|
|
|
33
|
-
date: 2009-12-
|
|
33
|
+
date: 2009-12-11 00:00:00 +01:00
|
|
34
34
|
default_executable:
|
|
35
35
|
dependencies:
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
@@ -63,7 +63,11 @@ dependencies:
|
|
|
63
63
|
- !ruby/object:Gem::Version
|
|
64
64
|
version: 2.3.3
|
|
65
65
|
version:
|
|
66
|
-
description:
|
|
66
|
+
description: |-
|
|
67
|
+
This project is inspired by kdesvn-build[http://kdesvn-build.kde.org/].
|
|
68
|
+
|
|
69
|
+
It help in building and maintaining a development environment. It downloads
|
|
70
|
+
and configures sources and updates them later.
|
|
67
71
|
email:
|
|
68
72
|
- info@michael-jansen.biz
|
|
69
73
|
executables:
|
|
@@ -171,6 +175,8 @@ files:
|
|
|
171
175
|
- test/test_vcs.rb
|
|
172
176
|
has_rdoc: true
|
|
173
177
|
homepage: http://build-tool.rubyforge.org
|
|
178
|
+
licenses: []
|
|
179
|
+
|
|
174
180
|
post_install_message: " To start with build-tool try the following commands:\n > build-tool recipe list\n > build-tool recipe install <recipe>\n\n For documentation see http://michael-jansen.biz/build-tool\n\n"
|
|
175
181
|
rdoc_options:
|
|
176
182
|
- --main
|
|
@@ -192,9 +198,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
192
198
|
requirements: []
|
|
193
199
|
|
|
194
200
|
rubyforge_project: build-tool
|
|
195
|
-
rubygems_version: 1.3.
|
|
201
|
+
rubygems_version: 1.3.5
|
|
196
202
|
signing_key:
|
|
197
|
-
specification_version:
|
|
203
|
+
specification_version: 3
|
|
198
204
|
summary: This project is inspired by kdesvn-build[http://kdesvn-build.kde.org/]
|
|
199
205
|
test_files:
|
|
200
206
|
- test/test_environment.rb
|
metadata.gz.sig
CHANGED
|
Binary file
|