* Thu Feb 13 2025 Jean-Philippe Pialasse <jpp@koozali.org> 3.25-2.sme
- import to SME 11 contribs and patch max country = 50
This commit is contained in:
parent
4578437585
commit
0fd9dc3736
@ -3,7 +3,7 @@
|
|||||||
SMEServer Koozali developed git repo for xtables-addons contrib
|
SMEServer Koozali developed git repo for xtables-addons contrib
|
||||||
|
|
||||||
## Wiki
|
## Wiki
|
||||||
<br />https://wiki.koozali.org/xtables-addons
|
<br />https://wiki.koozali.org/Xt_geoip
|
||||||
|
|
||||||
## Bugzilla
|
## Bugzilla
|
||||||
Show list of outstanding bugs: [All](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=UNCONFIRMED&bug_status=CONFIRMED&bug_status=NEEDINFO&bug_status=IN_PROGRESS&bug_status=RESOLVED&bug_status=VERIFIED&classification=Contribs&component=xtables-addons&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
|
Show list of outstanding bugs: [All](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=UNCONFIRMED&bug_status=CONFIRMED&bug_status=NEEDINFO&bug_status=IN_PROGRESS&bug_status=RESOLVED&bug_status=VERIFIED&classification=Contribs&component=xtables-addons&list_id=105781&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&product=SME+Contribs&query_format=advanced)
|
||||||
|
12
xtables-addons-3.25-geoipmax.patch
Normal file
12
xtables-addons-3.25-geoipmax.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
diff -Nur xtables-addons-3.25.old/extensions/xt_geoip.h xtables-addons-3.25/extensions/xt_geoip.h
|
||||||
|
--- xtables-addons-3.25.old/extensions/xt_geoip.h 2023-08-18 11:00:10.000000000 -0400
|
||||||
|
+++ xtables-addons-3.25/extensions/xt_geoip.h 2025-02-13 16:21:52.402168545 -0500
|
||||||
|
@@ -17,7 +17,7 @@
|
||||||
|
XT_GEOIP_DST = 1 << 1, /* Perform check on Destination IP */
|
||||||
|
XT_GEOIP_INV = 1 << 2, /* Negate the condition */
|
||||||
|
|
||||||
|
- XT_GEOIP_MAX = 31, /* Maximum of countries */
|
||||||
|
+ XT_GEOIP_MAX = 50, /* Maximum of countries */
|
||||||
|
};
|
||||||
|
|
||||||
|
/* Yup, an address range will be passed in with host-order */
|
BIN
xtables-addons-3.25.tar.xz
Normal file
BIN
xtables-addons-3.25.tar.xz
Normal file
Binary file not shown.
@ -1,58 +1,254 @@
|
|||||||
%define name xtables-addons
|
Name: xtables-addons
|
||||||
%define version 1.0
|
Summary: Extensions targets and matches for iptables
|
||||||
%define release 1
|
Version: 3.25
|
||||||
Summary: This is what xtables-addons does.
|
Release: 2%{?dist}
|
||||||
Name: %{name}
|
# The entire source code is GPLv2 except ACCOUNT/libxt_ACCOUNT_cl.* which is LGPLv2
|
||||||
Version: %{version}
|
License: GPLv2 and LGPLv2
|
||||||
Release: %{release}%{?dist}
|
URL: https://inai.de/projects/xtables-addons/
|
||||||
Source: %{name}-%{version}.tar.gz
|
Source0: https://inai.de/files/%{name}/%{name}-%{version}.tar.xz
|
||||||
License: GNU GPL version 2
|
Patch0: xtables-addons-3.25-geoipmax.patch
|
||||||
Group: SMEserver/addon
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-buildroot
|
BuildRequires: gcc
|
||||||
Prefix: %{_prefix}
|
BuildRequires: iptables-devel >= 1.4.5
|
||||||
BuildArchitectures: noarch
|
Provides: %{name}-kmod-common = %{version}
|
||||||
BuildRequires: smeserver-devtools
|
Requires: %{name}-kmod >= %{version}
|
||||||
Requires: smeserver-release >= 11.0
|
Requires: ipset >= 6.11
|
||||||
AutoReqProv: no
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Xtables-addons provides extra modules for iptables not present in the kernel,
|
Xtables-addons provides extra modules for iptables not present in the kernel,
|
||||||
and is the successor of patch-o-matic. Extensions includes new targets like
|
and is the successor of patch-o-matic. Extensions includes new targets like
|
||||||
TEE, TARPIT, CHAOS, or modules like geoip, ipset, and account.
|
TEE, TARPIT, CHAOS, or modules like geoip, ipset, and account.
|
||||||
This package provides the userspace libraries for iptables to use extensions in the xtables-addons-kmod package. You must also install the xtables-addons-kmod package.
|
|
||||||
|
|
||||||
%changelog
|
This package provides the userspace libraries for iptables to use extensions
|
||||||
* Day MMMM DD YYYY <brianr@koozali.org> 1.0-1.sme
|
in the %{name}-kmod package. You must also install the
|
||||||
- Initial code - create RPM [SME:99999]
|
%{name}-kmod package.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
%setup -q
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
perl createlinks
|
%configure --without-kbuild
|
||||||
|
|
||||||
|
%make_build V=1
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
%make_install
|
||||||
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
|
|
||||||
rm -f %{name}-%{version}-filelist
|
|
||||||
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
|
|
||||||
> %{name}-%{version}-filelist
|
|
||||||
#echo "%doc COPYING" >> %{name}-%{version}-filelist
|
|
||||||
#--dir <dir> 'attr(755,user,grp)' \
|
|
||||||
#--file <file> 'attr(755,root,root)' \
|
|
||||||
|
|
||||||
%clean
|
# There is no -devel package. So no need for these files
|
||||||
cd ..
|
rm -f %{buildroot}%{_libdir}/*.{la,so}
|
||||||
rm -rf %{name}-%{version}
|
|
||||||
|
|
||||||
%pre
|
|
||||||
|
|
||||||
%preun
|
%files
|
||||||
|
%doc LICENSE README.rst doc/* geoip
|
||||||
|
%{_libexecdir}/xtables-addons/
|
||||||
|
%{_libdir}/xtables/
|
||||||
|
%{_libdir}/*.so.*
|
||||||
|
%{_bindir}/xt_geoip_query
|
||||||
|
%{_sbindir}/pknlusr
|
||||||
|
%{_sbindir}/iptaccount
|
||||||
|
%{_mandir}/man?/*
|
||||||
|
|
||||||
%post
|
%changelog
|
||||||
|
* Thu Feb 13 2025 Jean-Philippe Pialasse <jpp@koozali.org> 3.25-2.sme
|
||||||
|
- import to SME 11 contribs and patch max country = 50
|
||||||
|
|
||||||
%postun
|
* Tue Nov 21 2023 Leigh Scott <leigh123linux@gmail.com> - 3.25-1
|
||||||
#uninstall
|
- Release 3.25
|
||||||
%files -f %{name}-%{version}-filelist
|
|
||||||
%defattr(-,root,root)
|
* Wed Aug 02 2023 RPM Fusion Release Engineering <sergiomb@rpmfusion.org> - 3.24-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu May 04 2023 Leigh Scott <leigh123linux@gmail.com> - 3.24-1
|
||||||
|
- Release 3.24
|
||||||
|
|
||||||
|
* Fri Jan 13 2023 Leigh Scott <leigh123linux@gmail.com> - 3.23-1
|
||||||
|
- Release 3.23
|
||||||
|
|
||||||
|
* Sat Oct 29 2022 Leigh Scott <leigh123linux@gmail.com> - 3.22-1
|
||||||
|
- Release 3.22
|
||||||
|
|
||||||
|
* Mon Aug 08 2022 RPM Fusion Release Engineering <sergiomb@rpmfusion.org> - 3.21-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild and ffmpeg
|
||||||
|
5.1
|
||||||
|
|
||||||
|
* Mon Jun 27 2022 Leigh Scott <leigh123linux@gmail.com> - 3.21-1
|
||||||
|
- Release 3.21
|
||||||
|
|
||||||
|
* Sun Apr 17 2022 Leigh Scott <leigh123linux@gmail.com> - 3.20-1
|
||||||
|
- Release 3.20
|
||||||
|
|
||||||
|
* Tue Mar 22 2022 Leigh Scott <leigh123linux@gmail.com> - 3.19-1
|
||||||
|
- Release 3.19
|
||||||
|
|
||||||
|
* Wed Feb 09 2022 RPM Fusion Release Engineering <sergiomb@rpmfusion.org> - 3.18-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Aug 03 2021 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 3.18-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Mar 21 2021 Leigh Scott <leigh123linux@gmail.com> - 3.18-1
|
||||||
|
- Release 3.18
|
||||||
|
|
||||||
|
* Tue Feb 23 2021 Leigh Scott <leigh123linux@gmail.com> - 3.15-1
|
||||||
|
- Release 3.15
|
||||||
|
|
||||||
|
* Thu Feb 04 2021 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 3.13-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 24 2020 Leigh Scott <leigh123linux@gmail.com> - 3.13-1
|
||||||
|
- Release 3.13
|
||||||
|
|
||||||
|
* Wed Oct 28 2020 Leigh Scott <leigh123linux@gmail.com> - 3.11-1
|
||||||
|
- Release 3.11
|
||||||
|
|
||||||
|
* Wed Aug 19 2020 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 3.10-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Aug 08 2020 Leigh Scott <leigh123linux@gmail.com> - 3.10-1
|
||||||
|
- Release 3.10
|
||||||
|
- Fix URLs
|
||||||
|
- Drop autogen build requires
|
||||||
|
|
||||||
|
* Wed Apr 22 2020 Leigh Scott <leigh123linux@gmail.com> - 3.9-1
|
||||||
|
- Release 3.9
|
||||||
|
|
||||||
|
* Wed Feb 05 2020 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 3.7-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Dec 20 2019 Leigh Scott <leigh123linux@googlemail.com> - 3.7-1
|
||||||
|
- Release 3.7
|
||||||
|
|
||||||
|
* Sun Oct 20 2019 Leigh Scott <leigh123linux@googlemail.com> - 3.5-1
|
||||||
|
- Release 3.5
|
||||||
|
|
||||||
|
* Fri Aug 09 2019 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 3.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Apr 02 2019 Robert-André Mauchin <zebob.m@gmail.com> - 3.3-1
|
||||||
|
- Release 3.3
|
||||||
|
|
||||||
|
* Tue Mar 05 2019 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 3.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 20 2018 Leigh Scott <leigh123linux@googlemail.com> - 3.2-1
|
||||||
|
- Update to 3.2
|
||||||
|
- Remove Group tag
|
||||||
|
- Fix directoy ownership
|
||||||
|
|
||||||
|
* Sat Sep 01 2018 Leigh Scott <leigh123linux@googlemail.com> - 3.1-1
|
||||||
|
- Update to 3.1
|
||||||
|
|
||||||
|
* Sun Aug 19 2018 Leigh Scott <leigh123linux@googlemail.com> - 3.0-3
|
||||||
|
- Rebuilt for Fedora 29 Mass Rebuild binutils issue
|
||||||
|
|
||||||
|
* Fri Jul 27 2018 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 3.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Mar 05 2018 Leigh Scott <leigh123linux@googlemail.com> - 3.0-1
|
||||||
|
- Update to 3.0
|
||||||
|
|
||||||
|
* Thu Mar 01 2018 RPM Fusion Release Engineering <leigh123linux@googlemail.com> - 2.14-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Dec 13 2017 Leigh Scott <leigh123linux@googlemail.com> - 2.14-1
|
||||||
|
- Update to 2.14
|
||||||
|
|
||||||
|
* Thu Aug 24 2017 Nicolas Chauvet <kwizart@gmail.com> - 2.13-2
|
||||||
|
- Distribute xt_geoip scripts
|
||||||
|
|
||||||
|
* Mon Jul 03 2017 Nicolas Chauvet <kwizart@gmail.com> - 2.13-1
|
||||||
|
- Update to 2.13
|
||||||
|
|
||||||
|
* Tue Mar 21 2017 RPM Fusion Release Engineering <kwizart@rpmfusion.org> - 2.12-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 15 2017 Leigh Scott <leigh123linux@googlemail.com> - 2.12-2
|
||||||
|
- Rebuild for iptables soname bump
|
||||||
|
|
||||||
|
* Tue Jan 17 2017 Nicolas Chauvet <kwizart@gmail.com> - 2.12-1
|
||||||
|
- Update to 2.12
|
||||||
|
|
||||||
|
* Thu Sep 08 2016 Sérgio Basto <sergio@serjux.com> - 2.11-2
|
||||||
|
- Rebuild for iptables soname bump
|
||||||
|
|
||||||
|
* Wed Jun 22 2016 Nicolas Chauvet <kwizart@gmail.com> - 2.11-1
|
||||||
|
- Update to 2.11
|
||||||
|
|
||||||
|
* Sun Jan 03 2016 Nicolas Chauvet <kwizart@gmail.com> - 2.10-1
|
||||||
|
- Update to 2.10
|
||||||
|
|
||||||
|
* Sat Oct 24 2015 Nicolas Chauvet <kwizart@gmail.com> - 2.9-1
|
||||||
|
- Update to 2.9
|
||||||
|
|
||||||
|
* Thu Jul 30 2015 Nicolas Chauvet <kwizart@gmail.com> - 2.7-1
|
||||||
|
- Update to 2.7
|
||||||
|
|
||||||
|
* Tue Nov 04 2014 Nicolas Chauvet <kwizart@gmail.com> - 2.6-1
|
||||||
|
- Update to 2.6
|
||||||
|
- Drop initscript (use ipset-services instead)
|
||||||
|
- Spec file clean-up
|
||||||
|
|
||||||
|
* Sat Apr 26 2014 Nicolas Chauvet <kwizart@gmail.com> - 2.5-1
|
||||||
|
- Update to 2.5
|
||||||
|
|
||||||
|
* Sun Jan 12 2014 Nicolas Chauvet <kwizart@gmail.com> - 2.4-1
|
||||||
|
- Update to 2.4
|
||||||
|
|
||||||
|
* Tue Jun 18 2013 Nicolas Chauvet <kwizart@gmail.com> - 2.3-1
|
||||||
|
- Update to 2.3
|
||||||
|
|
||||||
|
* Thu Apr 18 2013 Nicolas Chauvet <kwizart@gmail.com> - 2.2-1
|
||||||
|
- Update to 2.2
|
||||||
|
|
||||||
|
* Mon Jan 14 2013 Nicolas Chauvet <kwizart@gmail.com> - 2.1-1
|
||||||
|
- Update to 2.1
|
||||||
|
|
||||||
|
* Thu Oct 18 2012 Nicolas Chauvet <kwizart@gmail.com> - 1.47.1-1
|
||||||
|
- Update to 1.47.1
|
||||||
|
|
||||||
|
* Wed Oct 03 2012 Nicolas Chauvet <kwizart@gmail.com> - 1.46-1
|
||||||
|
- Update to 1.46
|
||||||
|
|
||||||
|
* Tue Jul 31 2012 Nicolas Chauvet <kwizart@gmail.com> - 1.45-1
|
||||||
|
- Update to 1.45
|
||||||
|
|
||||||
|
* Thu Jun 14 2012 Nicolas Chauvet <kwizart@gmail.com> - 1.42-3
|
||||||
|
- Fix ipset path in F-16 and later
|
||||||
|
|
||||||
|
* Tue Jun 05 2012 Nicolas Chauvet <kwizart@gmail.com> - 1.42-2
|
||||||
|
- Fix for UsrMove - rfbz#2360
|
||||||
|
- Fix Conflict with ipset - rfbz#2201
|
||||||
|
- Add Requires ipset >= 6.11 - rfbz#2226
|
||||||
|
|
||||||
|
* Thu Apr 12 2012 Nicolas Chauvet <kwizart@gmail.com> - 1.42-1
|
||||||
|
- Update to 1.42
|
||||||
|
|
||||||
|
* Tue Jan 24 2012 Nicolas Chauvet <kwizart@gmail.com> - 1.41-1
|
||||||
|
- Update to 1.41
|
||||||
|
|
||||||
|
* Thu Nov 17 2011 Nicolas Chauvet <kwizart@gmail.com> - 1.39-1
|
||||||
|
- Update to 1.39
|
||||||
|
|
||||||
|
* Wed Oct 27 2010 Chen Lei <supercyper@163.com> - 1.30-1
|
||||||
|
- update to 1.30
|
||||||
|
|
||||||
|
* Sun Jul 25 2010 Chen Lei <supercyper@163.com> - 1.28-1
|
||||||
|
- update to 1.28
|
||||||
|
|
||||||
|
* Mon Jun 28 2010 Chen Lei <supercyper@163.com> - 1.27-2
|
||||||
|
- rebuild for kernel 2.6.35
|
||||||
|
|
||||||
|
* Mon May 31 2010 Chen Lei <supercyper@163.com> - 1.27-1
|
||||||
|
- update to 1.27
|
||||||
|
|
||||||
|
* Sun May 02 2010 Chen Lei <supercyper@163.com> - 1.26-1
|
||||||
|
- update to 1.26
|
||||||
|
|
||||||
|
* Mon Apr 26 2010 Chen Lei <supercyper@163.com> - 1.25-1
|
||||||
|
- update to 1.25
|
||||||
|
|
||||||
|
* Sun Apr 25 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.24-2
|
||||||
|
- rebuilt
|
||||||
|
|
||||||
|
* Thu Mar 18 2010 Chen Lei <supercyper@163.com> - 1.24-1
|
||||||
|
- initial rpm build
|
||||||
|
Loading…
Reference in New Issue
Block a user