iproute-vl.spec 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495
  1. ##%define date_version 070710
  2. %define cbq_version v0.7.3
  3. Summary: Advanced IP routing and network device configuration tools
  4. Summary(ja): IP ルーティング,ネットワークデバイスの設定ツール
  5. Name: iproute
  6. Version: 2.6.31
  7. Release: 3%{?_dist_release}
  8. Group: Applications/System
  9. Source: http://developer.osdl.org/dev/iproute2/download/iproute2-%{version}.tar.bz2
  10. #Source1: iproute-doc-2.6.22.tar.gz
  11. URL: http://linux-net.osdl.org/index.php/Iproute2
  12. Patch0: man-pages.patch
  13. Patch1: iproute2-2.6.29-kernel.patch
  14. Patch2: iproute2-ss050901-opt_flags.patch
  15. Patch3: iproute2-2.6.25-segfault.patch
  16. Patch4: iproute2-sharepath.patch
  17. Patch5: iproute2-2.6.31-tc_modules.patch
  18. Patch6: iproute2-2.6.29-IPPROTO_IP_for_SA.patch
  19. Patch7: iproute2-example-cbq-service.patch
  20. Patch8: iproute2-2.6.32-macvlan.patch
  21. Patch9: iproute2-2.6.33-kernel-headers.patch
  22. # VINE
  23. Patch100: iproute2-2.6.15-platex.patch
  24. License: GPLv2+
  25. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
  26. BuildRequires: tetex linuxdoc-tools
  27. BuildRequires: flex psutils db4-devel bison
  28. %description
  29. The iproute package contains networking utilities (ip and rtmon, for
  30. example) which are designed to use the advanced networking
  31. capabilities of the Linux 2.4.x and 2.6.x kernel.
  32. %description -l ja
  33. このiprouteパッケージには、カーネル 2.4.x または 2.6.x の進歩した
  34. ネットワーク技術を使うように設計された、ネットワーキングユーティリ
  35. ティが収録されています(例えばipやrtmonなどが収録されています)。
  36. %package devel
  37. Summary: Libraries, includes, etc. to develop iptables
  38. Summary(ja): iproute の開発用ライブラリ,ヘッダファイル
  39. Group: Development/Libraries
  40. Requires: %{name} = %{version}
  41. %description devel
  42. Libraries, include files, etc you can use to develop iproute2.
  43. %prep
  44. %setup -q -n iproute2-%{version}
  45. %patch0 -p1
  46. %patch1 -p1 -b .kernel
  47. %patch2 -p1 -b .opt_flags
  48. %patch3 -p1 -b .seg
  49. %patch4 -p1 -b .share
  50. %patch5 -p1 -b .ipt
  51. %patch6 -p1 -b .ipproto
  52. %patch7 -p1 -b .fix_cbq
  53. %patch8 -p1 -b .macvlan
  54. %patch9 -p1 -b .headers
  55. %patch100 -p1 -b .platex
  56. %build
  57. export LIBDIR=%{_libdir}
  58. make %{?_smp_mflags}
  59. make -C doc
  60. %install
  61. [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
  62. mkdir -p $RPM_BUILD_ROOT/sbin \
  63. $RPM_BUILD_ROOT%{_sbindir} \
  64. $RPM_BUILD_ROOT%{_mandir}/man8 \
  65. $RPM_BUILD_ROOT/%{_sysconfdir}/iproute2 \
  66. $RPM_BUILD_ROOT%{_datadir}/tc \
  67. $RPM_BUILD_ROOT%{_libdir}/tc \
  68. $RPM_BUILD_ROOT%{_libdir}/iproute2 \
  69. $RPM_BUILD_ROOT%{_includedir}/iproute2
  70. install -m 755 ip/ip ip/ifcfg ip/rtmon tc/tc $RPM_BUILD_ROOT/sbin
  71. install -m 755 misc/ss misc/nstat misc/rtacct misc/lnstat misc/arpd $RPM_BUILD_ROOT%{_sbindir}
  72. #netem is static
  73. #install -m 755 tc/q_netem.so $RPM_BUILD_ROOT%{_libdir}/tc
  74. #install -m 755 tc/q_atm.so $RPM_BUILD_ROOT%{_libdir}/tc
  75. install -m 644 netem/normal.dist netem/pareto.dist netem/paretonormal.dist $RPM_BUILD_ROOT%{_datadir}/tc
  76. install -m 644 man/man8/*.8 $RPM_BUILD_ROOT/%{_mandir}/man8
  77. rm -r $RPM_BUILD_ROOT/%{_mandir}/man8/ss.8
  78. iconv -f latin1 -t utf8 < man/man8/ss.8 > $RPM_BUILD_ROOT/%{_mandir}/man8/ss.8
  79. install -m 755 examples/cbq.init-%{cbq_version} $RPM_BUILD_ROOT/sbin/cbq
  80. install -d -m 755 $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/cbq
  81. install -m 644 lib/lib*.a $RPM_BUILD_ROOT%{_libdir}/iproute2
  82. install -m 644 include/*.h $RPM_BUILD_ROOT%{_includedir}/iproute2
  83. install -m 644 etc/iproute2/* $RPM_BUILD_ROOT%{_sysconfdir}/iproute2
  84. cp -f etc/iproute2/* $RPM_BUILD_ROOT/%{_sysconfdir}/iproute2
  85. rm -rf $RPM_BUILD_ROOT/%{_libdir}/debug/*
  86. #copy the tex file from source for time when tex was broken
  87. #source1 was created from last functional version
  88. #tar -xvzf %{SOURCE1}
  89. #mkdir -p $RPM_BUILD_ROOT/%{_defaultdocdir}/%{name}-%{version}
  90. #cd %{name}-doc-2.6.22
  91. #cp -pR *.ps ../doc
  92. #create example avpkt file
  93. cat <<EOF > $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/cbq/cbq-0000.example
  94. DEVICE=eth0,10Mbit,1Mbit
  95. RATE=128Kbit
  96. WEIGHT=10Kbit
  97. PRIO=5
  98. RULE=192.168.1.0/24
  99. EOF
  100. cat <<EOF > $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/cbq/avpkt
  101. AVPKT=3000
  102. EOF
  103. %clean
  104. [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
  105. %files
  106. %defattr(-,root,root,-)
  107. %dir %{_sysconfdir}/iproute2
  108. %doc iproute2-%{version}/README.decnet iproute2-%{version}/README.iproute2+tc iproute2-%{version}/RELNOTES iproute2-%{version}/examples/README.cbq
  109. %doc iproute2-%{version}/doc/*.ps
  110. %doc iproute2-%{version}/examples
  111. /sbin/*
  112. %{_mandir}/man8/*
  113. %attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/*
  114. %{_sbindir}/*
  115. %dir %{_datadir}/tc
  116. %{_datadir}/tc/*
  117. %dir %{_libdir}/tc/
  118. #%{_libdir}/tc/*
  119. %dir %{_sysconfdir}/sysconfig/cbq
  120. %config(noreplace) %{_sysconfdir}/sysconfig/cbq/*
  121. %files devel
  122. %defattr(-,root,root)
  123. %{_libdir}/iproute2/lib*.a
  124. %dir %{_includedir}/iproute2
  125. %{_includedir}/iproute2/*.h
  126. %changelog
  127. * Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.31-3
  128. - rebuilt with gcc-4.4.3-3 on ppc
  129. * Fri Feb 5 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.31-2
  130. - rebuilt with rpm-4.8.0-3 (on ppc)
  131. * Wed Feb 03 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-1
  132. - new upstream release
  133. - import patches from fedora package
  134. - build with db4-4.8
  135. * Fri Jun 20 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.25-2
  136. - updated to 2.6.25 based on 2.6.25-1 from Fedora
  137. - build with db4-4.6.21
  138. - keep Patch100 from 2.6.16-1vl5
  139. -changelogs for previous Vine package as follows:
  140. - Fri Apr 11 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.6.16-1
  141. - apply new versioning policy.
  142. - Thu May 10 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl1
  143. - updated to 2.6.16 and merged several patches from FC 2.6.16-6
  144. (Patch10 not applied until VineSeed kernel goes higher versions)
  145. - rebuilt with new toolchain and db4-4.3.x
  146. - Fri Sep 15 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.15-0vl2
  147. - added Patch5 to make documents without errors
  148. - Thu Mar 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl1
  149. - update to 2.6.15-060110
  150. - Mon Jun 6 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.6.11-1vl3
  151. - added BuildRequires: linuxdoc-tools
  152. - Mon Jun 6 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.6.11-1vl2
  153. - lib*.a is moved to %{_libdir}/iproute2 (ad-hoc?)
  154. - Sun Jun 5 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.6.11-1vl1
  155. - new upstream release
  156. - changed Group: of devel package
  157. - applyed patches from Fedora development
  158. - Wed May 26 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-16
  159. - Took tons of manpages from debian, much more complete (#123952).
  160. - added Japanese translation from spec translation project :-)
  161. - Sun Mar 23 2003 Takeru INOUE <takeru.inoue@gamma.ocn.ne.jp>
  162. - 2.2.4-14vl2
  163. - rename package name iproute to iproute2
  164. - rebuild development version
  165. * Mon Apr 21 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.25-1
  166. - update
  167. - remove patch for backward compatibility
  168. - add patch for AEAD compatibility
  169. * Thu Feb 21 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.23-4
  170. - add creating ps file again. Fix was done in texlive
  171. * Wed Feb 6 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.23-3
  172. - rebuild without tetex files. It isn't working in rawhide yet. Added
  173. new source for ps files.
  174. - #431179 backward compatibility for previous iproute versions
  175. * Mon Jan 21 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.23-2
  176. - rebuild with fix tetex and linuxdoc-tools -> manual pdf
  177. - clean unnecessary patches
  178. - add into spec *.so objects, new BR linux-atm-libs-devel
  179. * Tue Oct 31 2007 Marcela Maslanova <mmaslano@redhat.com> - 2.6.23-1
  180. - new version from upstrem 2.3.23
  181. * Tue Oct 23 2007 Marcela Maslanova <mmaslano@redhat.com> - 2.6.22-5
  182. - move files from /usr/lib/tc to /usr/share/tc
  183. - remove listing files twice
  184. * Fri Aug 30 2007 Marcela Maslanova <mmaslano@redhat.com> - 2.6.22-3
  185. - package review #225903
  186. * Mon Aug 27 2007 Jeremy Katz <katzj@redhat.com> - 2.6.22-2
  187. - rebuild for new db4
  188. * Wed Jul 11 2007 Radek Vokál <rvokal@redhat.com> - 2.6.22-1
  189. - upgrade to 2.6.22
  190. * Mon Mar 19 2007 Radek Vokál <rvokal@redhat.com> - 2.6.20-2
  191. - fix broken tc-pfifo man page (#232891)
  192. * Thu Mar 15 2007 Radek Vokál <rvokal@redhat.com> - 2.6.20-1
  193. - upgrade to 2.6.20
  194. * Fri Dec 15 2006 Radek Vokál <rvokal@redhat.com> - 2.6.19-1
  195. - upgrade to 2.6.19
  196. * Mon Dec 11 2006 Radek Vokál <rvokal@redhat.com> - 2.6.18-5
  197. - fix snapshot version
  198. * Fri Dec 1 2006 Radek Vokál <rvokal@redhat.com> - 2.6.18-4
  199. - spec file cleanup
  200. - one more rebuilt against db4
  201. * Thu Nov 16 2006 Radek Vokál <rvokal@redhat.com> - 2.6.18-3
  202. - fix defective manpage for tc-pfifo (#215399)
  203. * Mon Nov 13 2006 Radek Vokál <rvokal@redhat.com> - 2.6.18-2
  204. - rebuilt against new db4
  205. * Tue Oct 3 2006 Radek Vokal <rvokal@redhat.com> - 2.6.18-1
  206. - upgrade to upstream 2.6.18
  207. - initcwnd patch merged
  208. - bug fix for xfrm monitor
  209. - alignment fixes for cris
  210. - documentation corrections
  211. * Mon Oct 2 2006 Radek Vokal <rvokal@redhat.com> - 2.6.16-7
  212. - fix ip.8 man page, add initcwnd option
  213. * Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 2.6.16-6
  214. - rebuilt for unwind info generation, broken in gcc-4.1.1-21
  215. * Tue Sep 19 2006 Radek Vokal <rvokal@redhat.com> - 2.6.16-5
  216. - fix crash when resolving ip address
  217. * Mon Aug 21 2006 Radek Vokál <rvokal@redhat.com> - 2.6.16-4
  218. - add LOWER_UP and DORMANT flags (#202199)
  219. - use dist tag
  220. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.6.16-3.1
  221. - rebuild
  222. * Mon Jun 26 2006 Radek Vokál <rvokal@redhat.com> - 2.6.16-3
  223. - improve handling of initcwnd value (#179719)
  224. * Sun May 28 2006 Radek Vokál <rvokal@redhat.com> - 2.6.16-2
  225. - fix BuildRequires: flex (#193403)
  226. * Sun Mar 26 2006 Radek Vokál <rvokal@redhat.com> - 2.6.16-1
  227. - upgrade to 2.6.16-060323
  228. - don't hardcode /usr/lib in tc (#186607)
  229. * Wed Feb 22 2006 Radek Vokál <rvokal@redhat.com> - 2.6.15-2
  230. - own /usr/lib/tc (#181953)
  231. - obsoletes shapecfg (#182284)
  232. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.6.15-1.2
  233. - bump again for double-long bug on ppc(64)
  234. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.6.15-1.1
  235. - rebuilt for new gcc4.1 snapshot and glibc changes
  236. * Tue Jan 17 2006 Radek Vokal <rvokal@redhat.com> 2.6.15-1
  237. - upgrade to 2.6.15-060110
  238. * Mon Dec 12 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-11
  239. - rebuilt
  240. * Fri Dec 09 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-10
  241. - remove backup of config files (#175302)
  242. * Fri Nov 11 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-9
  243. - use tc manpages and cbq.init from source tarball (#172851)
  244. * Thu Nov 10 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-8
  245. - new upstream source
  246. * Mon Oct 31 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-7
  247. - add warning to ip tunnel add command (#128107)
  248. * Fri Oct 07 2005 Bill Nottingham <notting@redhat.com> 2.6.14-6
  249. - update from upstream (appears to fix #170111)
  250. * Fri Oct 07 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-5
  251. - update from upstream
  252. - fixed host_len size for memcpy (#168903) <Matt_Domsch@dell.com>
  253. * Fri Sep 23 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-4
  254. - add RPM_OPT_FLAGS
  255. * Mon Sep 19 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-3
  256. - forget to apply the patch :(
  257. * Mon Sep 19 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-2
  258. - make ip help work again (#168449)
  259. * Wed Sep 14 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-1
  260. - upgrade to ss050901 for 2.6.14 kernel headers
  261. * Fri Aug 26 2005 Radek Vokal <rvokal@redhat.com> 2.6.13-3
  262. - added /sbin/cbq script and sample configuration files (#166301)
  263. * Fri Aug 19 2005 Radek Vokal <rvokal@redhat.com> 2.6.13-2
  264. - upgrade to iproute2-050816
  265. * Thu Aug 11 2005 Radek Vokal <rvokal@redhat.com> 2.6.13-1
  266. - update to snapshot for 2.6.13+ kernel
  267. * Tue May 24 2005 Radek Vokal <rvokal@redhat.com> 2.6.11-2
  268. - removed useless initvar patch (#150798)
  269. - new upstream source
  270. * Tue Mar 15 2005 Radek Vokal <rvokal@redhat.com> 2.6.11-1
  271. - update to iproute-2.6.11
  272. * Fri Mar 04 2005 Radek Vokal <rvokal@redhat.com> 2.6.10-2
  273. - gcc4 rebuilt
  274. * Wed Feb 16 2005 Radek Vokal <rvokal@redhat.com> 2.6.10-1
  275. - update to iproute-2.6.10
  276. * Thu Dec 23 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-6
  277. - added arpd into sbin
  278. * Mon Nov 29 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-5
  279. - debug info removed from makefile and from spec (#140891)
  280. * Tue Nov 16 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-4
  281. - source file updated from snapshot version
  282. - endian patch adding <endian.h>
  283. * Sat Sep 18 2004 Joshua Blanton <jblanton@cs.ohiou.edu> 2.6.9-3
  284. - added installation of netem module for tc
  285. * Mon Sep 06 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-2
  286. - fixed possible buffer owerflow, path by Steve Grubb <linux_4ever@yahoo.com>
  287. * Wed Sep 01 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-1
  288. - updated to iproute-2.6.9, spec file change, patches cleared
  289. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  290. - rebuilt
  291. * Wed May 26 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-16
  292. - Took tons of manpages from debian, much more complete (#123952).
  293. * Thu May 06 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-15
  294. - rebuilt
  295. * Thu May 06 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-13.2
  296. - Built security errata version for FC1.
  297. * Wed Apr 21 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-14
  298. - Fixed -f option for ss (#118355).
  299. - Small description fix (#110997).
  300. - Added initialization of some vars (#74961).
  301. - Added patch to initialize "default" rule as well (#60693).
  302. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
  303. - rebuilt
  304. * Wed Nov 05 2003 Phil Knirsch <pknirsch@redhat.com> 2.4.7-12
  305. - Security errata for netlink (CAN-2003-0856).
  306. * Thu Oct 23 2003 Phil Knirsch <pknirsch@redhat.com>
  307. - Updated to latest version. Used by other distros, so seems stable. ;-)
  308. - Quite a few patches needed updating in that turn.
  309. - Added ss (#107363) and several other new nifty tools.
  310. * Tue Jun 17 2003 Phil Knirsch <pknirsch@redhat.com>
  311. - rebuilt
  312. * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  313. - rebuilt
  314. * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
  315. - rebuilt
  316. * Thu Jan 16 2003 Phil Knirsch <pknirsch@redhat.com> 2.4.7-7
  317. - Added htb3-tc patch from http://luxik.cdi.cz/~devik/qos/htb/ (#75486).
  318. * Fri Oct 11 2002 Bill Nottingham <notting@redhat.com> 2.4.7-6
  319. - remove flags patch at author's request
  320. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  321. - automated rebuild
  322. * Wed Jun 19 2002 Phil Knirsch <pknirsch@redhat.com> 2.4.7-4
  323. - Don't forcibly strip binaries
  324. * Mon May 27 2002 Phil Knirsch <pknirsch@redhat.com> 2.4.7-3
  325. - Fixed missing diffserv and atm support in config (#57278).
  326. - Fixed inconsistent numeric base problem for command line (#65473).
  327. * Tue May 14 2002 Phil Knirsch <pknirsch@redhat.com> 2.4.7-2
  328. - Added patch to fix crosscompiling by Adrian Linkins.
  329. * Fri Mar 15 2002 Phil Knirsch <pknirsch@redhat.com> 2.4.7-1
  330. - Update to latest stable release 2.4.7-now-ss010824.
  331. - Added simple man page for ip.
  332. * Wed Aug 8 2001 Bill Nottingham <notting@redhat.com>
  333. - allow setting of allmulti & promisc flags (#48669)
  334. * Mon Jul 02 2001 Than Ngo <than@redhat.com>
  335. - fix build problem in beehive if kernel-sources is not installed
  336. * Fri May 25 2001 Helge Deller <hdeller@redhat.de>
  337. - updated to iproute2-2.2.4-now-ss001007.tar.gz
  338. - bzip2 source tar file
  339. - "License" replaces "Copyright"
  340. - added "BuildPrereq: tetex-latex tetex-dvips psutils"
  341. - rebuilt for 7.2
  342. * Tue May 1 2001 Bill Nottingham <notting@redhat.com>
  343. - use the system headers - the included ones are broken
  344. - ETH_P_ECHO went away
  345. * Sat Jan 6 2001 Jeff Johnson <jbj@redhat.com>
  346. - test for specific KERNEL_INCLUDE directories.
  347. * Thu Oct 12 2000 Than Ngo <than@redhat.com>
  348. - rebuild for 7.1
  349. * Thu Oct 12 2000 Than Ngo <than@redhat.com>
  350. - add default configuration files for iproute (Bug #10549, #18887)
  351. * Tue Jul 25 2000 Jakub Jelinek <jakub@redhat.com>
  352. - fix include-glibc/ to cope with glibc 2.2 new resolver headers
  353. * Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
  354. - automatic rebuild
  355. * Sun Jun 18 2000 Than Ngo <than@redhat.de>
  356. - rebuilt in the new build environment
  357. - use RPM macros
  358. - handle RPM_OPT_FLAGS
  359. * Sat Jun 03 2000 Than Ngo <than@redhat.de>
  360. - fix iproute to build with new glibc
  361. * Fri May 26 2000 Ngo Than <than@redhat.de>
  362. - update to 2.2.4-now-ss000305
  363. - add configuration files
  364. * Mon Sep 13 1999 Bill Nottingham <notting@redhat.com>
  365. - strip binaries
  366. * Mon Aug 16 1999 Cristian Gafton <gafton@redhat.com>
  367. - first build