autobuild 1.6.0.rc6 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
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.summary = 'Rake-based utility to build and install multiple packages with dependencies'
8
- self.description = self.paragraphs_of('README.txt', 2..5).join("\n\n")
9
- self.url = self.paragraphs_of('README.txt', 1).first.split(/\n/)[1..-1].map { |s| s.gsub('* ', '') }
10
- self.changes = self.paragraphs_of('Changes.txt', 0..2).join("\n\n")
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'] <<
@@ -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
@@ -1,5 +1,5 @@
1
1
  module Autobuild
2
- VERSION = "1.6.0.rc6" unless defined? Autobuild::VERSION
2
+ VERSION = "1.6.0" unless defined? Autobuild::VERSION
3
3
  end
4
4
 
5
5
 
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: 15424089
5
- prerelease: 6
4
+ hash: 15
5
+ prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 6
9
9
  - 0
10
- - rc
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-04-18 00:00:00 Z
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: hoe
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: 27
60
+ hash: 19
63
61
  segments:
64
- - 2
65
- - 12
66
- version: "2.12"
62
+ - 3
63
+ - 10
64
+ version: "3.10"
67
65
  type: :development
68
66
  version_requirements: *id003
69
- description: |-
70
- This work is licensed under the GPLv2 license. See License.txt for details
71
-
72
- == What's autobuild ?
73
- Autobuild imports, configures, builds and installs various kinds of software packages.
74
- It can be used in software development to make sure that nothing is broken in the
75
- build process of a set of packages, or can be used as an automated installation tool.
76
-
77
- Autobuild config files are Ruby scripts which configure rake to
78
- * imports the package from a SCM or (optionnaly) updates it
79
- * configures it. This phase can handle code generation, configuration (for
80
- instance for autotools-based packages), ...
81
- * build
82
- * install
83
-
84
- It takes the dependencies between packages into account in its build process,
85
- updates the needed environment variables (+PKG_CONFIG_PATH+, +PATH+,
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: 25
159
+ hash: 3
165
160
  segments:
166
- - 1
167
- - 3
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.15
166
+ rubygems_version: 1.8.24
174
167
  signing_key:
175
168
  specification_version: 3
176
- summary: Rake-based utility to build and install multiple packages with dependencies
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