iptables/iptables.spec

Fri, 11 Mar 2011 21:36:51 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 11 Mar 2011 21:36:51 +0100
changeset 1
4667f24fe848
parent 0
4f133201e207
permissions
-rw-r--r--

Adjust specification build configurations to port packages to MeeGo.

     1 Name: iptables
     2 Summary: Tools for managing Linux kernel packet filtering capabilities
     3 Vendor:  Europalab Software
     4 Packager: Michael Schloh von Bennewitz
     5 Distribution: MeeGo Thirdparty
     6 Version: 1.4.10
     7 Release: 1.0
     8 Source: http://www.netfilter.org/projects/iptables/files/%{name}-%{version}.tar.bz2
     9 Source1: iptables.init
    10 Source2: iptables-config
    11 Patch1: iptables-1.4.10-cloexec.patch
    12 Patch2: iptables-1.4.10-nf_ext_init.patch
    13 Group: System/Base
    14 URL: http://www.netfilter.org/
    15 BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
    16 License: GPLv2
    17 BuildRequires: kernel-headers
    18 Conflicts: kernel < 2.4.20
    19 Requires(post): chkconfig
    20 Requires(preun): chkconfig
    22 %description
    23 The iptables utility controls the network packet filtering code in the
    24 Linux kernel. If you need to set up firewalls and/or IP masquerading,
    25 you should install this package.
    27 %package ipv6
    28 Summary: IPv6 support for iptables
    29 Vendor:  Europalab Software
    30 Packager: Michael Schloh von Bennewitz
    31 Distribution: MeeGo Thirdparty
    32 Group: System/Base
    33 Requires: %{name} = %{version}-%{release}
    34 Requires(post): chkconfig
    35 Requires(preun): chkconfig
    37 %description ipv6
    38 The iptables package contains IPv6 (the next version of the IP
    39 protocol) support for iptables. Iptables controls the Linux kernel
    40 network packet filtering code, allowing you to set up firewalls and IP
    41 masquerading. 
    43 Install iptables-ipv6 if you need to set up firewalling for your
    44 network and you are using ipv6.
    46 %package devel
    47 Summary: Development package for iptables
    48 Vendor:  Europalab Software
    49 Packager: Michael Schloh von Bennewitz
    50 Distribution: MeeGo Thirdparty
    51 Group: System/Base
    52 Requires: %{name} = %{version}-%{release}
    53 Requires: %{name}-ipv6 = %{version}-%{release}
    55 %description devel
    56 iptables development headers and libraries.
    58 The iptc interface is upstream marked as not public. The interface is not 
    59 stable and may change with every new version. It is therefore unsupported.
    61 %prep
    62 %setup -q
    63 %patch1 -p0 -b .cloexec
    64 %patch2 -p0 -b .nf_ext_init
    66 # fix constructor names, see also nf_ext_init patch
    67 perl -pi -e "s/void _init\(/void __attribute\(\(constructor\)\) nf_ext_init\(/g" extensions/*.c
    68 perl -pi -e "s/^_init\(/__attribute\(\(constructor\)\) nf_ext_init\(/g" extensions/*.c
    70 %build
    71 ./configure --bindir=/bin --sbindir=/sbin --sysconfdir=/etc --libdir=/%{_libdir} --libexecdir=/%{_lib} --mandir=%{_mandir} --includedir=%{_includedir} --with-kernel=/usr --with-kbuild=/usr --with-ksource=/usr
    72 make
    74 %install
    75 rm -rf %{buildroot}
    77 make install DESTDIR=%{buildroot} 
    79 # install init scripts and configuration files
    80 install -d -m 755 $RPM_BUILD_ROOT/etc/rc.d/init.d
    81 install -c -m 755 %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/iptables
    82 sed -e 's;iptables;ip6tables;g' -e 's;IPTABLES;IP6TABLES;g' < %{SOURCE1} > ip6tables.init
    83 install -c -m 755 ip6tables.init $RPM_BUILD_ROOT/etc/rc.d/init.d/ip6tables
    84 install -d -m 755 $RPM_BUILD_ROOT/etc/sysconfig
    85 install -c -m 755 %{SOURCE2} $RPM_BUILD_ROOT/etc/sysconfig/iptables-config
    86 sed -e 's;iptables;ip6tables;g' -e 's;IPTABLES;IP6TABLES;g' < %{SOURCE2} > ip6tables-config
    87 install -c -m 755 ip6tables-config $RPM_BUILD_ROOT/etc/sysconfig/ip6tables-config
    89 %clean
    90 rm -rf $RPM_BUILD_ROOT 
    92 %files
    93 %defattr(-,root,root)
    94 %doc COPYING INSTALL INCOMPATIBILITIES
    95 %attr(0755,root,root) /etc/rc.d/init.d/iptables
    96 %config(noreplace) %attr(0600,root,root) /etc/sysconfig/iptables-config
    97 /sbin/iptables*
    98 %{_mandir}/man8/iptables*
    99 %dir /%{_lib}/xtables
   100 /%{_lib}/xtables/libipt*
   101 /%{_lib}/xtables/libxt*
   102 %{_libdir}/libxtables.*
   103 %{_libdir}/libip4tc.*
   104 %dir %{_libdir}/pkgconfig
   105 %{_libdir}/pkgconfig/xtables.pc
   107 %files ipv6
   108 %defattr(-,root,root)
   109 %attr(0755,root,root) /etc/rc.d/init.d/ip6tables
   110 %config(noreplace) %attr(0600,root,root) /etc/sysconfig/ip6tables-config
   111 /sbin/ip6tables*
   112 /bin/iptables-xml
   113 %{_mandir}/man8/ip6tables*
   114 /%{_lib}/xtables/libip6t*
   115 %{_libdir}/libip6tc.*
   117 %files devel
   118 %defattr(-,root,root)
   119 %{_includedir}/*.h
   120 %dir %{_includedir}/libiptc
   121 %{_includedir}/libiptc/*.h
   122 %{_libdir}/libiptc.*
   123 %dir %{_libdir}/pkgconfig
   124 %{_libdir}/pkgconfig/libiptc.pc
   126 %changelog
   127 * Wed Dec 1 2010 Michael Schloh von Bennewitz <michael@schloh.com> - 1.4.10
   128 - update to new version 1.4.10
   129 * Tue Jan 19 2010 Auke Kok <auke-jan.h.kok@intel.com> - 1.4.1.1
   130 - remove startup symlinks, do not start iptables{,6} up by default
   131 * Tue Jan 27 2009 Anas Nashif <anas.nashif@intel.com> 1.4.1.1
   132 - Initial import into Moblin
   133 * Tue Jul 22 2008 Thomas Woerner <twoerner@redhat.com> 1.4.1.1-2
   134 - fixed TOS value mask problem (rhbz#456244) (upstream patch)
   135 - two more cloexec fixes
   136 * Tue Jul  1 2008 Thomas Woerner <twoerner@redhat.com> 1.4.1.1-1
   137 - upstream bug fix release 1.4.1.1
   138 - dropped extra patch for 1.4.1 - not needed anymore
   139 * Tue Jun 10 2008 Thomas Woerner <twoerner@redhat.com> 1.4.1-1
   140 - new version 1.4.1 with new build environment
   141 - additional ipv6 network mask patch from Jan Engelhardt
   142 - spec file cleanup
   143 - removed old patches
   144 * Fri Jun  6 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.4.0-5
   145 - use normal kernel headers, not linux/compiler.h
   146 - change BuildRequires: kernel-devel to kernel-headers
   147 - We need to do this to be able to build for both sparcv9 and sparc64
   148   (there is no kernel-devel.sparcv9)
   149 * Thu Mar 20 2008 Thomas Woerner <twoerner@redhat.com> 1.4.0-4
   150 - use O_CLOEXEC for all opened files in all applications (rhbz#438189)
   151 * Mon Mar  3 2008 Thomas Woerner <twoerner@redhat.com> 1.4.0-3
   152 - use the kernel headers from the build tree for iptables for now to be able to
   153   compile this package, but this makes the package more kernel dependant
   154 - use s6_addr32 instead of in6_u.u6_addr32
   155 * Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.4.0-2
   156 - Autorebuild for GCC 4.3
   157 * Mon Feb 11 2008 Thomas Woerner <twoerner@redhat.com> 1.4.0-1
   158 - new version 1.4.0
   159 - fixed condrestart (rhbz#428148)
   160 - report the module in rmmod_r if there is an error
   161 - use nf_ext_init instead of my_init for extension constructors
   162 * Mon Nov  5 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-6
   163 - fixed leaked file descriptor before fork/exec (rhbz#312191)
   164 - blacklisting is not working, use "install X /bin/(true|false)" test instead
   165 - return private exit code 150 for disabled ipv6 support
   166 - use script name for output messages
   167 * Tue Oct 16 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-5
   168 - fixed error code for stopping a already stopped firewall (rhbz#321751)
   169 - moved blacklist test into start
   170 * Wed Sep 26 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-4.1
   171 - do not start ip6tables if ipv6 is blacklisted (rhbz#236888)
   172 - use simpler fix for (rhbz#295611)
   173   Thanks to Linus Torvalds for the patch.
   174 * Mon Sep 24 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-4
   175 - fixed IPv6 reject type (rhbz#295181)
   176 - fixed init script: start, stop and status
   177 - support netfilter compiled into kernel in init script (rhbz#295611)
   178 - dropped inversion for limit modules from man pages (rhbz#220780)
   179 - fixed typo in ip6tables man page (rhbz#236185)
   180 * Wed Sep 19 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-3
   181 - do not depend on local_fs in lsb header - this delayes start after network
   182 - fixed exit code for initscript usage
   183 * Mon Sep 17 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-2.1
   184 - do not use lock file for condrestart test
   185 * Thu Aug 23 2007 Thomas Woerner <twoerner@redhat.com> 1.3.8-2
   186 - fixed initscript for LSB conformance (rhbz#246953, rhbz#242459)
   187 - provide iptc interface again, but unsupported (rhbz#216733)
   188 - compile all extension, which are supported by the kernel-headers package
   189 - review fixes (rhbz#225906)
   190 * Tue Jul 31 2007 Thomas Woerner <twoerner@redhat.com>
   191 - reverted ipv6 fix, because it disables the ipv6 at all (rhbz#236888)
   192 * Fri Jul 13 2007 Steve Conklin <sconklin@redhat.com> - 1.3.8-1
   193 - New version 1.3.8
   194 * Mon Apr 23 2007 Jeremy Katz <katzj@redhat.com> - 1.3.7-2
   195 - fix error when ipv6 support isn't loaded in the kernel (#236888)
   196 * Wed Jan 10 2007 Thomas Woerner <twoerner@redhat.com> 1.3.7-1.1
   197 - fixed installation of secmark modules
   198 * Tue Jan  9 2007 Thomas Woerner <twoerner@redhat.com> 1.3.7-1
   199 - new verison 1.3.7
   200 - iptc is not a public interface and therefore not installed anymore
   201 - dropped upstream secmark patch
   202 * Tue Sep 19 2006 Thomas Woerner <twoerner@redhat.com> 1.3.5-2
   203 - added secmark iptables patches (#201573)
   204 * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.3.5-1.2.1
   205 - rebuild
   206 * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.3.5-1.2
   207 - bump again for double-long bug on ppc(64)
   208 * Tue Feb  7 2006 Jesse Keating <jkeating@redhat.com> - 1.3.5-1.1
   209 - rebuilt for new gcc4.1 snapshot and glibc changes
   210 * Thu Feb  2 2006 Thomas Woerner <twoerner@redhat.com> 1.3.5-1
   211 - new version 1.3.5
   212 - fixed init script to set policy for raw tables, too (#179094)
   213 * Tue Jan 24 2006 Thomas Woerner <twoerner@redhat.com> 1.3.4-3
   214 - added important iptables header files to devel package
   215 * Fri Dec  9 2005 Jesse Keating <jkeating@redhat.com>
   216 - rebuilt
   217 * Fri Nov 25 2005 Thomas Woerner <twoerner@redhat.com> 1.3.4-2
   218 - fix for plugin problem: link with "gcc -shared" instead of "ld -shared" and
   219   replace "_init" with "__attribute((constructor)) my_init"
   220 * Fri Nov 25 2005 Thomas Woerner <twoerner@redhat.com> 1.3.4-1.1
   221 - rebuild due to unresolved symbols in shared libraries
   222 * Fri Nov 18 2005 Thomas Woerner <twoerner@redhat.com> 1.3.4-1
   223 - new version 1.3.4
   224 - dropped free_opts patch (upstream fixed)
   225 - made libipq PIC (#158623)
   226 - additional configuration options for iptables startup script (#172929)
   227   Thanks to Jan Gruenwald for the patch
   228 - spec file cleanup (dropped linux_header define and usage)
   229 * Mon Jul 18 2005 Thomas Woerner <twoerner@redhat.com> 1.3.2-1
   230 - new version 1.3.2 with additional patch for the misplaced free_opts call
   231   from Marcus Sundberg
   232 * Wed May 11 2005 Thomas Woerner <twoerner@redhat.com> 1.3.1-1
   233 - new version 1.3.1
   234 * Fri Mar 18 2005 Thomas Woerner <twoerner@redhat.com> 1.3.0-2
   235 - Remove unnecessary explicit kernel dep (#146142)
   236 - Fixed out of bounds accesses (#131848): Thanks to Steve Grubb
   237   for the patch
   238 - Adapted iptables-config to reference to modprobe.conf (#150143)
   239 - Remove misleading message (#140154): Thanks to Ulrich Drepper
   240   for the patch
   241 * Mon Feb 21 2005 Thomas Woerner <twoerner@redhat.com> 1.3.0-1
   242 - new version 1.3.0
   243 * Thu Nov 11 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-3.2
   244 - fixed autoload problem in iptables and ip6tables (CAN-2004-0986)
   245 * Fri Sep 17 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-3.1
   246 - changed default behaviour for IPTABLES_STATUS_NUMERIC to "yes" (#129731)
   247 - modified config file to match this change and un-commented variables with
   248   default values
   249 * Thu Sep 16 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-3
   250 - applied second part of cleanup patch from (#131848): thanks to Steve Grubb
   251   for the patch
   252 * Wed Aug 25 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-2
   253 - fixed free bug in iptables (#128322)
   254 * Tue Jun 22 2004 Thomas Woerner <twoerner@redhat.com> 1.2.11-1
   255 - new version 1.2.11
   256 * Thu Jun 17 2004 Thomas Woerner <twoerner@redhat.com> 1.2.10-1
   257 - new version 1.2.10
   258 * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
   259 - rebuilt
   260 * Tue Mar  2 2004 Elliot Lee <sopwith@redhat.com>
   261 - rebuilt
   262 * Thu Feb 26 2004 Thomas Woerner <twoerner@redhat.com> 1.2.9-2.3
   263 - fixed iptables-restore -c fault if there are no counters (#116421)
   264 * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
   265 - rebuilt
   266 * Sun Jan 25 2004 Dan Walsh <dwalsh@redhat.com> 1.2.9-1.2
   267 - Close File descriptors to prevent SELinux error message
   268 * Wed Jan  7 2004 Thomas Woerner <twoerner@redhat.com> 1.2.9-1.1
   269 - rebuild
   270 * Wed Dec 17 2003 Thomas Woerner <twoerner@redhat.com> 1.2.9-1
   271 - vew version 1.2.9
   272 - new config options in ipXtables-config:
   273   IPTABLES_MODULES_UNLOAD
   274 - more documentation in ipXtables-config
   275 - fix for netlink security issue in libipq (devel package)
   276 - print fix for libipt_icmp (#109546)
   277 * Thu Oct 23 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-13
   278 - marked all messages in iptables init script for translation (#107462)
   279 - enabled devel package (#105884, #106101)
   280 - bumped build for fedora for libipt_recent.so (#106002)
   281 * Tue Sep 23 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-12.1
   282 - fixed lost udp port range in ip6tables-save (#104484)
   283 - fixed non numeric multiport port output in ipXtables-savs
   284 * Mon Sep 22 2003 Florian La Roche <Florian.LaRoche@redhat.de> 1.2.8-11
   285 - do not link against -lnsl
   286 * Wed Sep 17 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-10
   287 - made variables in rmmod_r local
   288 * Tue Jul 22 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-9
   289 - fixed permission for init script
   290 * Sat Jul 19 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-8
   291 - fixed save when iptables file is missing and iptables-config permissions
   292 * Tue Jul  8 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-7
   293 - fixes for ip6tables: module unloading, setting policy only for existing
   294   tables
   295 * Thu Jul  3 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-6
   296 - IPTABLES_SAVE_COUNTER defaults to no, now
   297 - install config file in /etc/sysconfig
   298 - exchange unload of ip_tables and ip_conntrack
   299 - fixed start function
   300 * Wed Jul  2 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-5
   301 - new config option IPTABLES_SAVE_ON_RESTART
   302 - init script: new status, save and restart
   303 - fixes #44905, #65389, #80785, #82860, #91040, #91560 and #91374
   304 * Mon Jun 30 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-4
   305 - new config option IPTABLES_STATUS_NUMERIC
   306 - cleared IPTABLES_MODULES in iptables-config
   307 * Mon Jun 30 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-3
   308 - new init scripts
   309 * Sat Jun 28 2003 Florian La Roche <Florian.LaRoche@redhat.de>
   310 - remove check for very old kernel versions in init scripts
   311 - sync up both init scripts and remove some further ugly things
   312 - add some docu into rpm
   313 * Thu Jun 26 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-2
   314 - rebuild
   315 * Mon Jun 16 2003 Thomas Woerner <twoerner@redhat.com> 1.2.8-1
   316 - update to 1.2.8
   317 * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
   318 - rebuilt
   319 * Mon Jan 13 2003 Bill Nottingham <notting@redhat.com> 1.2.7a-1
   320 - update to 1.2.7a
   321 - add a plethora of bugfixes courtesy Michael Schwendt <mschewndt@yahoo.com>
   322 * Fri Dec 13 2002 Elliot Lee <sopwith@redhat.com> 1.2.6a-3
   323 - Fix multilib
   324 * Wed Aug  7 2002 Karsten Hopp <karsten@redhat.de>
   325 - fixed iptables and ip6tables initscript output, based on #70511
   326 - check return status of all iptables calls, not just the last one
   327   in a 'for' loop.
   328 * Mon Jul 29 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.6a-1
   329 - 1.2.6a (bugfix release, #69747)
   330 * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
   331 - automated rebuild
   332 * Thu May 23 2002 Tim Powers <timp@redhat.com>
   333 - automated rebuild
   334 * Mon Mar  4 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.5-3
   335 - Add some fixes from CVS, fixing bug #60465
   336 * Tue Feb 12 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.5-2
   337 - Merge ip6tables improvements from Ian Prowell <iprowell@prowell.org>
   338   [#59402]
   339 - Update URL (#59354)
   340 - Use /sbin/chkconfig rather than chkconfig in %%%%postun script
   341 * Fri Jan 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.5-1
   342 - 1.2.5
   343 * Wed Jan  9 2002 Tim Powers <timp@redhat.com>
   344 - automated rebuild
   345 * Mon Nov  5 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.4-2
   346 - Fix %%%%preun script
   347 * Tue Oct 30 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.4-1
   348 - Update to 1.2.4 (various fixes, including security fixes; among others:
   349   [#42990], #50500, #53325, #54280)
   350 - Fix init script (#31133)
   351 * Mon Sep  3 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.3-1
   352 - 1.2.3 (5 security fixes, some other fixes)
   353 - Fix updating (#53032)
   354 * Mon Aug 27 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-4
   355 - Fix #50990
   356 - Add some fixes from current CVS; should fix #52620
   357 * Mon Jul 16 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-3
   358 - Add some fixes from the current CVS tree; fixes #49154 and some IPv6
   359   issues
   360 * Tue Jun 26 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-2
   361 - Fix iptables-save reject-with (#45632), Patch from Michael Schwendt
   362   <mschwendt@yahoo.com>
   363 * Tue May  8 2001 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.2-1
   364 - 1.2.2
   365 * Wed Mar 21 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   366 - 1.2.1a, fixes #28412, #31136, #31460, #31133
   367 * Thu Mar  1 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   368 - Yet another initscript fix (#30173)
   369 - Fix the fixes; they fixed some issues but broke more important
   370   stuff :/ (#30176)
   371 * Tue Feb 27 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   372 - Fix up initscript (#27962)
   373 - Add fixes from CVS to iptables-{restore,save}, fixing #28412
   374 * Fri Feb  9 2001 Karsten Hopp <karsten@redhat.de>
   375 - create /etc/sysconfig/iptables mode 600 (same problem as #24245)
   376 * Mon Feb  5 2001 Karsten Hopp <karsten@redhat.de>
   377 - fix bugzilla #25986 (initscript not marked as config file)
   378 - fix bugzilla #25962 (iptables-restore)
   379 - mv chkconfig --del from postun to preun
   380 * Thu Feb  1 2001 Trond Eivind Glomsrød <teg@redhat.com>
   381 - Fix check for ipchains
   382 * Mon Jan 29 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   383 - Some fixes to init scripts
   384 * Wed Jan 24 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   385 - Add some fixes from CVS, fixes among other things Bug #24732
   386 * Wed Jan 17 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   387 - Add missing man pages, fix up init script (Bug #17676)
   388 * Mon Jan 15 2001 Bill Nottingham <notting@redhat.com>
   389 - add init script
   390 * Mon Jan 15 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   391 - 1.2
   392 - fix up ipv6 split
   393 - add init script
   394 - Move the plugins from /usr/lib/iptables to /lib/iptables.
   395   This needs to work before /usr is mounted...
   396 - Use -O1 on alpha (compiler bug)
   397 * Sat Jan  6 2001 Bernhard Rosenkraenzer <bero@redhat.com>
   398 - 1.1.2
   399 - Add IPv6 support (in separate package)
   400 * Thu Aug 17 2000 Bill Nottingham <notting@redhat.com>
   401 - build everywhere
   402 * Tue Jul 25 2000 Bernhard Rosenkraenzer <bero@redhat.com>
   403 - 1.1.1
   404 * Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
   405 - automatic rebuild
   406 * Tue Jun 27 2000 Preston Brown <pbrown@redhat.com>
   407 - move iptables to /sbin.
   408 - excludearch alpha for now, not building there because of compiler bug(?)
   409 * Fri Jun  9 2000 Bill Nottingham <notting@redhat.com>
   410 - don't obsolete ipchains either
   411 - update to 1.1.0
   412 * Sun Jun  4 2000 Bill Nottingham <notting@redhat.com>
   413 - remove explicit kernel requirement
   414 * Tue May  2 2000 Bernhard Rosenkränzer <bero@redhat.com>
   415 - initial package

mercurial