- new version 1.4.12.1 with new pkgconfig/libipq.pc
- build: abort autogen on subcommand failure - build: strengthen check for overlong lladdr components - build: workaround broken linux-headers on RHEL-5 - doc: clarify libxt_connlimit defaults - doc: fix typo in libxt_TRACE - extensions: use multi-target registration - libip6t_dst: restore setting IP6T_OPTS_LEN flag - libip6t_frag: restore inversion support - libip6t_hbh: restore setting IP6T_OPTS_LEN flag - libipq: add pkgconfig file - libipt_ttl: document that negation is available - libxt_conntrack: fix --ctproto 0 output - libxt_conntrack: remove one misleading comment - libxt_dccp: fix deprecated intrapositional ordering of ! - libxt_dccp: fix random output of ! on --dccp-option - libxt_dccp: provide man pages options in short help too - libxt_dccp: restore missing XTOPT_INVERT tags for options - libxt_dccp: spell out option name on save - libxt_dscp: restore inversion support - libxt_hashlimit: default htable-expire must be in milliseconds - libxt_hashlimit: observe new default gc-expire time when saving - libxt_hashlimit: remove inversion from hashlimit rev 0 - libxt_owner: restore inversion support - libxt_physdev: restore inversion support - libxt_policy: remove superfluous inversion - libxt_set: put differing variable names in directly - libxt_set: update man page about kernel support on the feature - libxt_string: define _GNU_SOURCE for strnlen - libxt_string: escape the escaping char too - libxt_string: fix space around arguments - libxt_string: replace hex codes by char equivalents - libxt_string: simplify hex output routine - libxt_tcp: always print the mask parts - libxt_TCPMSS: restore build with IPv6-less libcs - libxt_TOS: update linux kernel version list for backported fix - libxt_u32: fix missing allowance for inversion - src: remove unused IPTABLES_MULTI define - tests: add negation tests for libxt_statistic - xtoptions: flag use of XTOPT_POINTER without XTOPT_PUT
This commit is contained in:
parent
46fbaf570a
commit
2830e77cd7
1
.gitignore
vendored
1
.gitignore
vendored
@ -14,3 +14,4 @@ iptables-1.4.9.tar.bz2
|
|||||||
/iptables-1.4.10.tar.bz2
|
/iptables-1.4.10.tar.bz2
|
||||||
/iptables-1.4.11.1.tar.bz2
|
/iptables-1.4.11.1.tar.bz2
|
||||||
/iptables-1.4.12.tar.bz2
|
/iptables-1.4.12.tar.bz2
|
||||||
|
/iptables-1.4.12.1.tar.bz2
|
||||||
|
@ -14,8 +14,8 @@
|
|||||||
|
|
||||||
Name: iptables
|
Name: iptables
|
||||||
Summary: Tools for managing Linux kernel packet filtering capabilities
|
Summary: Tools for managing Linux kernel packet filtering capabilities
|
||||||
Version: 1.4.12
|
Version: 1.4.12.1
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Source: http://www.netfilter.org/projects/iptables/files/%{name}-%{version}.tar.bz2
|
Source: http://www.netfilter.org/projects/iptables/files/%{name}-%{version}.tar.bz2
|
||||||
Source1: iptables.init
|
Source1: iptables.init
|
||||||
Source2: iptables-config
|
Source2: iptables-config
|
||||||
@ -234,10 +234,53 @@ fi
|
|||||||
%{_libdir}/libip*tc.so
|
%{_libdir}/libip*tc.so
|
||||||
%{_libdir}/libipq.so
|
%{_libdir}/libipq.so
|
||||||
%{_libdir}/libxtables.so
|
%{_libdir}/libxtables.so
|
||||||
|
%{_libdir}/pkgconfig/libipq.pc
|
||||||
%{_libdir}/pkgconfig/libiptc.pc
|
%{_libdir}/pkgconfig/libiptc.pc
|
||||||
%{_libdir}/pkgconfig/xtables.pc
|
%{_libdir}/pkgconfig/xtables.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Dec 12 2011 Thomas Woerner <twoerner@redhat.com> 1.4.12.1-1
|
||||||
|
- new version 1.4.12.1 with new pkgconfig/libipq.pc
|
||||||
|
- build: abort autogen on subcommand failure
|
||||||
|
- build: strengthen check for overlong lladdr components
|
||||||
|
- build: workaround broken linux-headers on RHEL-5
|
||||||
|
- doc: clarify libxt_connlimit defaults
|
||||||
|
- doc: fix typo in libxt_TRACE
|
||||||
|
- extensions: use multi-target registration
|
||||||
|
- libip6t_dst: restore setting IP6T_OPTS_LEN flag
|
||||||
|
- libip6t_frag: restore inversion support
|
||||||
|
- libip6t_hbh: restore setting IP6T_OPTS_LEN flag
|
||||||
|
- libipq: add pkgconfig file
|
||||||
|
- libipt_ttl: document that negation is available
|
||||||
|
- libxt_conntrack: fix --ctproto 0 output
|
||||||
|
- libxt_conntrack: remove one misleading comment
|
||||||
|
- libxt_dccp: fix deprecated intrapositional ordering of !
|
||||||
|
- libxt_dccp: fix random output of ! on --dccp-option
|
||||||
|
- libxt_dccp: provide man pages options in short help too
|
||||||
|
- libxt_dccp: restore missing XTOPT_INVERT tags for options
|
||||||
|
- libxt_dccp: spell out option name on save
|
||||||
|
- libxt_dscp: restore inversion support
|
||||||
|
- libxt_hashlimit: default htable-expire must be in milliseconds
|
||||||
|
- libxt_hashlimit: observe new default gc-expire time when saving
|
||||||
|
- libxt_hashlimit: remove inversion from hashlimit rev 0
|
||||||
|
- libxt_owner: restore inversion support
|
||||||
|
- libxt_physdev: restore inversion support
|
||||||
|
- libxt_policy: remove superfluous inversion
|
||||||
|
- libxt_set: put differing variable names in directly
|
||||||
|
- libxt_set: update man page about kernel support on the feature
|
||||||
|
- libxt_string: define _GNU_SOURCE for strnlen
|
||||||
|
- libxt_string: escape the escaping char too
|
||||||
|
- libxt_string: fix space around arguments
|
||||||
|
- libxt_string: replace hex codes by char equivalents
|
||||||
|
- libxt_string: simplify hex output routine
|
||||||
|
- libxt_tcp: always print the mask parts
|
||||||
|
- libxt_TCPMSS: restore build with IPv6-less libcs
|
||||||
|
- libxt_TOS: update linux kernel version list for backported fix
|
||||||
|
- libxt_u32: fix missing allowance for inversion
|
||||||
|
- src: remove unused IPTABLES_MULTI define
|
||||||
|
- tests: add negation tests for libxt_statistic
|
||||||
|
- xtoptions: flag use of XTOPT_POINTER without XTOPT_PUT
|
||||||
|
|
||||||
* Tue Jul 26 2011 Thomas Woerner <twoerner@redhat.com> 1.4.12-2
|
* Tue Jul 26 2011 Thomas Woerner <twoerner@redhat.com> 1.4.12-2
|
||||||
- dropped temporary provide again
|
- dropped temporary provide again
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user