autoproj 2.2.0 → 2.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 60531973b1e5068ee8e84846d5314fd6ffe01abf
4
- data.tar.gz: b58a9052db03178e6e52dafdb2f776eb314f14c5
3
+ metadata.gz: b754a2357a38c88b0f4e726147af37cef1269129
4
+ data.tar.gz: 67200ea837343e244a63bbd6b31c06a14e21b392
5
5
  SHA512:
6
- metadata.gz: f914b0ad12e9dd0d8e3c56f975f97f30e6eb86ede4a5061d3d342e79a20b0c96db609f5a8b131fffc69a8f0ca8ace53a2b2d11b236db61166a6071c5a28e95f1
7
- data.tar.gz: 2416f891515b54a88bc702f69e3f097904618b0bfd29c42fef9b20a36b8a8059dadc36de7775b298c03132e9d99e2c2abff462d92645eb425f9be6f5ff3867c7
6
+ metadata.gz: 49ca2c27d09c9fe872752b31d4b8e6b2b638de71b62d67d37315e35ab7633b137ab8718c6638440c2d77f92cd80172173d5153399773dbadb274f46b9826e408
7
+ data.tar.gz: 189fcedc88fa143d52a4b4e4fffc1509a136a2177b9b79f1e9c7f429a708f908195ab06fbd8812df2c97d95ff065205f97526d4f145ab54c245bb2c9d9dfa472
@@ -130,7 +130,7 @@ def resolve_user_selection(selected_packages, **options)
130
130
  # the package selection resolution object
131
131
  #
132
132
  # @see resolve_user_selection
133
- def resolve_selection(user_selection, checkout_only: true, only_local: false, recursive: true, non_imported_packages: :ignore)
133
+ def resolve_selection(user_selection, checkout_only: true, only_local: false, recursive: true, non_imported_packages: :ignore, auto_exclude: false)
134
134
  resolved_selection, _ = resolve_user_selection(user_selection, filter: false)
135
135
 
136
136
  ops = Ops::Import.new(ws)
@@ -140,7 +140,8 @@ def resolve_selection(user_selection, checkout_only: true, only_local: false, re
140
140
  only_local: only_local,
141
141
  recursive: recursive,
142
142
  warn_about_ignored_packages: false,
143
- non_imported_packages: non_imported_packages)
143
+ non_imported_packages: non_imported_packages,
144
+ auto_exclude: auto_exclude)
144
145
 
145
146
  return source_packages, osdep_packages, resolved_selection
146
147
  end
@@ -30,7 +30,7 @@ def initialize_and_load(mainline: nil)
30
30
  # selected packages, the PackageSelection representing the
31
31
  # selection resolution itself, and a flag telling whether some of
32
32
  # the arguments were pointing within the configuration area
33
- def finalize_setup(packages = [], non_imported_packages: :ignore, recursive: true)
33
+ def finalize_setup(packages = [], non_imported_packages: :ignore, recursive: true, auto_exclude: false)
34
34
  Autoproj.silent do
35
35
  packages, config_selected = normalize_command_line_package_selection(packages)
36
36
  # Call resolve_user_selection once to auto-add packages, so
@@ -38,7 +38,7 @@ def finalize_setup(packages = [], non_imported_packages: :ignore, recursive: tru
38
38
  resolve_user_selection(packages)
39
39
  ws.finalize_package_setup
40
40
  source_packages, osdep_packages, resolved_selection =
41
- resolve_selection(packages, recursive: recursive, non_imported_packages: non_imported_packages)
41
+ resolve_selection(packages, recursive: recursive, non_imported_packages: non_imported_packages, auto_exclude: auto_exclude)
42
42
  ws.finalize_setup
43
43
  ws.export_installation_manifest
44
44
  return source_packages, osdep_packages, resolved_selection, config_selected
@@ -1,3 +1,3 @@
1
1
  module Autoproj
2
- VERSION = "2.2.0"
2
+ VERSION = "2.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autoproj
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sylvain Joyeux
@@ -365,4 +365,3 @@ signing_key:
365
365
  specification_version: 4
366
366
  summary: Easy installation and management of sets of software packages
367
367
  test_files: []
368
- has_rdoc: