summaryrefslogtreecommitdiffstats
path: root/rpm
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2008-08-26 15:53:08 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2008-08-26 15:53:08 -0300
commit2a83efb83ae4f878bf4ecfdc711f287446e5f630 (patch)
treec5cb0bae9598e1e423696d8a00df838f41ac0b4f /rpm
parent330c8c4fa727547528b1e33612a417b84fa27458 (diff)
downloadpython-ethtool-2a83efb83ae4f878bf4ecfdc711f287446e5f630.tar.gz
python-ethtool-2a83efb83ae4f878bf4ecfdc711f287446e5f630.tar.xz
python-ethtool-2a83efb83ae4f878bf4ecfdc711f287446e5f630.zip
pifconfig: Add python ifconfig equivalent to test featuresv0.3
A la pethtool Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'rpm')
-rw-r--r--rpm/SPECS/python-ethtool.spec9
1 files changed, 8 insertions, 1 deletions
diff --git a/rpm/SPECS/python-ethtool.spec b/rpm/SPECS/python-ethtool.spec
index cacbd5e..cbd2969 100644
--- a/rpm/SPECS/python-ethtool.spec
+++ b/rpm/SPECS/python-ethtool.spec
@@ -3,7 +3,7 @@
Summary: Ethernet settings python bindings
Name: python-ethtool
-Version: 0.2
+Version: 0.3
Release: 1%{?dist}
URL: http://git.kernel.org/?p=linux/kernel/git/acme/python-ethtool.git
Source: http://userweb.kernel.org/~acme/python-ethtool/%{name}-%{version}.tar.bz2
@@ -28,6 +28,7 @@ rm -rf %{buildroot}
make DESTDIR=%{buildroot} install
mkdir -p %{buildroot}%{_sbindir}
cp -f pethtool.py %{buildroot}%{_sbindir}/pethtool
+cp -f pifconfig.py %{buildroot}%{_sbindir}/pifconfig
%clean
rm -rf %{buildroot}
@@ -36,12 +37,18 @@ rm -rf %{buildroot}
%defattr(-,root,root)
%doc COPYING
%{_sbindir}/pethtool
+%{_sbindir}/pifconfig
%{python_sitearch}/ethtool.so
%if "%{python_ver}" >= "2.5"
%{python_sitearch}/*.egg-info
%endif
%changelog
+* Tue Aug 26 2008 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.3-1
+- Add get_flags method from the first python-ethtool contributor, yay
+- Add pifconfig command, that mimics the ifconfig tool using the
+ bindings available
+
* Wed Aug 20 2008 Arnaldo Carvalho de Melo <acme@redhat.com> - 0.2-1
- Expand description and summary fields, as part of the fedora
review process.