commit: b1f6de5f7550dacfb0656e37eb4f7f7f552c4e7c Author: Daniel M. Weeks <dan <AT> danweeks <DOT> net> AuthorDate: Wed Jan 7 03:24:54 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Jan 7 05:19:08 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1f6de5f
net-misc/openvswitch: Fix MODULES_OPTIONAL_IUSE Transition from linux-mod to linux-mod-r1 changed _USE to _IUSE. Since linux-mod-r1_pkg_setup is only called when USE=modules the migration check doesn't generally run to catch this. Signed-off-by: Daniel M. Weeks <dan <AT> danweeks.net> Part-of: https://github.com/gentoo/gentoo/pull/45281 Closes: https://github.com/gentoo/gentoo/pull/45281 Signed-off-by: Sam James <sam <AT> gentoo.org> net-misc/openvswitch/openvswitch-2.17.12.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-misc/openvswitch/openvswitch-2.17.12.ebuild b/net-misc/openvswitch/openvswitch-2.17.12.ebuild index f09d56726eeb..d8459b8f6e83 100644 --- a/net-misc/openvswitch/openvswitch-2.17.12.ebuild +++ b/net-misc/openvswitch/openvswitch-2.17.12.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -MODULES_OPTIONAL_USE="modules" +MODULES_OPTIONAL_IUSE="modules" PYTHON_COMPAT=( python3_{12..13} ) inherit autotools dot-a flag-o-matic linux-mod-r1 multiprocessing
