diff options
author | Azamat H. Hackimov <azamat.hackimov@gmail.com> | 2022-08-01 15:33:05 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-08-18 10:06:17 +0300 |
commit | 0d5d1beba3be61364dbd859abdfa7518ea79b624 (patch) | |
tree | 7e0e28f495c06c1406e0f54b6fb22bf7ef63fea2 | |
parent | dev-python/pybind11: amd64 stable wrt bug #865563 (diff) | |
download | gentoo-0d5d1beba3be61364dbd859abdfa7518ea79b624.tar.gz gentoo-0d5d1beba3be61364dbd859abdfa7518ea79b624.tar.bz2 gentoo-0d5d1beba3be61364dbd859abdfa7518ea79b624.zip |
dev-games/aseprite: fix building skia
skia's build system invokes python directly, which will fail with
dev-lang/python-exec[-native-symlinks].
Closes: https://bugs.gentoo.org/861923
Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
-rw-r--r-- | dev-games/aseprite/aseprite-1.2.37.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dev-games/aseprite/aseprite-1.2.37.ebuild b/dev-games/aseprite/aseprite-1.2.37.ebuild index aeb7901ac8ac..0848144f77df 100644 --- a/dev-games/aseprite/aseprite-1.2.37.ebuild +++ b/dev-games/aseprite/aseprite-1.2.37.ebuild @@ -3,7 +3,9 @@ EAPI=8 -inherit cmake desktop ninja-utils toolchain-funcs xdg-utils +PYTHON_COMPAT=( python3_{8..11} ) + +inherit cmake desktop ninja-utils python-any-r1 toolchain-funcs xdg-utils SKIA_VER="m102" # Last commit in ${SKIA_VER} feature branch @@ -48,6 +50,7 @@ RDEPEND=" webp? ( media-libs/libwebp:= )" DEPEND="${RDEPEND}" BDEPEND=" + ${PYTHON_DEPS} test? ( dev-cpp/gtest ) app-arch/unzip dev-util/gn |