Merge pull request #36283 from aneeshusa/fix-vagrant-2.0.2

Fix vagrant 2.0.2
This commit is contained in:
zimbatm 2018-03-05 18:03:02 +00:00 committed by GitHub
commit 1bc5bf4beb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 27 deletions

View File

@ -36,7 +36,6 @@ lib.makeOverridable (
rubyName = builtins.parseDrvName ruby.name; rubyName = builtins.parseDrvName ruby.name;
in "${rubyName.name}${rubyName.version}-") in "${rubyName.name}${rubyName.version}-")
, buildInputs ? [] , buildInputs ? []
, doCheck ? false
, meta ? {} , meta ? {}
, patches ? [] , patches ? []
, gemPath ? [] , gemPath ? []
@ -79,7 +78,6 @@ in
stdenv.mkDerivation ((builtins.removeAttrs attrs ["source"]) // { stdenv.mkDerivation ((builtins.removeAttrs attrs ["source"]) // {
inherit ruby; inherit ruby;
inherit doCheck;
inherit dontBuild; inherit dontBuild;
inherit dontStrip; inherit dontStrip;
inherit type; inherit type;
@ -96,8 +94,6 @@ stdenv.mkDerivation ((builtins.removeAttrs attrs ["source"]) // {
inherit src; inherit src;
phases = attrs.phases or [ "unpackPhase" "patchPhase" "buildPhase" "installPhase" "fixupPhase" ];
unpackPhase = attrs.unpackPhase or '' unpackPhase = attrs.unpackPhase or ''
runHook preUnpack runHook preUnpack

View File

@ -11,16 +11,16 @@ GIT
PATH PATH
remote: . remote: .
specs: specs:
vagrant (2.0.1) vagrant (2.0.2)
childprocess (~> 0.6.0) childprocess (~> 0.6.0)
erubis (~> 2.7.0) erubis (~> 2.7.0)
hashicorp-checkpoint (~> 0.1.1) hashicorp-checkpoint (~> 0.1.5)
i18n (>= 0.6.0, <= 0.8.0) i18n (>= 0.6.0, <= 0.8.0)
listen (~> 3.1.5) listen (~> 3.1.5)
log4r (~> 1.1.9, < 1.1.11) log4r (~> 1.1.9, < 1.1.11)
net-scp (~> 1.2.0) net-scp (~> 1.2.0)
net-sftp (~> 2.1) net-sftp (~> 2.1)
net-ssh (~> 4.1.0) net-ssh (~> 4.2.0)
rb-kqueue (~> 0.2.0) rb-kqueue (~> 0.2.0)
rest-client (>= 1.6.0, < 3.0) rest-client (>= 1.6.0, < 3.0)
ruby_dep (<= 1.3.1) ruby_dep (<= 1.3.1)
@ -50,7 +50,7 @@ GEM
gyoku (1.3.1) gyoku (1.3.1)
builder (>= 2.1.2) builder (>= 2.1.2)
hashdiff (0.3.7) hashdiff (0.3.7)
hashicorp-checkpoint (0.1.4) hashicorp-checkpoint (0.1.5)
http-cookie (1.0.3) http-cookie (1.0.3)
domain_name (~> 0.5) domain_name (~> 0.5)
httpclient (2.8.3) httpclient (2.8.3)
@ -67,17 +67,17 @@ GEM
mime-types (3.1) mime-types (3.1)
mime-types-data (~> 3.2015) mime-types-data (~> 3.2015)
mime-types-data (3.2016.0521) mime-types-data (3.2016.0521)
multi_json (1.12.2) multi_json (1.13.1)
net-scp (1.2.1) net-scp (1.2.1)
net-ssh (>= 2.6.5) net-ssh (>= 2.6.5)
net-sftp (2.1.2) net-sftp (2.1.2)
net-ssh (>= 2.6.5) net-ssh (>= 2.6.5)
net-ssh (4.1.0) net-ssh (4.2.0)
netrc (0.11.0) netrc (0.11.0)
nori (2.6.0) nori (2.6.0)
public_suffix (3.0.1) public_suffix (3.0.1)
rake (12.0.0) rake (12.0.0)
rb-fsevent (0.10.2) rb-fsevent (0.10.3)
rb-inotify (0.9.10) rb-inotify (0.9.10)
ffi (>= 0.5.0, < 2) ffi (>= 0.5.0, < 2)
rb-kqueue (0.2.5) rb-kqueue (0.2.5)
@ -109,7 +109,7 @@ GEM
thor (0.18.1) thor (0.18.1)
unf (0.1.4) unf (0.1.4)
unf_ext unf_ext
unf_ext (0.0.7.4) unf_ext (0.0.7.5)
wdm (0.1.1) wdm (0.1.1)
webmock (2.3.2) webmock (2.3.2)
addressable (>= 2.3.6) addressable (>= 2.3.6)
@ -127,7 +127,7 @@ GEM
winrm-elevated (1.1.0) winrm-elevated (1.1.0)
winrm (~> 2.0) winrm (~> 2.0)
winrm-fs (~> 1.0) winrm-fs (~> 1.0)
winrm-fs (1.1.1) winrm-fs (1.2.0)
erubis (~> 2.7) erubis (~> 2.7)
logging (>= 1.6.1, < 3.0) logging (>= 1.6.1, < 3.0)
rubyzip (~> 1.1) rubyzip (~> 1.1)

View File

@ -28,7 +28,7 @@ in buildRubyGem rec {
gemName = "vagrant"; gemName = "vagrant";
inherit version; inherit version;
doCheck = true; doInstallCheck = true;
dontBuild = false; dontBuild = false;
src = fetchurl { inherit url sha256; }; src = fetchurl { inherit url sha256; };
@ -44,6 +44,15 @@ in buildRubyGem rec {
--prefix PATH ':' "${lib.getBin libarchive}/bin" --prefix PATH ':' "${lib.getBin libarchive}/bin"
''; '';
installCheckPhase = ''
if [[ "$("$out/bin/vagrant" --version)" == "Vagrant ${version}" ]]; then
echo 'Vagrant smoke check passed'
else
echo 'Vagrant smoke check failed'
return 1
fi
'';
passthru = { passthru = {
inherit ruby deps; inherit ruby deps;
}; };

View File

@ -104,10 +104,10 @@
hashicorp-checkpoint = { hashicorp-checkpoint = {
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "15shgckjnxqpz1n9z6y4ax1dcnn5vdqcva29gdg2l7ny0g1w7c7m"; sha256 = "1z6mwzvd7p2wqhmk07dwrhvm0ncgqm7pxn0pr2k025rwsspp9bsd";
type = "gem"; type = "gem";
}; };
version = "0.1.4"; version = "0.1.5";
}; };
http-cookie = { http-cookie = {
dependencies = ["domain_name"]; dependencies = ["domain_name"];
@ -188,10 +188,10 @@
multi_json = { multi_json = {
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1raim9ddjh672m32psaa9niw67ywzjbxbdb8iijx3wv9k5b0pk2x"; sha256 = "1rl0qy4inf1mp8mybfk56dfga0mvx97zwpmq5xmiwl5r770171nv";
type = "gem"; type = "gem";
}; };
version = "1.12.2"; version = "1.13.1";
}; };
net-scp = { net-scp = {
dependencies = ["net-ssh"]; dependencies = ["net-ssh"];
@ -214,10 +214,10 @@
net-ssh = { net-ssh = {
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "013p5jb4wy0cq7x7036piw2a3s1i9p752ki1srx2m289mpz4ml3q"; sha256 = "07c4v97zl1daabmri9zlbzs6yvkl56z1q14bw74d53jdj0c17nhx";
type = "gem"; type = "gem";
}; };
version = "4.1.0"; version = "4.2.0";
}; };
netrc = { netrc = {
source = { source = {
@ -254,10 +254,10 @@
rb-fsevent = { rb-fsevent = {
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1fbpmjypwxkb8r7y1kmhmyp6gawa4byw0yb3jc3dn9ly4ld9lizf"; sha256 = "1lm1k7wpz69jx7jrc92w3ggczkjyjbfziq5mg62vjnxmzs383xx8";
type = "gem"; type = "gem";
}; };
version = "0.10.2"; version = "0.10.3";
}; };
rb-inotify = { rb-inotify = {
dependencies = ["ffi"]; dependencies = ["ffi"];
@ -391,10 +391,10 @@
unf_ext = { unf_ext = {
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "14hr2dzqh33kqc0xchs8l05pf3kjcayvad4z1ip5rdjxrkfk8glb"; sha256 = "06p1i6qhy34bpb8q8ms88y6f2kz86azwm098yvcc0nyqk9y729j1";
type = "gem"; type = "gem";
}; };
version = "0.0.7.4"; version = "0.0.7.5";
}; };
vagrant = { vagrant = {
dependencies = ["childprocess" "erubis" "hashicorp-checkpoint" "i18n" "listen" "log4r" "net-scp" "net-sftp" "net-ssh" "rb-kqueue" "rest-client" "ruby_dep" "wdm" "winrm" "winrm-elevated" "winrm-fs"]; dependencies = ["childprocess" "erubis" "hashicorp-checkpoint" "i18n" "listen" "log4r" "net-scp" "net-sftp" "net-ssh" "rb-kqueue" "rest-client" "ruby_dep" "wdm" "winrm" "winrm-elevated" "winrm-fs"];
@ -404,7 +404,7 @@
source = { source = {
fetchSubmodules = false; fetchSubmodules = false;
rev = "7ac8b4191de578e345b29acaf62ecc72c8e73be1"; rev = "7ac8b4191de578e345b29acaf62ecc72c8e73be1";
sha256 = "03bpxlliyiny062p8a8vxyb1hymxpgfwliky4vlqn7lbm6z7n6kr"; sha256 = "0qybgxdnndx7xfmhyjcj46b2mv78d98yk30d68ppmfnmm3jx590h";
type = "git"; type = "git";
url = "https://github.com/mitchellh/vagrant-spec.git"; url = "https://github.com/mitchellh/vagrant-spec.git";
}; };
@ -449,9 +449,9 @@
dependencies = ["erubis" "logging" "rubyzip" "winrm"]; dependencies = ["erubis" "logging" "rubyzip" "winrm"];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0vax34qbr3n6jifxyzr4nngaz8vrmzw6ydw21cnnrhidfkqgh7ja"; sha256 = "1i3w2j2rmhjqj8lynca2m1dm1m5fv1x35xwhk3vyr15dn260z56g";
type = "gem"; type = "gem";
}; };
version = "1.1.1"; version = "1.2.0";
}; };
} }