diff options
author | Arsen Arsenović <arsen@aarsen.me> | 2021-11-22 13:05:33 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-11-23 14:38:39 +0000 |
commit | 21d47176912c8ac3e9d3605445592109ebaaf948 (patch) | |
tree | 82282bfe31eca4086df7bd90112a6f454e5192e2 /sys-libs/basu | |
parent | dev-php/pecl-lzf: Add PHP 8.1 to targets (diff) | |
download | gentoo-21d47176912c8ac3e9d3605445592109ebaaf948.tar.gz gentoo-21d47176912c8ac3e9d3605445592109ebaaf948.tar.bz2 gentoo-21d47176912c8ac3e9d3605445592109ebaaf948.zip |
sys-libs/basu: fix builds with -native-symlinks
A script in-tree relied on dev-lang/python-exec[native-symlinks], when
this was not present, the script would fail to run
Closes: https://bugs.gentoo.org/826350
Signed-off-by: Arsen Arsenović <arsen@aarsen.me>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-libs/basu')
-rw-r--r-- | sys-libs/basu/basu-0.2.0.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys-libs/basu/basu-0.2.0.ebuild b/sys-libs/basu/basu-0.2.0.ebuild index ea56c930ca40..46c936a536d0 100644 --- a/sys-libs/basu/basu-0.2.0.ebuild +++ b/sys-libs/basu/basu-0.2.0.ebuild @@ -3,7 +3,8 @@ EAPI=8 -inherit meson +PYTHON_COMPAT=( python3_{8..10} ) +inherit meson python-any-r1 DESCRIPTION="The sd-bus library, extracted from systemd" HOMEPAGE="https://sr.ht/~emersion/basu/" @@ -22,7 +23,9 @@ DEPEND=" RDEPEND="${DEPEND}" # Needed to generate hash tables -BDEPEND="dev-util/gperf" +BDEPEND="${PYTHON_DEPS} + dev-util/gperf +" PATCHES=( "${FILESDIR}"/0001-"${PN}"-0.2.0-meson-add-libcap-option.patch |