git: 1429f6738951 - main - www/py-tornado5: Remove obsoleted port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 31 Dec 2024 16:25:16 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=1429f67389510bc3cc03d6853185f8853ca73808
commit 1429f67389510bc3cc03d6853185f8853ca73808
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2024-12-31 16:16:38 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2024-12-31 16:22:38 +0000
www/py-tornado5: Remove obsoleted port
Use www/py-tornado instead.
---
MOVED | 1 +
www/Makefile | 1 -
www/py-tornado5/Makefile | 36 ------------------------------------
www/py-tornado5/distinfo | 3 ---
www/py-tornado5/files/patch-setup.py | 12 ------------
www/py-tornado5/pkg-descr | 13 -------------
6 files changed, 1 insertion(+), 65 deletions(-)
diff --git a/MOVED b/MOVED
index 01158859f36f..2af40385c774 100644
--- a/MOVED
+++ b/MOVED
@@ -3770,3 +3770,4 @@ security/py-pysaml26|security/py-pysaml2|2024-12-31|Remove obsoleted port. Use s
textproc/py-mistune2|textproc/py-mistune|2024-12-31|Remove obsoleted port. Use textproc/py-mistune instead
textproc/py-rich12|textproc/py-rich|2024-12-31|Remove obsoleted port. Use textproc/py-rich instead
www/py-tornado4|www/py-tornado|2024-12-31|Remove obsoleted port. Use www/py-tornado instead
+www/py-tornado5|www/py-tornado|2024-12-31|Remove obsoleted port. Use www/py-tornado instead
diff --git a/www/Makefile b/www/Makefile
index 926a6960d238..611167d916da 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -1882,7 +1882,6 @@
SUBDIR += py-textile
SUBDIR += py-ticketutil
SUBDIR += py-tornado
- SUBDIR += py-tornado5
SUBDIR += py-treq
SUBDIR += py-ttrv
SUBDIR += py-tuir
diff --git a/www/py-tornado5/Makefile b/www/py-tornado5/Makefile
deleted file mode 100644
index 146dbbc8f27b..000000000000
--- a/www/py-tornado5/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-PORTNAME= tornado
-PORTVERSION= 5.1.1
-PORTREVISION= 1
-CATEGORIES= www python
-MASTER_SITES= PYPI
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-PKGNAMESUFFIX= 5
-
-MAINTAINER= sunpoet@FreeBSD.org
-COMMENT= Python Web Server from FriendFeed
-WWW= https://www.tornadoweb.org/
-
-LICENSE= APACHE20
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
-
-USES= cpe python
-USE_PYTHON= autoplist concurrent pep517
-
-CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}tornado \
- ${PYTHON_PKGNAMEPREFIX}tornado4 \
- ${PYTHON_PKGNAMEPREFIX}tornado6
-
-CPE_VENDOR= tornadoweb
-
-PORTSCOUT= limit:^5\.
-
-post-install:
- ${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR} -name '*.so' -exec ${STRIP_CMD} {} +
-
-do-test:
- @cd ${WRKSRC} && ${PYTHON_CMD} -m tornado.test.runtests
-
-.include <bsd.port.mk>
diff --git a/www/py-tornado5/distinfo b/www/py-tornado5/distinfo
deleted file mode 100644
index 49dc5fca8363..000000000000
--- a/www/py-tornado5/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1537437332
-SHA256 (tornado-5.1.1.tar.gz) = 4e5158d97583502a7e2739951553cbd88a72076f152b4b11b64b9a10c4c49409
-SIZE (tornado-5.1.1.tar.gz) = 516819
diff --git a/www/py-tornado5/files/patch-setup.py b/www/py-tornado5/files/patch-setup.py
deleted file mode 100644
index dc22450431ac..000000000000
--- a/www/py-tornado5/files/patch-setup.py
+++ /dev/null
@@ -1,12 +0,0 @@
---- setup.py.orig 2015-11-06 20:08:26 UTC
-+++ setup.py
-@@ -147,9 +147,6 @@ setup(
- # in the sdist tarball)
- "tornado.test": [
- "README",
-- "csv_translations/fr_FR.csv",
-- "gettext_translations/fr_FR/LC_MESSAGES/tornado_test.mo",
-- "gettext_translations/fr_FR/LC_MESSAGES/tornado_test.po",
- "options_test.cfg",
- "static/robots.txt",
- "static/sample.xml",
diff --git a/www/py-tornado5/pkg-descr b/www/py-tornado5/pkg-descr
deleted file mode 100644
index d402cc6d6418..000000000000
--- a/www/py-tornado5/pkg-descr
+++ /dev/null
@@ -1,13 +0,0 @@
-Tornado is an open source version of the scalable, non-blocking web server and
-tools that power FriendFeed. The FriendFeed application is written using a web
-framework that looks a bit like web.py or Google's webapp, but with additional
-tools and optimizations to take advantage of the underlying non-blocking
-infrastructure.
-
-The framework is distinct from most mainstream web server frameworks (and
-certainly most Python frameworks) because it is non-blocking and reasonably
-fast. Because it is non-blocking and uses epoll or kqueue, it can handle
-thousands of simultaneous standing connections, which means it is ideal for
-real-time web services. We built the web server specifically to handle
-FriendFeed's real-time features - every active user of FriendFeed maintains an
-open connection to the FriendFeed servers.