Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Mar 2016 19:11:52 +0000 (UTC)
From:      Mark Felder <feld@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r411514 - in head/sysutils/vagrant: . files
Message-ID:  <201603201911.u2KJBqVx037703@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: feld
Date: Sun Mar 20 19:11:52 2016
New Revision: 411514
URL: https://svnweb.freebsd.org/changeset/ports/411514

Log:
  sysutils/vagrant: fix plugin subcommand
  
  PR:		207184

Added:
  head/sysutils/vagrant/files/patch-lib_vagrant_bundler   (contents, props changed)
Modified:
  head/sysutils/vagrant/Makefile

Modified: head/sysutils/vagrant/Makefile
==============================================================================
--- head/sysutils/vagrant/Makefile	Sun Mar 20 18:43:43 2016	(r411513)
+++ head/sysutils/vagrant/Makefile	Sun Mar 20 19:11:52 2016	(r411514)
@@ -4,7 +4,7 @@
 PORTNAME=	vagrant
 PORTVERSION=	1.8.1
 DISTVERSIONPREFIX=	v
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	sysutils rubygems devel
 
 MAINTAINER=	joe@thrallingpenguin.com

Added: head/sysutils/vagrant/files/patch-lib_vagrant_bundler
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/vagrant/files/patch-lib_vagrant_bundler	Sun Mar 20 19:11:52 2016	(r411514)
@@ -0,0 +1,11 @@
+--- lib/vagrant/bundler.rb.orig
++++ lib/vagrant/bundler.rb
+@@ -265,7 +265,7 @@ module Vagrant
+ 
+       # Reset the all specs override that Bundler does
+       old_all = Gem::Specification._all
+-      Gem::Specification.all = nil
++      begin Gem::Specification.all = nil; rescue; end
+ 
+       # /etc/gemrc and so on.
+       old_config = nil



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603201911.u2KJBqVx037703>