jpopelka / rpms / net-tools

Forked from rpms/net-tools 4 years ago
Clone

Blame SPECS/net-tools.spec

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