94e6c85
%global bashcompletion_dir %(pkg-config --variable=completionsdir bash-completion 2> /dev/null || :)
da831a8
c4d6537
%global vagrant_spec_commit 7ac8b4191de578e345b29acaf62ecc72c8e73be1
4bc2b64
94e6c85
Name: vagrant
c4d6537
Version: 2.0.1
b2e9d7d
Release: 2%{?dist}
da831a8
Summary: Build and distribute virtualized development environments
da831a8
Group: Development/Languages
da831a8
License: MIT
da831a8
URL: http://vagrantup.com
94e6c85
Source0: https://github.com/mitchellh/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
da831a8
# Upstream binstub with adjusted paths, the offical way how to run vagrant
da831a8
Source1: binstub
4bc2b64
# The library has no official release yet. But since it is just test
4bc2b64
# dependency, it should be fine to include the source right here.
c4d6537
# wget https://github.com/mitchellh/vagrant-spec/archive/7ac8b4191de578e345b29acaf62ecc72c8e73be1/vagrant-spec-7ac8b4191de578e345b29acaf62ecc72c8e73be1.tar.gz
4bc2b64
Source2: https://github.com/mitchellh/%{name}-spec/archive/%{vagrant_spec_commit}/%{name}-spec-%{vagrant_spec_commit}.tar.gz
c11853f
# Monkey-patching needed for Vagrant to work until the respective patches
c11853f
# for RubyGems and Bundler are in place
e30c952
Source4: macros.vagrant
126c957
a0e92dc
# The load directive is supported since RPM 4.12, i.e. F21+. The build process
a0e92dc
# fails on older Fedoras.
a0e92dc
%{?load:%{SOURCE4}}
a0e92dc
c4d6537
Patch0: vagrant-2.0.1-fix-dependencies.patch
363de6e
da831a8
Requires: ruby(release)
da831a8
Requires: ruby(rubygems) >= 1.3.6
7dc35cc
# Explicitly specify MRI, since Vagrant does not work with JRuby ATM.
94e6c85
Requires: ruby
da831a8
Requires: rubygem(hashicorp-checkpoint) >= 0.1.1
da831a8
Requires: rubygem(childprocess) >= 0.5.0
da831a8
Requires: rubygem(erubis) >= 2.7.0
da831a8
Requires: rubygem(i18n) >= 0.6.0
854f8b4
Requires: rubygem(json)
b899893
Requires: rubygem(listen) >= 3.1.5
Josef Stribny 107fa56
Requires: rubygem(log4r) >= 1.1.9
5953c4a
Requires: rubygem(net-ssh) >= 4.1.0
5953c4a
Requires: rubygem(net-scp) >= 1.2.0
Josef Stribny 107fa56
Requires: rubygem(net-sftp) >= 2.1
5953c4a
Requires: rubygem(rest-client) >= 1.6.0
94e6c85
Requires: bsdtar
ff40c83
Requires: curl
da831a8
b899893
Recommends: vagrant(vagrant-libvirt)
241e0dc
e9f28ac
Requires(pre): shadow-utils
da831a8
0c8a413
BuildRequires: bsdtar
9889749
BuildRequires: ruby
b06fc4b
BuildRequires: rubygem(listen)
b06fc4b
BuildRequires: rubygem(childprocess)
b06fc4b
BuildRequires: rubygem(hashicorp-checkpoint)
b06fc4b
BuildRequires: rubygem(log4r)
b06fc4b
BuildRequires: rubygem(net-ssh)
b06fc4b
BuildRequires: rubygem(net-scp)
b06fc4b
BuildRequires: rubygem(i18n)
4b0b66a
BuildRequires: rubygem(json)
b06fc4b
BuildRequires: rubygem(erubis)
42da19c
BuildRequires: rubygem(rspec)
42da19c
BuildRequires: rubygem(rspec-its)
7ed4ada
BuildRequires: rubygem(net-sftp)
7ed4ada
BuildRequires: rubygem(rest-client)
386d4c8
BuildRequires: rubygem(thor)
7ed4ada
BuildRequires: rubygem(webmock)
7ca98ed
BuildRequires: rubygem(fake_ftp)
94e6c85
BuildRequires: pkgconfig(bash-completion)
c4d6537
BuildRequires: %{_bindir}/ssh
da831a8
BuildArch: noarch
da831a8
6302476
# vagrant-atomic was retired in F26, since it was merged into Vagrant.
6302476
# https://github.com/projectatomic/vagrant-atomic/issues/5
6302476
# https://github.com/mitchellh/vagrant/pull/5847
6302476
Obsoletes: vagrant-atomic <= 0.1.0-4
6302476
854f8b4
# Since Vagrant itself is installed on the same place as its plugins
854f8b4
# the vagrant_plugin macros can be reused in the spec file, but the plugin
854f8b4
# name must be specified.
854f8b4
%global vagrant_plugin_name vagrant
854f8b4
da831a8
%description
da831a8
Vagrant is a tool for building and distributing virtualized development
da831a8
environments.
da831a8
da831a8
%package doc
da831a8
Summary: Documentation for %{name}
da831a8
Group: Documentation
da831a8
Requires: %{name} = %{version}-%{release}
da831a8
BuildArch: noarch
da831a8
da831a8
%description doc
da831a8
Documentation for %{name}.
da831a8
da831a8
%prep
854f8b4
%setup -q -b2
cc85749
94e6c85
%patch0 -p1
d7722fe
da831a8
%build
854f8b4
gem build %{name}.gemspec
da831a8
b2e9d7d
gem install -V --local \
b2e9d7d
  --no-user-install \
b2e9d7d
  --install-dir .%{vagrant_plugin_dir} \
b2e9d7d
  --bindir .%{vagrant_plugin_dir}/bin \
854f8b4
  --ignore-dependencies --force --no-document --backtrace \
854f8b4
  %{name}-%{version}.gem
da831a8
cc85749
854f8b4
%install
854f8b4
mkdir -p %{buildroot}%{vagrant_plugin_dir}
854f8b4
cp -pa .%{vagrant_plugin_dir}/* \
854f8b4
        %{buildroot}%{vagrant_plugin_dir}/
854f8b4
854f8b4
find %{buildroot}%{vagrant_plugin_dir}/bin -type f | xargs chmod a+x
da831a8
94e6c85
# Provide executable similar to upstream:
94e6c85
# https://github.com/mitchellh/vagrant-installers/blob/master/substrate/modules/vagrant_installer/templates/vagrant.erb
94e6c85
install -D -m 755 %{SOURCE1} %{buildroot}%{_bindir}/vagrant
854f8b4
sed -i 's|@vagrant_embedded_dir@|%{vagrant_embedded_dir}|' %{buildroot}%{_bindir}/vagrant
da831a8
da831a8
# auto-completion
854f8b4
install -D -m 0644 %{buildroot}%{vagrant_plugin_instdir}/contrib/bash/completion.sh \
94e6c85
  %{buildroot}%{bashcompletion_dir}/%{name}
9889749
sed -i '/#!\// d' %{buildroot}%{bashcompletion_dir}/%{name}
da831a8
da831a8
126c957
# Install Vagrant macros
126c957
mkdir -p %{buildroot}%{_rpmconfigdir}/macros.d/
126c957
cp %{SOURCE4} %{buildroot}%{_rpmconfigdir}/macros.d/
854f8b4
# Expand some basic macros.
854f8b4
sed -i "s/%%{name}/%{name}/" \
854f8b4
  %{buildroot}%{_rpmconfigdir}/macros.d/macros.%{name}
854f8b4
sed -i "/vagrant_embedded_dir/ s/%%{name}/%{name}/" \
854f8b4
  %{buildroot}%{_rpmconfigdir}/macros.d/macros.%{name}
854f8b4
sed -i "/vagrant_embedded_dir/ s/%%{version}/%{version}/" \
854f8b4
  %{buildroot}%{_rpmconfigdir}/macros.d/macros.%{name}
854f8b4
854f8b4
# Create configuration directory.
854f8b4
install -d -m 755 %{buildroot}%{vagrant_plugin_conf_dir}
854f8b4
# Make sure the plugins.json exists and provide the link to
854f8b4
# VAGRANT_INSTALLER_EMBEDDED_DIR so Vagrant can locate the file.
854f8b4
touch %{buildroot}%{vagrant_plugin_conf}
854f8b4
ln -s -t %{buildroot}%{vagrant_embedded_dir}/ %{vagrant_plugin_conf}
854f8b4
854f8b4
# !!! Backward compatibility hack, introduced in F26 timeframe !!!
854f8b4
# It allows to (un)register old Vagrant plugins via newer Vagrant.
854f8b4
# This should be possible to remove at F29, when there is chance everybody is
854f8b4
# using more recent versions of Vagrant.
854f8b4
install -d -m 755 %{buildroot}%{vagrant_embedded_dir}/lib/vagrant/plugin
854f8b4
cat > %{buildroot}%{vagrant_embedded_dir}/lib/vagrant/plugin/manager.rb << 'EOF'
854f8b4
$LOAD_PATH.shift
854f8b4
$LOAD_PATH.unshift '%{vagrant_dir}/lib'
854f8b4
require 'vagrant/plugin/manager'
854f8b4
EOF
9889749
c11853f
0c8a413
%check
854f8b4
# Adjust the vagrant-spec directory name.
cce3ed1
rm -rf ../vagrant-spec
4bc2b64
mv ../vagrant-spec{-%{vagrant_spec_commit},}
0c8a413
0c8a413
# Remove the git reference, which is useless in our case.
0c8a413
sed -i '/git/ s/^/#/' ../vagrant-spec/vagrant-spec.gemspec
0c8a413
c4d6537
# Relax the dependencies, since Fedora ships with newer versions.
9e86321
sed -i '/thor/ s/~>/>=/' ../vagrant-spec/vagrant-spec.gemspec
c4d6537
sed -i '/rspec/ s/~>/>=/' ./vagrant.gemspec
c4d6537
sed -i '/rspec/ s/~>/>=/' ../vagrant-spec/vagrant-spec.gemspec
c4d6537
# TODO: package newer childproccess
c4d6537
sed -i '/childprocess/ s/~>/<=/' ../vagrant-spec/vagrant-spec.gemspec
9e86321
7ed4ada
#Insert new test dependencies
7ed4ada
sed -i '25 i\  spec.add_dependency "webmock"' ../vagrant-spec/vagrant-spec.gemspec
7ed4ada
sed -i '26 i\  spec.add_dependency "fake_ftp"' ../vagrant-spec/vagrant-spec.gemspec
7ed4ada
0c8a413
# TODO: winrm is not in Fedora yet.
0c8a413
rm -rf test/unit/plugins/communicators/winrm
0c8a413
sed -i '/it "eager loads WinRM" do/,/^      end$/ s/^/#/' test/unit/vagrant/machine_test.rb
0c8a413
sed -i '/it "should return the specified communicator if given" do/,/^    end$/ s/^/#/' test/unit/vagrant/machine_test.rb
c4d6537
sed -i '/^    context "with winrm communicator" do$/,/^    end$/ s/^/#/' \
c4d6537
  test/unit/plugins/provisioners/ansible/provisioner_test.rb
c4d6537
c4d6537
# Disable test that requires bundler
c4d6537
# https://github.com/hashicorp/vagrant/issues/9273
c4d6537
mv test/unit/vagrant/util/env_test.rb{,.disable}
0c8a413
f9ac29b
# Rake solves the requires issues for tests
f9ac29b
rake -f tasks/test.rake test:unit
c4d6537
da831a8
da831a8
%pre
da831a8
getent group vagrant >/dev/null || groupadd -r vagrant
854f8b4
854f8b4
%post -p %{_bindir}/ruby
854f8b4
begin
854f8b4
  $LOAD_PATH.unshift "%{vagrant_dir}/lib"
854f8b4
  begin
854f8b4
    require "vagrant/plugin/manager"
854f8b4
  rescue LoadError => e
854f8b4
    raise
854f8b4
  end;
854f8b4
33dd917
  unless File.exist?("%{vagrant_plugin_conf_link}")
854f8b4
    Vagrant::Plugin::StateFile.new(Pathname.new(File.expand_path "%{vagrant_plugin_conf}")).save!
33dd917
    File.symlink "%{vagrant_plugin_conf}", "%{vagrant_plugin_conf_link}"
854f8b4
  end
854f8b4
rescue => e
854f8b4
  puts "Vagrant plugin.json is not properly initialized: #{e}"
854f8b4
end
541f62c
99a2bac
%transfiletriggerin -p %{_bindir}/ruby -- %{dirname:%{vagrant_plugin_spec}}/
541f62c
begin
541f62c
  $LOAD_PATH.unshift "%{vagrant_dir}/lib"
541f62c
  begin
541f62c
    require "vagrant/plugin/manager"
541f62c
  rescue LoadError => e
541f62c
    raise
541f62c
  end
541f62c
541f62c
  $stdin.each_line do |gemspec_file|
541f62c
    next if gemspec_file =~ /\/%{name}-%{version}.gemspec$/
541f62c
541f62c
    spec = Gem::Specification.load(gemspec_file.strip)
33dd917
    Vagrant::Plugin::StateFile.new(Pathname.new(File.expand_path "%{vagrant_plugin_conf_link}")).add_plugin spec.name
541f62c
  end
541f62c
rescue => e
541f62c
  puts "Vagrant plugin register error: #{e}"
541f62c
end
541f62c
99a2bac
%transfiletriggerun -p %{_bindir}/ruby -- %{dirname:%{vagrant_plugin_spec}}/
541f62c
begin
541f62c
  $LOAD_PATH.unshift "%{vagrant_dir}/lib"
541f62c
  begin
541f62c
    require "vagrant/plugin/manager"
541f62c
  rescue LoadError => e
541f62c
    raise
541f62c
  end
541f62c
541f62c
  $stdin.each_line do |gemspec_file|
541f62c
    next if gemspec_file =~ /\/%{name}-%{version}.gemspec$/
541f62c
541f62c
    spec = Gem::Specification.load(gemspec_file.strip)
33dd917
    Vagrant::Plugin::StateFile.new(Pathname.new(File.expand_path "%{vagrant_plugin_conf_link}")).remove_plugin spec.name
541f62c
  end
541f62c
rescue => e
541f62c
  puts "Vagrant plugin un-register error: #{e}"
541f62c
end
da831a8
 
da831a8
%files
854f8b4
# Explicitly include Vagrant plugins directory strucure to avoid accidentally
854f8b4
# packaged content.
854f8b4
%dir %{vagrant_embedded_dir}
854f8b4
%dir %{vagrant_plugin_dir}
854f8b4
%dir %{vagrant_plugin_dir}/bin
854f8b4
%dir %{vagrant_plugin_dir}/build_info
854f8b4
%dir %{dirname:%{vagrant_plugin_cache}}
854f8b4
%dir %{dirname:%{vagrant_plugin_docdir}}
854f8b4
%dir %{vagrant_plugin_dir}/extensions
854f8b4
%dir %{dirname:%{vagrant_plugin_instdir}}
854f8b4
%dir %{dirname:%{vagrant_plugin_spec}}
854f8b4
854f8b4
# Kept for backward compatibility.
854f8b4
%{vagrant_embedded_dir}/lib
854f8b4
94e6c85
%{_bindir}/%{name}
854f8b4
%dir %{vagrant_plugin_instdir}
854f8b4
%license %{vagrant_plugin_instdir}/LICENSE
854f8b4
%doc %{vagrant_plugin_instdir}/README.md
854f8b4
%{vagrant_plugin_dir}/bin/vagrant
854f8b4
%exclude %{vagrant_plugin_instdir}/.*
854f8b4
%exclude %{vagrant_plugin_instdir}/Vagrantfile
854f8b4
%{vagrant_plugin_instdir}/bin
420d9e2
# TODO: Make more use of contribs.
854f8b4
%{vagrant_plugin_instdir}/contrib
854f8b4
%exclude %{vagrant_plugin_instdir}/contrib/bash
854f8b4
# This is not the original .gemspec.
854f8b4
%exclude %{vagrant_plugin_instdir}/vagrant.gemspec
854f8b4
%{vagrant_plugin_instdir}/keys
854f8b4
%{vagrant_plugin_instdir}/lib
854f8b4
%{vagrant_plugin_instdir}/plugins
854f8b4
%exclude %{vagrant_plugin_instdir}/scripts
854f8b4
%{vagrant_plugin_instdir}/templates
854f8b4
%{vagrant_plugin_instdir}/version.txt
854f8b4
%exclude %{vagrant_plugin_cache}
854f8b4
%{vagrant_plugin_spec}
33dd917
%dir %{vagrant_plugin_conf_dir}
33dd917
%ghost %{vagrant_plugin_conf_link}
33dd917
%ghost %{vagrant_plugin_conf}
9889749
# TODO: This is suboptimal and may break, but can't see much better way ...
9889749
%dir %{dirname:%{bashcompletion_dir}}
9889749
%dir %{bashcompletion_dir}
94e6c85
%{bashcompletion_dir}/%{name}
e30c952
%{_rpmconfigdir}/macros.d/macros.%{name}
da831a8
da831a8
%files doc
854f8b4
%doc %{vagrant_plugin_instdir}/RELEASE.md
854f8b4
%doc %{vagrant_plugin_instdir}/CHANGELOG.md
854f8b4
%{vagrant_plugin_instdir}/Gemfile
854f8b4
%{vagrant_plugin_instdir}/Rakefile
854f8b4
%{vagrant_plugin_instdir}/tasks
854f8b4
%{vagrant_plugin_instdir}/test
854f8b4
%{vagrant_plugin_instdir}/vagrant-spec.config.example.rb
420d9e2
da831a8
da831a8
%changelog
b2e9d7d
* Mon Jan 08 2018 Vít Ondruch <vondruch@redhat.com> - 2.0.1-2
b2e9d7d
- Fix Ruby 2.5 compatibilty.
b2e9d7d
c4d6537
* Mon Dec 18 2017 Pavel Valena <pvalena@redhat.com> - 2.0.1-1
c4d6537
- Update to Vagrant 2.0.1.
c4d6537
99a2bac
* Tue Dec 12 2017 Vít Ondruch <vondruch@redhat.com> - 1.9.8-2
99a2bac
- Fix plugin registration issues caused by changes in RPM (rhbz#1523296).
99a2bac
42da19c
* Thu Aug 24 2017 Pavel Valena <pvalena@redhat.com> - 1.9.8-1
42da19c
- Update to Vagrant 1.9.8 (rhbz#1427505).
42da19c
- Remove Nokogiri dependency.
dfbe70f
- Use VAGRANT_PREFERRED_PROVIDERS in binstub instead of VAGRANT_DEFAULT_PROVIDER.
5953c4a
- Use only bottom contstraint for Requires.
42da19c
bf688f2
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org>
bf688f2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
bf688f2
6302476
* Tue Feb 28 2017 Vít Ondruch <vondruch@redhat.com> - 1.9.1-2
6302476
- Obsolete vagrant-atomic, since it is now merged in Vagrant.
6302476
854f8b4
* Mon Feb 13 2017 Vít Ondruch <vondruch@redhat.com> - 1.9.1-1
854f8b4
- Update to Vagrant 1.9.1.
541f62c
- Provide filetriggers to replace plugin (un)register macros.
8f35236
- Relax rubygem-net-ssh dependency.
854f8b4
f9a3b3f
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.7-2
f9a3b3f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
f9a3b3f
ecf09d8
* Tue Nov 15 2016 Vít Ondruch <vondruch@redhat.com> - 1.8.7-1
ecf09d8
- Update to Vagrant 1.8.7.
ecf09d8
e37ffb0
* Mon Oct 10 2016 Vít Ondruch <vondruch@redhat.com> - 1.8.6-1
e37ffb0
- Update to Vagrant 1.8.6.
e37ffb0
b899893
* Fri Jul 29 2016 Vít Ondruch <vondruch@redhat.com> - 1.8.5-1
b899893
- Update to Vagrant 1.8.5.
b899893
d7722fe
* Mon Jul 18 2016 Jun Aruga <jaruga@redhat.com> - 1.8.1-3
d7722fe
- Support rest-client 2.x (rhbz#1356650).
d7722fe
4b0b66a
* Mon May 02 2016 Vít Ondruch <vondruch@redhat.com> - 1.8.1-2
4b0b66a
- Fix plugin installation error (rhbz#1330208).
4b0b66a
eef02fc
* Tue Feb 09 2016 Tomas Hrcka <thrcka@redhat.com> - 1.8.1-1
ee61f86
- New upstream release
ee61f86
- Disable tests using winrm
ee61f86
515654e
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.4-6
515654e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
515654e
33745c5
* Mon Feb 01 2016 Vít Ondruch <vondruch@redhat.com> - 1.7.4-5
33745c5
- Use another way how to make the documentation to generate.
33745c5
9c79a2b
* Mon Feb 01 2016 Vít Ondruch <vondruch@redhat.com> - 1.7.4-4
9c79a2b
- Update the macros to keep them in sync with rubygems package.
9c79a2b
Josef Stribny 63cd41b
* Wed Oct 14 2015 Josef Stribny <jstribny@redhat.com> - 1.7.4-3
Josef Stribny 63cd41b
- Fix: Don't use biosdevname if missing in Fedora guest
Josef Stribny 63cd41b
386d4c8
* Tue Oct 13 2015 Vít Ondruch <vondruch@redhat.com> - 1.7.4-2
386d4c8
- Fix Bundler 1.10.6 compatibility.
241e0dc
- Recommends vagrant-libvirt installation by default.
386d4c8
Josef Stribny 107fa56
* Thu Aug 20 2015 Josef Stribny <jstribny@redhat.com> - 1.7.4-1
Josef Stribny 107fa56
- Update to 1.7.4
Josef Stribny 107fa56
- Patch: install plugins in isolation
Josef Stribny 107fa56
6c7285a
* Fri Jul 10 2015 Dan Williams <dcbw@redhat.com> - 1.7.2-9
6c7285a
- Allow matching interfaces on MAC address
6c7285a
Josef Stribny b9fa7a0
* Tue Jun 30 2015 Josef Stribny <jstribny@redhat.com> - 1.7.2-8
Josef Stribny b9fa7a0
- Fix NFS on Fedora
Josef Stribny b9fa7a0
Josef Stribny e9e992d
* Tue Jun 16 2015 Josef Stribny <jstribny@redhat.com> - 1.7.2-7
Josef Stribny e9e992d
- Fix: Remove docker0 from guest network interface enumeration
Josef Stribny e9e992d
Josef Stribny 56e7016
* Thu May 21 2015 Josef Stribny <jstribny@redhat.com> - 1.7.2-6
Josef Stribny 56e7016
- Fix: Support new Fedora releases
Josef Stribny 56e7016
- Fix: Don't try to use biosdevname if it's not installed
Josef Stribny 56e7016
Josef Stribny 72a2b9d
* Wed May 06 2015 Josef Stribny <jstribny@redhat.com> - 1.7.2-5
Josef Stribny 72a2b9d
- Export GEM_HOME based on VAGRANT_HOME
Josef Stribny 72a2b9d
Josef Stribny acfd0c3
* Tue May 05 2015 Josef Stribny <jstribny@redhat.com> - 1.7.2-4
Josef Stribny acfd0c3
- Include $USER path in binstub
Josef Stribny acfd0c3
2b3ea01
* Fri Feb 20 2015 Vít Ondruch <vondruch@redhat.com> - 1.7.2-3
2b3ea01
- Fix Puppet provisioning error available in 1.7.2 re-release.
2b3ea01
f0f8a70
* Fri Feb 20 2015 Michael Adam <madam@redhat.com> - 1.7.2-2
Michael Adam eec1243
- Add missing dependencies.
f0f8a70
7ed4ada
* Thu Feb 12 2015 Tomas Hrcka <thrcka@redhat.com> - 1.7.2-1
7ed4ada
- Update to latest upstream version 1.7.2
7ed4ada
- Backport dependencies fix patch
7ed4ada
- Remove permissions fix on mkdir.rb
7ed4ada
96d7878
* Mon Jan 26 2015 Vít Ondruch <vondruch@redhat.com> - 1.6.5-18
96d7878
- Prepare and own plugin directory structure.
96d7878
cce3ed1
* Thu Jan 22 2015 Michael Adam <madam@redhat.com> - 1.6.5-17
b899893
- Fix %%check in an unclean build environment.
b2e913a
- Fix typo.
cce3ed1
9889749
* Tue Jan 20 2015 Vít Ondruch <vondruch@redhat.com> - 1.6.5-16
9889749
- Minor review fixes.
9889749
9e86321
* Tue Dec 23 2014 Vít Ondruch <vondruch@redhat.com> - 1.6.5-15
9e86321
- Relax thor dependency to keep up with Fedora.
9e86321
e30c952
* Wed Nov 26 2014 Vít Ondruch <vondruch@redhat.com> - 1.6.5-14
e30c952
- Drop -devel sub-package.
e30c952
126c957
* Tue Nov 25 2014 Josef Stribny <jstribny@redhat.com> - 1.6.5-13
126c957
- Create -devel sub-package
126c957
c11853f
* Mon Nov 24 2014 Josef Stribny <jstribny@redhat.com> - 1.6.5-12
c11853f
- Include monkey-patching for RubyGems and Bundler for now
c11853f
94e6c85
* Wed Oct 22 2014 Vít Ondruch <vondruch@redhat.com> - 1.6.5-11
94e6c85
- Make vagrant non-rubygem package.
94e6c85
da831a8
* Tue Oct 14 2014 Josef Stribny <jstribny@redhat.com> - 1.6.5-10
da831a8
- rebuilt
da831a8
da831a8
* Tue Oct 07 2014 Josef Stribny <jstribny@redhat.com> - 1.6.5-9
da831a8
- Register vagrant-libvirt automatically
da831a8
da831a8
* Tue Sep 30 2014 Josef Stribny <jstribny@redhat.com> - 1.6.5-8
da831a8
- Set libvirt as a default provider
da831a8
da831a8
* Tue Sep 23 2014 Josef Stribny <jstribny@redhat.com> - 1.6.5-7
da831a8
- Require core dependencies for vagrant-libvirt beforehand
da831a8
da831a8
* Mon Sep 22 2014 Josef Stribny <jstribny@redhat.com> - 1.6.5-6
da831a8
- Fix SSL cert path for the downloader
da831a8
da831a8
* Tue Sep 16 2014 Josef Stribny <jstribny@redhat.com> - 1.6.5-5
da831a8
- rebuilt
da831a8
da831a8
* Tue Sep 16 2014 Josef Stribny <jstribny@redhat.com> - 1.6.5-4
da831a8
- rebuilt
da831a8
da831a8
* Sat Sep 13 2014 Josef Stribny <jstribny@redhat.com> - 1.6.5-3
da831a8
- Include libvirt requires for now
da831a8
da831a8
* Wed Sep 10 2014 Josef Stribny <jstribny@redhat.com> - 1.6.5-2
da831a8
- Add missing deps on Bundler and hashicorp-checkpoint
da831a8
da831a8
* Mon Sep 08 2014 Josef Stribny <jstribny@redhat.com> - 1.6.5-1
da831a8
* Update to 1.6.5
da831a8
da831a8
* Mon Sep 08 2014 Josef Stribny <jstribny@redhat.com> - 1.6.3-2
da831a8
- Clean up
da831a8
- Update to 1.6.3
da831a8
da831a8
* Fri Oct 18 2013  <adrahon@redhat.com> - 1.3.3-1.1
da831a8
- Misc bug fixes, no separate package for docs, /etc/vagrant management
da831a8
da831a8
* Tue Sep 24 2013  <adrahon@redhat.com> - 1.3.3-1
da831a8
- Initial package