arvados-cli 0.1.20150907175648 → 0.1.20150924203659
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/crunch-job +4 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a8f9fe473aa648556b83fe3850c8d4d8025573b
|
4
|
+
data.tar.gz: 80b79a6a090c2bb4aa0c8b1ef4b69ce9722d142d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f10c1edfa3b237316f18bc7b71392d04166a1385b339e67e3e696586c13b3d0d3b65f68707293b3eea47e973e190ecf919b9c5228ae5bcebf82d48fa445594f
|
7
|
+
data.tar.gz: d09204b0e24e5c3bcdc871e0e8adedc1f174fb08fc24cb2a67f70b4e5e9a30da066e9594b0f0be644dbe4bb023310e68fed36bfce75edab611b9eb205ad4dc5e
|
data/bin/crunch-job
CHANGED
@@ -2205,11 +2205,12 @@ if (-d $sdk_root) {
|
|
2205
2205
|
my $python_dir = "$install_dir/python";
|
2206
2206
|
if ((-d $python_dir) and can_run("python2.7")) {
|
2207
2207
|
open(my $egg_info_pipe, "-|",
|
2208
|
-
"python2.7 \Q$python_dir/setup.py\E
|
2208
|
+
"python2.7 \Q$python_dir/setup.py\E egg_info 2>&1 >/dev/null");
|
2209
2209
|
my @egg_info_errors = <$egg_info_pipe>;
|
2210
2210
|
close($egg_info_pipe);
|
2211
|
+
|
2211
2212
|
if ($?) {
|
2212
|
-
if (@egg_info_errors and ($egg_info_errors[-1] =~ /\bgit\b/)) {
|
2213
|
+
if (@egg_info_errors and (($egg_info_errors[-1] =~ /\bgit\b/) or ($egg_info_errors[-1] =~ /\[Errno 2\]/))) {
|
2213
2214
|
# egg_info apparently failed because it couldn't ask git for a build tag.
|
2214
2215
|
# Specify no build tag.
|
2215
2216
|
open(my $pysdk_cfg, ">>", "$python_dir/setup.cfg");
|
@@ -2218,7 +2219,7 @@ if ((-d $python_dir) and can_run("python2.7")) {
|
|
2218
2219
|
} else {
|
2219
2220
|
my $egg_info_exit = $? >> 8;
|
2220
2221
|
foreach my $errline (@egg_info_errors) {
|
2221
|
-
|
2222
|
+
warn $errline;
|
2222
2223
|
}
|
2223
2224
|
warn "python setup.py egg_info failed: exit $egg_info_exit";
|
2224
2225
|
exit ($egg_info_exit || 1);
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: arvados-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.20150924203659
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arvados Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-09-
|
11
|
+
date: 2015-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: arvados
|
@@ -178,7 +178,7 @@ dependencies:
|
|
178
178
|
- - "<"
|
179
179
|
- !ruby/object:Gem::Version
|
180
180
|
version: 1.0.0
|
181
|
-
description: Arvados command line tools, git commit
|
181
|
+
description: Arvados command line tools, git commit 99349abd0ee7347b5bac3d4a9638853c6d4b97ab
|
182
182
|
email: gem-dev@curoverse.com
|
183
183
|
executables:
|
184
184
|
- arv
|