commit: 51a9480bd08c4e788f41353ce2b31617f169c5e3 Author: Brett A C Sheffield <bacs <AT> librecast <DOT> net> AuthorDate: Fri Feb 27 12:03:55 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Feb 28 12:26:44 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51a9480b
app-text/groonga: Add missing deps for USE=doc Add missing dependencies for documentation: - dev-python/myst-parser - dev-python/pydata-sphinx-theme Closes: https://bugs.gentoo.org/904126 Signed-off-by: Brett A C Sheffield <bacs <AT> librecast.net> Part-of: https://codeberg.org/gentoo/gentoo/pulls/162 Signed-off-by: Sam James <sam <AT> gentoo.org> app-text/groonga/groonga-16.0.0.ebuild | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/app-text/groonga/groonga-16.0.0.ebuild b/app-text/groonga/groonga-16.0.0.ebuild index 0dd55ae0590c..7dff2762f370 100644 --- a/app-text/groonga/groonga-16.0.0.ebuild +++ b/app-text/groonga/groonga-16.0.0.ebuild @@ -1,9 +1,12 @@ # Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=9 +EAPI=8 -inherit libtool +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{11..14} ) + +inherit distutils-r1 libtool DESCRIPTION="An Embeddable Fulltext Search Engine" HOMEPAGE="https://groonga.org/" @@ -13,9 +16,6 @@ LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="benchmark debug doc +exact-alloc-count examples futex libedit libevent lzo +mecab msgpack +nfkc sphinx static-libs uyield zeromq zlib zstd" -REQUIRED_USE=" - sphinx? ( doc ) -" DEPEND=" acct-group/groonga @@ -37,9 +37,12 @@ DEPEND=" RDEPEND="${DEPEND}" BDEPEND=" virtual/pkgconfig - sphinx? ( dev-python/sphinx ) " +distutils_enable_sphinx doc/source \ + dev-python/myst-parser \ + dev-python/pydata-sphinx-theme + src_prepare() { default
