git: 2fcfd8919dfe - main - lang/cython: Update to 0.29.28
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 07 Mar 2022 18:16:27 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=2fcfd8919dfe7a963597140a20a165877fce3c92
commit 2fcfd8919dfe7a963597140a20a165877fce3c92
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-03-07 17:50:22 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-03-07 18:10:57 +0000
lang/cython: Update to 0.29.28
Changes: https://github.com/cython/cython/blob/master/CHANGES.rst
---
lang/cython/Makefile | 2 +-
lang/cython/distinfo | 6 +++---
lang/cython/files/patch-python311 | 28 ----------------------------
3 files changed, 4 insertions(+), 32 deletions(-)
diff --git a/lang/cython/Makefile b/lang/cython/Makefile
index 430266661d7e..5f432fa3ea2a 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.27
+PORTVERSION= 0.29.28
CATEGORIES= lang python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/lang/cython/distinfo b/lang/cython/distinfo
index 173026347df6..acd07d2c776d 100644
--- a/lang/cython/distinfo
+++ b/lang/cython/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1643970992
-SHA256 (Cython-0.29.27.tar.gz) = c6a442504db906dfc13a480e96850cced994ecdc076bcf492c43515b78f70da2
-SIZE (Cython-0.29.27.tar.gz) = 2081166
+TIMESTAMP = 1646057882
+SHA256 (Cython-0.29.28.tar.gz) = d6fac2342802c30e51426828fe084ff4deb1b3387367cf98976bb2e64b6f8e45
+SIZE (Cython-0.29.28.tar.gz) = 2081368
diff --git a/lang/cython/files/patch-python311 b/lang/cython/files/patch-python311
deleted file mode 100644
index 13761eaf964c..000000000000
--- a/lang/cython/files/patch-python311
+++ /dev/null
@@ -1,28 +0,0 @@
-Obtained from: https://github.com/cython/cython/commit/bbac8b5476b1b97afcbac69e3079c11223911908
-
---- Cython/Utility/ModuleSetupCode.c.orig 2022-01-28 17:21:38 UTC
-+++ Cython/Utility/ModuleSetupCode.c
-@@ -177,7 +177,10 @@
- #ifndef CYTHON_UNPACK_METHODS
- #define CYTHON_UNPACK_METHODS 1
- #endif
-- #ifndef CYTHON_FAST_THREAD_STATE
-+ #if PY_VERSION_HEX >= 0x030B00A4
-+ #undef CYTHON_FAST_THREAD_STATE
-+ #define CYTHON_FAST_THREAD_STATE 0
-+ #elif !defined(CYTHON_FAST_THREAD_STATE)
- #define CYTHON_FAST_THREAD_STATE 1
- #endif
- #ifndef CYTHON_FAST_PYCALL
-@@ -194,7 +197,10 @@
- #ifndef CYTHON_USE_DICT_VERSIONS
- #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX >= 0x030600B1)
- #endif
-- #ifndef CYTHON_USE_EXC_INFO_STACK
-+ #if PY_VERSION_HEX >= 0x030B00A4
-+ #undef CYTHON_USE_EXC_INFO_STACK
-+ #define CYTHON_USE_EXC_INFO_STACK 0
-+ #elif !defined(CYTHON_USE_EXC_INFO_STACK)
- #define CYTHON_USE_EXC_INFO_STACK (PY_VERSION_HEX >= 0x030700A3)
- #endif
- #endif