Blame SPECS/net-tools.spec

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