Blame SPECS/net-tools.spec

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