iproute-vl.spec 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. %bcond_with tipc
  2. %bcond_with texdoc
  3. %define cbq_version v0.7.3
  4. Summary: Advanced IP routing and network device configuration tools
  5. Summary(ja): IP ルーティング,ネットワークデバイスの設定ツール
  6. Name: iproute
  7. Version: 4.14.1
  8. Release: 1%{?_dist_release}
  9. Group: Applications/System
  10. Source: https://kernel.org/pub/linux/utils/net/%{name}2/%{name}2-%{version}.tar.xz
  11. URL: http://kernel.org/pub/linux/utils/net/%{name}2/
  12. Source1: cbq-0000.example
  13. Source2: avpkt
  14. Vendor: Project Vine
  15. Distribution: Vine Linux
  16. # http://www.spinics.net/lists/netdev/msg325114.html
  17. Patch1: iproute2-3.19.0-docs.patch
  18. # VINE
  19. Patch100: iproute2-3.14.0-platex.patch
  20. License: GPLv2+ and Public Domain
  21. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
  22. BuildRequires: bison flex
  23. BuildRequires: iptables-devel >= 1.4.10, libdb-devel
  24. BuildRequires: pkgconfig
  25. %if %{with texdoc}
  26. BuildRequires: texlive-collection-fontsrecommended
  27. BuildRequires: texlive-collection-latexrecommended
  28. BuildRequires: texlive-collection-langafrican
  29. BuildRequires: texlive-collection-langarabic
  30. BuildRequires: texlive-collection-langchinese
  31. BuildRequires: texlive-collection-langczechslovak
  32. BuildRequires: texlive-collection-langenglish
  33. BuildRequires: texlive-collection-langeuropean
  34. BuildRequires: texlive-collection-langfrench
  35. BuildRequires: texlive-collection-langindic
  36. BuildRequires: texlive-collection-langitalian
  37. BuildRequires: texlive-collection-langkorean
  38. BuildRequires: texlive-collection-langpolish
  39. BuildRequires: texlive-collection-langportuguese
  40. BuildRequires: texlive-collection-langspanish
  41. BuildRequires: texlive-collection-langother
  42. BuildRequires: linuxdoc-tools psutils
  43. %endif
  44. %if %{with tipc}
  45. BuildRequires: libmnl-devel
  46. %endif
  47. Requires: iptables >= 1.4.10
  48. %description
  49. The iproute package contains networking utilities (ip and rtmon, for
  50. example) which are designed to use the advanced networking
  51. capabilities of the Linux 2.4.x and 2.6.x kernel.
  52. %description -l ja
  53. このiprouteパッケージには、カーネル 2.4.x または 2.6.x の進歩した
  54. ネットワーク技術を使うように設計された、ネットワーキングユーティリ
  55. ティ(ip, rtmon等々)が収録されています。
  56. %package doc
  57. Summary: ip and tc documentation with examples
  58. Summary(ja): ip, tcのドキュメントとサンプル
  59. Group: Applications/System
  60. License: GPLv2+
  61. %description doc
  62. The iproute documentation contains howtos and examples of settings.
  63. %package devel
  64. Summary: Libraries, includes, etc. to develop iptables
  65. Summary(ja): iproute の開発用ライブラリ,ヘッダファイル
  66. Group: Development/Libraries
  67. Requires: %{name} = %{version}
  68. %description devel
  69. Libraries, include files, etc you can use to develop iproute2.
  70. %prep
  71. %setup -q -n iproute2-%{version}
  72. %if %{with texdoc}
  73. %patch1 -p1 -b .doc
  74. %patch100 -p1 -b .platex
  75. %endif
  76. %build
  77. export CFLAGS="%{optflags}"
  78. export LIBDIR=/%{_libdir}
  79. export IPT_LIB_DIR=/%{_lib}/xtables
  80. ./configure
  81. make %{?_smp_mflags}
  82. %if %{with texdoc}
  83. #make -C doc
  84. %endif
  85. %install
  86. [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
  87. mkdir -p \
  88. %{buildroot}%{_includedir} \
  89. %{buildroot}/sbin \
  90. %{buildroot}%{_sbindir} \
  91. %{buildroot}%{_mandir}/man3 \
  92. %{buildroot}%{_mandir}/man7 \
  93. %{buildroot}%{_mandir}/man8 \
  94. %{buildroot}%{_libdir}/tc \
  95. %{buildroot}%{_sysconfdir}/iproute2/{rt_protos.d,rt_tables.d} \
  96. %{buildroot}%{_sysconfdir}/sysconfig/cbq
  97. for binary in \
  98. ip/ifcfg \
  99. ip/ip \
  100. ip/rtmon \
  101. tc/tc
  102. do install -m755 ${binary} %{buildroot}/sbin/
  103. done
  104. install -m755 examples/cbq.init-%{cbq_version} %{buildroot}/sbin/cbq
  105. for binary in \
  106. bridge/bridge \
  107. genl/genl \
  108. ip/routef \
  109. ip/routel \
  110. ip/rtpr \
  111. %if %{with tipc}
  112. tipc/tipc \
  113. %endif
  114. misc/arpd \
  115. misc/ifstat \
  116. misc/lnstat \
  117. misc/nstat \
  118. misc/rtacct \
  119. misc/ss
  120. do install -m755 ${binary} %{buildroot}%{_sbindir}
  121. done
  122. cd %{buildroot}%{_sbindir}
  123. ln -s lnstat ctstat
  124. ln -s lnstat rtstat
  125. cd -
  126. # Libs
  127. install -m644 netem/*.dist %{buildroot}%{_libdir}/tc
  128. install -m755 tc/m_xt.so %{buildroot}%{_libdir}/tc
  129. cd %{buildroot}%{_libdir}/tc
  130. ln -s m_xt.so m_ipt.so
  131. cd -
  132. # libnetlink
  133. install -m644 include/libnetlink.h %{buildroot}%{_includedir}
  134. install -m644 lib/libnetlink.a %{buildroot}%{_libdir}
  135. # Manpages
  136. iconv -f latin1 -t utf8 man/man8/ss.8 > man/man8/ss.8.utf8 &&
  137. mv man/man8/ss.8.utf8 man/man8/ss.8
  138. install -m644 man/man3/*.3 %{buildroot}%{_mandir}/man3
  139. install -m644 man/man7/*.7 %{buildroot}%{_mandir}/man7
  140. install -m644 man/man8/*.8 %{buildroot}%{_mandir}/man8
  141. # Config files
  142. for f in `find etc/iproute2/ -maxdepth 1 -type f`;
  143. do install -m644 $f %{buildroot}%{_sysconfdir}/iproute2
  144. done
  145. install -m644 etc/iproute2/rt_protos.d/* %{buildroot}%{_sysconfdir}/iproute2/rt_protos.d/
  146. install -m644 etc/iproute2/rt_tables.d/* %{buildroot}%{_sysconfdir}/iproute2/rt_tables.d/
  147. for config in \
  148. %{SOURCE1} \
  149. %{SOURCE2}
  150. do install -m644 ${config} %{buildroot}%{_sysconfdir}/sysconfig/cbq
  151. done
  152. %clean
  153. [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
  154. %files
  155. %dir %{_sysconfdir}/iproute2
  156. %dir %{_sysconfdir}/iproute2/rt_protos.d
  157. %dir %{_sysconfdir}/iproute2/rt_tables.d
  158. %doc COPYING
  159. %doc README README.decnet README.iproute2+tc README.distribution README.lnstat
  160. %{_mandir}/man7/*
  161. %{_mandir}/man8/*
  162. %attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/bpf_pinning
  163. %attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/ematch_map
  164. %attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/group
  165. %attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/nl_protos
  166. %attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/rt_dsfield
  167. %attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/rt_protos
  168. %attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/rt_realms
  169. %attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/rt_scopes
  170. %attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/rt_tables
  171. %attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/rt_protos.d/*
  172. %attr(644,root,root) %config(noreplace) %{_sysconfdir}/iproute2/rt_tables.d/*
  173. /sbin/*
  174. %{_sbindir}/*
  175. %dir %{_libdir}/tc/
  176. %{_libdir}/tc/*
  177. %dir %{_sysconfdir}/sysconfig/cbq
  178. %config(noreplace) %{_sysconfdir}/sysconfig/cbq/*
  179. %files doc
  180. %doc COPYING
  181. %doc doc/*
  182. %doc examples
  183. %files devel
  184. %doc COPYING
  185. %{_mandir}/man3/*
  186. %{_libdir}/libnetlink.a
  187. %{_includedir}/libnetlink.h
  188. %changelog
  189. * Fri Dec 01 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.14.1-1
  190. - new upstream release.
  191. - dropped TeX docs.
  192. * Sat May 21 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 4.1.1-1
  193. - new upstream release.
  194. - dropped all patches and imported from fc23.
  195. * Thu May 22 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.14.0-1
  196. - new upstream release.
  197. - replaced Patch100.
  198. * Fri Apr 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.38-1
  199. - update to 2.6.38.1
  200. - build with iptables-1.4.10
  201. - add BR: iptables-devel
  202. * Mon Apr 18 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-5
  203. - don't build/include documents. (almost same as man pages...)
  204. - remove BR: texlive ,linuxdoc-tools
  205. * Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> - 2.6.31-4
  206. - rebuilt with rpm-4.8.1-3
  207. * Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.31-3
  208. - rebuilt with gcc-4.4.3-3 on ppc
  209. * Fri Feb 5 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.31-2
  210. - rebuilt with rpm-4.8.0-3 (on ppc)
  211. * Wed Feb 03 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.31-1
  212. - new upstream release
  213. - import patches from fedora package
  214. - build with db4-4.8
  215. * Fri Jun 20 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.25-2
  216. - updated to 2.6.25 based on 2.6.25-1 from Fedora
  217. - build with db4-4.6.21
  218. - keep Patch100 from 2.6.16-1vl5
  219. -changelogs for previous Vine package as follows:
  220. - Fri Apr 11 2008 Tomohiro 'Tomo-p' KATO <tomop@teamgedoh.net> 2.6.16-1
  221. - apply new versioning policy.
  222. - Thu May 10 2007 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.16-0vl1
  223. - updated to 2.6.16 and merged several patches from FC 2.6.16-6
  224. (Patch10 not applied until VineSeed kernel goes higher versions)
  225. - rebuilt with new toolchain and db4-4.3.x
  226. - Fri Sep 15 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.6.15-0vl2
  227. - added Patch5 to make documents without errors
  228. - Thu Mar 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.15-0vl1
  229. - update to 2.6.15-060110
  230. - Mon Jun 6 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.6.11-1vl3
  231. - added BuildRequires: linuxdoc-tools
  232. - Mon Jun 6 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.6.11-1vl2
  233. - lib*.a is moved to %{_libdir}/iproute2 (ad-hoc?)
  234. - Sun Jun 5 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 2.6.11-1vl1
  235. - new upstream release
  236. - changed Group: of devel package
  237. - applyed patches from Fedora development
  238. - Wed May 26 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-16
  239. - Took tons of manpages from debian, much more complete (#123952).
  240. - added Japanese translation from spec translation project :-)
  241. - Sun Mar 23 2003 Takeru INOUE <takeru.inoue@gamma.ocn.ne.jp>
  242. - 2.2.4-14vl2
  243. - rename package name iproute to iproute2
  244. - rebuild development version
  245. * Mon Apr 21 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.25-1
  246. - update
  247. - remove patch for backward compatibility
  248. - add patch for AEAD compatibility
  249. * Thu Feb 21 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.23-4
  250. - add creating ps file again. Fix was done in texlive
  251. * Wed Feb 6 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.23-3
  252. - rebuild without tetex files. It isn't working in rawhide yet. Added
  253. new source for ps files.
  254. - #431179 backward compatibility for previous iproute versions
  255. * Mon Jan 21 2008 Marcela Maslanova <mmaslano@redhat.com> - 2.6.23-2
  256. - rebuild with fix tetex and linuxdoc-tools -> manual pdf
  257. - clean unnecessary patches
  258. - add into spec *.so objects, new BR linux-atm-libs-devel
  259. * Wed Oct 31 2007 Marcela Maslanova <mmaslano@redhat.com> - 2.6.23-1
  260. - new version from upstrem 2.3.23
  261. * Tue Oct 23 2007 Marcela Maslanova <mmaslano@redhat.com> - 2.6.22-5
  262. - move files from /usr/lib/tc to /usr/share/tc
  263. - remove listing files twice
  264. * Thu Aug 30 2007 Marcela Maslanova <mmaslano@redhat.com> - 2.6.22-3
  265. - package review #225903
  266. * Mon Aug 27 2007 Jeremy Katz <katzj@redhat.com> - 2.6.22-2
  267. - rebuild for new db4
  268. * Wed Jul 11 2007 Radek Vokál <rvokal@redhat.com> - 2.6.22-1
  269. - upgrade to 2.6.22
  270. * Mon Mar 19 2007 Radek Vokál <rvokal@redhat.com> - 2.6.20-2
  271. - fix broken tc-pfifo man page (#232891)
  272. * Thu Mar 15 2007 Radek Vokál <rvokal@redhat.com> - 2.6.20-1
  273. - upgrade to 2.6.20
  274. * Fri Dec 15 2006 Radek Vokál <rvokal@redhat.com> - 2.6.19-1
  275. - upgrade to 2.6.19
  276. * Mon Dec 11 2006 Radek Vokál <rvokal@redhat.com> - 2.6.18-5
  277. - fix snapshot version
  278. * Fri Dec 1 2006 Radek Vokál <rvokal@redhat.com> - 2.6.18-4
  279. - spec file cleanup
  280. - one more rebuilt against db4
  281. * Thu Nov 16 2006 Radek Vokál <rvokal@redhat.com> - 2.6.18-3
  282. - fix defective manpage for tc-pfifo (#215399)
  283. * Mon Nov 13 2006 Radek Vokál <rvokal@redhat.com> - 2.6.18-2
  284. - rebuilt against new db4
  285. * Tue Oct 3 2006 Radek Vokal <rvokal@redhat.com> - 2.6.18-1
  286. - upgrade to upstream 2.6.18
  287. - initcwnd patch merged
  288. - bug fix for xfrm monitor
  289. - alignment fixes for cris
  290. - documentation corrections
  291. * Mon Oct 2 2006 Radek Vokal <rvokal@redhat.com> - 2.6.16-7
  292. - fix ip.8 man page, add initcwnd option
  293. * Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 2.6.16-6
  294. - rebuilt for unwind info generation, broken in gcc-4.1.1-21
  295. * Tue Sep 19 2006 Radek Vokal <rvokal@redhat.com> - 2.6.16-5
  296. - fix crash when resolving ip address
  297. * Mon Aug 21 2006 Radek Vokál <rvokal@redhat.com> - 2.6.16-4
  298. - add LOWER_UP and DORMANT flags (#202199)
  299. - use dist tag
  300. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.6.16-3.1
  301. - rebuild
  302. * Mon Jun 26 2006 Radek Vokál <rvokal@redhat.com> - 2.6.16-3
  303. - improve handling of initcwnd value (#179719)
  304. * Sun May 28 2006 Radek Vokál <rvokal@redhat.com> - 2.6.16-2
  305. - fix BuildRequires: flex (#193403)
  306. * Sun Mar 26 2006 Radek Vokál <rvokal@redhat.com> - 2.6.16-1
  307. - upgrade to 2.6.16-060323
  308. - don't hardcode /usr/lib in tc (#186607)
  309. * Wed Feb 22 2006 Radek Vokál <rvokal@redhat.com> - 2.6.15-2
  310. - own /usr/lib/tc (#181953)
  311. - obsoletes shapecfg (#182284)
  312. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.6.15-1.2
  313. - bump again for double-long bug on ppc(64)
  314. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.6.15-1.1
  315. - rebuilt for new gcc4.1 snapshot and glibc changes
  316. * Tue Jan 17 2006 Radek Vokal <rvokal@redhat.com> 2.6.15-1
  317. - upgrade to 2.6.15-060110
  318. * Mon Dec 12 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-11
  319. - rebuilt
  320. * Fri Dec 09 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-10
  321. - remove backup of config files (#175302)
  322. * Fri Nov 11 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-9
  323. - use tc manpages and cbq.init from source tarball (#172851)
  324. * Thu Nov 10 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-8
  325. - new upstream source
  326. * Mon Oct 31 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-7
  327. - add warning to ip tunnel add command (#128107)
  328. * Fri Oct 07 2005 Bill Nottingham <notting@redhat.com> 2.6.14-6
  329. - update from upstream (appears to fix #170111)
  330. * Fri Oct 07 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-5
  331. - update from upstream
  332. - fixed host_len size for memcpy (#168903) <Matt_Domsch@dell.com>
  333. * Fri Sep 23 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-4
  334. - add RPM_OPT_FLAGS
  335. * Mon Sep 19 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-3
  336. - forget to apply the patch :(
  337. * Mon Sep 19 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-2
  338. - make ip help work again (#168449)
  339. * Wed Sep 14 2005 Radek Vokal <rvokal@redhat.com> 2.6.14-1
  340. - upgrade to ss050901 for 2.6.14 kernel headers
  341. * Fri Aug 26 2005 Radek Vokal <rvokal@redhat.com> 2.6.13-3
  342. - added /sbin/cbq script and sample configuration files (#166301)
  343. * Fri Aug 19 2005 Radek Vokal <rvokal@redhat.com> 2.6.13-2
  344. - upgrade to iproute2-050816
  345. * Thu Aug 11 2005 Radek Vokal <rvokal@redhat.com> 2.6.13-1
  346. - update to snapshot for 2.6.13+ kernel
  347. * Tue May 24 2005 Radek Vokal <rvokal@redhat.com> 2.6.11-2
  348. - removed useless initvar patch (#150798)
  349. - new upstream source
  350. * Tue Mar 15 2005 Radek Vokal <rvokal@redhat.com> 2.6.11-1
  351. - update to iproute-2.6.11
  352. * Fri Mar 04 2005 Radek Vokal <rvokal@redhat.com> 2.6.10-2
  353. - gcc4 rebuilt
  354. * Wed Feb 16 2005 Radek Vokal <rvokal@redhat.com> 2.6.10-1
  355. - update to iproute-2.6.10
  356. * Thu Dec 23 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-6
  357. - added arpd into sbin
  358. * Mon Nov 29 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-5
  359. - debug info removed from makefile and from spec (#140891)
  360. * Tue Nov 16 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-4
  361. - source file updated from snapshot version
  362. - endian patch adding <endian.h>
  363. * Sat Sep 18 2004 Joshua Blanton <jblanton@cs.ohiou.edu> 2.6.9-3
  364. - added installation of netem module for tc
  365. * Mon Sep 06 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-2
  366. - fixed possible buffer owerflow, path by Steve Grubb <linux_4ever@yahoo.com>
  367. * Wed Sep 01 2004 Radek Vokal <rvokal@redhat.com> 2.6.9-1
  368. - updated to iproute-2.6.9, spec file change, patches cleared
  369. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  370. - rebuilt
  371. * Wed May 26 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-16
  372. - Took tons of manpages from debian, much more complete (#123952).
  373. * Thu May 06 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-15
  374. - rebuilt
  375. * Thu May 06 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-13.2
  376. - Built security errata version for FC1.
  377. * Wed Apr 21 2004 Phil Knirsch <pknirsch@redhat.com> 2.4.7-14
  378. - Fixed -f option for ss (#118355).
  379. - Small description fix (#110997).
  380. - Added initialization of some vars (#74961).
  381. - Added patch to initialize "default" rule as well (#60693).
  382. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
  383. - rebuilt
  384. * Wed Nov 05 2003 Phil Knirsch <pknirsch@redhat.com> 2.4.7-12
  385. - Security errata for netlink (CAN-2003-0856).
  386. * Thu Oct 23 2003 Phil Knirsch <pknirsch@redhat.com>
  387. - Updated to latest version. Used by other distros, so seems stable. ;-)
  388. - Quite a few patches needed updating in that turn.
  389. - Added ss (#107363) and several other new nifty tools.
  390. * Tue Jun 17 2003 Phil Knirsch <pknirsch@redhat.com>
  391. - rebuilt
  392. * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  393. - rebuilt
  394. * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
  395. - rebuilt
  396. * Thu Jan 16 2003 Phil Knirsch <pknirsch@redhat.com> 2.4.7-7
  397. - Added htb3-tc patch from http://luxik.cdi.cz/~devik/qos/htb/ (#75486).
  398. * Fri Oct 11 2002 Bill Nottingham <notting@redhat.com> 2.4.7-6
  399. - remove flags patch at author's request
  400. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  401. - automated rebuild
  402. * Wed Jun 19 2002 Phil Knirsch <pknirsch@redhat.com> 2.4.7-4
  403. - Don't forcibly strip binaries
  404. * Mon May 27 2002 Phil Knirsch <pknirsch@redhat.com> 2.4.7-3
  405. - Fixed missing diffserv and atm support in config (#57278).
  406. - Fixed inconsistent numeric base problem for command line (#65473).
  407. * Tue May 14 2002 Phil Knirsch <pknirsch@redhat.com> 2.4.7-2
  408. - Added patch to fix crosscompiling by Adrian Linkins.
  409. * Fri Mar 15 2002 Phil Knirsch <pknirsch@redhat.com> 2.4.7-1
  410. - Update to latest stable release 2.4.7-now-ss010824.
  411. - Added simple man page for ip.
  412. * Wed Aug 8 2001 Bill Nottingham <notting@redhat.com>
  413. - allow setting of allmulti & promisc flags (#48669)
  414. * Mon Jul 02 2001 Than Ngo <than@redhat.com>
  415. - fix build problem in beehive if kernel-sources is not installed
  416. * Fri May 25 2001 Helge Deller <hdeller@redhat.de>
  417. - updated to iproute2-2.2.4-now-ss001007.tar.gz
  418. - bzip2 source tar file
  419. - "License" replaces "Copyright"
  420. - added "BuildPrereq: tetex-latex tetex-dvips psutils"
  421. - rebuilt for 7.2
  422. * Tue May 1 2001 Bill Nottingham <notting@redhat.com>
  423. - use the system headers - the included ones are broken
  424. - ETH_P_ECHO went away
  425. * Sat Jan 6 2001 Jeff Johnson <jbj@redhat.com>
  426. - test for specific KERNEL_INCLUDE directories.
  427. * Thu Oct 12 2000 Than Ngo <than@redhat.com>
  428. - rebuild for 7.1
  429. * Thu Oct 12 2000 Than Ngo <than@redhat.com>
  430. - add default configuration files for iproute (Bug #10549, #18887)
  431. * Tue Jul 25 2000 Jakub Jelinek <jakub@redhat.com>
  432. - fix include-glibc/ to cope with glibc 2.2 new resolver headers
  433. * Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
  434. - automatic rebuild
  435. * Sun Jun 18 2000 Than Ngo <than@redhat.de>
  436. - rebuilt in the new build environment
  437. - use RPM macros
  438. - handle RPM_OPT_FLAGS
  439. * Sat Jun 03 2000 Than Ngo <than@redhat.de>
  440. - fix iproute to build with new glibc
  441. * Fri May 26 2000 Ngo Than <than@redhat.de>
  442. - update to 2.2.4-now-ss000305
  443. - add configuration files
  444. * Mon Sep 13 1999 Bill Nottingham <notting@redhat.com>
  445. - strip binaries
  446. * Mon Aug 16 1999 Cristian Gafton <gafton@redhat.com>
  447. - first build