2011-04-21 12:49:23 +00:00
|
|
|
%global cbq_version v0.7.3
|
|
|
|
Summary: Advanced IP routing and network device configuration tools
|
|
|
|
Name: iproute
|
2012-03-22 14:59:36 +00:00
|
|
|
Version: 3.3.0
|
|
|
|
Release: 1%{?dist}
|
2011-04-21 12:49:23 +00:00
|
|
|
Group: Applications/System
|
2012-03-22 14:59:36 +00:00
|
|
|
URL: http://kernel.org/pub/linux/utils/net/%{name}2/
|
|
|
|
Source0: http://kernel.org/pub/linux/utils/net/%{name}2/%{name}2-%{version}.tar.gz
|
2011-04-21 12:49:23 +00:00
|
|
|
Source1: cbq-0000.example
|
|
|
|
Source2: avpkt
|
|
|
|
Patch0: man-pages.patch
|
|
|
|
Patch1: iproute2-2.6.29-kernel.patch
|
|
|
|
Patch2: iproute2-ss050901-opt_flags.patch
|
2011-11-24 08:57:46 +00:00
|
|
|
Patch3: iproute2-sharepath.patch
|
|
|
|
Patch4: iproute2-2.6.31-tc_modules.patch
|
|
|
|
Patch5: iproute2-2.6.29-IPPROTO_IP_for_SA.patch
|
|
|
|
Patch6: iproute2-example-cbq-service.patch
|
|
|
|
Patch7: iproute2-2.6.35-print-route.patch
|
|
|
|
Patch8: iproute2-print-route-u32.patch
|
|
|
|
Patch9: iproute2-2.6.39-create-peer-veth-without-a-name.patch
|
|
|
|
Patch10: iproute2-2.6.39-lnstat-dump-to-stdout.patch
|
2011-04-21 12:49:23 +00:00
|
|
|
License: GPLv2+ and Public Domain
|
|
|
|
BuildRequires: tex(latex) tex(dvips) linuxdoc-tools
|
|
|
|
BuildRequires: flex linux-atm-libs-devel psutils db4-devel bison
|
|
|
|
BuildRequires: iptables-devel >= 1.4.5
|
2012-01-06 08:50:00 +00:00
|
|
|
BuildRequires: libnl-devel
|
2011-04-21 12:49:23 +00:00
|
|
|
Requires: iptables >= 1.4.5
|
2012-02-27 15:07:49 +00:00
|
|
|
# For the UsrMove transition period
|
|
|
|
Conflicts: filesystem < 3
|
|
|
|
Provides: /sbin/ip
|
2004-09-09 06:18:30 +00:00
|
|
|
|
|
|
|
%description
|
2011-04-21 12:49:23 +00:00
|
|
|
The iproute package contains networking utilities (ip and rtmon, for example)
|
|
|
|
which are designed to use the advanced networking capabilities of the Linux
|
|
|
|
2.4.x and 2.6.x kernel.
|
2004-09-09 06:18:30 +00:00
|
|
|
|
2009-04-24 07:49:30 +00:00
|
|
|
%package doc
|
2011-04-21 12:49:23 +00:00
|
|
|
Summary: ip and tc documentation with examples
|
|
|
|
Group: Applications/System
|
|
|
|
License: GPLv2+
|
2009-04-24 07:49:30 +00:00
|
|
|
|
|
|
|
%description doc
|
|
|
|
The iproute documentation contains howtos and examples of settings.
|
|
|
|
|
2011-04-27 09:06:53 +00:00
|
|
|
%package devel
|
|
|
|
Summary: iproute development files
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: GPLv2+
|
|
|
|
Provides: iproute-static = %{version}-%{release}
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The libnetlink static library.
|
|
|
|
|
2004-09-09 06:18:30 +00:00
|
|
|
%prep
|
2010-02-25 09:52:40 +00:00
|
|
|
%setup -q -n iproute2-%{version}
|
2010-06-21 13:54:30 +00:00
|
|
|
%patch0 -p1
|
2010-11-09 10:32:13 +00:00
|
|
|
sed -i "s/_VERSION_/%{version}/" man/man8/ss.8
|
2007-08-31 10:48:26 +00:00
|
|
|
%patch1 -p1 -b .kernel
|
|
|
|
%patch2 -p1 -b .opt_flags
|
2011-11-24 08:57:46 +00:00
|
|
|
%patch3 -p1 -b .share
|
|
|
|
%patch4 -p1 -b .ipt
|
|
|
|
%patch5 -p1 -b .ipproto
|
|
|
|
%patch6 -p1 -b .fix_cbq
|
|
|
|
%patch7 -p1 -b .print-route
|
|
|
|
%patch8 -p1 -b .print-route-u32
|
|
|
|
%patch9 -p1 -b .peer-veth-without-name
|
|
|
|
%patch10 -p1 -b .lnstat-dump-to-stdout
|
2004-09-09 06:18:30 +00:00
|
|
|
|
|
|
|
%build
|
2009-04-24 07:49:30 +00:00
|
|
|
export LIBDIR=/%{_libdir}
|
|
|
|
export IPT_LIB_DIR=/%{_lib}/xtables
|
2010-07-01 12:54:23 +00:00
|
|
|
./configure
|
2007-09-12 10:31:09 +00:00
|
|
|
make %{?_smp_mflags}
|
2008-02-21 13:38:16 +00:00
|
|
|
make -C doc
|
2004-09-09 06:18:30 +00:00
|
|
|
|
|
|
|
%install
|
2011-04-21 12:49:23 +00:00
|
|
|
mkdir -p \
|
2011-04-27 09:06:53 +00:00
|
|
|
%{buildroot}%{_includedir} \
|
2011-04-21 12:49:23 +00:00
|
|
|
%{buildroot}%{_sbindir} \
|
2011-04-27 09:06:53 +00:00
|
|
|
%{buildroot}%{_mandir}/man3 \
|
2011-04-21 12:49:23 +00:00
|
|
|
%{buildroot}%{_mandir}/man8 \
|
|
|
|
%{buildroot}%{_datadir}/tc \
|
|
|
|
%{buildroot}%{_libdir}/tc \
|
|
|
|
%{buildroot}%{_sysconfdir}/iproute2 \
|
|
|
|
%{buildroot}%{_sysconfdir}/sysconfig/cbq
|
|
|
|
|
|
|
|
for binary in \
|
|
|
|
examples/cbq.init-%{cbq_version} \
|
2012-01-27 13:51:00 +00:00
|
|
|
genl/genl \
|
2011-04-21 12:49:23 +00:00
|
|
|
ip/ifcfg \
|
|
|
|
ip/ip \
|
|
|
|
ip/routef \
|
|
|
|
ip/routel \
|
|
|
|
ip/rtpr \
|
|
|
|
misc/arpd \
|
|
|
|
misc/ifstat \
|
|
|
|
misc/lnstat \
|
|
|
|
misc/nstat \
|
|
|
|
misc/rtacct \
|
2012-01-27 13:51:00 +00:00
|
|
|
misc/ss \
|
|
|
|
tc/tc
|
2011-04-21 12:49:23 +00:00
|
|
|
do install -m755 ${binary} %{buildroot}%{_sbindir}
|
|
|
|
done
|
2012-01-27 13:51:00 +00:00
|
|
|
mv %{buildroot}%{_sbindir}/cbq.init-%{cbq_version} %{buildroot}%{_sbindir}/cbq
|
2011-04-27 12:31:25 +00:00
|
|
|
cd %{buildroot}%{_sbindir}
|
|
|
|
ln -s lnstat ctstat
|
|
|
|
ln -s lnstat rtstat
|
|
|
|
cd -
|
2011-04-21 12:49:23 +00:00
|
|
|
|
|
|
|
# Libs
|
|
|
|
for library in \
|
2011-04-27 09:06:53 +00:00
|
|
|
tc/q_atm.so \
|
|
|
|
tc/m_xt.so
|
2011-04-21 12:49:23 +00:00
|
|
|
do install -m755 ${library} %{buildroot}%{_libdir}/tc
|
|
|
|
done
|
2011-04-27 09:06:53 +00:00
|
|
|
cd %{buildroot}%{_libdir}/tc
|
|
|
|
ln -s m_xt.so m_ipt.so
|
|
|
|
cd -
|
|
|
|
|
|
|
|
# libnetlink
|
|
|
|
install -m644 include/libnetlink.h %{buildroot}%{_includedir}
|
|
|
|
install -m644 lib/libnetlink.a %{buildroot}%{_libdir}
|
2011-04-21 12:49:23 +00:00
|
|
|
|
|
|
|
# Manpages
|
|
|
|
iconv -f latin1 -t utf8 man/man8/ss.8 > man/man8/ss.8.utf8 &&
|
|
|
|
mv man/man8/ss.8.utf8 man/man8/ss.8
|
2011-04-27 09:06:53 +00:00
|
|
|
install -m644 man/man3/*.3 %{buildroot}%{_mandir}/man3
|
2011-04-21 12:49:23 +00:00
|
|
|
install -m644 man/man8/*.8 %{buildroot}%{_mandir}/man8
|
2011-04-27 09:06:53 +00:00
|
|
|
cd %{buildroot}%{_mandir}/man8
|
|
|
|
ln -s lnstat.8 ctstat.8
|
|
|
|
ln -s lnstat.8 rtstat.8
|
|
|
|
ln -s routel.8 routef.8
|
|
|
|
cd -
|
2011-04-21 12:49:23 +00:00
|
|
|
|
|
|
|
# Share files
|
|
|
|
for shared in \
|
|
|
|
netem/normal.dist \
|
|
|
|
netem/pareto.dist \
|
|
|
|
netem/paretonormal.dist
|
|
|
|
do install -m644 ${shared} %{buildroot}%{_datadir}/tc
|
|
|
|
done
|
|
|
|
|
|
|
|
# Config files
|
|
|
|
install -m644 etc/iproute2/* %{buildroot}%{_sysconfdir}/iproute2
|
|
|
|
for config in \
|
|
|
|
%{SOURCE1} \
|
|
|
|
%{SOURCE2}
|
|
|
|
do install -m644 ${config} %{buildroot}%{_sysconfdir}/sysconfig/cbq
|
|
|
|
done
|
2004-09-09 06:18:30 +00:00
|
|
|
|
|
|
|
%files
|
2007-09-12 10:31:09 +00:00
|
|
|
%dir %{_sysconfdir}/iproute2
|
2010-07-08 12:34:10 +00:00
|
|
|
%doc COPYING
|
2009-04-24 07:49:30 +00:00
|
|
|
%doc README README.decnet README.iproute2+tc README.distribution README.lnstat
|
2004-09-09 06:19:55 +00:00
|
|
|
%{_mandir}/man8/*
|
2007-09-12 10:31:09 +00:00
|
|
|
%attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/*
|
2004-09-09 06:18:30 +00:00
|
|
|
%{_sbindir}/*
|
2007-10-24 08:55:47 +00:00
|
|
|
%dir %{_datadir}/tc
|
|
|
|
%{_datadir}/tc/*
|
2008-01-21 11:54:21 +00:00
|
|
|
%dir %{_libdir}/tc/
|
|
|
|
%{_libdir}/tc/*
|
2007-09-12 10:31:09 +00:00
|
|
|
%dir %{_sysconfdir}/sysconfig/cbq
|
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/cbq/*
|
2004-09-09 06:18:30 +00:00
|
|
|
|
2009-04-24 07:49:30 +00:00
|
|
|
%files doc
|
2010-07-08 12:34:10 +00:00
|
|
|
%doc COPYING
|
2009-04-24 07:49:30 +00:00
|
|
|
%doc doc/*.ps
|
|
|
|
%doc examples
|
|
|
|
|
2011-04-27 09:06:53 +00:00
|
|
|
%files devel
|
|
|
|
%doc COPYING
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
%{_libdir}/libnetlink.a
|
|
|
|
%{_includedir}/libnetlink.h
|
|
|
|
|
2004-09-09 06:18:30 +00:00
|
|
|
%changelog
|
2012-03-22 14:59:36 +00:00
|
|
|
* Thu Mar 22 2012 Petr Šabata <contyk@redhat.com> - 3.3.0-1
|
|
|
|
- 3.3.0 bump
|
|
|
|
- Update source URL
|
|
|
|
|
2012-03-01 09:40:39 +00:00
|
|
|
* Mon Feb 27 2012 Petr Šabata <contyk@redhat.com> - 3.2.0-3
|
|
|
|
- Address dangerous /tmp files security issue (CVE-2012-1088, #797881, #797878)
|
|
|
|
|
2012-01-27 13:51:00 +00:00
|
|
|
* Fri Jan 27 2012 Petr Šabata <contyk@redhat.com> - 3.2.0-2
|
|
|
|
- Simplify the spec a bit thanks to the UsrMove feature
|
|
|
|
|
2012-01-06 08:04:18 +00:00
|
|
|
* Fri Jan 06 2012 Petr Šabata <contyk@redhat.com> - 3.2.0-1
|
|
|
|
- 3.2.0 bump
|
|
|
|
- Removing a useless, now conflicting patch (initcwnd already decumented)
|
|
|
|
|
2011-11-24 08:57:46 +00:00
|
|
|
* Thu Nov 24 2011 Petr Šabata <contyk@redhat.com> - 3.1.0-1
|
|
|
|
- 3.1.0 bump
|
|
|
|
- Point URL and Source to the new location on kernel.org
|
|
|
|
- Remove now obsolete defattr
|
|
|
|
- Dropping various patches now included upstream
|
|
|
|
- Dropping iproute2-2.6.25-segfault.patch; I fail to understand the reason for
|
|
|
|
this hack
|
|
|
|
|
|
|
|
* Tue Nov 15 2011 Petr Šabata <contyk@redhat.com> - 2.6.39-6
|
|
|
|
- ss -ul should display UDP CLOSED sockets (#691100)
|
|
|
|
|
2011-10-06 13:20:07 +00:00
|
|
|
* Thu Oct 06 2011 Petr Sabata <contyk@redhat.com> - 2.6.39-5
|
|
|
|
- Fix ss, lnstat and arpd usage and manpages
|
|
|
|
|
2011-09-07 12:55:01 +00:00
|
|
|
* Wed Sep 07 2011 Petr Sabata <contyk@redhat.com> - 2.6.39-4
|
|
|
|
- lnstat should dump (-d) to stdout instead of stderr (#736332)
|
|
|
|
|
2011-07-26 09:02:49 +00:00
|
|
|
* Tue Jul 26 2011 Petr Sabata <contyk@redhat.com> - 2.6.39-3
|
|
|
|
- Rebuild for xtables7
|
|
|
|
|
2011-07-12 11:00:49 +00:00
|
|
|
* Tue Jul 12 2011 Petr Sabata <contyk@redhat.com> - 2.6.39-2
|
|
|
|
- Rebuild for xtables6
|
|
|
|
|
2011-06-30 08:36:54 +00:00
|
|
|
* Thu Jun 30 2011 Petr Sabata <contyk@redhat.com> - 2.6.39-1
|
|
|
|
- 2.6.39 bump
|
|
|
|
|
2011-04-27 12:31:25 +00:00
|
|
|
* Wed Apr 27 2011 Petr Sabata <psabata@redhat.com> - 2.6.38.1-4
|
|
|
|
- Link [cr]tstat to lnstat
|
|
|
|
|
2011-04-27 09:06:53 +00:00
|
|
|
* Wed Apr 27 2011 Petr Sabata <psabata@redhat.com> - 2.6.38.1-3
|
|
|
|
- Install ctstat, rtstat and routef manpage symlinks
|
|
|
|
- Install m_xt & m_ipt tc modules
|
|
|
|
- Creating devel and virtual static subpackages with libnetlink
|
|
|
|
|
2011-04-21 12:49:23 +00:00
|
|
|
* Thu Apr 21 2011 Petr Sabata <psabata@redhat.com> - 2.6.38.1-2
|
|
|
|
- General cleanup
|
|
|
|
- Use global instead of define
|
|
|
|
- Buildroot removal
|
|
|
|
- Correcting URL and Source links
|
|
|
|
- Install genl, ifstat, routef, routel and rtpr (rhbz#697319)
|
|
|
|
|
2011-03-18 08:58:29 +00:00
|
|
|
* Fri Mar 18 2011 Petr Sabata <psabata@redhat.com> - 2.6.38.1-1
|
|
|
|
- 2.6.38.1 bump
|
|
|
|
|
2011-03-16 09:47:34 +00:00
|
|
|
* Wed Mar 16 2011 Petr Sabata <psabata@redhat.com> - 2.6.38-1
|
|
|
|
- 2.6.38 bump
|
|
|
|
|
2011-02-09 12:59:19 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.37-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-31 11:31:43 +00:00
|
|
|
* Mon Jan 31 2011 Petr Sabata <psabata@redhat.com> - 2.6.37-2
|
|
|
|
- man-pages.patch update, ip(8) TYPE whitespace
|
|
|
|
|
2011-01-10 16:18:29 +00:00
|
|
|
* Mon Jan 10 2011 Petr Sabata <psabata@redhat.com> - 2.6.37-1
|
|
|
|
- 2.6.37 upstream release
|
|
|
|
- ss(8) improvements patch removed (included upstream)
|
|
|
|
|
2010-12-08 13:53:17 +00:00
|
|
|
* Wed Dec 08 2010 Petr Sabata <psabata@redhat.com> - 2.6.35-10
|
|
|
|
- fix a typo in ss(8) improvements patch, rhbz#661267
|
|
|
|
|
2010-11-30 09:24:15 +00:00
|
|
|
* Tue Nov 30 2010 Petr Sabata <psabata@redhat.com> - 2.6.35-9
|
|
|
|
- ss(8) improvements patch by jpopelka; should be included in 2.6.36
|
|
|
|
|
2010-11-09 10:32:13 +00:00
|
|
|
* Tue Nov 09 2010 Petr Sabata <psabata@redhat.com> - 2.6.35-8
|
|
|
|
- rhbz#641599, use the versioned path, man-pages.patch update, prep update
|
|
|
|
|
|
|
|
* Tue Oct 12 2010 Petr Sabata <psabata@redhat.com> - 2.6.35-7
|
2010-10-12 15:54:23 +00:00
|
|
|
- Do not segfault if peer name is omitted when creating a peer veth link, rhbz#642322
|
|
|
|
|
2010-10-11 12:54:47 +00:00
|
|
|
* Mon Oct 11 2010 Petr Sabata <psabata@redhat.com> - 2.6.35-6
|
|
|
|
- Man-pages update, rhbz#641599
|
|
|
|
|
2010-09-29 21:30:32 +00:00
|
|
|
* Wed Sep 29 2010 jkeating - 2.6.35-5
|
|
|
|
- Rebuilt for gcc bug 634757
|
|
|
|
|
2010-09-21 09:48:33 +00:00
|
|
|
* Tue Sep 21 2010 Petr Sabata <psabata@redhat.com> - 2.6.35-4
|
|
|
|
- Modified man-pages.patch to fix cbq manpage, rhbz#635877
|
|
|
|
|
2010-09-21 09:00:45 +00:00
|
|
|
* Tue Sep 21 2010 Petr Sabata <psabata@redhat.com> - 2.6.35-3
|
|
|
|
- Don't print routes with negative metric fix, rhbz#628739
|
|
|
|
|
2010-08-18 07:19:58 +00:00
|
|
|
* Wed Aug 18 2010 Petr Sabata <psabata@redhat.com> - 2.6.35-2
|
|
|
|
- 'ip route get' fix, iproute2-2.6.35-print-route.patch
|
|
|
|
- rhbz#622782
|
|
|
|
|
2010-08-05 11:12:10 +00:00
|
|
|
* Thu Aug 05 2010 Petr Sabata <psabata@redhat.com> - 2.6.35-1
|
|
|
|
- 2.6.35 version bump
|
|
|
|
- iproute2-tc-priority.patch removed (included in upstream now)
|
|
|
|
|
2010-07-08 12:34:10 +00:00
|
|
|
* Thu Jul 08 2010 Petr Sabata <psabata@redhat.com> - 2.6.34-5
|
|
|
|
- Licensing guidelines compliance fix
|
|
|
|
|
2010-07-07 08:57:35 +00:00
|
|
|
* Wed Jul 07 2010 Petr Sabata <psabata@redhat.com> - 2.6.34-4
|
|
|
|
- Requires: iptables >= 1.4.5, BuildRequires: iptables-devel >= 1.4.5
|
|
|
|
|
2010-07-01 12:54:23 +00:00
|
|
|
* Thu Jul 01 2010 Petr Sabata <psabata@redhat.com> - 2.6.34-3
|
|
|
|
- Build now runs ./configure to regenerate Makefile for ipt/xt detection
|
|
|
|
|
2010-06-21 13:54:30 +00:00
|
|
|
* Mon Jun 21 2010 Petr Sabata <psabata@redhat.com> - 2.6.34-2
|
|
|
|
- iproute-tc-priority.patch, rhbz#586112
|
|
|
|
|
2010-06-21 13:14:50 +00:00
|
|
|
* Mon Jun 21 2010 Petr Sabata <psabata@redhat.com> - 2.6.34-1
|
|
|
|
- 2.6.34 version bump
|
|
|
|
|
2010-04-20 07:08:46 +00:00
|
|
|
* Tue Apr 20 2010 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.33-2
|
|
|
|
- 578729 6rd tunnel correctly 3979ef91de9ed17d21672aaaefd6c228485135a2
|
|
|
|
- change BR texlive to tex according to guidelines
|
|
|
|
|
2010-02-25 09:52:40 +00:00
|
|
|
* Thu Feb 25 2010 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.33-1
|
|
|
|
- update
|
|
|
|
|
2010-01-27 08:42:53 +00:00
|
|
|
* Tue Jan 26 2010 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.32-2
|
|
|
|
- add macvlan aka VESA support d63a9b2b1e4e3eab0d0577d0a0f412d50be1e0a7
|
|
|
|
- kernel headers 2.6.33 ab322673298bd0b8927cdd9d11f3d36af5941b93
|
|
|
|
are needed for macvlan features and probably for other added later.
|
|
|
|
- fix number of release which contains 2.6.32 kernel headers and features
|
|
|
|
but it was released as 2.6.31
|
|
|
|
|
2010-01-04 12:21:20 +00:00
|
|
|
* Mon Jan 4 2010 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.31-1
|
|
|
|
- update to 2.6.31
|
|
|
|
|
2009-11-27 13:45:57 +00:00
|
|
|
* Fri Nov 27 2009 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.29-5.1.20091106gita7a9ddbb
|
|
|
|
- 539232 patch cbq initscript
|
|
|
|
|
2009-11-27 10:20:11 +00:00
|
|
|
* Fri Nov 27 2009 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.29-5.0.20091106gita7a9ddbb
|
|
|
|
- snapshot with kernel headers for 2.6.32
|
|
|
|
|
2009-10-09 12:39:07 +00:00
|
|
|
* Fri Oct 9 2009 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.29-5.0.20091009gitdaf49fd6
|
|
|
|
- new official version isn't available but it's needed -> switch to git snapshots
|
|
|
|
|
2009-09-24 12:09:39 +00:00
|
|
|
* Thu Sep 24 2009 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.29-5
|
|
|
|
- create missing man pages
|
|
|
|
|
2009-07-25 03:31:50 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.29-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-04-24 07:49:30 +00:00
|
|
|
* Thu Apr 23 2009 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.29-3
|
|
|
|
- new iptables (xtables) bring problems to tc, when ipt is used.
|
|
|
|
rhbz#497344 still broken. tc_modules.patch brings correct paths to
|
|
|
|
xtables, but that doesn't fix whole issue.
|
|
|
|
- 497355 ip should allow creation of an IPsec SA with 'proto any'
|
|
|
|
and specified sport and dport as selectors
|
|
|
|
|
2009-04-14 11:10:55 +00:00
|
|
|
* Tue Apr 14 2009 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.29-2
|
|
|
|
- c3651bf4763d7247e3edd4e20526a85de459041b ip6tunnel: Fix no default
|
|
|
|
display of ip4ip6 tunnels
|
|
|
|
- e48f73d6a5e90d2f883e15ccedf4f53d26bb6e74 missing arpd directory
|
|
|
|
|
2009-03-25 12:49:42 +00:00
|
|
|
* Wed Mar 25 2009 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.29-1
|
|
|
|
- update to 2.6.29
|
|
|
|
- remove DDR patch which became part of sourc
|
|
|
|
- add patch with correct headers 1957a322c9932e1a1d2ca1fd37ce4b335ceb7113
|
|
|
|
|
2009-02-25 07:44:53 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.28-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-02-04 08:33:47 +00:00
|
|
|
* Wed Feb 4 2009 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.28-2
|
|
|
|
- 483484 install distribution files into /usr/share and also fixed
|
|
|
|
install paths in spec
|
|
|
|
- add the latest change from git which add DRR support
|
|
|
|
c86f34942a0ce9f8203c0c38f9fe9604f96be706
|
|
|
|
|
2009-01-19 13:02:46 +00:00
|
|
|
* Mon Jan 19 2009 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.28-1
|
|
|
|
- previous two patches were included into 2.6.28 release.
|
|
|
|
- update
|
|
|
|
|
2009-01-12 10:04:48 +00:00
|
|
|
* Mon Jan 12 2009 Marcela Mašláňová <mmaslano@redhat.com> - 2.6.27-2
|
|
|
|
- 475130 - Negative preferred lifetimes of IPv6 prefixes/addresses
|
|
|
|
displayed incorrectly
|
|
|
|
- 472878 - “ip maddr show” in IB interface causes a stack corruption
|
|
|
|
- both patches will be probably in iproute v2.6.28
|
|
|
|
|
2008-12-04 09:47:45 +00:00
|
|
|
* Thu Dec 4 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.27-1
|
|
|
|
- aead support was included into upstream version
|
|
|
|
- patch for moving libs is now deprecated
|
|
|
|
- update to 2.6.27
|
|
|
|
|
2008-08-12 13:07:16 +00:00
|
|
|
* Tue Aug 12 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.26-1
|
|
|
|
- update to 2.6.26
|
|
|
|
- clean patches
|
|
|
|
|
2008-07-22 10:23:22 +00:00
|
|
|
* Tue Jul 22 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.25-5
|
|
|
|
- fix iproute2-2.6.25-segfault.patch
|
|
|
|
|
2008-07-10 15:41:21 +00:00
|
|
|
* Thu Jul 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.6.25-4
|
|
|
|
- rebuild for new db4-4.7
|
|
|
|
|
2008-07-03 14:28:50 +00:00
|
|
|
* Thu Jul 3 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.25-3
|
2008-07-22 10:23:22 +00:00
|
|
|
- 449933 instead of failing strncpy use copying byte after byte
|
2008-07-03 14:28:50 +00:00
|
|
|
|
|
|
|
* Wed May 14 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.25-2
|
|
|
|
- allow replay setting, solve also 444724
|
|
|
|
|
2008-04-29 11:01:05 +00:00
|
|
|
* Mon Apr 21 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.25-1
|
|
|
|
- update
|
|
|
|
- remove patch for backward compatibility
|
|
|
|
- add patch for AEAD compatibility
|
|
|
|
|
2008-02-21 13:38:16 +00:00
|
|
|
* Thu Feb 21 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.23-4
|
|
|
|
- add creating ps file again. Fix was done in texlive
|
|
|
|
|
2008-02-06 15:08:41 +00:00
|
|
|
* Wed Feb 6 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.23-3
|
|
|
|
- rebuild without tetex files. It isn't working in rawhide yet. Added
|
2010-02-12 14:03:29 +00:00
|
|
|
new source for ps files.
|
2008-02-06 15:08:41 +00:00
|
|
|
- #431179 backward compatibility for previous iproute versions
|
2008-02-01 10:57:18 +00:00
|
|
|
|
2008-01-21 11:54:21 +00:00
|
|
|
* Mon Jan 21 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.23-2
|
|
|
|
- rebuild with fix tetex and linuxdoc-tools -> manual pdf
|
|
|
|
- clean unnecessary patches
|
|
|
|
- add into spec *.so objects, new BR linux-atm-libs-devel
|
|
|
|
|
2007-10-31 13:56:07 +00:00
|
|
|
* Tue Oct 31 2007 Marcela Maslanova <mmaslano@redhat.com> - 2.6.23-1
|
|
|
|
- new version from upstrem 2.3.23
|
|
|
|
|
2007-10-24 10:23:27 +00:00
|
|
|
* Tue Oct 23 2007 Marcela Maslanova <mmaslano@redhat.com> - 2.6.22-5
|
2007-10-24 08:55:47 +00:00
|
|
|
- move files from /usr/lib/tc to /usr/share/tc
|
2007-10-24 10:23:27 +00:00
|
|
|
- remove listing files twice
|
2007-10-24 08:55:47 +00:00
|
|
|
|
2007-08-31 10:48:26 +00:00
|
|
|
* Fri Aug 30 2007 Marcela Maslanova <mmaslano@redhat.com> - 2.6.22-3
|
|
|
|
- package review #225903
|
|
|
|
|
2007-08-27 20:12:51 +00:00
|
|
|
* Mon Aug 27 2007 Jeremy Katz <katzj@redhat.com> - 2.6.22-2
|
|
|
|
- rebuild for new db4
|
|
|
|
|
2007-07-11 10:08:09 +00:00
|
|
|
* Wed Jul 11 2007 Radek Vokál <rvokal@redhat.com> - 2.6.22-1
|
|
|
|
- upgrade to 2.6.22
|
|
|
|
|
2007-03-19 11:20:36 +00:00
|
|
|
* Mon Mar 19 2007 Radek Vokál <rvokal@redhat.com> - 2.6.20-2
|
|
|
|
- fix broken tc-pfifo man page (#232891)
|
|
|
|
|
2007-03-15 07:54:34 +00:00
|
|
|
* Thu Mar 15 2007 Radek Vokál <rvokal@redhat.com> - 2.6.20-1
|
|
|
|
- upgrade to 2.6.20
|
|
|
|
|
2006-12-15 13:05:19 +00:00
|
|
|
* Fri Dec 15 2006 Radek Vokál <rvokal@redhat.com> - 2.6.19-1
|
|
|
|
- upgrade to 2.6.19
|
|
|
|
|
2006-12-11 15:26:01 +00:00
|
|
|
* Mon Dec 11 2006 Radek Vokál <rvokal@redhat.com> - 2.6.18-5
|
|
|
|
- fix snapshot version
|
|
|
|
|
2006-12-01 11:17:18 +00:00
|
|
|
* Fri Dec 1 2006 Radek Vokál <rvokal@redhat.com> - 2.6.18-4
|
|
|
|
- spec file cleanup
|
|
|
|
- one more rebuilt against db4
|
|
|
|
|
2006-11-16 14:14:52 +00:00
|
|
|
* Thu Nov 16 2006 Radek Vokál <rvokal@redhat.com> - 2.6.18-3
|
|
|
|
- fix defective manpage for tc-pfifo (#215399)
|
|
|
|
|
2006-11-13 08:19:36 +00:00
|
|
|
* Mon Nov 13 2006 Radek Vokál <rvokal@redhat.com> - 2.6.18-2
|
|
|
|
- rebuilt against new db4
|
|
|
|
|
2006-10-03 07:48:06 +00:00
|
|
|
* Tue Oct 3 2006 Radek Vokal <rvokal@redhat.com> - 2.6.18-1
|
|
|
|
- upgrade to upstream 2.6.18
|
|
|
|
- initcwnd patch merged
|
|
|
|
- bug fix for xfrm monitor
|
|
|
|
- alignment fixes for cris
|
|
|
|
- documentation corrections
|
|
|
|
|
2006-10-02 13:31:17 +00:00
|
|
|
* Mon Oct 2 2006 Radek Vokal <rvokal@redhat.com> - 2.6.16-7
|
|
|
|
- fix ip.8 man page, add initcwnd option
|
|
|
|
|
2006-10-01 21:17:11 +00:00
|
|
|
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 2.6.16-6
|
|
|
|
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
|
|
|
|
|
2006-09-19 12:01:54 +00:00
|
|
|
* Tue Sep 19 2006 Radek Vokal <rvokal@redhat.com> - 2.6.16-5
|
|
|
|
- fix crash when resolving ip address
|
|
|
|
|
2006-08-21 11:52:02 +00:00
|
|
|
* Mon Aug 21 2006 Radek Vokál <rvokal@redhat.com> - 2.6.16-4
|
|
|
|
- add LOWER_UP and DORMANT flags (#202199)
|
|
|
|
- use dist tag
|
|
|
|
|
2006-07-12 06:25:09 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.6.16-3.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-06-26 08:28:22 +00:00
|
|
|
* Mon Jun 26 2006 Radek Vokál <rvokal@redhat.com> - 2.6.16-3
|
|
|
|
- improve handling of initcwnd value (#179719)
|
|
|
|
|
2006-05-28 07:44:46 +00:00
|
|
|
* Sun May 28 2006 Radek Vokál <rvokal@redhat.com> - 2.6.16-2
|
|
|
|
- fix BuildRequires: flex (#193403)
|
|
|
|
|
2006-03-27 08:12:02 +00:00
|
|
|
* Sun Mar 26 2006 Radek Vokál <rvokal@redhat.com> - 2.6.16-1
|
|
|
|
- upgrade to 2.6.16-060323
|
|
|
|
- don't hardcode /usr/lib in tc (#186607)
|
|
|
|
|
2006-02-24 07:37:14 +00:00
|
|
|
* Wed Feb 22 2006 Radek Vokál <rvokal@redhat.com> - 2.6.15-2
|
|
|
|
- own /usr/lib/tc (#181953)
|
|
|
|
- obsoletes shapecfg (#182284)
|
|
|
|
|
2006-02-11 03:36:46 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.6.15-1.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 12:16:35 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.6.15-1.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2006-01-17 18:06:02 +00:00
|
|
|
* Tue Jan 17 2006 Radek Vokal <rvokal@redhat.com> 2.6.15-1
|
|
|
|
- upgrade to 2.6.15-060110
|
|
|
|
|
2005-12-12 06:45:14 +00:00
|
|
|
* Mon Dec 12 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-11
|
|
|
|
- rebuilt
|
|
|
|
|
2005-12-09 13:26:15 +00:00
|
|
|
* Fri Dec 09 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-10
|
|
|
|
- remove backup of config files (#175302)
|
|
|
|
|
2005-11-11 11:20:24 +00:00
|
|
|
* Fri Nov 11 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-9
|
|
|
|
- use tc manpages and cbq.init from source tarball (#172851)
|
|
|
|
|
2005-11-10 07:50:52 +00:00
|
|
|
* Thu Nov 10 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-8
|
|
|
|
- new upstream source
|
|
|
|
|
2005-10-31 10:09:51 +00:00
|
|
|
* Mon Oct 31 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-7
|
|
|
|
- add warning to ip tunnel add command (#128107)
|
|
|
|
|
2005-10-08 02:16:41 +00:00
|
|
|
* Fri Oct 07 2005 Bill Nottingham <notting@redhat.com> 2.6.14-6
|
|
|
|
- update from upstream (appears to fix #170111)
|
|
|
|
|
2005-10-07 05:50:15 +00:00
|
|
|
* Fri Oct 07 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-5
|
|
|
|
- update from upstream
|
|
|
|
- fixed host_len size for memcpy (#168903) <Matt_Domsch@dell.com>
|
|
|
|
|
2005-09-23 10:03:57 +00:00
|
|
|
* Fri Sep 23 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-4
|
|
|
|
- add RPM_OPT_FLAGS
|
|
|
|
|
2005-09-19 08:05:19 +00:00
|
|
|
* Mon Sep 19 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-3
|
|
|
|
- forget to apply the patch :(
|
|
|
|
|
2005-09-19 06:58:40 +00:00
|
|
|
* Mon Sep 19 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-2
|
|
|
|
- make ip help work again (#168449)
|
|
|
|
|
2005-09-14 07:29:57 +00:00
|
|
|
* Wed Sep 14 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-1
|
|
|
|
- upgrade to ss050901 for 2.6.14 kernel headers
|
|
|
|
|
2005-08-26 09:11:31 +00:00
|
|
|
* Fri Aug 26 2005 Radek Vokal <rvokal@redhat.com> 2.6.13-3
|
|
|
|
- added /sbin/cbq script and sample configuration files (#166301)
|
|
|
|
|
2005-08-19 12:50:17 +00:00
|
|
|
* Fri Aug 19 2005 Radek Vokal <rvokal@redhat.com> 2.6.13-2
|
|
|
|
- upgrade to iproute2-050816
|
|
|
|
|
2005-08-11 08:09:38 +00:00
|
|
|
* Thu Aug 11 2005 Radek Vokal <rvokal@redhat.com> 2.6.13-1
|
|
|
|
- update to snapshot for 2.6.13+ kernel
|
|
|
|
|
2005-05-24 09:40:20 +00:00
|
|
|
* Tue May 24 2005 Radek Vokal <rvokal@redhat.com> 2.6.11-2
|
|
|
|
- removed useless initvar patch (#150798)
|
|
|
|
- new upstream source
|
|
|
|
|
2005-03-15 12:46:38 +00:00
|
|
|
* Tue Mar 15 2005 Radek Vokal <rvokal@redhat.com> 2.6.11-1
|
|
|
|
- update to iproute-2.6.11
|
|
|
|
|
2005-03-04 11:26:20 +00:00
|
|
|
* Fri Mar 04 2005 Radek Vokal <rvokal@redhat.com> 2.6.10-2
|
|
|
|
- gcc4 rebuilt
|
|
|
|
|
2005-02-16 09:14:47 +00:00
|
|
|
* Wed Feb 16 2005 Radek Vokal <rvokal@redhat.com> 2.6.10-1
|
|
|
|
- update to iproute-2.6.10
|
|
|
|
|
2004-12-23 12:23:29 +00:00
|
|
|
* Thu Dec 23 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-6
|
|
|
|
- added arpd into sbin
|
|
|
|
|
2004-11-30 12:15:25 +00:00
|
|
|
* Mon Nov 29 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-5
|
|
|
|
- debug info removed from makefile and from spec (#140891)
|
|
|
|
|
2004-11-16 15:05:23 +00:00
|
|
|
* Tue Nov 16 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-4
|
|
|
|
- source file updated from snapshot version
|
|
|
|
- endian patch adding <endian.h>
|
|
|
|
|
2004-09-20 09:08:26 +00:00
|
|
|
* Sat Sep 18 2004 Joshua Blanton <jblanton@cs.ohiou.edu> 2.6.9-3
|
|
|
|
- added installation of netem module for tc
|
|
|
|
|
2004-09-09 06:23:57 +00:00
|
|
|
* Mon Sep 06 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-2
|
|
|
|
- fixed possible buffer owerflow, path by Steve Grubb <linux_4ever@yahoo.com>
|
|
|
|
|
2004-09-09 06:23:33 +00:00
|
|
|
* Wed Sep 01 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-1
|
|
|
|
- updated to iproute-2.6.9, spec file change, patches cleared
|
|
|
|
|
2004-09-09 06:23:24 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 06:23:22 +00:00
|
|
|
* Wed May 26 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-16
|
|
|
|
- Took tons of manpages from debian, much more complete (#123952).
|
|
|
|
|
2004-09-09 06:23:17 +00:00
|
|
|
* Thu May 06 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-15
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Thu May 06 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-13.2
|
|
|
|
- Built security errata version for FC1.
|
|
|
|
|
2004-09-09 06:23:12 +00:00
|
|
|
* Wed Apr 21 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-14
|
|
|
|
- Fixed -f option for ss (#118355).
|
|
|
|
- Small description fix (#110997).
|
|
|
|
- Added initialization of some vars (#74961).
|
|
|
|
- Added patch to initialize "default" rule as well (#60693).
|
|
|
|
|
2004-09-09 06:22:43 +00:00
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Wed Nov 05 2003 Phil Knirsch <pknirsch@redhat.com> 2.4.7-12
|
|
|
|
- Security errata for netlink (CAN-2003-0856).
|
|
|
|
|
2004-09-09 06:21:50 +00:00
|
|
|
* Thu Oct 23 2003 Phil Knirsch <pknirsch@redhat.com>
|
|
|
|
- Updated to latest version. Used by other distros, so seems stable. ;-)
|
|
|
|
- Quite a few patches needed updating in that turn.
|
|
|
|
- Added ss (#107363) and several other new nifty tools.
|
|
|
|
|
|
|
|
* Tue Jun 17 2003 Phil Knirsch <pknirsch@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Thu Jan 16 2003 Phil Knirsch <pknirsch@redhat.com> 2.4.7-7
|
|
|
|
- Added htb3-tc patch from http://luxik.cdi.cz/~devik/qos/htb/ (#75486).
|
2004-09-09 06:20:10 +00:00
|
|
|
|
|
|
|
* Fri Oct 11 2002 Bill Nottingham <notting@redhat.com> 2.4.7-6
|
|
|
|
- remove flags patch at author's request
|
|
|
|
|
2004-09-09 06:20:04 +00:00
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2004-09-09 06:20:01 +00:00
|
|
|
* Wed Jun 19 2002 Phil Knirsch <pknirsch@redhat.com> 2.4.7-4
|
|
|
|
- Don't forcibly strip binaries
|
|
|
|
|
|
|
|
* Mon May 27 2002 Phil Knirsch <pknirsch@redhat.com> 2.4.7-3
|
|
|
|
- Fixed missing diffserv and atm support in config (#57278).
|
|
|
|
- Fixed inconsistent numeric base problem for command line (#65473).
|
|
|
|
|
|
|
|
* Tue May 14 2002 Phil Knirsch <pknirsch@redhat.com> 2.4.7-2
|
|
|
|
- Added patch to fix crosscompiling by Adrian Linkins.
|
|
|
|
|
|
|
|
* Fri Mar 15 2002 Phil Knirsch <pknirsch@redhat.com> 2.4.7-1
|
2004-09-09 06:19:55 +00:00
|
|
|
- Update to latest stable release 2.4.7-now-ss010824.
|
|
|
|
- Added simple man page for ip.
|
|
|
|
|
2004-09-09 06:19:41 +00:00
|
|
|
* Wed Aug 8 2001 Bill Nottingham <notting@redhat.com>
|
|
|
|
- allow setting of allmulti & promisc flags (#48669)
|
|
|
|
|
2004-09-09 06:18:58 +00:00
|
|
|
* Mon Jul 02 2001 Than Ngo <than@redhat.com>
|
|
|
|
- fix build problem in beehive if kernel-sources is not installed
|
|
|
|
|
|
|
|
* Fri May 25 2001 Helge Deller <hdeller@redhat.de>
|
|
|
|
- updated to iproute2-2.2.4-now-ss001007.tar.gz
|
|
|
|
- bzip2 source tar file
|
|
|
|
- "License" replaces "Copyright"
|
|
|
|
- added "BuildPrereq: tetex-latex tetex-dvips psutils"
|
|
|
|
- rebuilt for 7.2
|
|
|
|
|
2004-09-09 06:18:45 +00:00
|
|
|
* Tue May 1 2001 Bill Nottingham <notting@redhat.com>
|
|
|
|
- use the system headers - the included ones are broken
|
|
|
|
- ETH_P_ECHO went away
|
|
|
|
|
2004-09-09 06:18:42 +00:00
|
|
|
* Sat Jan 6 2001 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- test for specific KERNEL_INCLUDE directories.
|
|
|
|
|
|
|
|
* Thu Oct 12 2000 Than Ngo <than@redhat.com>
|
|
|
|
- rebuild for 7.1
|
|
|
|
|
2004-09-09 06:18:35 +00:00
|
|
|
* Thu Oct 12 2000 Than Ngo <than@redhat.com>
|
|
|
|
- add default configuration files for iproute (Bug #10549, #18887)
|
|
|
|
|
2004-09-09 06:18:30 +00:00
|
|
|
* Tue Jul 25 2000 Jakub Jelinek <jakub@redhat.com>
|
|
|
|
- fix include-glibc/ to cope with glibc 2.2 new resolver headers
|
|
|
|
|
|
|
|
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
|
|
|
|
- automatic rebuild
|
|
|
|
|
|
|
|
* Sun Jun 18 2000 Than Ngo <than@redhat.de>
|
|
|
|
- rebuilt in the new build environment
|
|
|
|
- use RPM macros
|
|
|
|
- handle RPM_OPT_FLAGS
|
|
|
|
|
|
|
|
* Sat Jun 03 2000 Than Ngo <than@redhat.de>
|
|
|
|
- fix iproute to build with new glibc
|
|
|
|
|
|
|
|
* Fri May 26 2000 Ngo Than <than@redhat.de>
|
|
|
|
- update to 2.2.4-now-ss000305
|
|
|
|
- add configuration files
|
|
|
|
|
|
|
|
* Mon Sep 13 1999 Bill Nottingham <notting@redhat.com>
|
|
|
|
- strip binaries
|
|
|
|
|
|
|
|
* Mon Aug 16 1999 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- first build
|