Update to 1.2.1 release adding python3 support
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
08a2e08e03
commit
756adb4e61
@ -1,7 +1,12 @@
|
|||||||
|
|
||||||
Summary: The libvirt virtualization API python binding
|
%define with_python3 0
|
||||||
|
%if 0%{?fedora} > 18
|
||||||
|
%define with_python3 1
|
||||||
|
%endif
|
||||||
|
|
||||||
|
Summary: The libvirt virtualization API python2 binding
|
||||||
Name: libvirt-python
|
Name: libvirt-python
|
||||||
Version: 1.2.0
|
Version: 1.2.1
|
||||||
Release: 1%{?dist}%{?extra_release}
|
Release: 1%{?dist}%{?extra_release}
|
||||||
Source0: http://libvirt.org/sources/python/%{name}-%{version}.tar.gz
|
Source0: http://libvirt.org/sources/python/%{name}-%{version}.tar.gz
|
||||||
Url: http://libvirt.org
|
Url: http://libvirt.org
|
||||||
@ -9,6 +14,17 @@ License: LGPLv2+
|
|||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
BuildRequires: libvirt-devel >= 0.9.11
|
BuildRequires: libvirt-devel >= 0.9.11
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
|
%if %{with_python3}
|
||||||
|
BuildRequires: python3-devel
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with_python3}
|
||||||
|
%package -n libvirt-python3
|
||||||
|
Summary: The libvirt virtualization API python3 binding
|
||||||
|
Url: http://libvirt.org
|
||||||
|
License: LGPLv2+
|
||||||
|
Group: Development/Libraries
|
||||||
|
%endif
|
||||||
|
|
||||||
# Don't want provides for python shared objects
|
# Don't want provides for python shared objects
|
||||||
%{?filter_provides_in: %filter_provides_in %{python_sitearch}/.*\.so}
|
%{?filter_provides_in: %filter_provides_in %{python_sitearch}/.*\.so}
|
||||||
@ -20,24 +36,55 @@ written in the Python programming language to use the interface
|
|||||||
supplied by the libvirt library to use the virtualization capabilities
|
supplied by the libvirt library to use the virtualization capabilities
|
||||||
of recent versions of Linux (and other OSes).
|
of recent versions of Linux (and other OSes).
|
||||||
|
|
||||||
|
%if %{with_python3}
|
||||||
|
%description -n libvirt-python3
|
||||||
|
The libvirt-python package contains a module that permits applications
|
||||||
|
written in the Python programming language to use the interface
|
||||||
|
supplied by the libvirt library to use the virtualization capabilities
|
||||||
|
of recent versions of Linux (and other OSes).
|
||||||
|
%endif
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
|
CFLAGS="$RPM_OPT_FLAGS" %{__python} setup.py build
|
||||||
|
%if %{with_python3}
|
||||||
|
CFLAGS="$RPM_OPT_FLAGS" %{__python3} setup.py build
|
||||||
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{__python} setup.py install --skip-build --root=%{buildroot}
|
%{__python} setup.py install --skip-build --root=%{buildroot}
|
||||||
|
%if %{with_python3}
|
||||||
|
%{__python3} setup.py install --skip-build --root=%{buildroot}
|
||||||
|
%endif
|
||||||
rm -f %{buildroot}%{_libdir}/python*/site-packages/*egg-info
|
rm -f %{buildroot}%{_libdir}/python*/site-packages/*egg-info
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc ChangeLog AUTHORS NEWS README COPYING COPYING.LESSER examples/
|
%doc ChangeLog AUTHORS NEWS README COPYING COPYING.LESSER examples/
|
||||||
%{_libdir}/python*/site-packages/libvirt.py*
|
%{_libdir}/python2*/site-packages/libvirt.py*
|
||||||
%{_libdir}/python*/site-packages/libvirt_qemu.py*
|
%{_libdir}/python2*/site-packages/libvirt_qemu.py*
|
||||||
%{_libdir}/python*/site-packages/libvirt_lxc.py*
|
%{_libdir}/python2*/site-packages/libvirt_lxc.py*
|
||||||
%{_libdir}/python*/site-packages/libvirtmod*
|
%{_libdir}/python2*/site-packages/libvirtmod*
|
||||||
|
|
||||||
|
%if %{with_python3}
|
||||||
|
%files -n libvirt-python3
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc ChangeLog AUTHORS NEWS README COPYING COPYING.LESSER examples/
|
||||||
|
%{_libdir}/python3*/site-packages/libvirt.py*
|
||||||
|
%{_libdir}/python3*/site-packages/libvirt_qemu.py*
|
||||||
|
%{_libdir}/python3*/site-packages/libvirt_lxc.py*
|
||||||
|
%{_libdir}/python3*/site-packages/__pycache__/libvirt.cpython-*.py*
|
||||||
|
%{_libdir}/python3*/site-packages/__pycache__/libvirt_qemu.cpython-*.py*
|
||||||
|
%{_libdir}/python3*/site-packages/__pycache__/libvirt_lxc.cpython-*.py*
|
||||||
|
%{_libdir}/python3*/site-packages/libvirtmod*
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jan 21 2014 Daniel P. Berrange <berrange@redhat.com> - 1.2.1-1
|
||||||
|
- Update to 1.2.1 release
|
||||||
|
- Add libvirt-python3 package
|
||||||
|
|
||||||
* Mon Nov 25 2013 Daniel P. Berrange <berrange@redhat.com> - 1.2.0-1
|
* Mon Nov 25 2013 Daniel P. Berrange <berrange@redhat.com> - 1.2.0-1
|
||||||
- Initial package after split from libvirt RPM (rhbz #1034347)
|
- Initial package after split from libvirt RPM (rhbz #1034347)
|
||||||
|
Loading…
Reference in New Issue
Block a user