257 lines
		
	
	
		
			8.4 KiB
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
			
		
		
	
	
			257 lines
		
	
	
		
			8.4 KiB
		
	
	
	
		
			RPMSpec
		
	
	
	
	
	
| # -*- rpm-spec -*-
 | |
| 
 | |
| # This spec file assumes you are building on a Fedora or RHEL version
 | |
| # that's still supported by the vendor. It may work on other distros
 | |
| # or versions, but no effort will be made to ensure that going forward
 | |
| %define min_rhel 8
 | |
| %define min_fedora 33
 | |
| 
 | |
| %if (0%{?fedora} && 0%{?fedora} >= %{min_fedora}) || (0%{?rhel} && 0%{?rhel} >= %{min_rhel})
 | |
|     %define supported_platform 1
 | |
| %else
 | |
|     %define supported_platform 0
 | |
| %endif
 | |
| 
 | |
| %define dist_name libvirt_python
 | |
| 
 | |
| Summary: The libvirt virtualization API python3 binding
 | |
| Name: libvirt-python
 | |
| Version: 11.8.0
 | |
| Release: 1%{?dist}%{?extra_release}
 | |
| Source0: https://libvirt.org/sources/python/%{dist_name}-%{version}.tar.gz
 | |
| Url: https://libvirt.org
 | |
| License: LGPL-2.1-or-later
 | |
| BuildRequires: git
 | |
| BuildRequires: libvirt-devel >= 11.8.0-1
 | |
| BuildRequires: python3-devel
 | |
| BuildRequires: python3-pytest
 | |
| BuildRequires: python3-lxml
 | |
| BuildRequires: python3-setuptools
 | |
| BuildRequires: gcc
 | |
| 
 | |
| # Don't want provides for python shared objects
 | |
| %{?filter_provides_in: %filter_provides_in %{python3_sitearch}/.*\.so}
 | |
| %{?filter_setup}
 | |
| 
 | |
| %description
 | |
| 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).
 | |
| 
 | |
| %package -n python3-libvirt
 | |
| Summary: The libvirt virtualization API python3 binding
 | |
| Url: http://libvirt.org
 | |
| License: LGPLv2+
 | |
| %{?python_provide:%python_provide python3-libvirt}
 | |
| Provides: libvirt-python3 = %{version}-%{release}
 | |
| Obsoletes: libvirt-python3 <= 3.6.0-1%{?dist}
 | |
| 
 | |
| %description -n python3-libvirt
 | |
| The python3-libvirt package contains a module that permits applications
 | |
| written in the Python 3.x programming language to use the interface
 | |
| supplied by the libvirt library to use the virtualization capabilities
 | |
| of recent versions of Linux (and other OSes).
 | |
| 
 | |
| %prep
 | |
| %autosetup -S git_am -N -n %{dist_name}-%{version}
 | |
| 
 | |
| # Unset execute bit for example scripts; it can introduce spurious
 | |
| # RPM dependencies, like /usr/bin/python3
 | |
| # for the -python3 package
 | |
| find examples -type f -exec chmod 0644 \{\} \;
 | |
| 
 | |
| %build
 | |
| %if ! %{supported_platform}
 | |
| echo "This RPM requires either Fedora >= %{min_fedora} or RHEL >= %{min_rhel}"
 | |
| exit 1
 | |
| %endif
 | |
| 
 | |
| %py3_build
 | |
| 
 | |
| %install
 | |
| %py3_install
 | |
| 
 | |
| %check
 | |
| %pytest
 | |
| 
 | |
| %files -n python3-libvirt
 | |
| %doc ChangeLog AUTHORS README COPYING examples/
 | |
| %{python3_sitearch}/libvirt.py*
 | |
| %{python3_sitearch}/libvirtaio.py*
 | |
| %{python3_sitearch}/libvirt_qemu.py*
 | |
| %{python3_sitearch}/libvirt_lxc.py*
 | |
| %{python3_sitearch}/__pycache__/libvirt.cpython-*.py*
 | |
| %{python3_sitearch}/__pycache__/libvirt_qemu.cpython-*.py*
 | |
| %{python3_sitearch}/__pycache__/libvirt_lxc.cpython-*.py*
 | |
| %{python3_sitearch}/__pycache__/libvirtaio.cpython-*.py*
 | |
| %{python3_sitearch}/libvirtmod*
 | |
| %{python3_sitearch}/*egg-info
 | |
| 
 | |
| %changelog
 | |
| * Tue Oct 21 2025 Jiri Denemark <jdenemar@redhat.com> - 11.8.0-1
 | |
| - Rebased to libvirt-python-11.8.0 (RHEL-104241)
 | |
| 
 | |
| * Wed Jul 23 2025 Jiri Denemark <jdenemar@redhat.com> - 11.5.0-1
 | |
| - Rebased to libvirt-python-11.5.0 (RHEL-71663)
 | |
| 
 | |
| * Mon May 26 2025 Jiri Denemark <jdenemar@redhat.com> - 11.3.0-1
 | |
| - Rebased to libvirt-python-11.3.0 (RHEL-71663)
 | |
| 
 | |
| * Wed May  7 2025 Jiri Denemark <jdenemar@redhat.com> - 11.2.0-1
 | |
| - Rebased to libvirt-python-11.2.0 (RHEL-71663)
 | |
| 
 | |
| * Wed Apr 23 2025 Jiri Denemark <jdenemar@redhat.com> - 11.1.0-1
 | |
| - Rebased to libvirt-python-11.1.0 (RHEL-71663)
 | |
| 
 | |
| * Thu Dec 19 2024 Jiri Denemark <jdenemar@redhat.com> - 10.10.0-1
 | |
| - Rebased to libvirt-python-10.10.0 (RHEL-50578)
 | |
| 
 | |
| * Tue Nov  5 2024 Jiri Denemark <jdenemar@redhat.com> - 10.9.0-1
 | |
| - Rebased to libvirt-python-10.9.0 (RHEL-50578)
 | |
| 
 | |
| * Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 10.8.0-2
 | |
| - Bump release for October 2024 mass rebuild:
 | |
|   Resolves: RHEL-64018
 | |
| 
 | |
| * Thu Oct 17 2024 Jiri Denemark <jdenemar@redhat.com> - 10.8.0-1
 | |
| - Rebased to libvirt-python-10.8.0 (RHEL-50578)
 | |
| 
 | |
| * Fri Jul 12 2024 Jiri Denemark <jdenemar@redhat.com> - 10.5.0-1
 | |
| - Rebased to libvirt-python-10.5.0 (RHEL-30178)
 | |
| 
 | |
| * Thu Jun 27 2024 Jiri Denemark <jdenemar@redhat.com> - 10.4.0-1
 | |
| - Rebased to libvirt-python-10.4.0 (RHEL-30178)
 | |
| 
 | |
| * Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 10.0.0-4
 | |
| - Bump release for June 2024 mass rebuild
 | |
| 
 | |
| * Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 10.0.0-3
 | |
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
 | |
| 
 | |
| * Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 10.0.0-2
 | |
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
 | |
| 
 | |
| * Tue Jan 16 2024 Cole Robinson <crobinso@redhat.com> - 10.0.0-1
 | |
| - Update to version 10.0.0
 | |
| 
 | |
| * Sun Dec 03 2023 Cole Robinson <crobinso@redhat.com> - 9.10.0-1
 | |
| - Update to version 9.10.0
 | |
| 
 | |
| * Wed Nov 01 2023 Cole Robinson <crobinso@redhat.com> - 9.9.0-1
 | |
| - Update to version 9.9.0
 | |
| 
 | |
| * Fri Oct 06 2023 Cole Robinson <crobinso@redhat.com> - 9.8.0-1
 | |
| - Update to version 9.8.0
 | |
| 
 | |
| * Fri Sep  1 2023 Daniel P. Berrangé <berrange@redhat.com> - 9.7.0-1
 | |
| - Update to version 9.7.0
 | |
| 
 | |
| * Tue Aug 01 2023 Cole Robinson <crobinso@redhat.com> - 9.6.0-1
 | |
| - Update to version 9.6.0
 | |
| 
 | |
| * Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 9.5.0-2
 | |
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
 | |
| 
 | |
| * Wed Jul 05 2023 Cole Robinson <crobinso@redhat.com> - 9.5.0-1
 | |
| - Update to version 9.5.0
 | |
| 
 | |
| * Thu Jun 29 2023 Python Maint <python-maint@redhat.com> - 9.4.0-2
 | |
| - Rebuilt for Python 3.12
 | |
| 
 | |
| * Wed Jun 28 2023 Cole Robinson <crobinso@redhat.com> - 9.4.0-1
 | |
| - Update to version 9.4.0
 | |
| 
 | |
| * Wed Jun 14 2023 Python Maint <python-maint@redhat.com> - 9.3.0-2
 | |
| - Rebuilt for Python 3.12
 | |
| 
 | |
| * Tue May 02 2023 Cole Robinson <crobinso@redhat.com> - 9.3.0-1
 | |
| - Update to version 9.3.0
 | |
| 
 | |
| * Wed Apr 05 2023 Cole Robinson <crobinso@redhat.com> - 9.2.0-1
 | |
| - Update to version 9.2.0
 | |
| 
 | |
| * Sun Mar 05 2023 Cole Robinson <crobinso@redhat.com> - 9.1.0-1
 | |
| - Update to version 9.1.0
 | |
| 
 | |
| * Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.0-2
 | |
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
 | |
| 
 | |
| * Mon Jan 16 2023 Cole Robinson <crobinso@redhat.com> - 9.0.0-1
 | |
| - Update to version 9.0.0
 | |
| 
 | |
| * Sat Dec 03 2022 Cole Robinson <crobinso@redhat.com> - 8.10.0-1
 | |
| - Update to version 8.10.0
 | |
| 
 | |
| * Sat Nov 05 2022 Cole Robinson <crobinso@redhat.com> - 8.9.0-1
 | |
| - Update to version 8.9.0
 | |
| 
 | |
| * Tue Oct 04 2022 Cole Robinson <crobinso@redhat.com> - 8.8.0-1
 | |
| - Update to version 8.8.0
 | |
| 
 | |
| * Tue Sep 06 2022 Cole Robinson <crobinso@redhat.com> - 8.7.0-1
 | |
| - Update to version 8.7.0
 | |
| 
 | |
| * Tue Aug 02 2022 Cole Robinson <crobinso@redhat.com> - 8.6.0-1
 | |
| - Update to version 8.6.0
 | |
| 
 | |
| * Thu Jul 21 2022 Cole Robinson <crobinso@redhat.com> - 8.5.0-1
 | |
| - Update to version 8.5.0
 | |
| 
 | |
| * Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 8.4.0-2
 | |
| - Rebuilt for Python 3.11
 | |
| 
 | |
| * Thu Jun 02 2022 Cole Robinson <crobinso@redhat.com> - 8.4.0-1
 | |
| - Update to version 8.4.0
 | |
| 
 | |
| * Mon May 02 2022 Cole Robinson <crobinso@redhat.com> - 8.3.0-1
 | |
| - Update to version 8.3.0
 | |
| 
 | |
| * Fri Apr 01 2022 Cole Robinson <crobinso@redhat.com> - 8.2.0-1
 | |
| - Update to version 8.2.0
 | |
| 
 | |
| * Tue Mar 01 2022 Cole Robinson <crobinso@redhat.com> - 8.1.0-1
 | |
| - Update to version 8.1.0
 | |
| 
 | |
| * Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 8.0.0-2
 | |
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
 | |
| 
 | |
| * Fri Jan 14 2022 Cole Robinson <crobinso@redhat.com> - 8.0.0-1
 | |
| - Update to version 8.0.0
 | |
| 
 | |
| * Tue Jan 11 2022 Cole Robinson <crobinso@redhat.com> - 7.10.0-1
 | |
| - Update to version 7.10.0
 | |
| 
 | |
| * Wed Nov  3 2021 Daniel P. Berrangé <berrange@redhat.com> - 7.9.0-1
 | |
| - Update to 7.9.0 release
 | |
| 
 | |
| * Fri Oct  1 2021 Daniel P. Berrangé <berrange@redhat.com> - 7.8.0-1
 | |
| - Update to 7.8.0 release
 | |
| 
 | |
| * Mon Aug  2 2021 Daniel P. Berrangé <berrange@redhat.com> - 7.6.0-1
 | |
| - Update to 7.6.0 release
 | |
| 
 | |
| * Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 7.5.0-2
 | |
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 | |
| 
 | |
| * Thu Jul 01 2021 Cole Robinson <crobinso@redhat.com> - 7.5.0-1
 | |
| - Update to version 7.5.0
 | |
| 
 | |
| * Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 7.4.0-2
 | |
| - Rebuilt for Python 3.10
 | |
| 
 | |
| * Tue Jun 01 2021 Cole Robinson <crobinso@redhat.com> - 7.4.0-1
 | |
| - Update to version 7.4.0
 | |
| 
 | |
| * Mon Apr 05 2021 Cole Robinson <crobinso@redhat.com> - 7.2.0-1
 | |
| - Update to version 7.2.0
 | |
| 
 | |
| * Mon Mar 01 2021 Cole Robinson <crobinso@redhat.com> - 7.1.0-1
 | |
| - Update to version 7.1.0
 | |
| 
 | |
| * Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 7.0.0-2
 | |
| - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
 | |
| 
 | |
| * Mon Jan 18 2021 Cole Robinson <crobinso@redhat.com> - 7.0.0-1
 | |
| - Update to version 7.0.0
 |