Update to 3.6.0 version
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
3ba125f729
commit
9ffe21017f
@ -1,13 +1,8 @@
|
|||||||
|
|
||||||
%define with_python3 0
|
|
||||||
%if 0%{?fedora} > 18
|
|
||||||
%define with_python3 1
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Summary: The libvirt virtualization API python2 binding
|
Summary: The libvirt virtualization API python2 binding
|
||||||
Name: libvirt-python
|
Name: libvirt-python
|
||||||
Version: 3.5.0
|
Version: 3.6.0
|
||||||
Release: 4%{?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
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
@ -16,11 +11,9 @@ BuildRequires: libvirt-devel >= %{version}
|
|||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
BuildRequires: python-nose
|
BuildRequires: python-nose
|
||||||
BuildRequires: python-lxml
|
BuildRequires: python-lxml
|
||||||
%if %{with_python3}
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-nose
|
BuildRequires: python3-nose
|
||||||
BuildRequires: python3-lxml
|
BuildRequires: python3-lxml
|
||||||
%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}
|
||||||
@ -32,7 +25,6 @@ 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}
|
|
||||||
%package -n libvirt-python3
|
%package -n libvirt-python3
|
||||||
Summary: The libvirt virtualization API python3 binding
|
Summary: The libvirt virtualization API python3 binding
|
||||||
Url: http://libvirt.org
|
Url: http://libvirt.org
|
||||||
@ -44,7 +36,6 @@ The libvirt-python package contains a module that permits applications
|
|||||||
written in the Python programming language to use the interface
|
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).
|
||||||
%endif
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
@ -56,21 +47,15 @@ find examples -type f -exec chmod 0644 \{\} \;
|
|||||||
|
|
||||||
%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
|
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}
|
%{__python3} setup.py install --skip-build --root=%{buildroot}
|
||||||
%endif
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__python} setup.py test
|
%{__python} setup.py test
|
||||||
%if %{with_python3}
|
|
||||||
%{__python3} setup.py test
|
%{__python3} setup.py test
|
||||||
%endif
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
@ -81,7 +66,6 @@ CFLAGS="$RPM_OPT_FLAGS" %{__python3} setup.py build
|
|||||||
%{_libdir}/python2*/site-packages/libvirtmod*
|
%{_libdir}/python2*/site-packages/libvirtmod*
|
||||||
%{_libdir}/python2*/site-packages/*egg-info
|
%{_libdir}/python2*/site-packages/*egg-info
|
||||||
|
|
||||||
%if %{with_python3}
|
|
||||||
%files -n libvirt-python3
|
%files -n libvirt-python3
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc ChangeLog AUTHORS NEWS README COPYING COPYING.LESSER examples/
|
%doc ChangeLog AUTHORS NEWS README COPYING COPYING.LESSER examples/
|
||||||
@ -95,9 +79,12 @@ CFLAGS="$RPM_OPT_FLAGS" %{__python3} setup.py build
|
|||||||
%{_libdir}/python3*/site-packages/__pycache__/libvirtaio.cpython-*.py*
|
%{_libdir}/python3*/site-packages/__pycache__/libvirtaio.cpython-*.py*
|
||||||
%{_libdir}/python3*/site-packages/libvirtmod*
|
%{_libdir}/python3*/site-packages/libvirtmod*
|
||||||
%{_libdir}/python3*/site-packages/*egg-info
|
%{_libdir}/python3*/site-packages/*egg-info
|
||||||
%endif
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Aug 10 2017 Daniel P. Berrange <berrange@redhat.com> - 3.6.0-1
|
||||||
|
- Update to 3.6.0 release
|
||||||
|
- Always build py3 package
|
||||||
|
|
||||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-4
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.0-4
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (libvirt-python-3.5.0.tar.gz) = 31e0bf7604fe3e422fbad2acdfae1a50050bb4b45ed1e9596040e1c08607a772d62d88c1636c1c18de082d913fb549481aeb5e48f76276cb6ac6534a71f8f7b6
|
SHA512 (libvirt-python-3.6.0.tar.gz) = 333f991fc69b509b2eda67ee70dea39cc9d1ff36b1abb6a881296313ffebfb5ed41de8443534f19b27a70271548214fa94a12e7f59dc217492edf0bb5555ede9
|
||||||
|
Loading…
Reference in New Issue
Block a user