autoproj 1.7.19 → 1.7.20
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/History.txt +6 -0
- data/lib/autoproj/autobuild.rb +1 -1
- data/lib/autoproj/version.rb +1 -1
- metadata +3 -3
data/History.txt
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
= Version 1.7.20
|
|
2
|
+
* do not generate an error if an unknown package is used as an optional
|
|
3
|
+
dependency. The rationale is that one can then have optional features that
|
|
4
|
+
are only present if other package sets are included (as e.g. the presence or
|
|
5
|
+
not of RTT as a package, i.e. the rock.toolchain package set)
|
|
6
|
+
|
|
1
7
|
= Version 1.7.19
|
|
2
8
|
* use different colors for remote-only and local-only commits in autoproj
|
|
3
9
|
status
|
data/lib/autoproj/autobuild.rb
CHANGED
|
@@ -136,7 +136,7 @@ module Autobuild
|
|
|
136
136
|
def partition_optional_dependencies
|
|
137
137
|
packages, osdeps, disabled = [], [], []
|
|
138
138
|
optional_dependencies.each do |name|
|
|
139
|
-
if !Autoproj.manifest.package_enabled?(name)
|
|
139
|
+
if !Autoproj.manifest.package_enabled?(name, false)
|
|
140
140
|
disabled << name
|
|
141
141
|
next
|
|
142
142
|
end
|
data/lib/autoproj/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autoproj
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 35
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 7
|
|
9
|
-
-
|
|
10
|
-
version: 1.7.
|
|
9
|
+
- 20
|
|
10
|
+
version: 1.7.20
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Sylvain Joyeux
|