411a888ee6
* 0005-do-not-depend-on-wdm.patch * 0010-Remove-dependency-on-grpc-tools.patch * 0011-Remove-vagrant-ssl-extension.patch * 0012-Bump-rgl-dependency-to-0.6.6.patch * 0013-Bump-webrick-dependency-to-1.8.0.patch * 0014-Bump-vagrant_cloud_dependency.patch * childprocess-5.0.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization:vagrant/vagrant?expand=0&rev=92
20 lines
508 B
Ruby
20 lines
508 B
Ruby
#!/usr/bin/ruby.%{rb_ruby_suffix}
|
|
|
|
begin
|
|
$LOAD_PATH.unshift "%{vagrant_dir}/lib"
|
|
begin
|
|
require "vagrant/plugin/manager"
|
|
rescue LoadError => e
|
|
raise
|
|
end
|
|
|
|
$stdin.each_line do |gemspec_file|
|
|
next if gemspec_file =~ /\/%{name}-%{version}.gemspec$/
|
|
|
|
spec = Gem::Specification.load(gemspec_file.strip)
|
|
Vagrant::Plugin::StateFile.new(Pathname.new(File.expand_path "%{vagrant_plugin_conf}")).remove_plugin spec.name
|
|
end
|
|
rescue => e
|
|
puts "Vagrant plugin un-register error: #{e}"
|
|
end
|