forked from pool/vagrant
392bbf86e1
- Update to 2.3.7 * https://github.com/hashicorp/vagrant/blob/v2.3.7/CHANGELOG.md#237-june-15-2023 IMPROVEMENTS: - command/ssh: Enable deprecated key types and algorithms [GH-13179] - core: Update user error message on failed extension installs [GH-13207] - core: Support loading legacy providers in OpenSSL 3 [GH-13178] - provisioner/salt: Verify bootstrap-salt download [GH-13166] BUG FIXES: - communicator/ssh: Remove keyboard-interactive auth method [GH-13194] - provisioner/salt: Fix usage on Windows guests [GH-13086] VAGRANT-GO: - Update data layer implementation [GH-12904] - Update dependencies [GH-13201] - add 0011-remove-ssl-extension.patch to remove the vagrant ssl extension OBS-URL: https://build.opensuse.org/request/show/1093683 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/vagrant?expand=0&rev=52 |
||
---|---|---|
.gitattributes | ||
.gitignore | ||
0001-bin-vagrant-silence-warning-about-installer.patch | ||
0002-Use-a-private-temporary-dir.patch | ||
0003-plugins-don-t-abuse-require_relative.patch.patch | ||
0004-fix-vbox-package-boo-1044087-added-by-robert.muntean.patch | ||
0005-do-not-depend-on-wdm.patch | ||
0006-do-not-abuse-relative-paths-in-docker-plugin-to-make.patch | ||
0007-Don-t-abuse-relative-paths-in-plugins.patch | ||
0008-Skip-failing-tests.patch | ||
0009-Disable-Subprocess-unit-test.patch | ||
0010-Remove-dependency-on-grpc-tools.patch | ||
0011-remove-ssl-extension.patch | ||
binstub | ||
macros.vagrant | ||
README.SUSE | ||
vagrant_post.rb | ||
vagrant_transfiletriggerin.rb | ||
vagrant_transfiletriggerun.rb | ||
vagrant-2.3.7.tar.gz | ||
vagrant.1 | ||
vagrant.changes | ||
vagrant.spec |
Packaging Vagrant plugins ------------------------- This convention is based on the Fedora vagrant package. Vagrant plugins are ordinary rubygems, but they should not be packaged as these. First off all, we don't need to build the plugin with a ruby version other then the ruby version with which vagrant was built. Furthermore, vagrant will _only_ recognize gems inside its own directory structure as plugins and not arbitrary rubygems. Note that we *must* explicitly specify the macros `rb_build_versions` and `rb_build_abi` (and cannot use macros here!). Usually we can simply use the default ruby here, but in case vagrant is incompatible with the default ruby, we must override this in each plugin. An example specfile for a vagrant plugin looks like this: ``` spec %global rb_build_versions ruby26 %global rb_build_abi ruby:2.6.0 %global rb_ruby_suffix ruby2.6 Name: vagrant-MYPLUGIN Version: $VERSION Release: 0 %define mod_name %{name} %define mod_full_name %{mod_name}-%{version} BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: %{rubygem gem2rpm} BuildRequires: %{ruby} BuildRequires: ruby-macros >= 5 BuildRequires: vagrant BuildArch: noarch Url: $URL Source: $SRC Source1: gem2rpm.yml Summary: $SUMMARY License: $LICENSE %description $DESCRIPTION %global vagrant_plugin_name %{name} %prep %gem_unpack %build %gem_build %install %vagrant_plugin_install %files %{vagrant_plugin_instdir} %{vagrant_plugin_cache} %{vagrant_plugin_spec} %changelog ```