forked from pool/ipset
Accepting request 252755 from security:netfilter
- Update to new upstream release 6.23 OBS-URL: https://build.opensuse.org/request/show/252755 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ipset?expand=0&rev=18
This commit is contained in:
commit
0274734bc0
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:cf46c9c35a15aa0f2e0fbab0422586757bd82386c8ad3864936e6cffbd74a331
|
|
||||||
size 510013
|
|
3
ipset-6.23.tar.bz2
Normal file
3
ipset-6.23.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ffb8245320fc13f22233fcaf8b92a5f51298224fecc183e20785f94975310523
|
||||||
|
size 516754
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 23 18:04:06 UTC 2014 - jengelh@inai.de
|
||||||
|
|
||||||
|
- Update to new upstream release 6.23
|
||||||
|
* Order create and add options in manpage so that generic ones
|
||||||
|
come first
|
||||||
|
* Centralise generic create options (family, hashsize, maxelem)
|
||||||
|
on top of man page in the generic options section.
|
||||||
|
* Add description of hash:mac set type to man page.
|
||||||
|
* Add missing space for skbinfo option synopsis.
|
||||||
|
* Support updating extensions when the set is full
|
||||||
|
- Drop sovers.diff (no longer needed)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 16 06:27:32 UTC 2014 - jengelh@inai.de
|
||||||
|
|
||||||
|
- Update to new upstream release 6.22
|
||||||
|
* includes the new set type hash:mac
|
||||||
|
* The new skbinfo extension makes possible to store fw mark, tc
|
||||||
|
class and/or hardware queue parameters together with the set
|
||||||
|
elements and then attach them to the matchig packets by the SET
|
||||||
|
target.
|
||||||
|
- Add sovers.diff to counter missing symbol errors
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 5 08:47:39 UTC 2014 - jengelh@inai.de
|
Wed Mar 5 08:47:39 UTC 2014 - jengelh@inai.de
|
||||||
|
|
||||||
|
17
ipset.spec
17
ipset.spec
@ -18,14 +18,13 @@
|
|||||||
|
|
||||||
Name: ipset
|
Name: ipset
|
||||||
%define lname libipset3
|
%define lname libipset3
|
||||||
Version: 6.21.1
|
Version: 6.23
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Netfilter ipset administration utility
|
Summary: Netfilter ipset administration utility
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
Group: Productivity/Networking/Security
|
Group: Productivity/Networking/Security
|
||||||
Url: http://ipset.netfilter.org/
|
Url: http://ipset.netfilter.org/
|
||||||
|
|
||||||
#Freecode-URL: http://freecode.com/projects/ipset/
|
|
||||||
#Git-Clone: git://git.netfilter.org/ipset
|
#Git-Clone: git://git.netfilter.org/ipset
|
||||||
#Git-Web: http://git.netfilter.org/
|
#Git-Web: http://git.netfilter.org/
|
||||||
Source: ftp://ftp.netfilter.org/pub/ipset/%name-%version.tar.bz2
|
Source: ftp://ftp.netfilter.org/pub/ipset/%name-%version.tar.bz2
|
||||||
@ -102,13 +101,7 @@ addresses with MAC addresses in a way, which ensures lightning speed
|
|||||||
when matching an entry against a set.
|
when matching an entry against a set.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%if 0%{?__xz:1}
|
|
||||||
%setup -q
|
%setup -q
|
||||||
%else
|
|
||||||
tar --use=xz -xf "%{S:0}";
|
|
||||||
%setup -DTq
|
|
||||||
%endif
|
|
||||||
autoreconf -fi
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%if 0%{?with_kmp}
|
%if 0%{?with_kmp}
|
||||||
@ -119,12 +112,13 @@ for flavor in %flavors_to_build; do
|
|||||||
%configure --disable-static \
|
%configure --disable-static \
|
||||||
--with-kbuild="/usr/src/linux-obj/%_target_cpu/$flavor" \
|
--with-kbuild="/usr/src/linux-obj/%_target_cpu/$flavor" \
|
||||||
--with-ksource="/usr/src/linux" \
|
--with-ksource="/usr/src/linux" \
|
||||||
--includedir="%_includedir/pkg"
|
--includedir="%_includedir/pkg/%name"
|
||||||
make %{?_smp_mflags} all modules;
|
make %{?_smp_mflags} all modules;
|
||||||
popd;
|
popd;
|
||||||
done;
|
done;
|
||||||
%else
|
%else
|
||||||
%configure --disable-static --with-kmod=no --includedir="%_includedir/pkg"
|
%configure --disable-static --with-kmod=no \
|
||||||
|
--includedir="%_includedir/pkg/%name"
|
||||||
make %{?_smp_mflags};
|
make %{?_smp_mflags};
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
@ -142,8 +136,7 @@ make %{?_smp_mflags} install DESTDIR="$b";
|
|||||||
%endif
|
%endif
|
||||||
find "$b/%_libdir" -type f -name "*.la" -delete;
|
find "$b/%_libdir" -type f -name "*.la" -delete;
|
||||||
|
|
||||||
%post -n %lname -p /sbin/ldconfig
|
%post -n %lname -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -n %lname -p /sbin/ldconfig
|
%postun -n %lname -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
Loading…
Reference in New Issue
Block a user