diff options
author | Francisco Javier FĂ©lix <web@inode64.com> | 2023-09-12 08:40:30 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2023-12-11 15:00:11 +0200 |
commit | d20b71fedbbb69417ec4c092c3cfe8d0b9c8bd12 (patch) | |
tree | 54e5bdb324e9afa686842342be2e24decfe3d55f /net-misc/openvswitch | |
parent | sys-power/nut: Rename asciidoc-ready documentation sources to *.adoc (diff) | |
download | gentoo-d20b71fedbbb69417ec4c092c3cfe8d0b9c8bd12.tar.gz gentoo-d20b71fedbbb69417ec4c092c3cfe8d0b9c8bd12.tar.bz2 gentoo-d20b71fedbbb69417ec4c092c3cfe8d0b9c8bd12.zip |
net-misc/openvswitch: Fix build when dev-python/sphinx is missing
Remove redundant eclass inherit 'linux-info', provided by 'linux-mod'
Closes: https://bugs.gentoo.org/906054
Signed-off-by: INODE64 <web@inode64.com>
Closes: https://github.com/gentoo/gentoo/pull/32734
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-misc/openvswitch')
-rw-r--r-- | net-misc/openvswitch/openvswitch-2.17.6.ebuild | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/net-misc/openvswitch/openvswitch-2.17.6.ebuild b/net-misc/openvswitch/openvswitch-2.17.6.ebuild index 1edab262a4b7..9116398edd39 100644 --- a/net-misc/openvswitch/openvswitch-2.17.6.ebuild +++ b/net-misc/openvswitch/openvswitch-2.17.6.ebuild @@ -6,7 +6,7 @@ EAPI=8 MODULES_OPTIONAL_USE="modules" PYTHON_COMPAT=( python3_{9..11} ) -inherit autotools linux-info linux-mod python-single-r1 systemd tmpfiles +inherit autotools linux-mod python-single-r1 systemd tmpfiles DESCRIPTION="Production quality, multilayer virtual switch" HOMEPAGE="https://www.openvswitch.org" @@ -31,8 +31,11 @@ RDEPEND="${PYTHON_DEPS} DEPEND="${RDEPEND} sys-apps/util-linux[caps] valgrind? ( dev-util/valgrind )" -BDEPEND="virtual/pkgconfig" - +BDEPEND="virtual/pkgconfig + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/sphinx[${PYTHON_USEDEP}] + ')" PATCHES=( "${FILESDIR}/xcp-interface-reconfigure-2.3.2.patch" ) |