Compare commits
No commits in common. "c8" and "c9-beta" have entirely different histories.
@ -1,57 +1,24 @@
|
|||||||
%if 0%{?rhel} > 7
|
|
||||||
# Disable python2 build by default
|
|
||||||
%bcond_with python2
|
|
||||||
%else
|
|
||||||
%bcond_without python2
|
|
||||||
%endif
|
|
||||||
|
|
||||||
Name: python-kmod
|
Name: python-kmod
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
Group: Development/Libraries
|
|
||||||
Summary: Python module to work with kernel modules
|
Summary: Python module to work with kernel modules
|
||||||
Version: 0.9
|
Version: 0.9
|
||||||
Release: 20%{?dist}
|
Release: 32%{?dist}
|
||||||
URL: https://github.com/agrover/python-kmod/
|
URL: https://github.com/agrover/python-kmod/
|
||||||
Source0: https://github.com/downloads/agrover/%{name}/%{name}-%{version}.tar.gz
|
Source0: https://github.com/downloads/agrover/%{name}/%{name}-%{version}.tar.gz
|
||||||
|
BuildRequires: gcc
|
||||||
|
|
||||||
%if %{with python2}
|
|
||||||
BuildRequires: python2-devel
|
|
||||||
BuildRequires: python2-setuptools
|
|
||||||
BuildRequires: python2-Cython
|
|
||||||
%endif # with python2
|
|
||||||
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
|
||||||
BuildRequires: python3-Cython
|
BuildRequires: python3-Cython
|
||||||
|
BuildRequires: python3
|
||||||
BuildRequires: kmod-devel
|
BuildRequires: kmod-devel
|
||||||
|
|
||||||
%if %{with python2}
|
|
||||||
%{?filter_setup:
|
|
||||||
%filter_provides_in %{python2_sitearch}.*\.so$
|
|
||||||
%filter_setup
|
|
||||||
}
|
|
||||||
%endif # with python2
|
|
||||||
|
|
||||||
%global _description\
|
%global _description\
|
||||||
Python module to allow listing, loading, and unloading\
|
Python module to allow listing, loading, and unloading\
|
||||||
Linux kernel modules, using libkmod.
|
Linux kernel modules, using libkmod.
|
||||||
|
|
||||||
%description %_description
|
%description %_description
|
||||||
|
|
||||||
%if %{with python2}
|
|
||||||
%package -n python2-kmod
|
|
||||||
Summary: %summary
|
|
||||||
%{?python_provide:%python_provide python2-kmod}
|
|
||||||
|
|
||||||
%description -n python2-kmod %_description
|
|
||||||
%endif # with python2
|
|
||||||
|
|
||||||
%package -n python3-kmod
|
%package -n python3-kmod
|
||||||
Group: Development/Libraries
|
|
||||||
Summary: Python module to work with kernel modules
|
Summary: Python module to work with kernel modules
|
||||||
%{?python_provide:%python_provide python3-kmod}
|
|
||||||
|
|
||||||
%description -n python3-kmod
|
%description -n python3-kmod
|
||||||
Python module to allow listing, loading, and unloading
|
Python module to allow listing, loading, and unloading
|
||||||
@ -61,34 +28,57 @@ Linux kernel modules, using libkmod.
|
|||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%if %{with python2}
|
|
||||||
%py2_build
|
|
||||||
%endif # with python2
|
|
||||||
%py3_build
|
%py3_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%if %{with python2}
|
|
||||||
%py2_install
|
|
||||||
%endif # with python2
|
|
||||||
%py3_install
|
%py3_install
|
||||||
|
|
||||||
%if %{with python2}
|
|
||||||
%files -n python2-kmod
|
|
||||||
%{python2_sitearch}/kmod/
|
|
||||||
%{python2_sitearch}/kmod*.egg-info
|
|
||||||
%doc README
|
|
||||||
%license COPYING.LESSER
|
|
||||||
%endif # with python2
|
|
||||||
|
|
||||||
%files -n python3-kmod
|
%files -n python3-kmod
|
||||||
%{python3_sitearch}/kmod/
|
%{python3_sitearch}/kmod/
|
||||||
%{python3_sitearch}/kmod*.egg-info
|
%{python3_sitearch}/kmod*.egg-info
|
||||||
%doc README
|
%doc COPYING.LESSER README
|
||||||
%license COPYING.LESSER
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jun 08 2018 Charalampos Stratakis <cstratak@redhat.com> - 0.9-20
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 0.9-32
|
||||||
- Conditionalize the python2 subpackage
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.9-31
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.9-30
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9-29
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.9-28
|
||||||
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9-27
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.9-26
|
||||||
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||||
|
|
||||||
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.9-25
|
||||||
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9-24
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9-23
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Dec 27 2018 Miro Hrončok <mhroncok@redhat.com> - 0.9-22
|
||||||
|
- Subpackage python2-kmod has been removed
|
||||||
|
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9-21
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.9-20
|
||||||
|
- Rebuilt for Python 3.7
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9-19
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9-19
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
Loading…
Reference in New Issue
Block a user