dev-python/pyrime: fix build with pypy

Closes: https://bugs.gentoo.org/946510
Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
Takuya Wakazono
2025-01-19 00:35:09 +09:00
parent 322370e7c0
commit 4360ac2b1c
2 changed files with 23 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
https://bugs.gentoo.org/946510
https://github.com/Freed-Wu/pyrime/pull/3
Using Cython requires both 'cython' and 'c' to be specified in the
project().
--- a/meson.build
+++ b/meson.build
@@ -1,3 +1,3 @@
-project('pyrime', 'cython', version: '0.0.7')
+project('pyrime', 'cython', 'c', version: '0.0.7')
subdir('src/pyrime')