diff options
author | Sam James <sam@gentoo.org> | 2023-05-03 08:21:20 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-05-03 08:21:20 +0100 |
commit | e8955b85cfd6e0a3a9d371a6e88fa6e6da3e15f4 (patch) | |
tree | 8c6a84fd7bb1fcfcd631567508ece8d434e8bba0 /media-video/openshot | |
parent | net-vpn/protonvpn-cli: enable py3.11 (diff) | |
download | gentoo-e8955b85cfd6e0a3a9d371a6e88fa6e6da3e15f4.tar.gz gentoo-e8955b85cfd6e0a3a9d371a6e88fa6e6da3e15f4.tar.bz2 gentoo-e8955b85cfd6e0a3a9d371a6e88fa6e6da3e15f4.zip |
media-video/openshot: enable py3.11
Closes: https://bugs.gentoo.org/897052
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-video/openshot')
-rw-r--r-- | media-video/openshot/openshot-2.6.1.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/media-video/openshot/openshot-2.6.1.ebuild b/media-video/openshot/openshot-2.6.1.ebuild index 386e2df7ba2c..a013ab34e233 100644 --- a/media-video/openshot/openshot-2.6.1.ebuild +++ b/media-video/openshot/openshot-2.6.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{9..10} ) +PYTHON_COMPAT=( python3_{10..11} ) PYTHON_REQ_USE="xml(+)" DISTUTILS_SINGLE_IMPL=1 @@ -44,12 +44,12 @@ python_compile_all() { use doc && emake -C doc html } -python_install_all() { - use doc && local HTML_DOCS=( doc/_build/html/. ) - distutils-r1_python_install_all -} - python_test() { distutils_install_for_testing "${EPYTHON}" src/tests/query_tests.py -v --platform minimal || die } + +python_install_all() { + use doc && local HTML_DOCS=( doc/_build/html/. ) + distutils-r1_python_install_all +} |