c2522473e2
- Include upstream patch to fix whitespace problems in PO files. - Remove virt-p2v from build by synchronizing the spec file so it almost matches the one in RHEL 6.2. Note that virt-p2v is built in a separate SRPM called rubygem-virt-p2v.
232 lines
6.9 KiB
RPMSpec
232 lines
6.9 KiB
RPMSpec
Name: virt-v2v
|
|
Version: 0.8.3
|
|
Release: 1%{?dist}
|
|
Summary: Convert a virtual machine to run on KVM
|
|
|
|
Group: Applications/System
|
|
License: GPLv2+ and LGPLv2+
|
|
URL: http://git.fedorahosted.org/git/virt-v2v.git
|
|
Source0: https://fedorahosted.org/releases/v/i/virt-v2v/%{name}-v%{version}.tar.gz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
# Backported upstream patches
|
|
# Naming scheme: <name>-<version>-<local sequence number>-<git commit>.patch
|
|
# name: virt-v2v
|
|
# version: the version of virt-v2v the patch was originally rebased to
|
|
# local seq no: the order the patches should be applied in
|
|
# git commit: the first 8 characters of the git commit hash
|
|
|
|
Patch1: virt-v2v-0.8.3-01-bd513aaf.patch
|
|
|
|
# Unfortunately, despite really being noarch, we have to make virt-v2v arch
|
|
# dependent to avoid build failures on architectures where libguestfs isn't
|
|
# available.
|
|
ExclusiveArch: %{ix86} x86_64
|
|
|
|
# Build system direct requirements
|
|
BuildRequires: gettext
|
|
BuildRequires: perl
|
|
BuildRequires: perl(Module::Build)
|
|
BuildRequires: perl(ExtUtils::Manifest)
|
|
BuildRequires: perl(Test::More)
|
|
BuildRequires: perl(Test::Pod)
|
|
BuildRequires: perl(Test::Pod::Coverage)
|
|
BuildRequires: perl(Module::Find)
|
|
|
|
# Runtime perl modules also required at build time for use_ok test
|
|
BuildRequires: perl(DateTime)
|
|
BuildRequires: perl(IO::String)
|
|
BuildRequires: perl(Locale::TextDomain)
|
|
BuildRequires: perl(Module::Pluggable)
|
|
BuildRequires: perl(Net::HTTPS)
|
|
BuildRequires: perl(Net::SSL)
|
|
BuildRequires: perl(Sys::Guestfs)
|
|
BuildRequires: perl(Sys::Guestfs::Lib)
|
|
BuildRequires: perl(Sys::Virt)
|
|
BuildRequires: perl(URI)
|
|
BuildRequires: perl(XML::DOM)
|
|
BuildRequires: perl(XML::DOM::XPath)
|
|
BuildRequires: perl(XML::Writer)
|
|
|
|
# This is a bug introduced by f2c5c8fa337f361057353ffa3fe6539cb1a5823c
|
|
# perl(Term::ProgressBar) should not be a build requirement
|
|
BuildRequires: perl(Term::ProgressBar)
|
|
|
|
# Need an explicit package dependency for version requires
|
|
BuildRequires: perl-libguestfs >= 1:1.6.0
|
|
BuildRequires: perl-hivex >= 1.2.2
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
# Need an explicit package dependency for version requires
|
|
Requires: perl-libguestfs >= 1:1.6.0
|
|
Requires: perl-hivex >= 1.2.2
|
|
|
|
# Net::SSL is loaded dynamically by Net::HTTPS in
|
|
# Sys::VirtConvert::Transfer::ESX. The dependency isn't automatically
|
|
# discovered.
|
|
Requires: perl(Net::SSL)
|
|
|
|
# Term::ProgressBar is loaded conditionally. The dependency isn't automatically
|
|
# discovered
|
|
Requires: perl(Term::ProgressBar)
|
|
|
|
# Need >= 0.8.1 for rpc fix talking to RHEL 5 libvirt
|
|
Requires: libvirt >= 0.8.1
|
|
|
|
# For GuestOS transfer image
|
|
Requires: /usr/bin/mkisofs
|
|
|
|
# For guest image inspection
|
|
Requires: /usr/bin/qemu-img
|
|
|
|
# For ssh transfers
|
|
Requires: /usr/bin/ssh
|
|
|
|
# For device_map lens
|
|
Requires: augeas-libs => augeas-libs-0.7.2-4
|
|
|
|
|
|
%description
|
|
virt-v2v is a tool for converting and importing virtual machines to
|
|
libvirt-managed KVM, or Red Hat Enterprise Virtualization. It can import a
|
|
variety of guest operating systems from libvirt-managed hosts and VMware ESX.
|
|
|
|
|
|
%prep
|
|
%setup -q -n %{name}-v%{version}
|
|
|
|
%patch1 -p1
|
|
|
|
%build
|
|
%{__perl} Build.PL
|
|
./Build
|
|
|
|
# perl doesn't need debuginfo
|
|
%define debug_package %{nil}
|
|
|
|
|
|
%install
|
|
rm -rf %{buildroot}
|
|
./Build install \
|
|
--destdir %{buildroot} \
|
|
--installdirs vendor \
|
|
--install_path locale=%{_datadir}/locale \
|
|
--install_path confdoc=%{_mandir}/man5
|
|
|
|
# Create lib directory, used for holding software to be installed in guests
|
|
statedir=%{buildroot}%{_localstatedir}/lib/virt-v2v
|
|
mkdir -p $statedir/software
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}
|
|
cp v2v/virt-v2v.conf %{buildroot}%{_sysconfdir}/
|
|
cp v2v/virt-v2v.db $statedir/
|
|
|
|
%find_lang %{name}
|
|
|
|
# Not clear why this is being created as there is nothing arch-specific in
|
|
# virt-v2v. It isn't packaged, though, so we need to delete it.
|
|
[ -d "%{buildroot}/%{perl_archlib}" ] &&
|
|
find %{buildroot}/%{perl_archlib} -name .packlist -type f | xargs rm
|
|
|
|
|
|
%check
|
|
./Build test
|
|
|
|
|
|
%clean
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
%files -f %{name}.lang
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc TODO.txt
|
|
%doc META.yml
|
|
%doc ChangeLog
|
|
%doc COPYING COPYING.LIB
|
|
|
|
# For noarch packages: vendorlib
|
|
%{perl_vendorlib}/*
|
|
|
|
# Man pages
|
|
%{_mandir}/man1/*.1*
|
|
%{_mandir}/man3/*.3*
|
|
%{_mandir}/man5/*.5*
|
|
|
|
# Executables
|
|
%attr(0755,root,root) %{_bindir}/virt-v2v
|
|
%attr(0755,root,root) %{_bindir}/virt-p2v-server
|
|
|
|
%dir %{_localstatedir}/lib/virt-v2v
|
|
|
|
%config(noreplace) %{_sysconfdir}/virt-v2v.conf
|
|
%config %{_localstatedir}/lib/virt-v2v/virt-v2v.db
|
|
%config(noreplace) %{_localstatedir}/lib/virt-v2v/software
|
|
|
|
|
|
%changelog
|
|
* Mon Aug 22 2011 Richard W.M. Jones <rjones@redhat.com> - 0.8.3-1
|
|
- New upstream release 0.8.3.
|
|
- Include upstream patch to fix whitespace problems in PO files.
|
|
- Remove virt-p2v from build by synchronizing the spec file so it
|
|
almost matches the one in RHEL 6.2. Note that virt-p2v is built in
|
|
a separate SRPM called rubygem-virt-p2v.
|
|
|
|
* Thu Jul 21 2011 Petr Sabata <contyk@redhat.com> - 0.8.1-4
|
|
- Perl mass rebuild
|
|
|
|
* Tue Jul 19 2011 Petr Sabata <contyk@redhat.com> - 0.8.1-3
|
|
- Perl mass rebuild
|
|
|
|
* Tue May 17 2011 Matthew Booth <mbooth@redhat.com> - 0.8.1-2
|
|
- Remove echoe build dependency
|
|
- Fix YAML error during P2V (RHBZ#705113)
|
|
|
|
* Tue Apr 26 2011 Matthew Booth <mbooth@redhat.com> - 0.8.1-1
|
|
- Update to release 0.8.1
|
|
|
|
* Tue Apr 19 2011 Matthew Booth <mbooth@redhat.com> - 0.8.0-1
|
|
- Update to release 0.8.0
|
|
- Include virt-p2v
|
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.0-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
* Thu Nov 4 2010 Matthew Booth <mbooth@redhat.com> - 0.7.0-1
|
|
- Update to release 0.7.0
|
|
|
|
* Thu Jul 1 2010 Matthew Booth <mbooth@redhat.com> - 0.6.1-1
|
|
- Only build virt-v2v on architectures where libguestfs is available
|
|
|
|
* Mon Jun 21 2010 Matthew Booth <mbooth@redhat.com> - 0.6.1-0
|
|
- Update to release 0.6.1
|
|
- Disable building of debuginfo
|
|
|
|
* Mon Feb 22 2010 Matthew Booth <mbooth@redhat.com> - 0.4.0-1
|
|
- Update to release 0.4.0
|
|
- Change dependency on genisofs to mkisofs
|
|
- Update libguestfs dependency to 1.0.84
|
|
- Add perl module dependencies: LWP::UserAgent, Net::HTTPS, Net::SSL, Net::URI
|
|
- Remove perl module dependency: Config::Tiny
|
|
- Add explicit build dependency on perl
|
|
- Add patch: virt-v2v-0.4.0-remove-fr.patch
|
|
- Add patch: virt-v2v-0.4.0-exechelper-cleanup.patch
|
|
- Add patch: virt-v2v-0.4.0-exechelper-tmpfile.patch
|
|
|
|
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.3.2-2
|
|
- rebuild against perl 5.10.1
|
|
|
|
* Mon Nov 9 2009 Matthew Booth <mbooth@redhat.com> - 0.3.2-1
|
|
- Update to release 0.3.2
|
|
- Add BuildRequires gettext
|
|
|
|
* Mon Nov 9 2009 Matthew Booth <mbooth@redhat.com> - 0.3.0-1
|
|
- Update to release 0.3.0
|
|
|
|
* Tue Sep 15 2009 Matthew Booth <mbooth@redhat.com> - 0.2.0-1
|
|
- Update to release 0.2.0
|
|
|
|
* Tue Sep 4 2009 Matthew Booth <mbooth@redhat.com> - 0.1.0-1
|
|
- Initial specfile
|