autobuild 1.6.0.rc6 → 1.6.0
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/Changes.txt +1 -0
- data/Rakefile +4 -4
- data/lib/autobuild/subcommand.rb +5 -1
- data/lib/autobuild/version.rb +1 -1
- metadata +33 -40
data/Changes.txt
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
the workload. Additionally, if GNUmake is in use, this interfaces with the
|
5
5
|
GNUmake job server mechanism to allow the different make jobs to dynamically
|
6
6
|
distribute jobs among themselves (and with the main autoproj process)
|
7
|
+
* fix some issues with Ruby 1.9.3
|
7
8
|
|
8
9
|
== Version 1.5.61
|
9
10
|
* orogen: fix regeneration logic. Autobuild would not generate an oroGen project
|
data/Rakefile
CHANGED
@@ -4,10 +4,10 @@ Utilrb::Rake.hoe do
|
|
4
4
|
Hoe.spec 'autobuild' do
|
5
5
|
developer "Sylvain Joyeux", "sylvain.joyeux@m4x.org"
|
6
6
|
|
7
|
-
self.
|
8
|
-
self.
|
9
|
-
self.
|
10
|
-
self.
|
7
|
+
self.urls = ["http://rock-robotics.org/stable/autoproj"]
|
8
|
+
self.summary = 'Library to handle build systems and import mechanisms'
|
9
|
+
self.description = "Collection of classes to handle build systems (CMake, autotools, ...) and import mechanisms (tarballs, CVS, SVN, git, ...). It also offers a Rake integration to import and build such software packages. It is the backbone of the autoproj (http://rock-robotics.org/autoproj) integrated software project management tool."
|
10
|
+
self.email = %q{rock-dev@dfki.de}
|
11
11
|
|
12
12
|
self.extra_deps <<
|
13
13
|
['rake', '>= 0.7.0'] <<
|
data/lib/autobuild/subcommand.rb
CHANGED
@@ -198,7 +198,7 @@ module Autobuild::Subprocess
|
|
198
198
|
if !input_streams.empty?
|
199
199
|
pread, pwrite = IO.pipe # to feed subprocess stdin
|
200
200
|
end
|
201
|
-
if block_given? # the caller wants the stdout/stderr stream of the process, git it to him
|
201
|
+
if Autobuild.verbose || block_given? # the caller wants the stdout/stderr stream of the process, git it to him
|
202
202
|
outread, outwrite = IO.pipe
|
203
203
|
outread.sync = true
|
204
204
|
outwrite.sync = true
|
@@ -279,6 +279,10 @@ module Autobuild::Subprocess
|
|
279
279
|
STDOUT.print line
|
280
280
|
end
|
281
281
|
logfile.puts line
|
282
|
+
# Do not yield the line if Autobuild.verbose is true, as it
|
283
|
+
# would mix the progress output with the actual command
|
284
|
+
# output. Assume that if the user wants the command output,
|
285
|
+
# the autobuild progress output is unnecessary
|
282
286
|
if !Autobuild.verbose && block_given?
|
283
287
|
yield(line)
|
284
288
|
end
|
data/lib/autobuild/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autobuild
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 15
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 6
|
9
9
|
- 0
|
10
|
-
|
11
|
-
- 6
|
12
|
-
version: 1.6.0.rc6
|
10
|
+
version: 1.6.0
|
13
11
|
platform: ruby
|
14
12
|
authors:
|
15
13
|
- Sylvain Joyeux
|
@@ -17,7 +15,7 @@ autorequire:
|
|
17
15
|
bindir: bin
|
18
16
|
cert_chain: []
|
19
17
|
|
20
|
-
date: 2012-
|
18
|
+
date: 2012-09-18 00:00:00 Z
|
21
19
|
dependencies:
|
22
20
|
- !ruby/object:Gem::Dependency
|
23
21
|
name: rake
|
@@ -52,40 +50,37 @@ dependencies:
|
|
52
50
|
type: :runtime
|
53
51
|
version_requirements: *id002
|
54
52
|
- !ruby/object:Gem::Dependency
|
55
|
-
name:
|
53
|
+
name: rdoc
|
56
54
|
prerelease: false
|
57
55
|
requirement: &id003 !ruby/object:Gem::Requirement
|
58
56
|
none: false
|
59
57
|
requirements:
|
60
58
|
- - ~>
|
61
59
|
- !ruby/object:Gem::Version
|
62
|
-
hash:
|
60
|
+
hash: 19
|
63
61
|
segments:
|
64
|
-
-
|
65
|
-
-
|
66
|
-
version: "
|
62
|
+
- 3
|
63
|
+
- 10
|
64
|
+
version: "3.10"
|
67
65
|
type: :development
|
68
66
|
version_requirements: *id003
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
+LD_LIBRARY_PATH+, ...)
|
87
|
-
email:
|
88
|
-
- sylvain.joyeux@m4x.org
|
67
|
+
- !ruby/object:Gem::Dependency
|
68
|
+
name: hoe
|
69
|
+
prerelease: false
|
70
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
71
|
+
none: false
|
72
|
+
requirements:
|
73
|
+
- - ~>
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
hash: 7
|
76
|
+
segments:
|
77
|
+
- 3
|
78
|
+
- 0
|
79
|
+
version: "3.0"
|
80
|
+
type: :development
|
81
|
+
version_requirements: *id004
|
82
|
+
description: Collection of classes to handle build systems (CMake, autotools, ...) and import mechanisms (tarballs, CVS, SVN, git, ...). It also offers a Rake integration to import and build such software packages. It is the backbone of the autoproj (http://rock-robotics.org/autoproj) integrated software project management tool.
|
83
|
+
email: rock-dev@dfki.de
|
89
84
|
executables:
|
90
85
|
- autobuild
|
91
86
|
extensions: []
|
@@ -138,7 +133,7 @@ files:
|
|
138
133
|
- test/test_subcommand.rb
|
139
134
|
- test/tools.rb
|
140
135
|
- .gemtest
|
141
|
-
homepage:
|
136
|
+
homepage: http://rock-robotics.org/stable/autoproj
|
142
137
|
licenses: []
|
143
138
|
|
144
139
|
post_install_message:
|
@@ -159,21 +154,19 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
159
154
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
160
155
|
none: false
|
161
156
|
requirements:
|
162
|
-
- - "
|
157
|
+
- - ">="
|
163
158
|
- !ruby/object:Gem::Version
|
164
|
-
hash:
|
159
|
+
hash: 3
|
165
160
|
segments:
|
166
|
-
-
|
167
|
-
|
168
|
-
- 1
|
169
|
-
version: 1.3.1
|
161
|
+
- 0
|
162
|
+
version: "0"
|
170
163
|
requirements: []
|
171
164
|
|
172
165
|
rubyforge_project: autobuild
|
173
|
-
rubygems_version: 1.8.
|
166
|
+
rubygems_version: 1.8.24
|
174
167
|
signing_key:
|
175
168
|
specification_version: 3
|
176
|
-
summary:
|
169
|
+
summary: Library to handle build systems and import mechanisms
|
177
170
|
test_files:
|
178
171
|
- test/test_import_svn.rb
|
179
172
|
- test/test_import_tar.rb
|