Blame SPECS/net-tools.spec

e7a6f3
%global checkout 20160912git
e7a6f3
e7a6f3
Summary: Basic networking tools
e7a6f3
Name: net-tools
e7a6f3
Version: 2.0
7e29f9
Release: 0.52.%{checkout}%{?dist}
e7a6f3
License: GPLv2+
e7a6f3
Group: System Environment/Base
e7a6f3
URL: http://sourceforge.net/projects/net-tools/
e7a6f3
e7a6f3
# git archive --format=tar --remote=git://git.code.sf.net/p/net-tools/code master | xz > net-tools-%%{version}.%%{checkout}.tar.xz
e7a6f3
Source0: net-tools-%{version}.%{checkout}.tar.xz
e7a6f3
Source1: net-tools-config.h
e7a6f3
Source2: net-tools-config.make
e7a6f3
Source3: ether-wake.c
e7a6f3
Source4: ether-wake.8
e7a6f3
Source5: mii-diag.c
e7a6f3
Source6: mii-diag.8
e7a6f3
Source7: iptunnel.8
e7a6f3
Source8: ipmaddr.8
e7a6f3
Source9: arp-ethers.service
e7a6f3
e7a6f3
# adds <delay> option that allows netstat to cycle printing through statistics every delay seconds.
e7a6f3
Patch1: net-tools-cycle.patch
e7a6f3
e7a6f3
# various man page fixes merged into one patch
e7a6f3
Patch2: net-tools-man.patch
e7a6f3
e7a6f3
# linux-4.8
e7a6f3
Patch3: net-tools-linux48.patch
e7a6f3
e7a6f3
# use all interfaces instead of default (#1003875)
e7a6f3
Patch20: ether-wake-interfaces.patch
e7a6f3
e7a6f3
# use all interfaces instead of default (#1003875)
e7a6f3
Patch21: net-tools-ifconfig-EiB.patch
e7a6f3
Patch22: net-tools-timer-man.patch
e7a6f3
Patch23: net-tools-interface-name-len.patch
e7a6f3
Patch24: net-tools-covscan.patch
7e29f9
Patch25: net-tools-spelling-error.patch
7e29f9
Patch26: net-tools-correct-exit-code.patch
7e29f9
Patch27: net-tools-inet6-output.patch
e7a6f3
e7a6f3
BuildRequires: bluez-libs-devel
e7a6f3
BuildRequires: gettext, libselinux
e7a6f3
BuildRequires: libselinux-devel
e7a6f3
BuildRequires: systemd
e7a6f3
%{?systemd_requires}
e7a6f3
e7a6f3
%description
e7a6f3
The net-tools package contains basic networking tools,
e7a6f3
including ifconfig, netstat, route, and others.
e7a6f3
Most of them are obsolete. For replacement check iproute package.
e7a6f3
e7a6f3
%prep
e7a6f3
%setup -q -c
e7a6f3
%patch1 -p1 -b .cycle
e7a6f3
%patch2 -p1 -b .man
e7a6f3
%patch3 -p1 -b .linux48
e7a6f3
e7a6f3
cp %SOURCE1 ./config.h
e7a6f3
cp %SOURCE2 ./config.make
e7a6f3
cp %SOURCE3 .
e7a6f3
cp %SOURCE4 ./man/en_US
e7a6f3
cp %SOURCE5 .
e7a6f3
cp %SOURCE6 ./man/en_US
e7a6f3
cp %SOURCE7 ./man/en_US
e7a6f3
cp %SOURCE8 ./man/en_US
e7a6f3
e7a6f3
%patch20 -p1 -b .interfaces
e7a6f3
%patch21 -p1 -b .ifconfig-EiB
e7a6f3
%patch22 -p1 -b .timer-man
e7a6f3
%patch23 -p1 -b .interface-name-len
e7a6f3
%patch24 -p1 -b .covscan
7e29f9
%patch25 -p1 -b .spelling
7e29f9
%patch26 -p1 -b .exit-codes
7e29f9
%patch27 -p1 -b .inet6-output
e7a6f3
e7a6f3
touch ./config.h
e7a6f3
e7a6f3
%build
e7a6f3
# Sparc and s390 arches need to use -fPIE
e7a6f3
%ifarch sparcv9 sparc64 s390 s390x
e7a6f3
export CFLAGS="${RPM_OPT_FLAGS} -fPIE"
e7a6f3
%else
e7a6f3
export CFLAGS="${RPM_OPT_FLAGS} -fpie"
e7a6f3
%endif
e7a6f3
# RHBZ #853193
e7a6f3
export LDFLAGS="${RPM_LD_FLAGS} -pie -Wl,-z,now"
e7a6f3
e7a6f3
make
e7a6f3
make ether-wake
e7a6f3
gcc ${RPM_OPT_FLAGS} ${RPM_LD_FLAGS} -o mii-diag mii-diag.c
e7a6f3
e7a6f3
%install
e7a6f3
mv man/de_DE man/de
e7a6f3
mv man/fr_FR man/fr
e7a6f3
mv man/pt_BR man/pt
e7a6f3
e7a6f3
make BASEDIR=%{buildroot} BINDIR=%{_bindir} SBINDIR=%{_sbindir} install
e7a6f3
e7a6f3
# ifconfig and route are installed into /usr/bin by default
e7a6f3
# mv them back to /usr/sbin (#1045445)
e7a6f3
mv %{buildroot}%{_bindir}/ifconfig %{buildroot}%{_sbindir}
e7a6f3
mv %{buildroot}%{_bindir}/route %{buildroot}%{_sbindir}
e7a6f3
e7a6f3
install -p -m 755 ether-wake %{buildroot}%{_sbindir}
e7a6f3
install -p -m 755 mii-diag %{buildroot}%{_sbindir}
e7a6f3
e7a6f3
rm %{buildroot}%{_sbindir}/rarp
e7a6f3
rm %{buildroot}%{_mandir}/man8/rarp.8*
e7a6f3
rm %{buildroot}%{_mandir}/de/man8/rarp.8*
e7a6f3
rm %{buildroot}%{_mandir}/fr/man8/rarp.8*
e7a6f3
rm %{buildroot}%{_mandir}/pt/man8/rarp.8*
e7a6f3
e7a6f3
# otherwise %%find_lang finds them even they're empty
e7a6f3
rm -rf %{buildroot}%{_mandir}/de/man1
e7a6f3
rm -rf %{buildroot}%{_mandir}/fr/man1
e7a6f3
rm -rf %{buildroot}%{_mandir}/man1
e7a6f3
rm -rf %{buildroot}%{_mandir}/pt/man1
e7a6f3
rm -rf %{buildroot}%{_mandir}/pt/man5
e7a6f3
e7a6f3
# install systemd unit file
e7a6f3
install -D -p -m 644 %{SOURCE9} %{buildroot}%{_unitdir}/arp-ethers.service
e7a6f3
e7a6f3
%find_lang %{name} --all-name --with-man
e7a6f3
e7a6f3
%post
e7a6f3
%systemd_post arp-ethers.service
e7a6f3
e7a6f3
%files -f %{name}.lang
e7a6f3
%license COPYING
e7a6f3
%{_bindir}/netstat
e7a6f3
%{_sbindir}/ifconfig
e7a6f3
%{_sbindir}/route
e7a6f3
%{_sbindir}/arp
e7a6f3
%{_sbindir}/ether-wake
e7a6f3
%{_sbindir}/ipmaddr
e7a6f3
%{_sbindir}/iptunnel
e7a6f3
%{_sbindir}/mii-diag
e7a6f3
%{_sbindir}/mii-tool
e7a6f3
%{_sbindir}/nameif
e7a6f3
%{_sbindir}/plipconfig
e7a6f3
%{_sbindir}/slattach
e7a6f3
%{_mandir}/man[58]/*
e7a6f3
e7a6f3
%attr(0644,root,root)   %{_unitdir}/arp-ethers.service
e7a6f3
e7a6f3
%changelog
7e29f9
* Tue Mar 17 2020 Michal Ruprich <michalruprich@gmail.com> - 2.0-0.52.20160912git
7e29f9
- Resolves: #1711119 - netstat says "packetes" instead of "packets"
7e29f9
- Resolves: #1670355 - Exit code on wrong parameter is zero for many net-tools binaries
7e29f9
- Resolves: #1807989 - The output of `route -A inet6` does not display properly when the 'Use' column output is over 6 digits
7e29f9
e7a6f3
* Wed Sep 26 2018 Michal Ruprich <mruprich@redhat.com> - 2.0-0.51.20160912git
e7a6f3
- Resolves: #1607010 - Please review important issues found by covscan
e7a6f3
e7a6f3
* Wed Apr 25 2018 Michal Ruprich <mruprich@redhat.com> - 2.0-0.50.20160912git
e7a6f3
- Resolves: 1557470 - netstat -i cut's interface names
e7a6f3
- Resolves: 1566084 - netstat -agn only shows 10 character interface name for IPv4 addressing
e7a6f3
e7a6f3
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.0-0.49.20160912git
e7a6f3
- Escape macros in %%changelog
e7a6f3
e7a6f3
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-0.48.20160912git
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e7a6f3
e7a6f3
* Thu Feb  1 2018 Florian Weimer <fweimer@redhat.com> - 2.0-0.47.20160912git
e7a6f3
- Link mii-diag with $RPM_LD_FLAGS
e7a6f3
e7a6f3
* Tue Jan 30 2018 Michal Ruprich <mruprich@redhat.com> - 2.0-0.46.20160912git
e7a6f3
- removing dependencies on systemd-units from spec file
e7a6f3
e7a6f3
* Fri Nov 24 2017 Michal Ruprich <mruprich@redhat.com> - 2.0-0.45.20160912git
e7a6f3
- Resolves: #1478868 - netstat(8) portion on Timer needs writing
e7a6f3
e7a6f3
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-0.44.20160912git
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
e7a6f3
e7a6f3
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-0.43.20160912git
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e7a6f3
e7a6f3
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-0.42.20160912git
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
e7a6f3
e7a6f3
* Tue Jan 24 2017 Michal Ruprich <mruprich@redhat.com> - 2.0-0.41.20160912git
e7a6f3
- Resolves: #1414765 - ifconfig inaccurately rounds exabytes
e7a6f3
e7a6f3
* Wed Oct 12 2016 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.40.20160912git
e7a6f3
- fix build on linux-4.8
e7a6f3
e7a6f3
* Mon Sep 12 2016 mruprich <mruprich@redhat.com> - 2.0-0.39.20160912git
e7a6f3
- latest upstream snapshot
e7a6f3
e7a6f3
* Wed Mar 30 2016 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.38.20160329git
e7a6f3
- just few nitpicks :)
e7a6f3
e7a6f3
* Tue Mar 29 2016 Zdenek Dohnal <zdohnal@redhat.com> - 2.0-0.37.20160329git
e7a6f3
- latest upstream snapshot
e7a6f3
- adding HAVE_PLIP_TOOLS=1, HAVE_SERIAL_TOOLS=1, HAVE_ARP_TOOLS=1 into net-tools-config.h and net-tools-config.make
e7a6f3
- commenting out "%%{buildroot}%%{_mandir}/man8/rarp.8*" and its language alternatives in spec
e7a6f3
- adding "rm -rf %%{buildroot}%%{_mandir}/pt/man5" in spec
e7a6f3
e7a6f3
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0-0.36.20150915git
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e7a6f3
e7a6f3
* Tue Sep 15 2015 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.35.20150915git
e7a6f3
- ether-wake: add interface into message (#1149502)
e7a6f3
- latest upstream snapshot (ipx.patch & sctp-statistics.patch merged)
e7a6f3
e7a6f3
* Wed Jul 15 2015 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.34.20150715git
e7a6f3
- latest upstream snapshot
e7a6f3
e7a6f3
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-0.33.20150416git
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e7a6f3
e7a6f3
* Thu Apr 16 2015 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.32.20150416git
e7a6f3
- latest upstream snapshot
e7a6f3
e7a6f3
* Mon Nov 24 2014 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.31.20141124git
e7a6f3
- latest upstream snapshot (#1162284)
e7a6f3
e7a6f3
* Thu Nov 20 2014 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.30.20141007git
e7a6f3
- ether-wake: apply Debian's hardening patch
e7a6f3
e7a6f3
* Tue Oct 07 2014 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.29.20141007git
e7a6f3
- latest upstream snapshot (#1149405)
e7a6f3
e7a6f3
* Fri Oct 03 2014 Lubomir Rintel <lkundrak@v3.sk> - 2.0-0.28.20140707git
e7a6f3
- Enable bluetooth
e7a6f3
e7a6f3
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-0.27.20140707git
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
e7a6f3
e7a6f3
* Fri Jul 18 2014 Tom Callaway <spot@fedoraproject.org> - 2.0-0.26.20140707git
e7a6f3
- fix license handling
e7a6f3
e7a6f3
* Mon Jul 07 2014 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.25.20140707git
e7a6f3
- latest upstream snapshot
e7a6f3
e7a6f3
* Tue Jun 10 2014 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.24.20131119git
e7a6f3
- __global_ldflags -> RPM_LD_FLAGS, optflags -> RPM_OPT_FLAGS
e7a6f3
e7a6f3
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-0.23.20131119git
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e7a6f3
e7a6f3
* Mon Mar 31 2014 Jaromír Končický <jkoncick@redhat.com> - 2.0-0.22.20131119git
e7a6f3
- output sctp endpoints without -a parameter (#1063913)
e7a6f3
e7a6f3
* Fri Feb 14 2014 Jaromír Končický <jkoncick@redhat.com> - 2.0-0.21.20131119git
e7a6f3
- remake sctp-quiet.patch (#1063906#c7)
e7a6f3
e7a6f3
* Tue Feb 11 2014 Jaromír Končický <jkoncick@redhat.com> - 2.0-0.20.20131119git
e7a6f3
- make sctp quiet on systems without sctp (#1063906)
e7a6f3
e7a6f3
* Fri Dec 20 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.19.20131119git
e7a6f3
- move ifconfig and route back to sbin (#1045445)
e7a6f3
e7a6f3
* Tue Dec 03 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.18.20131119git
e7a6f3
- make mii-diag compile with -Werror=format-security (#1037218)
e7a6f3
e7a6f3
* Tue Nov 19 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.17.20131119git
e7a6f3
- latest snapshot (#1021109)
e7a6f3
e7a6f3
* Fri Nov 01 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.16.20131004git
e7a6f3
- use different compiler/linker flags macros
e7a6f3
e7a6f3
* Thu Oct 10 2013 Jaromír Končický <jkoncick@redhat.com> - 2.0-0.15.20131004git
e7a6f3
- install binaries into /usr/bin and /usr/sbin (#1016674)
e7a6f3
e7a6f3
* Fri Oct 04 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.14.20131004git
e7a6f3
- latest snapshot
e7a6f3
e7a6f3
* Mon Sep 23 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.13.20130910git
e7a6f3
- remove %%ifarch alpha condition from %%prep
e7a6f3
- improve sctp-statistics.patch (#982638#c10)
e7a6f3
e7a6f3
* Tue Sep 10 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.12.20130910git
e7a6f3
- latest snapshot
e7a6f3
e7a6f3
* Wed Sep 04 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.11.20130607git
e7a6f3
- amend ether-wake-interfaces.patch
e7a6f3
e7a6f3
* Wed Sep 04 2013 Jaromír Končický <jkoncick@redhat.com> - 2.0-0.10.20130607git
e7a6f3
- use all interfaces instead of default (#1003875)
e7a6f3
- reverted all changes on ether-wake.c and put original file
e7a6f3
e7a6f3
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-0.9.20130607git
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
e7a6f3
e7a6f3
* Fri Jun 07 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.8.20130607git
e7a6f3
- latest snapshot
e7a6f3
e7a6f3
* Thu Apr 25 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.7.20130425git
e7a6f3
- latest snapshot
e7a6f3
e7a6f3
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-0.6.20130109git
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e7a6f3
e7a6f3
* Wed Jan 09 2013 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.5.20130109git
e7a6f3
- latest snapshot (#579855)
e7a6f3
e7a6f3
* Fri Nov 30 2012 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.4.20121106git
e7a6f3
- fix URL
e7a6f3
e7a6f3
* Fri Nov 16 2012 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.3.20121106git
e7a6f3
- match actual license
e7a6f3
e7a6f3
* Tue Nov 06 2012 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.2.20121106git
e7a6f3
- few man page fixes
e7a6f3
e7a6f3
* Thu Oct 04 2012 Jiri Popelka <jpopelka@redhat.com> - 2.0-0.1.20121004git
e7a6f3
- the git snapshot we ship is actually much more a
e7a6f3
  2.0 pre-release then 1.60 post-release
e7a6f3
e7a6f3
* Mon Oct 01 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-145.20120917git
e7a6f3
- compile without STRIP (Metricom radio) support
e7a6f3
e7a6f3
* Mon Sep 17 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-144.20120917git
e7a6f3
- upstream git snapshot
e7a6f3
e7a6f3
* Wed Sep 05 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-143.20120702git
e7a6f3
- Sparc and s390 arches need to use -fPIE
e7a6f3
e7a6f3
* Wed Sep 05 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-142.20120702git
e7a6f3
- compile with PIE and full RELRO flags (#853193)
e7a6f3
e7a6f3
* Wed Aug 22 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-141.20120702git
e7a6f3
- fixed building with kernel-3.6
e7a6f3
e7a6f3
* Wed Aug 22 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-140.20120702git
e7a6f3
- use new systemd-rpm macros (#850225)
e7a6f3
e7a6f3
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.60-139.20120702git
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e7a6f3
e7a6f3
* Mon Jul 02 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-138.20120702git
e7a6f3
- fixes for #834110 and #836258 merged upstream
e7a6f3
e7a6f3
* Wed Jun 20 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-137.20120509git
e7a6f3
- compile without Token ring support (http://lwn.net/Articles/497397/)
e7a6f3
e7a6f3
* Tue Jun 19 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-136.20120509git
e7a6f3
- better SCTP support (#826676)
e7a6f3
e7a6f3
* Wed May 09 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-135.20120509git
e7a6f3
- don't require hostname package
e7a6f3
e7a6f3
* Fri Jan 27 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-134.20120127git
e7a6f3
- Do not show interface metric in 'ifconfig', 'ifconfig -s' and 'netstat -i'.
e7a6f3
  Spare place is used for interface name so trim_iface.patch is no longer needed.
e7a6f3
- No need to convert man pages to utf-8 as upstream ship them in utf-8 now.
e7a6f3
e7a6f3
* Thu Jan 19 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-133.20120119git
e7a6f3
- SELinux patch merged upstream
e7a6f3
- several page fixes merged upstream
e7a6f3
- mark localized man pages with %%lang
e7a6f3
e7a6f3
* Wed Jan 11 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-132.20120111git
e7a6f3
- 3 patches merged upstream
e7a6f3
- removed 2digit.patch (#718610)
e7a6f3
- removed fgets.patch (probably not needed anymore)
e7a6f3
e7a6f3
* Thu Jan 05 2012 Jiri Popelka <jpopelka@redhat.com> - 1.60-131.20120105git
e7a6f3
- next 11 patches merged upstream
e7a6f3
- removed bcast.patch (seems to be fixed upstream)
e7a6f3
- removed netstat-p-basename.patch (upstream is not happy with it)
e7a6f3
- netstat-leak.patch merged into duplicate-tcp.patch
e7a6f3
e7a6f3
* Wed Dec 07 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-130.20111207git
e7a6f3
- removed virtualname.patch
e7a6f3
- added back isofix.patch
e7a6f3
- improved mii-registers.patch
e7a6f3
e7a6f3
* Tue Dec 06 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-129.20111206git
e7a6f3
- upstream git snapshot
e7a6f3
- reduced number of patches from 95 to 32
e7a6f3
- netstat -T/--notrim option is now -W/--wide
e7a6f3
e7a6f3
* Tue Oct 25 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-128
e7a6f3
- Removed HFI support.
e7a6f3
- Improved num-ports.patch
e7a6f3
e7a6f3
* Thu Oct 20 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-127
e7a6f3
- Merge all upstream fixes into net-tools-1.60-upstream.patch
e7a6f3
e7a6f3
* Tue Oct 18 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-126
e7a6f3
- Upstream is migrating to Sourceforge.
e7a6f3
e7a6f3
* Mon Oct 03 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-125
e7a6f3
- Fixed ether-wake(8) and mii-diag(8) man pages (#742629)
e7a6f3
e7a6f3
* Mon Sep 19 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-124
e7a6f3
- Improved arp-ethers.service unit file (#735617)
e7a6f3
e7a6f3
* Wed Aug 24 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-123
e7a6f3
- Improved netstat_stop_trim.patch to not truncate IPV6 UDP sockets (#732984)
e7a6f3
e7a6f3
* Mon Jul 04 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-122
e7a6f3
- Update for 2 digit Linux version numbers (#718610)
e7a6f3
e7a6f3
* Fri Jun 17 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-121
e7a6f3
- Added arp-ethers.service systemd unit file to run 'arp -f /etc/ethers'
e7a6f3
  on startup of system. Don't ship default /etc/ethers (#713759)
e7a6f3
e7a6f3
* Wed May 25 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-120
e7a6f3
- Do not mention /proc/net/socket in ifconfig(8) (#661905)
e7a6f3
- Merge all 'man page only fix' patches into net-tools-1.60-man.patch
e7a6f3
e7a6f3
* Thu Apr 28 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-119
e7a6f3
- Fix possible problems found by static analysis of code.
e7a6f3
e7a6f3
* Thu Apr 21 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-118
e7a6f3
- patch netstat to separate basename of -p only if it is absolute
e7a6f3
  path (in order to make argv[0]="sshd pty/0" display as sshd, and not as /0).
e7a6f3
e7a6f3
* Thu Apr 14 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-117
e7a6f3
- plipconfig man page and usage output fixes. (#694766)
e7a6f3
e7a6f3
* Mon Mar 07 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-116
e7a6f3
- Fix mii-tool/mii-diag/ether-wake to not default to eth0 because
e7a6f3
  since Fedora 15 network devices can have arbitrary names (#682367)
e7a6f3
e7a6f3
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.60-115
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e7a6f3
e7a6f3
* Fri Feb 04 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-114
e7a6f3
- Improve scanf-format.patch (#668047)
e7a6f3
e7a6f3
* Fri Jan 21 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-113
e7a6f3
- Improve route(8) man page saying that 'route mss' actually sets MTU (#671321)
e7a6f3
e7a6f3
* Mon Jan 03 2011 Jiri Popelka <jpopelka@redhat.com> - 1.60-112
e7a6f3
- Fix the handling of some of the HAVE_* flags ifdef vs if. (BerliOS #17812)
e7a6f3
e7a6f3
* Thu Dec 16 2010 Jiri Popelka <jpopelka@redhat.com> - 1.60-111
e7a6f3
- fixed mii-diag(8) man page (#663689)
e7a6f3
- fixed route(8) man page (#664171)
e7a6f3
e7a6f3
* Thu Dec 16 2010 Jiri Popelka <jpopelka@redhat.com> - 1.60-110
e7a6f3
- fixed ifconfig(8) man page (#663469)
e7a6f3
e7a6f3
* Wed Nov 17 2010 Jiri Popelka <jpopelka@redhat.com> - 1.60-109
e7a6f3
- improved netstat(8) man page (#614931)
e7a6f3
e7a6f3
* Mon Nov 01 2010 Jiri Popelka <jpopelka@redhat.com> - 1.60-108
e7a6f3
- added netstat(8) support for RcvbufErrors, SndbufErrors (BerliOS #17645)
e7a6f3
e7a6f3
* Wed Sep 29 2010 jkeating - 1.60-107
e7a6f3
- Rebuilt for gcc bug 634757
e7a6f3
e7a6f3
* Thu Sep 16 2010  Jiri Popelka <jpopelka@redhat.com> - 1.60-106
e7a6f3
- HFI support
e7a6f3
e7a6f3
* Thu Sep 16 2010  Jiri Popelka <jpopelka@redhat.com> - 1.60-105
e7a6f3
- fixed memory leak in netstat when run with -c option
e7a6f3
e7a6f3
* Tue Aug 10 2010  Jiri Popelka <jpopelka@redhat.com> - 1.60-104
e7a6f3
- improved statistics-doubleword.patch (Bug #579854)
e7a6f3
e7a6f3
* Mon Jun 14 2010  Jiri Popelka <jpopelka@redhat.com> - 1.60-103
e7a6f3
- updated mii-tool to support gigabit links (#539575)
e7a6f3
e7a6f3
* Wed Apr  7 2010  Jiri Popelka <jpopelka@redhat.com> - 1.60-102
e7a6f3
- fixed statistics.c to use unsigned long long (instead of int) to handle 64 bit integers (Bug #579854, Debian #561161)
e7a6f3
- fixed typo in statistics.c (Bug #579855)
e7a6f3
e7a6f3
* Sat Jan  2 2010  Jiri Popelka <jpopelka@redhat.com> - 1.60-101
e7a6f3
- fixed overflow patch (#551625)
e7a6f3
- ifconfig interface:0 del <IP> will remove the Aliased IP on IA64 (#473211)
e7a6f3
- interface slip: cast keepalive/outfill to unsigned long to fix warnings on 64bit hosts -- no functional changes since these only have an 8bit range anyways
e7a6f3
- interface: fix IPv6 parsing of interfaces with large indexes (> 255) (Debian #433543)
e7a6f3
e7a6f3
* Mon Dec 21 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-100
e7a6f3
- Move hostname to separate package
e7a6f3
e7a6f3
* Thu Dec  3 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-99
e7a6f3
- return defining of BuildRoot even it's no longer necessary
e7a6f3
  (https://fedoraproject.org/wiki/Packaging:Guidelines#BuildRoot_tag)
e7a6f3
  to silent rpmlint false warning
e7a6f3
e7a6f3
* Wed Nov  4 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-98
e7a6f3
- in mii-tool.c use <linux/mii.h> instead of "mii.h" and fix Bug #491358
e7a6f3
e7a6f3
* Thu Oct 29 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-97
e7a6f3
- Make "hostname -s" display host name cut at the first dot (no
e7a6f3
  matter if the host name resolves or not) (bug #531702)
e7a6f3
e7a6f3
* Wed Sep 30 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-96
e7a6f3
- netplug moved to separate package
e7a6f3
- #319981 and #322901 - minor man pages changes
e7a6f3
- applied changes from berlios cvs, which fix: Berlios #16232, Gentoo #283759 and polish Makefile and slattach 
e7a6f3
e7a6f3
* Tue Sep 1 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-95
e7a6f3
- netstat - avoid name resolution for listening or established sockets (-l) by return fast. 
e7a6f3
- netstat - --continuous should flush stdout
e7a6f3
- added missing man pages (iptunnel, ipmaddr, netplug, netplug.d, netplugd.conf)
e7a6f3
- added note about obsolete commands to existing man pages 
e7a6f3
- let the user know that ifconfig can correctly show only first 8 bytes of Infiniband hw address
e7a6f3
e7a6f3
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.60-94
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e7a6f3
e7a6f3
* Wed Jul  8 2009  Jiri Popelka <jpopelka@redhat.com> - 1.60-93
e7a6f3
- scanf format length fix (non exploitable?) from Fabian Hugelshofer <hugelshofer2006@gmx.ch>
e7a6f3
- URL tag changed to http://net-tools.berlios.de/
e7a6f3
e7a6f3
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.60-92
e7a6f3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
e7a6f3
e7a6f3
* Thu Oct 16 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.60-91
e7a6f3
- fixed tcp timers info in netstat (#466845)
e7a6f3
e7a6f3
* Thu Sep 25 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.60-90
e7a6f3
- fixed ifconfig's man page (#454271, #432328)
e7a6f3
e7a6f3
* Tue Jul 15 2008 Zdenek Prikryl <zprikryl@redhat.com> - 1.60-89
e7a6f3
- fixed man pages for arp (#446195)
e7a6f3
- fixed netstat --interfaces option (#446187)
e7a6f3
- fixed clearing flags in ifconfig (#450252)
e7a6f3
e7a6f3
* Tue Jul  8 2008 Radek Vokál <rvokal@redhat.com> - 1.60-88
e7a6f3
- netstat displays correct sctp statistics (#445535) <zprikryl@redhat.com>
e7a6f3
e7a6f3
* Tue Mar  4 2008 Radek Vokál <rvokal@redhat.com> - 1.60-87
e7a6f3
- fix buffer for newer kernels (#435554)
e7a6f3
e7a6f3
* Mon Feb 25 2008 Radek Vokal <rvokal@redhat.com> - 1.60-86
e7a6f3
- fix for GCC 4.3
e7a6f3
e7a6f3
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.60-85
e7a6f3
- Autorebuild for GCC 4.3
e7a6f3
e7a6f3
* Thu Aug 23 2007 Radek Vokál <rvokal@redhat.com> - 1.60-84
e7a6f3
- rebuilt
e7a6f3
e7a6f3
* Fri Jun  8 2007 Radek Vokál <rvokal@redhat.com> - 1.60-83
e7a6f3
- fix netplugd init script (#242919)
e7a6f3
e7a6f3
* Tue May 22 2007 Radek Vokál <rvokal@redhat.com> - 1.60-82
e7a6f3
- better SELinux patch by <dwalsh@redhat.com>
e7a6f3
e7a6f3
* Tue Mar 27 2007 Radek Vokál <rvokal@redhat.com> - 1.60-81
e7a6f3
- fix segfault for empty interface (#234045)
e7a6f3
e7a6f3
* Thu Mar 15 2007 Radek Vokál <rvokal@redhat.com> - 1.60-80
e7a6f3
- we don't have -n/--node option (#225554)
e7a6f3
e7a6f3
* Thu Feb 22 2007 Radek Vokál <rvokal@redhat.com> - 1.60-79
e7a6f3
- quiet sctp (#229232)
e7a6f3
e7a6f3
* Mon Feb 19 2007 Radek Vokál <rvokal@redhat.com> - 1.60-78
e7a6f3
- spec file cleanup (#226193)
e7a6f3
e7a6f3
* Tue Jan 30 2007 Radek Vokál <rvokal@redhat.com> - 1.60-77
e7a6f3
- touch /etc/ethers (#225381)
e7a6f3
e7a6f3
* Wed Dec 27 2006 Radek Vokál <rvokal@redhat.com> - 1.60-76
e7a6f3
- fix arp unaligned access (#220438)
e7a6f3
e7a6f3
* Wed Oct  4 2006 Radek Vokal <rvokal@redhat.com> - 1.60-75
e7a6f3
- fix nameif crash for 16char long interface names (#209120)
e7a6f3
e7a6f3
* Mon Oct  2 2006 Radek Vokal <rvokal@redhat.com> - 1.60-74
e7a6f3
- fix -I option for nestat, works as -I=eth0 again.
e7a6f3
- add dist tag
e7a6f3
e7a6f3
* Mon Aug  7 2006 Radek Vokal <rvokal@redhat.com> - 1.60-73
e7a6f3
- directory entries . and .. should be skipped
e7a6f3
e7a6f3
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.60-72.1
e7a6f3
- rebuild
e7a6f3
e7a6f3
* Wed Jun  7 2006 Radek Vokal <rvokal@redhat.com> - 1.60-72
e7a6f3
- switch --trim to --notrim .. make it less confusing 
e7a6f3
e7a6f3
* Fri May 19 2006 Radek Vokal <rvokal@redhat.com> - 1.60-71
e7a6f3
- BuildRequires: libselinux-devel (#191737)
e7a6f3
e7a6f3
* Tue May 09 2006 Radek Vokál <rvokal@redhat.com> - 1.60-70
e7a6f3
- add netdevice.h, fix x25
e7a6f3
- fix ifconfig crash when interface name is too long (#190703)
e7a6f3
e7a6f3
* Tue May 02 2006 Radek Vokál <rvokal@redhat.com> - 1.60-69
e7a6f3
- fix arp man page to correspond to man ethers (#190425)
e7a6f3
e7a6f3
* Fri Apr 14 2006 Radek Vokál <rvokal@redhat.com> - 1.60-68
e7a6f3
- display sctp connections using netstat -S <jbj@redhat.com>
e7a6f3
e7a6f3
* Thu Apr 13 2006 Radek Vokál <rvokal@redhat.com> - 1.60-67
e7a6f3
- fix wrong definition of _PATH_PROCNET_X25_ROUTE (#188786)
e7a6f3
e7a6f3
* Thu Apr 06 2006 Radek Vokál <rvokal@redhat.com> - 1.60-66
e7a6f3
- add note about -T to netstat
e7a6f3
e7a6f3
* Thu Mar 30 2006 Radek Vokál <rvokal@redhat.com> - 1.60-65
e7a6f3
- add note to ifconfig(8) about supported format for IPv4 addresses (#176661)
e7a6f3
e7a6f3
* Thu Mar 16 2006 Radek Vokál <rvokal@redhat.com> - 1.60-64
e7a6f3
- remove duplicate arp entries (#185604)
e7a6f3
e7a6f3
* Thu Feb 23 2006 Radek Vokál <rvokal@redhat.com> - 1.60-63
e7a6f3
- show inodes in netstat (#180974)
e7a6f3
e7a6f3
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.60-62.1
e7a6f3
- bump again for double-long bug on ppc(64)
e7a6f3
e7a6f3
* Fri Feb 10 2006 Radek Vokál <rvokal@redhat.com> - 1.60-62
e7a6f3
- new option for netstat - -T stops trimming remote and local addresses (#176465)
e7a6f3
e7a6f3
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.60-61.1
e7a6f3
- rebuilt for new gcc4.1 snapshot and glibc changes
e7a6f3
e7a6f3
* Mon Feb 06 2006 Radek Vokál <rvokal@redhat.com> 1.60-61
e7a6f3
- mii-tool manpage fixed (#180055)
e7a6f3
e7a6f3
* Tue Jan 17 2006 Radek Vokal <rvokal@redhat.com> 1.60-60
e7a6f3
- forget to enable the new selinux option :( - config.make changed
e7a6f3
e7a6f3
* Tue Jan 17 2006 Radek Vokal <rvokal@redhat.com> 1.60-59
e7a6f3
- new option for nestat, -Z shows selinux context. Patch by <dwalsh@redhat.com>
e7a6f3
e7a6f3
* Mon Jan 02 2006 Radek Vokal <rvokal@redhat.com> 1.60-58
e7a6f3
- clear static buffers in interface.c by <drepper@redhat.com> (#176714)
e7a6f3
e7a6f3
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
e7a6f3
- rebuilt
e7a6f3
e7a6f3
* Sat Oct 15 2005 Radek Vokal <rvokal@redhat.com> 1.60-57
e7a6f3
- add note to hostname man page about gethostbyname() (#166581)
e7a6f3
- don't ship any rarp man page (#170537)
e7a6f3
e7a6f3
* Wed Aug 03 2005 Radek Vokal <rvokal@redhat.com> 1.60-56
e7a6f3
- fixed buffer overflow in arp (#164695)
e7a6f3
e7a6f3
* Wed Jul 20 2005 Radek Vokal <rvokal@redhat.com> 1.60-55
e7a6f3
- ifconfig - fixed virtual interface dropping (#162888)
e7a6f3
e7a6f3
* Wed Jun 22 2005 Radek Vokal <rvokal@redhat.com> 1.60-54
e7a6f3
- fr man pages are back (#159702)
e7a6f3
e7a6f3
* Mon Jun 06 2005 Radek Vokal <rvokal@redhat.com> 1.60-53
e7a6f3
- etherwake man page changed to ether-wake (#159156)
e7a6f3
e7a6f3
* Tue Apr 26 2005 Radek Vokal <rvokal@redhat.com> 1.60-52
e7a6f3
- don't show "duplicate line" warning (#143933)
e7a6f3
- netstat has new statistcs (#133032)
e7a6f3
- /etc/neplug is owned by net-tools (#130621)
e7a6f3
e7a6f3
* Tue Apr 05 2005 Radek Vokal <rvokal@redhat.com> 1.60-51
e7a6f3
- flush output in mii-tool (#152568)
e7a6f3
e7a6f3
* Wed Mar 30 2005 Radek Vokal <rvokal@redhat.com> 1.60-50
e7a6f3
- added mii-diag tool
e7a6f3
- added newer ether-wake
e7a6f3
- remove useless -i option from ifconfig
e7a6f3
- stop trimming interface names (#152457)
e7a6f3
e7a6f3
* Wed Mar 16 2005 Elliot Lee <sopwith@redhat.com>
e7a6f3
- rebuilt
e7a6f3
e7a6f3
* Tue Mar 01 2005 Radek Vokal <rvokal@redhat.com> 1.60-48
e7a6f3
- behaviour of netstat -i option changed (#115987)
e7a6f3
- netstat -i shows all interface, -I<Iface> only one
e7a6f3
e7a6f3
* Mon Feb 28 2005 Radek Vokal <rvokal@redhat.com> 1.60-47
e7a6f3
- added RPM_OPT_FLAGS
e7a6f3
- execshield patch for netplug <t8m@redhat.com>
e7a6f3
e7a6f3
* Wed Feb 16 2005 Radek Vokal <rvokal@redhat.com> 1.60-46
e7a6f3
- small typo in german translation (#148775)
e7a6f3
e7a6f3
* Wed Feb 09 2005 Radek Vokal <rvokal@redhat.com> 1.60-45
e7a6f3
- included infiniband support (#147396) <tduffy@sun.com>
e7a6f3
- added etherwake man page
e7a6f3
e7a6f3
* Mon Feb 07 2005 Radek Vokal <rvokal@redhat.com> 1.60-44
e7a6f3
- net-plug-1.2.9 - no changes, upstream included Red Hat patches
e7a6f3
- ether-wake-1.08 - few changes in implementation (#145718)
e7a6f3
e7a6f3
* Mon Jan 10 2005 Radek Vokal <rvokal@redhat.com> 1.60-43
e7a6f3
- don't report statistics for virtual devices (#143981) <kzak@redhat.com>
e7a6f3
- fixing translation headers - content type format
e7a6f3
- kill bitkeeper warning messages
e7a6f3
e7a6f3
* Fri Dec 03 2004 Radek Vokal <rvokal@redhat.com> 1.60-42
e7a6f3
- filter out duplicate tcp entries (#139407)
e7a6f3
e7a6f3
* Thu Nov 25 2004 Radek Vokal <rvokal@redhat.com> 1.60-41
e7a6f3
- added note to hostname(1) (#140239)
e7a6f3
- fixed --num-ports option for netstat (#115100)
e7a6f3
e7a6f3
* Thu Nov 11 2004 Radek Vokal <rvokal@redhat.com> 1.60-40
e7a6f3
- mii-tool(8) fixed, labeled as obsolete, added info (#138687)
e7a6f3
- netstat crashing on i64 fixed (#138804) Patch by <Andreas.Hirstius@cern.ch>
e7a6f3
e7a6f3
* Thu Nov 04 2004 Radek Vokal <rvokal@redhat.com> 1.60-39
e7a6f3
- IBM patch for netstat -s returning negative values on 64bit arch (#144064)
e7a6f3
- broadcast calulated if only netmask provided (#60509)
e7a6f3
e7a6f3
* Tue Nov 02 2004 Radek Vokal <rvokal@redhat.com> 1.60-38
e7a6f3
- fixed fail to assign the specified netmask before adress is assigned
e7a6f3
- patch by Malita, Florin <florin.malita@glenayre.com>
e7a6f3
e7a6f3
* Wed Sep 29 2004 Radek Vokal <rvokal@redhat.com> 1.60-37
e7a6f3
- spec file updated, added conversion for french and portugal man pages to UTF-8
e7a6f3
e7a6f3
* Mon Sep 06 2004 Radek Vokal <rvokal@redhat.com> 1.60-36
e7a6f3
- parse error fixed (#131539)
e7a6f3
e7a6f3
* Fri Sep 03 2004 Radek Vokal <rvokal@redhat.com> 1.60-35
e7a6f3
- The return value of nameif was wrong (#129032) - patch from Fujitsu QA 
e7a6f3
e7a6f3
* Mon Aug 30 2004 Radek Vokal <rvokal@redhat.com> 1.60-34
e7a6f3
- Trunc patch added (#128359)
e7a6f3
e7a6f3
* Mon Aug 30 2004 Radek Vokal <rvokal@redhat.com> 1.60-33
e7a6f3
- Added patch for SI units by Tom "spot" Callaway <tcallawa@redhat.com> #118006
e7a6f3
e7a6f3
* Tue Aug 17 2004 Phil Knirsch <pknirsch@redhat.com> 1.60-32
e7a6f3
- Fix installopts for netplug.
e7a6f3
e7a6f3
* Sun Aug 08 2004 Alan Cox <alan@redhat.com> 1.60-31
e7a6f3
- Build requires gettext.
e7a6f3
e7a6f3
* Mon Aug 02 2004 Phil Knirsch <pknirsch@redhat.com> 1.60-30
e7a6f3
- Update to latest netplugd version.
e7a6f3
e7a6f3
* Mon Jul 12 2004 Phil Knirsch <pknirsch@redhat.com> 1.60-29
e7a6f3
- Fixed initscript patch for netplug (#127351)
e7a6f3
e7a6f3
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
e7a6f3
- rebuilt
e7a6f3
e7a6f3
* Fri May 14 2004 Phil Knirsch <pknirsch@redhat.com> 1.60-27
e7a6f3
- Fixed compiler warning/error in netplug.
e7a6f3
- Updated to netplug-1.2.6 for security update and fixes.
e7a6f3
e7a6f3
* Thu May 06 2004 Phil Knirsch <pknirsch@redhat.com> 1.60-26
e7a6f3
- Updated netplugd to latest upstream version.
e7a6f3
- Fixed execshield problem in main.c of netplugd.
e7a6f3
e7a6f3
* Thu Apr 15 2004 Phil Knirsch <pknirsch@redhat.com> 1.60-25
e7a6f3
- Fixed several possible buffer overflows (#120343)
e7a6f3
e7a6f3
* Tue Mar 30 2004 Harald Hoyer <harald@redhat.com> - 1.60-24
e7a6f3
- fixed compilation with gcc34
e7a6f3
e7a6f3
* Tue Mar 23 2004 Karsten Hopp <karsten@redhat.de> 1.60-23 
e7a6f3
- add chkconfig call in post and preun, fix init script (#116555)
e7a6f3
e7a6f3
* Thu Feb 19 2004 Phil Knirsch <pknirsch@redhat.com>
e7a6f3
- Added netplug-1.2.1 to net-tools (FR #103419).
e7a6f3
e7a6f3
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
e7a6f3
- rebuilt
e7a6f3
e7a6f3
* Mon Aug 25 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-20.1
e7a6f3
-rebuilt
e7a6f3
e7a6f3
* Mon Aug 25 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-20
e7a6f3
- interface option now works as described in the man page (#61113).
e7a6f3
e7a6f3
* Tue Aug 19 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-19.1
e7a6f3
- rebuilt
e7a6f3
e7a6f3
* Tue Aug 19 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-19
e7a6f3
- Fixed trailing blank bug in hostname output (#101263).
e7a6f3
- Remove -O2 fir alpha (#78955).
e7a6f3
- Updated netstat statistic output, was still broken.
e7a6f3
e7a6f3
* Tue Jun 17 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-18.1
e7a6f3
- rebuilt
e7a6f3
e7a6f3
* Tue Jun 17 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-18
e7a6f3
- fix ether-wake.c build with gcc 3.3
e7a6f3
- rebuilt
e7a6f3
e7a6f3
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
e7a6f3
- rebuilt
e7a6f3
e7a6f3
* Wed Jun 04 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-16.1
e7a6f3
- Bumped release and rebuilt
e7a6f3
e7a6f3
* Fri May 23 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-16
e7a6f3
- Fixed ether-wake usage output (#55801).
e7a6f3
e7a6f3
* Thu May 22 2003 Jeremy Katz <katzj@redhat.com> 1.60-15
e7a6f3
- fix build with gcc 3.3
e7a6f3
e7a6f3
* Thu May 22 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-14
e7a6f3
- Fixed wrong manpage (#55473).
e7a6f3
e7a6f3
* Wed May 21 2003 Phil Knirsch <pknirsch@redhat.com>
e7a6f3
- Added inet6-lookup patch from John van Krieken (#84108).
e7a6f3
- Fixed outdated link in ifconfig manpage (#91287).
e7a6f3
e7a6f3
* Tue May 20 2003 Phil Knirsch <pknirsch@redhat.com>
e7a6f3
- Fixed incorrect address display for ipx (#46434).
e7a6f3
- Fixed wrongly installed manpage dirs (#50664).
e7a6f3
e7a6f3
* Wed Mar 19 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-13
e7a6f3
- Fixed nameif problem (#85748).
e7a6f3
e7a6f3
* Fri Feb 07 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-12
e7a6f3
- Fixed -s parameter.
e7a6f3
- Fix /proc statistics for -nic operation.
e7a6f3
- Fixed -i operation in general.
e7a6f3
e7a6f3
* Mon Jan 27 2003 Phil Knirsch <pknirsch@redhat.com> 1.60-11
e7a6f3
- Disable smp build.
e7a6f3
e7a6f3
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 1.60-10
e7a6f3
- rebuilt
e7a6f3
e7a6f3
* Tue Dec 17 2002 Phil Knirsch <pknirsch@redhat.com> 1.60-9
e7a6f3
- Rebuild
e7a6f3
- Copyright -> License.
e7a6f3
e7a6f3
* Thu Dec 05 2002 Elliot Lee <sopwith@redhat.com> 1.60-8
e7a6f3
- Rebuild
e7a6f3
e7a6f3
* Tue Aug 06 2002 Phil Knirsch <pknirsch@redhat.com> 
e7a6f3
- Added patch from Norm for a corrected output.
e7a6f3
e7a6f3
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
e7a6f3
- automated rebuild
e7a6f3
e7a6f3
* Thu May 23 2002 Tim Powers <timp@redhat.com>
e7a6f3
- automated rebuild
e7a6f3
e7a6f3
* Fri Apr 12 2002 Jeremy Katz <katzj@redhat.com>
e7a6f3
- fix nstrcmp() to be correct in the case where there are many devices 
e7a6f3
  of the same type, eg, "eth10" > "eth1"  (#61436)
e7a6f3
e7a6f3
* Tue Jul 31 2001 Bill Nottingham <notting@redhat.com>
e7a6f3
- do *not* use SIOCDEVPRIVATE for MII ioctls
e7a6f3
e7a6f3
* Fri Jun  1 2001 Preston Brown <pbrown@redhat.com>
e7a6f3
- include wake-on-lan wakeup utility, ether-wake by Donald Becker
e7a6f3
e7a6f3
* Wed Apr 18 2001 Crutcher Dunnavant <crutcher@redhat.com>
e7a6f3
- itterate to 1.60
e7a6f3
e7a6f3
* Sun Apr  8 2001 Preston Brown <pbrown@redhat.com>
e7a6f3
- use find_lang macro
e7a6f3
- less specific locale dirs for man pages
e7a6f3
e7a6f3
* Mon Apr  2 2001 Preston Brown <pbrown@redhat.com>
e7a6f3
- don't use this version of rarp, doesn't work with our 2.4.
e7a6f3
e7a6f3
* Tue Feb  6 2001 Crutcher Dunnavant <crutcher@redhat.com>
e7a6f3
- fixed man page typo, closing bug #25921
e7a6f3
e7a6f3
* Thu Feb  1 2001 Crutcher Dunnavant <crutcher@redhat.com>
e7a6f3
- applied twaugh's patch to close bug #25474
e7a6f3
- which was a buffer length bug.
e7a6f3
e7a6f3
* Wed Dec 27 2000 Jeff Johnson <jbj@redhat.com>
e7a6f3
- locales not initialized correctly (#20570).
e7a6f3
- arp: document -e option (#22040).
e7a6f3
e7a6f3
* Sat Oct  7 2000 Jeff Johnson <jbj@redhat.com>
e7a6f3
- update to 1.57.
e7a6f3
- MTU (and other) option(s) not parsed correctly (#9215).
e7a6f3
- allow more granularity iwth --numeric (#9129).
e7a6f3
e7a6f3
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
e7a6f3
- automatic rebuild
e7a6f3
e7a6f3
* Tue Jun  6 2000 Jeff Johnson <jbj@redhat.com>
e7a6f3
- update to 1.56.
e7a6f3
- FHS packaging.
e7a6f3
e7a6f3
* Sat Apr 15 2000 Jeff Johnson <jbj@redhat.com>
e7a6f3
- update to 1.55.
e7a6f3
e7a6f3
* Tue Mar  7 2000 Jeff Johnson <jbj@redhat.com>
e7a6f3
- rebuild for sparc baud rates > 38400.
e7a6f3
e7a6f3
* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
e7a6f3
- fix description
e7a6f3
e7a6f3
* Fri Jan 14 2000 Jeff Johnson <jbj@redhat.com>
e7a6f3
- fix "netstat -ci" (#6904).
e7a6f3
- document more netstat options (#7429).
e7a6f3
e7a6f3
* Thu Jan 13 2000 Jeff Johnson <jbj@redhat.com>
e7a6f3
- update to 1.54.
e7a6f3
- enable "everything but DECnet" including IPv6.
e7a6f3
e7a6f3
* Sun Aug 29 1999 Jeff Johnson <jbj@redhat.com>
e7a6f3
- update to 1.53.
e7a6f3
e7a6f3
* Wed Jul 28 1999 Jeff Johnson <jbj@redhat.com>
e7a6f3
- plug "netstat -c" fd leak (#3620).
e7a6f3
e7a6f3
* Thu Jun 17 1999 Jeff Johnson <jbj@redhat.com>
e7a6f3
- plug potential buffer overruns.
e7a6f3
e7a6f3
* Sat Jun 12 1999 John Hardin <jhardin@wolfenet.com>
e7a6f3
- patch to recognize ESP and GRE protocols for VPN masquerade
e7a6f3
e7a6f3
* Fri Apr 23 1999 Jeff Johnson <jbj@redhat.com>
e7a6f3
- update to 1.52.
e7a6f3
e7a6f3
* Thu Mar 25 1999 Jeff Johnson <jbj@redhat.com>
e7a6f3
- update interface statistics continuously (#1323)
e7a6f3
e7a6f3
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
e7a6f3
- auto rebuild in the new build environment (release 2)
e7a6f3
e7a6f3
* Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
e7a6f3
- update to 1.51.
e7a6f3
- strip binaries.
e7a6f3
e7a6f3
* Tue Feb  2 1999 Jeff Johnson <jbj@redhat.com>
e7a6f3
- update to 1.50.
e7a6f3
- added slattach/plipconfig/ipmaddr/iptunnel commands.
e7a6f3
- enabled translated man pages.
e7a6f3
e7a6f3
* Tue Dec 15 1998 Jakub Jelinek <jj@ultra.linux.cz>
e7a6f3
- update to 1.49.
e7a6f3
e7a6f3
* Sat Dec  5 1998 Jeff Johnson <jbj@redhat.com>
e7a6f3
- update to 1.48.
e7a6f3
e7a6f3
* Thu Nov 12 1998 Jeff Johnson <jbj@redhat.com>
e7a6f3
- update to 1.47.
e7a6f3
e7a6f3
* Wed Sep  2 1998 Jeff Johnson <jbj@redhat.com>
e7a6f3
- update to 1.46
e7a6f3
e7a6f3
* Thu Jul  9 1998 Jeff Johnson <jbj@redhat.com>
e7a6f3
- build root
e7a6f3
- include ethers.5
e7a6f3
e7a6f3
* Thu Jun 11 1998 Aron Griffis <agriffis@coat.com>
e7a6f3
- upgraded to 1.45
e7a6f3
- patched hostname.c to initialize buffer
e7a6f3
- patched ax25.c to use kernel headers
e7a6f3
e7a6f3
* Fri May 01 1998 Prospector System <bugs@redhat.com>
e7a6f3
- translations modified for de, fr, tr
e7a6f3
e7a6f3
* Fri Feb 27 1998 Jason Spangler <jasons@usemail.com>
e7a6f3
- added config patch
e7a6f3
e7a6f3
* Fri Feb 27 1998 Jason Spangler <jasons@usemail.com>
e7a6f3
- changed to net-tools 1.432
e7a6f3
- removed old glibc 2.1 patch
e7a6f3
 
e7a6f3
* Wed Oct 22 1997 Erik Troan <ewt@redhat.com>
e7a6f3
- added extra patches for glibc 2.1
e7a6f3
e7a6f3
* Tue Oct 21 1997 Erik Troan <ewt@redhat.com>
e7a6f3
- included complete set of network protocols (some were removed for
e7a6f3
  initial glibc work)
e7a6f3
e7a6f3
* Wed Sep 03 1997 Erik Troan <ewt@redhat.com>
e7a6f3
- updated glibc patch for glibc 2.0.5
e7a6f3
e7a6f3
* Thu Jun 19 1997 Erik Troan <ewt@redhat.com>
e7a6f3
- built against glibc
e7a6f3
- updated to 1.33