git: bad7417fc396 - main - lang/cython3: Remove obsoleted port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 15 Jan 2026 17:52:11 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=bad7417fc396182a51b12791c812eff3fbb779e3
commit bad7417fc396182a51b12791c812eff3fbb779e3
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2026-01-15 17:51:41 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2026-01-15 17:51:41 +0000
lang/cython3: Remove obsoleted port
Use lang/cython instead.
---
MOVED | 1 +
lang/Makefile | 1 -
lang/cython3/Makefile | 28 ----------------------------
lang/cython3/distinfo | 3 ---
lang/cython3/files/patch-setup.py | 11 -----------
lang/cython3/pkg-descr | 10 ----------
6 files changed, 1 insertion(+), 53 deletions(-)
diff --git a/MOVED b/MOVED
index adf9673f322b..532afebbef8a 100644
--- a/MOVED
+++ b/MOVED
@@ -5078,3 +5078,4 @@ lang/go123||2026-01-14|Has expired: Old version, unsupported upstream
devel/py-confusable_homoglyphs|devel/py-confusable-homoglyphs|2026-01-15|Rename to match upstream naming
devel/py-pyyaml_env_tag|devel/py-pyyaml-env-tag|2026-01-15|Rename to match upstream naming
www/py-aiohttp_cors|www/py-aiohttp-cors|2026-01-15|Rename to match upstream naming
+lang/cython3|lang/cython|2026-01-15|Remove obsoleted port. Use lang/cython instead
diff --git a/lang/Makefile b/lang/Makefile
index 670e1bef51fc..011afab500e0 100644
--- a/lang/Makefile
+++ b/lang/Makefile
@@ -43,7 +43,6 @@
SUBDIR += csharp-mode.el
SUBDIR += cython
SUBDIR += cython0
- SUBDIR += cython3
SUBDIR += dhall
SUBDIR += dlang-tools
SUBDIR += dotnet
diff --git a/lang/cython3/Makefile b/lang/cython3/Makefile
deleted file mode 100644
index f5b68b9bbf89..000000000000
--- a/lang/cython3/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-PORTNAME= cython
-PORTVERSION= 3.2.4
-CATEGORIES= lang python
-MASTER_SITES= PYPI \
- https://github.com/cython/cython/releases/download/${PORTVERSION}/
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-PKGNAMESUFFIX= 3
-
-MAINTAINER= sunpoet@FreeBSD.org
-COMMENT= Compiler for Writing C Extensions for the Python Language
-WWW= https://cython.org/ \
- https://github.com/cython/cython
-
-LICENSE= APACHE20
-LICENSE_FILE= ${WRKSRC}/LICENSE.txt
-
-BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
-
-USES= compiler:c11 python
-USE_PYTHON= allflavors autoplist concurrent pep517
-
-CONFLICTS_INSTALL= py*-cython py*-cython0 py*-cython3 # bin/cygdb bin/cython bin/cythonize
-
-post-install:
- ${FIND} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Cython -name '*.so' -exec ${STRIP_CMD} {} +
-
-.include <bsd.port.mk>
diff --git a/lang/cython3/distinfo b/lang/cython3/distinfo
deleted file mode 100644
index 60dba8c57706..000000000000
--- a/lang/cython3/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1767624040
-SHA256 (cython-3.2.4.tar.gz) = 84226ecd313b233da27dc2eb3601b4f222b8209c3a7216d8733b031da1dc64e6
-SIZE (cython-3.2.4.tar.gz) = 3280291
diff --git a/lang/cython3/files/patch-setup.py b/lang/cython3/files/patch-setup.py
deleted file mode 100644
index 4c5b5f8a7961..000000000000
--- a/lang/cython3/files/patch-setup.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- setup.py.orig 2024-01-10 09:54:48 UTC
-+++ setup.py
-@@ -243,7 +243,7 @@ def run_build():
-
- from Cython import __version__ as version
- setup(
-- name='Cython',
-+ name='cython',
- version=version,
- url='https://cython.org/',
- author='Robert Bradshaw, Stefan Behnel, Dag Seljebotn, Greg Ewing, et al.',
diff --git a/lang/cython3/pkg-descr b/lang/cython3/pkg-descr
deleted file mode 100644
index e06adf8ec27b..000000000000
--- a/lang/cython3/pkg-descr
+++ /dev/null
@@ -1,10 +0,0 @@
-Cython is a Python compiler that makes writing C extensions for Python as easy
-as Python itself. Cython is based on Pyrex, but supports more cutting edge
-functionality and optimizations.
-
-Cython translates Python code to C/C++ code, but additionally supports calling C
-functions and declaring C types on variables and class attributes. This allows
-the compiler to generate very efficient C code from Cython code.
-
-This makes Cython the ideal language for wrapping external C libraries, and for
-fast C modules that speed up the execution of Python code.