autoproj 2.2.0 → 2.2.1
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.
- checksums.yaml +4 -4
- data/lib/autoproj/cli/base.rb +3 -2
- data/lib/autoproj/cli/inspection_tool.rb +2 -2
- data/lib/autoproj/version.rb +1 -1
- metadata +1 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b754a2357a38c88b0f4e726147af37cef1269129
|
4
|
+
data.tar.gz: 67200ea837343e244a63bbd6b31c06a14e21b392
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49ca2c27d09c9fe872752b31d4b8e6b2b638de71b62d67d37315e35ab7633b137ab8718c6638440c2d77f92cd80172173d5153399773dbadb274f46b9826e408
|
7
|
+
data.tar.gz: 189fcedc88fa143d52a4b4e4fffc1509a136a2177b9b79f1e9c7f429a708f908195ab06fbd8812df2c97d95ff065205f97526d4f145ab54c245bb2c9d9dfa472
|
data/lib/autoproj/cli/base.rb
CHANGED
@@ -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
|
data/lib/autoproj/version.rb
CHANGED
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.
|
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:
|