eb74998125
nftables provides python bindings; it uses setuptools to install them. We currently install those bindings by telling the nftables buildsystem, autotools, to install the python bindings. However, we do not pass any of the environment variables that are needed for setuptools packages. When host-python-setuptools is installed before nftables is built [0], this breaks the system at runtime, as the bindings are not installed; only the egg is, resulting in runtime errors like: # python -c 'import nftables' Traceback (most recent call last): File "<string>", line 1, in <module> ModuleNotFoundError: No module named 'nftables' Upstream has been doing some changes on their python handling, but it is not in a released version yet, and we can't backport those changes either, due to other big changes. Instead, we split the pyhon bindings to their own package. For legacy handling, we make that new package default to y, so that existing (def)config still work. The only novelty is that it can be disabled now. Many thanks to Julien for testing and finding the offending dependency, to James for suggesting the package split, and to Adam for, well, trigerring the issue in the first place! ;-p Note: a git bisect of the issue turns up 72 candidates for the breakage, all around the time we dropped python2 support in early 2022; the last known-good commit is55df30f8b1
(package/zfs: drop python2 support) and the first known-bad commit is697acda00d
(package/pkg-python: drop python2 host/setuptools support); everything in-between does not configure (package/python/Config.in.host still sourced but already removed), or does not build (host-python still in the dependency chain but already removed), so had to be skipped during the bisect. [0] This can happen when another python package using setuptools is built before nftables. However, with PPD, this never happens because host-python-setuptools is never in the dependency chain of nftables. Reported-by: Julien Olivain <ju.o@free.fr> Tested-by: Julien Olivain <ju.o@free.fr> Suggested-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Adam Duskett <aduskett@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
23 lines
750 B
Plaintext
23 lines
750 B
Plaintext
config BR2_PACKAGE_NFTABLES
|
|
bool "nftables"
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
|
|
select BR2_PACKAGE_LIBMNL
|
|
select BR2_PACKAGE_LIBNFTNL
|
|
help
|
|
nftables is the project that aims to replace the existing
|
|
{ip,ip6,arp,eb}tables framework.
|
|
Basically, this project provides a new packet filtering
|
|
framework, a new userspace utility and also a compatibility
|
|
layer for {ip,ip6}tables.
|
|
|
|
http://www.netfilter.org/projects/nftables/index.html
|
|
|
|
# Legacy: this used to be handled in nftables.mk
|
|
if BR2_PACKAGE_NFTABLES
|
|
source "package/nftables/nftables-python/Config.in"
|
|
endif
|
|
|
|
comment "nftables needs a toolchain w/ wchar, headers >= 3.12"
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
|