autoproj 1.11.0.rc10 → 1.11.0.rc11
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/bin/autoproj_bootstrap +2 -2
- data/lib/autoproj/autobuild.rb +4 -0
- data/lib/autoproj/ops/build.rb +2 -1
- data/lib/autoproj/osdeps.rb +2 -2
- data/lib/autoproj/package_selection.rb +2 -0
- data/lib/autoproj/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0c81d44a11252188106d89008e520814b7d428c
|
|
4
|
+
data.tar.gz: 026938c50697e48764c7389bc17428ab894cf620
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 47c222b82563dd4d3b5006d948e182bd36ff10a9c8fabe28becb349812669f9326e4d411e9e579a059aff79dbfbe4547ead87e0c80ff21a553f79082a11bdb98
|
|
7
|
+
data.tar.gz: 150bd14da0f70108b681edef5377824a87bf0b48ffc008f24da0ec081ffb759345d997f64118c883d903a4bd8bd268ffda0b234c385072caacc67764b477a0c2
|
data/bin/autoproj_bootstrap
CHANGED
|
@@ -1056,9 +1056,9 @@ fi
|
|
|
1056
1056
|
def reinstall
|
|
1057
1057
|
Autoproj.message "reinstalling all RubyGems"
|
|
1058
1058
|
base_cmdline = [Autobuild.tool_in_path('ruby'), '-S', Autobuild.tool('gem')]
|
|
1059
|
-
Autobuild::Subprocess.run '
|
|
1059
|
+
Autobuild::Subprocess.run 'osdeps', 'reinstall', *base_cmdline,
|
|
1060
1060
|
'clean'
|
|
1061
|
-
Autobuild::Subprocess.run '
|
|
1061
|
+
Autobuild::Subprocess.run 'osdeps', 'reinstall', *base_cmdline,
|
|
1062
1062
|
'pristine', '--all', '--extensions'
|
|
1063
1063
|
end
|
|
1064
1064
|
|
data/lib/autoproj/autobuild.rb
CHANGED
data/lib/autoproj/ops/build.rb
CHANGED
|
@@ -29,8 +29,9 @@ module Autoproj
|
|
|
29
29
|
if update_os_dependencies?
|
|
30
30
|
# We also reinstall the osdeps that provide the
|
|
31
31
|
# functionality
|
|
32
|
-
managers =
|
|
32
|
+
managers = Autoproj.osdeps.setup_package_handlers
|
|
33
33
|
managers.each do |mng|
|
|
34
|
+
puts mng.class
|
|
34
35
|
if mng.respond_to?(:reinstall)
|
|
35
36
|
mng.reinstall
|
|
36
37
|
end
|
data/lib/autoproj/osdeps.rb
CHANGED
|
@@ -595,9 +595,9 @@ fi
|
|
|
595
595
|
def reinstall
|
|
596
596
|
Autoproj.message "reinstalling all RubyGems"
|
|
597
597
|
base_cmdline = [Autobuild.tool_in_path('ruby'), '-S', Autobuild.tool('gem')]
|
|
598
|
-
Autobuild::Subprocess.run '
|
|
598
|
+
Autobuild::Subprocess.run 'osdeps', 'reinstall', *base_cmdline,
|
|
599
599
|
'clean'
|
|
600
|
-
Autobuild::Subprocess.run '
|
|
600
|
+
Autobuild::Subprocess.run 'osdeps', 'reinstall', *base_cmdline,
|
|
601
601
|
'pristine', '--all', '--extensions'
|
|
602
602
|
end
|
|
603
603
|
|
|
@@ -14,6 +14,8 @@ module Autoproj
|
|
|
14
14
|
# are errors or simply warnings (i.e. if the user really wants a given
|
|
15
15
|
# package, or merely might be adding it by accident)
|
|
16
16
|
class PackageSelection
|
|
17
|
+
include Enumerable
|
|
18
|
+
|
|
17
19
|
# The set of matches, i.e. a mapping from a user-provided string to
|
|
18
20
|
# the set of packages it selected
|
|
19
21
|
attr_reader :matches
|
data/lib/autoproj/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autoproj
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.11.0.
|
|
4
|
+
version: 1.11.0.rc11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rock Core Developers
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-10-
|
|
11
|
+
date: 2014-10-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: autobuild
|