autoproj 1.13.3.b2 → 1.13.3

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: 1b4edd25c47f768b382c4d43d1e61546a027a84a
4
- data.tar.gz: cc14d7b544f12bfd8b4428595a4f818acdf1a500
3
+ metadata.gz: fb773b4a9bc2b1de9d98a219109dceb361598a20
4
+ data.tar.gz: d1fa8ff80b304bab208efdd8e3f597b8df5b4f76
5
5
  SHA512:
6
- metadata.gz: 5c5d15271671dedad6f0f54ec449983d351ec91865a1c03ccf9df7caf11f08c987b785b28224724ff993b9627703b2e52d984bde3d20341315d46b4c7b3855c9
7
- data.tar.gz: 7bbae838a1549785cbfd1c9b5384bf59061c7fef9433c76638bd078d1debd8d121fb726da7e52d9b206529feca3e7cd31eec17c24d093cfea9e2fad97f110fae
6
+ metadata.gz: f91eb7f06627509cb5e6198c3f09a8e7b81f64c7c5349de7e12da1d87d125d2c058abac75be62f3c42450d73c3528b48be8354aa630b75912507527c3453ff8e
7
+ data.tar.gz: e7b5d426ecf02a4f77f92ce2a651f739fd3252b9bf29a1ffc6a2ec55a713ace4fc60029dc0f70b1953ed6b63990ec0f9739d6b97cbd75cef417f65703bb05a82
@@ -179,6 +179,10 @@ module Autoproj
179
179
  main = import_state_log_package
180
180
  # Try to resolve the log ref, and extract the version file from it
181
181
  begin
182
+ #package importer might be nil during bootstrapping
183
+ if main.importer.nil?
184
+ return Array.new
185
+ end
182
186
  yaml = main.importer.show(main, import_state_log_ref, import_state_log_file)
183
187
  YAML.load(yaml) || Array.new
184
188
  rescue Autobuild::PackageException
@@ -187,6 +191,7 @@ module Autoproj
187
191
  end
188
192
 
189
193
  def update_package_import_state(name, packages)
194
+ return if import_state_log_package.importer.nil? #We cannot create states for packages without a importer
190
195
  current_versions = current_import_state
191
196
  if current_versions.empty?
192
197
  # Do a full snapshot this time only
@@ -1,3 +1,3 @@
1
1
  module Autoproj
2
- VERSION = "1.13.3.b2"
2
+ VERSION = "1.13.3"
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: 1.13.3.b2
4
+ version: 1.13.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rock Core Developers
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '3.13'
75
+ version: '3.14'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '3.13'
82
+ version: '3.14'
83
83
  description: autoproj is a manager for sets of software packages. It allows the user
84
84
  to import and build packages from source, still using the underlying distribution's
85
85
  native package manager for software that is available on it.
@@ -118,7 +118,6 @@ extra_rdoc_files:
118
118
  - README.md
119
119
  - samples/autoproj/README.txt
120
120
  files:
121
- - ".gemtest"
122
121
  - History.txt
123
122
  - Manifest.txt
124
123
  - README.md
@@ -235,12 +234,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
235
234
  version: 1.9.2
236
235
  required_rubygems_version: !ruby/object:Gem::Requirement
237
236
  requirements:
238
- - - ">"
237
+ - - ">="
239
238
  - !ruby/object:Gem::Version
240
- version: 1.3.1
239
+ version: '0'
241
240
  requirements: []
242
241
  rubyforge_project:
243
- rubygems_version: 2.2.2
242
+ rubygems_version: 2.2.3
244
243
  signing_key:
245
244
  specification_version: 4
246
245
  summary: Easy installation and management of sets of software packages
data/.gemtest DELETED
File without changes