autobuild 1.6.2 → 1.6.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/Changes.txt +16 -0
- data/lib/autobuild/package.rb +1 -1
- data/lib/autobuild/version.rb +1 -1
- metadata +10 -10
data/Changes.txt
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
== Version 1.6.3
|
2
|
+
* quickfix: force ordering of doc and build tasks (see commit b5efd01 for
|
3
|
+
details)
|
4
|
+
|
5
|
+
== Version 1.6.2
|
6
|
+
* implement a generic retry_count option for all importers
|
7
|
+
* fix concurrent display of progress messages
|
8
|
+
* implement env_source_before and env_source_after (env_source calls
|
9
|
+
env_source_after for backward compatibility reasons)
|
10
|
+
* in subcommand, properly handle Interrupt when within the fork (before the
|
11
|
+
exec)
|
12
|
+
|
13
|
+
== Version 1.6.1
|
14
|
+
* workaround "recursive call to Dir.chdir" warnings from subcommand by not changing
|
15
|
+
directory if Dir.pwd is already the target directory
|
16
|
+
|
1
17
|
== Version 1.6.0
|
2
18
|
* implement cross-package parallelism. Autobuild is now able to build packages
|
3
19
|
in parallel when parallel_build_level is greater than 1, better distributing
|
data/lib/autobuild/package.rb
CHANGED
@@ -374,7 +374,7 @@ module Autobuild
|
|
374
374
|
# In general, specific package types define a meaningful #with_doc
|
375
375
|
# method which calls this method internally.
|
376
376
|
def doc_task
|
377
|
-
@doc_task = task "#{name}-doc" do
|
377
|
+
@doc_task = task "#{name}-doc" => "#{name}-build" do
|
378
378
|
# This flag allows to disable documentation generation
|
379
379
|
# once doc_task has been called
|
380
380
|
if generates_doc?
|
data/lib/autobuild/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: autobuild
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-11-
|
12
|
+
date: 2012-11-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
16
|
-
requirement: &
|
16
|
+
requirement: &23341320 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 0.7.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *23341320
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: utilrb
|
27
|
-
requirement: &
|
27
|
+
requirement: &23340880 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 1.3.3
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *23340880
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: rdoc
|
38
|
-
requirement: &
|
38
|
+
requirement: &23340320 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ~>
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: '3.10'
|
44
44
|
type: :development
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *23340320
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: hoe
|
49
|
-
requirement: &
|
49
|
+
requirement: &23339880 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ~>
|
@@ -54,7 +54,7 @@ dependencies:
|
|
54
54
|
version: '3.1'
|
55
55
|
type: :development
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *23339880
|
58
58
|
description: Collection of classes to handle build systems (CMake, autotools, ...)
|
59
59
|
and import mechanisms (tarballs, CVS, SVN, git, ...). It also offers a Rake integration
|
60
60
|
to import and build such software packages. It is the backbone of the autoproj (http://rock-robotics.org/autoproj)
|