* [Buildroot] [PATCH 1/2] package/xtables-addons: drop unrecognized option
@ 2023-11-29 17:39 Fabrice Fontaine
2023-11-29 17:39 ` [Buildroot] [PATCH 2/2] package/xtables-addons: bump to version 3.24 Fabrice Fontaine
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Fabrice Fontaine @ 2023-11-29 17:39 UTC (permalink / raw)
To: buildroot; +Cc: Fabrice Fontaine
--with-xtables is an unrecognized option since the addition of the
package in commit 490917387a0ff6969f8130be38993eed5f06f73e:
https://github.com/nawawi/xtables-addons/blob/a576f4d43e80f9f91705c9e6a86f2d58c283df14/configure.ac
configure: WARNING: unrecognized options: --disable-gtk-doc, --disable-gtk-doc-html, --disable-doc, --disable-docs, --disable-documentation, --with-xmlto, --with-fop, --enable-ipv6, --disable-nls, --with-xtables
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/xtables-addons/xtables-addons.mk | 1 -
1 file changed, 1 deletion(-)
diff --git a/package/xtables-addons/xtables-addons.mk b/package/xtables-addons/xtables-addons.mk
index e794538956..adfedbc874 100644
--- a/package/xtables-addons/xtables-addons.mk
+++ b/package/xtables-addons/xtables-addons.mk
@@ -13,7 +13,6 @@ XTABLES_ADDONS_LICENSE_FILES = LICENSE
XTABLES_ADDONS_CONF_OPTS = \
--with-kbuild="$(LINUX_DIR)" \
- --with-xtables="$(STAGING_DIR)/usr" \
--with-xtlibdir="/usr/lib/xtables"
define XTABLES_ADDONS_BUILD_CMDS
--
2.42.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 6+ messages in thread* [Buildroot] [PATCH 2/2] package/xtables-addons: bump to version 3.24
2023-11-29 17:39 [Buildroot] [PATCH 1/2] package/xtables-addons: drop unrecognized option Fabrice Fontaine
@ 2023-11-29 17:39 ` Fabrice Fontaine
2023-12-01 10:06 ` Yann E. MORIN
2023-12-01 20:08 ` Peter Korsgaard
2023-12-01 10:02 ` [Buildroot] [PATCH 1/2] package/xtables-addons: drop unrecognized option Yann E. MORIN
2023-12-01 20:07 ` Peter Korsgaard
2 siblings, 2 replies; 6+ messages in thread
From: Fabrice Fontaine @ 2023-11-29 17:39 UTC (permalink / raw)
To: buildroot; +Cc: Fabrice Fontaine
This bump will fix the following build failure with kernel >= 6.2 thanks
to
https://codeberg.org/jengelh/xtables-addons/commit/51761c3fe2454e0b4bc25274dd55d4ab72c54bf0:
/home/buildroot/autobuild/instance-1/output-1/build/xtables-addons-3.22/extensions/xt_TARPIT.c:
In function 'xttarpit_honeypot':
/home/buildroot/autobuild/instance-1/output-1/build/xtables-addons-3.22/extensions/xt_TARPIT.c:110:26:
error: implicit declaration of function 'prandom_u32_max'; did you mean
'prandom_u32_state'? [-Werror=implicit-function-declaration]
110 | (prandom_u32_max(0x20) - 0xf);
| ^~~~~~~~~~~~~~~
| prandom_u32_state
Fixes:
- http://autobuild.buildroot.org/results/e8f2a0cb5b38ff98da97268c4b642554a0a732e1
- http://autobuild.buildroot.org/results/0191ee0590c08b73f17b35a5c8521796693772b5
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/xtables-addons/xtables-addons.hash | 2 +-
package/xtables-addons/xtables-addons.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/xtables-addons/xtables-addons.hash b/package/xtables-addons/xtables-addons.hash
index 840a31f947..7bdbbb8578 100644
--- a/package/xtables-addons/xtables-addons.hash
+++ b/package/xtables-addons/xtables-addons.hash
@@ -1,3 +1,3 @@
# Locally calculated
-sha256 faa16a27166275afbfe8df605f55c3a81ac693bf19da674d45ceded4137ae217 xtables-addons-3.22.tar.xz
+sha256 3e823f71720519ced31c4c7d2bfaf7120d9c01c59a0843dfcbe93c95c64d81c1 xtables-addons-3.24.tar.xz
sha256 ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6 LICENSE
diff --git a/package/xtables-addons/xtables-addons.mk b/package/xtables-addons/xtables-addons.mk
index adfedbc874..efd8bd98ce 100644
--- a/package/xtables-addons/xtables-addons.mk
+++ b/package/xtables-addons/xtables-addons.mk
@@ -4,7 +4,7 @@
#
################################################################################
-XTABLES_ADDONS_VERSION = 3.22
+XTABLES_ADDONS_VERSION = 3.24
XTABLES_ADDONS_SOURCE = xtables-addons-$(XTABLES_ADDONS_VERSION).tar.xz
XTABLES_ADDONS_SITE = https://inai.de/files/xtables-addons
XTABLES_ADDONS_DEPENDENCIES = iptables linux host-pkgconf
--
2.42.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [Buildroot] [PATCH 2/2] package/xtables-addons: bump to version 3.24
2023-11-29 17:39 ` [Buildroot] [PATCH 2/2] package/xtables-addons: bump to version 3.24 Fabrice Fontaine
@ 2023-12-01 10:06 ` Yann E. MORIN
2023-12-01 20:08 ` Peter Korsgaard
1 sibling, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2023-12-01 10:06 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
fabrice, All,
On 2023-11-29 18:39 +0100, Fabrice Fontaine spake thusly:
> This bump will fix the following build failure with kernel >= 6.2 thanks
> to
> https://codeberg.org/jengelh/xtables-addons/commit/51761c3fe2454e0b4bc25274dd55d4ab72c54bf0:
>
> /home/buildroot/autobuild/instance-1/output-1/build/xtables-addons-3.22/extensions/xt_TARPIT.c:
> In function 'xttarpit_honeypot':
> /home/buildroot/autobuild/instance-1/output-1/build/xtables-addons-3.22/extensions/xt_TARPIT.c:110:26:
> error: implicit declaration of function 'prandom_u32_max'; did you mean
> 'prandom_u32_state'? [-Werror=implicit-function-declaration]
> 110 | (prandom_u32_max(0x20) - 0xf);
> | ^~~~~~~~~~~~~~~
> | prandom_u32_state
>
> Fixes:
> - http://autobuild.buildroot.org/results/e8f2a0cb5b38ff98da97268c4b642554a0a732e1
> - http://autobuild.buildroot.org/results/0191ee0590c08b73f17b35a5c8521796693772b5
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Applied to next, thanks, since I was not on master when applying. Now,
I've also applied to master, thanks.
Sorry for the mess...
Regards,
Yann E. MORIN.
> ---
> package/xtables-addons/xtables-addons.hash | 2 +-
> package/xtables-addons/xtables-addons.mk | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/package/xtables-addons/xtables-addons.hash b/package/xtables-addons/xtables-addons.hash
> index 840a31f947..7bdbbb8578 100644
> --- a/package/xtables-addons/xtables-addons.hash
> +++ b/package/xtables-addons/xtables-addons.hash
> @@ -1,3 +1,3 @@
> # Locally calculated
> -sha256 faa16a27166275afbfe8df605f55c3a81ac693bf19da674d45ceded4137ae217 xtables-addons-3.22.tar.xz
> +sha256 3e823f71720519ced31c4c7d2bfaf7120d9c01c59a0843dfcbe93c95c64d81c1 xtables-addons-3.24.tar.xz
> sha256 ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6 LICENSE
> diff --git a/package/xtables-addons/xtables-addons.mk b/package/xtables-addons/xtables-addons.mk
> index adfedbc874..efd8bd98ce 100644
> --- a/package/xtables-addons/xtables-addons.mk
> +++ b/package/xtables-addons/xtables-addons.mk
> @@ -4,7 +4,7 @@
> #
> ################################################################################
>
> -XTABLES_ADDONS_VERSION = 3.22
> +XTABLES_ADDONS_VERSION = 3.24
> XTABLES_ADDONS_SOURCE = xtables-addons-$(XTABLES_ADDONS_VERSION).tar.xz
> XTABLES_ADDONS_SITE = https://inai.de/files/xtables-addons
> XTABLES_ADDONS_DEPENDENCIES = iptables linux host-pkgconf
> --
> 2.42.0
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH 2/2] package/xtables-addons: bump to version 3.24
2023-11-29 17:39 ` [Buildroot] [PATCH 2/2] package/xtables-addons: bump to version 3.24 Fabrice Fontaine
2023-12-01 10:06 ` Yann E. MORIN
@ 2023-12-01 20:08 ` Peter Korsgaard
1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2023-12-01 20:08 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> This bump will fix the following build failure with kernel >= 6.2 thanks
> to
> https://codeberg.org/jengelh/xtables-addons/commit/51761c3fe2454e0b4bc25274dd55d4ab72c54bf0:
> /home/buildroot/autobuild/instance-1/output-1/build/xtables-addons-3.22/extensions/xt_TARPIT.c:
> In function 'xttarpit_honeypot':
> /home/buildroot/autobuild/instance-1/output-1/build/xtables-addons-3.22/extensions/xt_TARPIT.c:110:26:
> error: implicit declaration of function 'prandom_u32_max'; did you mean
> 'prandom_u32_state'? [-Werror=implicit-function-declaration]
> 110 | (prandom_u32_max(0x20) - 0xf);
> | ^~~~~~~~~~~~~~~
> | prandom_u32_state
> Fixes:
> - http://autobuild.buildroot.org/results/e8f2a0cb5b38ff98da97268c4b642554a0a732e1
> - http://autobuild.buildroot.org/results/0191ee0590c08b73f17b35a5c8521796693772b5
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2023.08.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/xtables-addons: drop unrecognized option
2023-11-29 17:39 [Buildroot] [PATCH 1/2] package/xtables-addons: drop unrecognized option Fabrice Fontaine
2023-11-29 17:39 ` [Buildroot] [PATCH 2/2] package/xtables-addons: bump to version 3.24 Fabrice Fontaine
@ 2023-12-01 10:02 ` Yann E. MORIN
2023-12-01 20:07 ` Peter Korsgaard
2 siblings, 0 replies; 6+ messages in thread
From: Yann E. MORIN @ 2023-12-01 10:02 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
Fabrice, All,
On 2023-11-29 18:39 +0100, Fabrice Fontaine spake thusly:
> --with-xtables is an unrecognized option since the addition of the
> package in commit 490917387a0ff6969f8130be38993eed5f06f73e:
> https://github.com/nawawi/xtables-addons/blob/a576f4d43e80f9f91705c9e6a86f2d58c283df14/configure.ac
>
> configure: WARNING: unrecognized options: --disable-gtk-doc, --disable-gtk-doc-html, --disable-doc, --disable-docs, --disable-documentation, --with-xmlto, --with-fop, --enable-ipv6, --disable-nls, --with-xtables
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/xtables-addons/xtables-addons.mk | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/package/xtables-addons/xtables-addons.mk b/package/xtables-addons/xtables-addons.mk
> index e794538956..adfedbc874 100644
> --- a/package/xtables-addons/xtables-addons.mk
> +++ b/package/xtables-addons/xtables-addons.mk
> @@ -13,7 +13,6 @@ XTABLES_ADDONS_LICENSE_FILES = LICENSE
>
> XTABLES_ADDONS_CONF_OPTS = \
> --with-kbuild="$(LINUX_DIR)" \
> - --with-xtables="$(STAGING_DIR)/usr" \
> --with-xtlibdir="/usr/lib/xtables"
>
> define XTABLES_ADDONS_BUILD_CMDS
> --
> 2.42.0
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Buildroot] [PATCH 1/2] package/xtables-addons: drop unrecognized option
2023-11-29 17:39 [Buildroot] [PATCH 1/2] package/xtables-addons: drop unrecognized option Fabrice Fontaine
2023-11-29 17:39 ` [Buildroot] [PATCH 2/2] package/xtables-addons: bump to version 3.24 Fabrice Fontaine
2023-12-01 10:02 ` [Buildroot] [PATCH 1/2] package/xtables-addons: drop unrecognized option Yann E. MORIN
@ 2023-12-01 20:07 ` Peter Korsgaard
2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2023-12-01 20:07 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> --with-xtables is an unrecognized option since the addition of the
> package in commit 490917387a0ff6969f8130be38993eed5f06f73e:
> https://github.com/nawawi/xtables-addons/blob/a576f4d43e80f9f91705c9e6a86f2d58c283df14/configure.ac
> configure: WARNING: unrecognized options: --disable-gtk-doc,
> --disable-gtk-doc-html, --disable-doc, --disable-docs,
> --disable-documentation, --with-xmlto, --with-fop, --enable-ipv6,
> --disable-nls, --with-xtables
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2023.02.x and 2023.08.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-12-01 20:08 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-29 17:39 [Buildroot] [PATCH 1/2] package/xtables-addons: drop unrecognized option Fabrice Fontaine
2023-11-29 17:39 ` [Buildroot] [PATCH 2/2] package/xtables-addons: bump to version 3.24 Fabrice Fontaine
2023-12-01 10:06 ` Yann E. MORIN
2023-12-01 20:08 ` Peter Korsgaard
2023-12-01 10:02 ` [Buildroot] [PATCH 1/2] package/xtables-addons: drop unrecognized option Yann E. MORIN
2023-12-01 20:07 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox