git: a8c33dfa3226 - 2022Q2 - lang/cython: Update to 0.29.30
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 03 Jun 2022 09:20:13 UTC
The branch 2022Q2 has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=a8c33dfa3226328b214fc624e8f67b0cb38beb8e
commit a8c33dfa3226328b214fc624e8f67b0cb38beb8e
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-05-22 04:10:50 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-06-03 09:20:07 +0000
lang/cython: Update to 0.29.30
Changes: https://github.com/cython/cython/blob/master/CHANGES.rst
(cherry picked from commit fafa7d79348292909281b82afe939c475626c164)
---
lang/cython/Makefile | 2 +-
lang/cython/distinfo | 6 ++--
lang/cython/files/patch-python311 | 62 ---------------------------------------
3 files changed, 4 insertions(+), 66 deletions(-)
diff --git a/lang/cython/Makefile b/lang/cython/Makefile
index 5f432fa3ea2a..06b162edb04b 100644
--- a/lang/cython/Makefile
+++ b/lang/cython/Makefile
@@ -1,7 +1,7 @@
# Created by: Wen Heping <wenhping@gmail.com>
PORTNAME= cython
-PORTVERSION= 0.29.28
+PORTVERSION= 0.29.30
CATEGORIES= lang python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/lang/cython/distinfo b/lang/cython/distinfo
index acd07d2c776d..5daabd654eec 100644
--- a/lang/cython/distinfo
+++ b/lang/cython/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1646057882
-SHA256 (Cython-0.29.28.tar.gz) = d6fac2342802c30e51426828fe084ff4deb1b3387367cf98976bb2e64b6f8e45
-SIZE (Cython-0.29.28.tar.gz) = 2081368
+TIMESTAMP = 1653151046
+SHA256 (Cython-0.29.30.tar.gz) = 2235b62da8fe6fa8b99422c8e583f2fb95e143867d337b5c75e4b9a1a865f9e3
+SIZE (Cython-0.29.30.tar.gz) = 2085208
diff --git a/lang/cython/files/patch-python311 b/lang/cython/files/patch-python311
deleted file mode 100644
index 8dc0daa4022e..000000000000
--- a/lang/cython/files/patch-python311
+++ /dev/null
@@ -1,62 +0,0 @@
-Obtained from: https://github.com/cython/cython/commit/7537910a2d2e3892359ef639fe9262f017634461
-
---- Cython/Utility/Coroutine.c.orig 2022-02-16 23:58:31 UTC
-+++ Cython/Utility/Coroutine.c
-@@ -490,6 +490,12 @@ static int __pyx_Generator_init(void); /*proto*/
-
- #include <structmember.h>
- #include <frameobject.h>
-+#if PY_VERSION_HEX >= 0x030b00a6
-+ #ifndef Py_BUILD_CORE
-+ #define Py_BUILD_CORE 1
-+ #endif
-+ #include "internal/pycore_frame.h"
-+#endif
-
- #define __Pyx_Coroutine_Undelegate(gen) Py_CLEAR((gen)->yieldfrom)
-
---- Cython/Utility/Exceptions.c.orig 2022-02-16 23:58:31 UTC
-+++ Cython/Utility/Exceptions.c
-@@ -705,6 +705,12 @@ static void __Pyx_AddTraceback(const char *funcname, i
- #include "compile.h"
- #include "frameobject.h"
- #include "traceback.h"
-+#if PY_VERSION_HEX >= 0x030b00a6
-+ #ifndef Py_BUILD_CORE
-+ #define Py_BUILD_CORE 1
-+ #endif
-+ #include "internal/pycore_frame.h"
-+#endif
-
- static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
- const char *funcname, int c_line,
---- Cython/Utility/ObjectHandling.c.orig 2022-02-16 23:58:31 UTC
-+++ Cython/Utility/ObjectHandling.c
-@@ -1996,6 +1996,12 @@ static PyObject *__Pyx_PyFunction_FastCallDict(PyObjec
- static size_t __pyx_pyframe_localsplus_offset = 0;
-
- #include "frameobject.h"
-+#if PY_VERSION_HEX >= 0x030b00a6
-+ #ifndef Py_BUILD_CORE
-+ #define Py_BUILD_CORE 1
-+ #endif
-+ #include "internal/pycore_frame.h"
-+#endif
- // This is the long runtime version of
- // #define __Pyx_PyFrame_GetLocalsplus(frame) ((frame)->f_localsplus)
- // offsetof(PyFrameObject, f_localsplus) differs between regular C-Python and Stackless Python.
---- Cython/Utility/Profile.c.orig 2022-02-16 23:58:31 UTC
-+++ Cython/Utility/Profile.c
-@@ -38,6 +38,12 @@
- #include "compile.h"
- #include "frameobject.h"
- #include "traceback.h"
-+#if PY_VERSION_HEX >= 0x030b00a6
-+ #ifndef Py_BUILD_CORE
-+ #define Py_BUILD_CORE 1
-+ #endif
-+ #include "internal/pycore_frame.h"
-+#endif
-
- #if CYTHON_PROFILE_REUSE_FRAME
- #define CYTHON_FRAME_MODIFIER static