autoproj 1.13.0.b4 → 1.13.0.b5
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/default.osdeps +2 -2
- data/lib/autoproj/ops/snapshot.rb +3 -3
- data/lib/autoproj/version.rb +1 -1
- metadata +2 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4ead993a2bcf47653aff8ed671871ea70739c7c8
|
|
4
|
+
data.tar.gz: 920ecacf47f05a0d8b4fa3e86acf158dcc46cf5e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 440f4486bca0cc857c369a9a8bcaeb231b7059b9e536d38edd2826e2e4dc0caba951566dbb7363abe19e4b8548b3f4413c89d15ad3a84a694a30f17d35563530
|
|
7
|
+
data.tar.gz: f8c9d4d718c301e5ddfdfdbf3667ecf72cbba05c6ce5216324b98940d4d2e6abda775ce2ae13a5fc7a17a30bc3ab03d5f0c8c769d70f1ab4dd121e7c3a51f9fd
|
data/bin/autoproj_bootstrap
CHANGED
|
@@ -2981,10 +2981,10 @@ cmake:
|
|
|
2981
2981
|
opensuse: cmake
|
|
2982
2982
|
autotools:
|
|
2983
2983
|
debian,ubuntu:
|
|
2984
|
-
-
|
|
2984
|
+
- automake
|
|
2985
2985
|
- autoconf
|
|
2986
2986
|
gentoo:
|
|
2987
|
-
- sys-devel/automake
|
|
2987
|
+
- sys-devel/automake
|
|
2988
2988
|
- sys-devel/autoconf
|
|
2989
2989
|
arch:
|
|
2990
2990
|
- automake
|
data/lib/autoproj/default.osdeps
CHANGED
|
@@ -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',
|
|
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
|
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: 1.13.0.
|
|
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: []
|