autoproj 1.13.0.b4 → 1.13.0.b5

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: 0c7557ff9fad5a370e5cc7988a711831e62c33a3
4
- data.tar.gz: 621912f3aa71dee3de8a88101540ec44b8fc2160
3
+ metadata.gz: 4ead993a2bcf47653aff8ed671871ea70739c7c8
4
+ data.tar.gz: 920ecacf47f05a0d8b4fa3e86acf158dcc46cf5e
5
5
  SHA512:
6
- metadata.gz: 9c7ac823f52ab7e75c9c3ba89a9a639d01d9fa6560ce9142c223ff8e4bad6b50d45c70559042919a9aa5c10dae7e8d7400aa10e6859441e949723c1fb91b86c6
7
- data.tar.gz: eb4f9a03b3c7d649c3460567935d906e638251d35f8f5dd3167604408cc98b93f056babf630f77cb4ea0352c26ee79d6cd61917a4cdecc3f56785a1802d015f8
6
+ metadata.gz: 440f4486bca0cc857c369a9a8bcaeb231b7059b9e536d38edd2826e2e4dc0caba951566dbb7363abe19e4b8548b3f4413c89d15ad3a84a694a30f17d35563530
7
+ data.tar.gz: f8c9d4d718c301e5ddfdfdbf3667ecf72cbba05c6ce5216324b98940d4d2e6abda775ce2ae13a5fc7a17a30bc3ab03d5f0c8c769d70f1ab4dd121e7c3a51f9fd
@@ -2981,10 +2981,10 @@ cmake:
2981
2981
  opensuse: cmake
2982
2982
  autotools:
2983
2983
  debian,ubuntu:
2984
- - automake1.9
2984
+ - automake
2985
2985
  - autoconf
2986
2986
  gentoo:
2987
- - sys-devel/automake:1.9
2987
+ - sys-devel/automake
2988
2988
  - sys-devel/autoconf
2989
2989
  arch:
2990
2990
  - automake
@@ -142,10 +142,10 @@ cmake:
142
142
 
143
143
  autotools:
144
144
  debian,ubuntu:
145
- - "automake1.9"
145
+ - automake
146
146
  - autoconf
147
147
  gentoo:
148
- - "sys-devel/automake:1.9"
148
+ - "sys-devel/automake"
149
149
  - sys-devel/autoconf
150
150
  arch:
151
151
  - automake
@@ -229,6 +229,8 @@ module Autoproj
229
229
  cacheinfo = cacheinfo.join(",")
230
230
  end
231
231
 
232
+ parent_id ||= importer.rev_parse(pkg, 'HEAD')
233
+
232
234
  # Create the tree using a temporary index in order to not mess with
233
235
  # the user's index state. read-tree initializes the new index and
234
236
  # then we add the overrides file with update-index / write-tree
@@ -236,7 +238,7 @@ module Autoproj
236
238
  FileUtils.rm_f our_index
237
239
  begin
238
240
  ENV['GIT_INDEX_FILE'] = our_index
239
- importer.run_git_bare(pkg, 'read-tree', 'HEAD')
241
+ importer.run_git_bare(pkg, 'read-tree', parent_id)
240
242
  # And add the new file
241
243
  importer.run_git_bare(
242
244
  pkg, 'update-index',
@@ -247,8 +249,6 @@ module Autoproj
247
249
  FileUtils.rm_f our_index
248
250
  end
249
251
 
250
- parent_id ||= importer.rev_parse(pkg, 'HEAD')
251
-
252
252
  importer.run_git_bare(
253
253
  pkg, 'commit-tree',
254
254
  tree_id, '-p', parent_id, input_streams: [message]).first
@@ -1,3 +1,3 @@
1
1
  module Autoproj
2
- VERSION = "1.13.0.b4"
2
+ VERSION = "1.13.0.b5"
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.0.b4
4
+ version: 1.13.0.b5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rock Core Developers
@@ -250,11 +250,4 @@ rubygems_version: 2.2.2
250
250
  signing_key:
251
251
  specification_version: 4
252
252
  summary: Easy installation and management of sets of software packages
253
- test_files:
254
- - test/package_managers/test_apt_dpkg_manager.rb
255
- - test/package_managers/test_gem.rb
256
- - test/package_managers/test_pip.rb
257
- - test/test_manifest.rb
258
- - test/test_os_dependencies.rb
259
- - test/test_package_manifest.rb
260
- - test/ops/test_configuration.rb
253
+ test_files: []