autoproj 1.7.19.rc1 → 1.7.19.rc2

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.
@@ -142,8 +142,8 @@ module Autobuild
142
142
  end
143
143
 
144
144
  pkg_autobuild, pkg_osdeps = partition_package(name)
145
- valid = pkg_autobuild.any? { |pkg| !Autoproj.manifest.package_enabled?(pkg) } ||
146
- pkg_osdeps.any? { |pkg| !Autoproj.manifest.package_enabled?(pkg) }
145
+ valid = pkg_autobuild.all? { |pkg| Autoproj.manifest.package_enabled?(pkg) } &&
146
+ pkg_osdeps.all? { |pkg| Autoproj.manifest.package_enabled?(pkg) }
147
147
 
148
148
  if valid
149
149
  packages.concat(pkg_autobuild)
@@ -158,7 +158,7 @@ module Autobuild
158
158
  def resolve_optional_dependencies
159
159
  if !Autoproj::CmdLine.ignore_dependencies?
160
160
  packages, osdeps, disabled = partition_optional_dependencies
161
- packages.each { |pkg| depends_on(packages) }
161
+ packages.each { |pkg| depends_on(pkg) }
162
162
  @os_packages ||= Set.new
163
163
  @os_packages |= osdeps.to_set
164
164
  end
@@ -474,6 +474,10 @@ module Autoproj
474
474
  if !opt_deps.empty?
475
475
  Autoproj.progress " disabled opt deps: #{opt_deps.join(", ")}"
476
476
  end
477
+
478
+ if !pkg.os_packages.empty?
479
+ Autoproj.progress " OSdeps: #{pkg.os_packages.to_a.sort.join(", ")}"
480
+ end
477
481
  end
478
482
 
479
483
  if !packages_not_present.empty?
@@ -1,3 +1,3 @@
1
1
  module Autoproj
2
- VERSION = "1.7.19.rc1"
2
+ VERSION = "1.7.19.rc2"
3
3
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autoproj
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15424223
4
+ hash: 15424217
5
5
  prerelease: 7
6
6
  segments:
7
7
  - 1
8
8
  - 7
9
9
  - 19
10
10
  - rc
11
- - 1
12
- version: 1.7.19.rc1
11
+ - 2
12
+ version: 1.7.19.rc2
13
13
  platform: ruby
14
14
  authors:
15
15
  - Sylvain Joyeux
@@ -17,7 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2012-02-21 00:00:00 Z
20
+ date: 2012-02-22 00:00:00 Z
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
23
23
  name: autobuild