diff --git a/.python-kmod.metadata b/.python-kmod.metadata new file mode 100644 index 0000000..e864eb2 --- /dev/null +++ b/.python-kmod.metadata @@ -0,0 +1 @@ +5a4513210915c4908569f2363bcfddac5212fa37 SOURCES/python-kmod-0.9.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 0e7897f..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 - -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SPECS/python-kmod.spec b/SPECS/python-kmod.spec new file mode 100644 index 0000000..19dd3cb --- /dev/null +++ b/SPECS/python-kmod.spec @@ -0,0 +1,56 @@ +Name: python-kmod +License: LGPLv2+ +Group: Development/Libraries +Summary: Python module to work with kernel modules +Version: 0.9 +Release: 2%{?dist} +URL: https://github.com/agrover/python-kmod/ +Source0: https://github.com/downloads/agrover/%{name}/%{name}-%{version}.tar.gz +BuildRequires: python2-devel +BuildRequires: python-setuptools +BuildRequires: Cython +BuildRequires: kmod-devel + +%{?filter_setup: +%filter_provides_in %{python_sitearch}.*\.so$ +%filter_setup +} + +%description +Python module to allow listing, loading, and unloading +Linux kernel modules, using libkmod. + +%prep +%setup -q + +%build +%{__python} setup.py build + +%install +%{__python} setup.py install --skip-build --root %{buildroot} + +%files +%{python_sitearch}/kmod/* +%{python_sitearch}/kmod*.egg-info +%doc COPYING.LESSER README + +%changelog +* Thu Feb 14 2013 Fedora Release Engineering - 0.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Mon Oct 22 2012 Andy Grover - 0.9-1 +- Update for new upstream release +- Add build dep on Cython + +* Wed Aug 1 2012 Andy Grover - 0.1-4 +- Update for new upstream release location + +* Fri May 4 2012 Andy Grover - 0.1-3 +- Update for new upstream release location + +* Tue Apr 17 2012 Andy Grover - 0.1-2 +- Correct License field to LGPLv2+ +- Remove explicit Requires for kmod-libs + +* Thu Apr 12 2012 Andy Grover - 0.1-1 +- Initial packaging