commit:     feb332de29f2be65229b91dc546885972fe52c4d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 27 04:10:58 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 27 04:10:58 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feb332de

dev-python/ruamel-yaml-clib: Switch from cythonize(1) to cython(1)

cythonize(1) is a bigger tool that can automatically compile all Cython
files from a package and build the extensions from them.  We don't need
that, so just use the reference cython(1) invocation.

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/ruamel-yaml-clib/ruamel-yaml-clib-0.2.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/ruamel-yaml-clib/ruamel-yaml-clib-0.2.7.ebuild 
b/dev-python/ruamel-yaml-clib/ruamel-yaml-clib-0.2.7.ebuild
index affc2ec8b558..73dd7fb50ddc 100644
--- a/dev-python/ruamel-yaml-clib/ruamel-yaml-clib-0.2.7.ebuild
+++ b/dev-python/ruamel-yaml-clib/ruamel-yaml-clib-0.2.7.ebuild
@@ -7,7 +7,7 @@ DISTUTILS_EXT=1
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( pypy3 python3_{10..12} )
 
-inherit distutils-r1 multiprocessing
+inherit distutils-r1
 
 MY_PN="${PN//-/.}"
 MY_P="${MY_PN}-${PV}"
@@ -36,5 +36,5 @@ src_unpack() {
 }
 
 src_configure() {
-       cythonize -3 _ruamel_yaml.pyx "-j$(makeopts_jobs)" -f || die
+       cython -f -3 _ruamel_yaml.pyx || die
 }

Reply via email to