diff options
author | Alfred Wingate <parona@protonmail.com> | 2024-06-03 19:35:21 +0300 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-06-04 08:12:22 +0100 |
commit | ef05fb48597a890fe15a75f1b78a179e2fe2e8d9 (patch) | |
tree | 6fb021dc671126100ed617f4562f619f421f471f /net-firewall | |
parent | net-wireless/neard: Keyword 0.19 ppc64, #933500 (diff) | |
download | gentoo-ef05fb48597a890fe15a75f1b78a179e2fe2e8d9.tar.gz gentoo-ef05fb48597a890fe15a75f1b78a179e2fe2e8d9.tar.bz2 gentoo-ef05fb48597a890fe15a75f1b78a179e2fe2e8d9.zip |
net-firewall/ufw: add missing dependency for setuptools
* With python3.12 distutils isnt included with the interpeter but
is instead bundled in setuptools.
Closes: https://bugs.gentoo.org/933481
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/37000
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-firewall')
-rw-r--r-- | net-firewall/ufw/ufw-0.36.1.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/net-firewall/ufw/ufw-0.36.1.ebuild b/net-firewall/ufw/ufw-0.36.1.ebuild index 29c289c00534..0c19a760f4dc 100644 --- a/net-firewall/ufw/ufw-0.36.1.ebuild +++ b/net-firewall/ufw/ufw-0.36.1.ebuild @@ -19,7 +19,12 @@ KEYWORDS="amd64 ~arm arm64 ~ia64 ~loong ppc ppc64 ~riscv sparc x86" IUSE="examples ipv6" RDEPEND="net-firewall/iptables[ipv6(+)?]" -BDEPEND="sys-devel/gettext" +BDEPEND=" + sys-devel/gettext + $(python_gen_cond_dep ' + dev-python/setuptools[${PYTHON_USEDEP}] + ' python3_12) +" PATCHES=( # Move files away from /lib/ufw. |