commit: 0d5d1beba3be61364dbd859abdfa7518ea79b624 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com> AuthorDate: Mon Aug 1 12:33:05 2022 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Thu Aug 18 07:06:17 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d5d1beb
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 <AT> gmail.com> Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> dev-games/aseprite/aseprite-1.2.37.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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
