auto-import changelog data from iputils-20020927-2.src.rpm
Wed Jan 22 2003 Tim Powers <timp@redhat.com> - rebuilt Fri Nov 29 2002 Phil Knirsch <pknirsch@redhat.com> 20020927-1 - Updated to latest upstream version. Fri Jun 21 2002 Tim Powers <timp@redhat.com> 20020124-8 - automated rebuild Tue Jun 18 2002 Phil Knirsch <pknirsch@redhat.com> 20020124-7 - Added new BuildPreReqs for docbook-utils and perl-SGMLSpm (#66661) - Fixed ipv6 error printing problem (#66659). Sun May 26 2002 Tim Powers <timp@redhat.com> - automated rebuild Tue May 21 2002 Phil Knirsch <pknirsch@redhat.com> - Added a patch to activate the rdisc server (#64270). - Display the countermeasures warning only in verbose (#55236)
This commit is contained in:
parent
81fcf77679
commit
8045949f55
@ -1,2 +1,2 @@
|
||||
bonding-0.2.tar.gz
|
||||
iputils-ss020124.tar.gz
|
||||
iputils-ss020927.tar.gz
|
||||
|
12
iputils-20020124-countermeasures.patch
Normal file
12
iputils-20020124-countermeasures.patch
Normal file
@ -0,0 +1,12 @@
|
||||
--- iputils/ping_common.c.countermeasures Tue May 21 10:06:05 2002
|
||||
+++ iputils/ping_common.c Tue May 21 10:12:42 2002
|
||||
@@ -628,7 +628,8 @@
|
||||
tvsub(tv, &tmp_tv);
|
||||
triptime = tv->tv_sec * 1000000 + tv->tv_usec;
|
||||
if (triptime < 0) {
|
||||
- fprintf(stderr, "Warning: time of day goes back (%ldus), taking countermeasures.\n", triptime);
|
||||
+ if (options & F_VERBOSE)
|
||||
+ fprintf(stderr, "Warning: time of day goes back (%ldus), taking countermeasures.\n", triptime);
|
||||
triptime = 0;
|
||||
if (!(options & F_LATENCY)) {
|
||||
gettimeofday(tv, NULL);
|
43
iputils.spec
43
iputils.spec
@ -1,16 +1,18 @@
|
||||
Summary: Network monitoring tools including ping.
|
||||
Name: iputils
|
||||
Version: 20020124
|
||||
Release: 3
|
||||
Version: 20020927
|
||||
Release: 2
|
||||
Copyright: BSD
|
||||
Group: System Environment/Daemons
|
||||
Source0: http://ftp.sunet.se/pub/os/Linux/ip-routing/iputils-ss020124.tar.gz
|
||||
Source0: http://ftp.sunet.se/pub/os/Linux/ip-routing/iputils-ss020927.tar.gz
|
||||
Source1: bonding-0.2.tar.gz
|
||||
Patch0: iputils-20001007-rh7.patch
|
||||
Patch1: iputils-20001110-datalen.patch
|
||||
Patch2: iputils-20020124-ping_sparcfix.patch
|
||||
Patch1: iputils-20020124-ping_sparcfix.patch
|
||||
Patch2: iputils-20020124-rdisc-server.patch
|
||||
Patch3: iputils-20020124-countermeasures.patch
|
||||
Prefix: %{_prefix}
|
||||
BuildRoot: %{_tmppath}/%{name}-root
|
||||
BuildPreReq: docbook-utils perl-SGMLSpm
|
||||
|
||||
%description
|
||||
The iputils package contains basic utilities for monitoring a network,
|
||||
@ -25,8 +27,9 @@ rm -f bonding-0.2/ifenslave
|
||||
mv -f bonding-0.2/README bonding-0.2/README.ifenslave
|
||||
|
||||
%patch0 -p1 -b .rh7
|
||||
%patch1 -p1 -b .datalen
|
||||
%patch2 -p1 -b .ping_sparcfix
|
||||
%patch1 -p1 -b .ping_sparcfix
|
||||
%patch2 -p1 -b .rdisc-server
|
||||
%patch3 -p1 -b .countermeasures
|
||||
|
||||
%build
|
||||
make
|
||||
@ -36,8 +39,6 @@ make -C doc man
|
||||
%install
|
||||
rm -rf ${RPM_BUILD_ROOT}
|
||||
|
||||
make install DESTDIR=${RPM_BUILD_ROOT}
|
||||
|
||||
mkdir -p ${RPM_BUILD_ROOT}%{_sbindir}
|
||||
mkdir -p ${RPM_BUILD_ROOT}/{bin,sbin}
|
||||
install -c clockdiff ${RPM_BUILD_ROOT}%{_sbindir}/
|
||||
@ -58,10 +59,10 @@ install -c tracepath6 ${RPM_BUILD_ROOT}%{_sbindir}/
|
||||
install -c traceroute6 ${RPM_BUILD_ROOT}%{_sbindir}/
|
||||
|
||||
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man8
|
||||
install -c doc/arping.8 ${RPM_BUILD_ROOT}%{_mandir}/man8/
|
||||
install -c doc/clockdiff.8 ${RPM_BUILD_ROOT}%{_mandir}/man8/
|
||||
install -c doc/rdisc.8 ${RPM_BUILD_ROOT}%{_mandir}/man8/rdisc.8
|
||||
install -c doc/arping.8 ${RPM_BUILD_ROOT}%{_mandir}/man8/
|
||||
install -c doc/ping.8 ${RPM_BUILD_ROOT}%{_mandir}/man8/
|
||||
install -c doc/rdisc.8 ${RPM_BUILD_ROOT}%{_mandir}/man8/
|
||||
install -c doc/tracepath.8 ${RPM_BUILD_ROOT}%{_mandir}/man8/
|
||||
|
||||
%clean
|
||||
@ -89,6 +90,26 @@ rm -rf ${RPM_BUILD_ROOT}
|
||||
%{_mandir}/man8/*
|
||||
|
||||
%changelog
|
||||
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
||||
- rebuilt
|
||||
|
||||
* Fri Nov 29 2002 Phil Knirsch <pknirsch@redhat.com> 20020927-1
|
||||
- Updated to latest upstream version.
|
||||
|
||||
* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 20020124-8
|
||||
- automated rebuild
|
||||
|
||||
* Tue Jun 18 2002 Phil Knirsch <pknirsch@redhat.com> 20020124-7
|
||||
- Added new BuildPreReqs for docbook-utils and perl-SGMLSpm (#66661)
|
||||
- Fixed ipv6 error printing problem (#66659).
|
||||
|
||||
* Sun May 26 2002 Tim Powers <timp@redhat.com>
|
||||
- automated rebuild
|
||||
|
||||
* Tue May 21 2002 Phil Knirsch <pknirsch@redhat.com>
|
||||
- Added a patch to activate the rdisc server (#64270).
|
||||
- Display the countermeasures warning only in verbose (#55236)
|
||||
|
||||
* Thu Apr 18 2002 Bill Nottingham <notting@redhat.com>
|
||||
- quit trying to build HTML versions of the man pages
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user