commit: e4dd8a04176619fe03d9f6f97b721c5fabc37938 Author: Jan Henke <Jan.Henke <AT> taujhe <DOT> de> AuthorDate: Sun Aug 28 15:44:45 2022 +0000 Commit: Jan Henke <gentoo <AT> taujhe <DOT> de> CommitDate: Sun Aug 28 15:46:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e4dd8a04
sci-electronics/lxi-tools: Fix pkg_setup Due to using both lua-single-r1 and python-any-r1, pkg_setup needs to explicitly call both's eclasses pkg_setup function. Closes: https://bugs.gentoo.org/866461 Signed-off-by: Jan Henke <Jan.Henke <AT> taujhe.de> sci-electronics/lxi-tools/lxi-tools-2.1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild index c85ea340c..5fc7da450 100644 --- a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild +++ b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild @@ -32,6 +32,11 @@ RDEPEND=" DEPEND="${RDEPEND}" BDEPEND="${PYTHON_DEPS}" +pkg_setup() { + python-any-r1_pkg_setup + lua-single_pkg_setup +} + src_configure() { local emesonargs=( $(meson_use gui)
