git: 1c32da7bf1f7 - main - www/py-django32: Remove expired port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 30 Jun 2024 12:47:51 UTC
The branch main has been updated by rene: URL: https://cgit.FreeBSD.org/ports/commit/?id=1c32da7bf1f7b27db8f22650eb3cd58f4bd99609 commit 1c32da7bf1f7b27db8f22650eb3cd58f4bd99609 Author: Rene Ladan <rene@FreeBSD.org> AuthorDate: 2024-06-30 12:47:45 +0000 Commit: Rene Ladan <rene@FreeBSD.org> CommitDate: 2024-06-30 12:47:45 +0000 www/py-django32: Remove expired port 2024-06-30 www/py-django32: Django 3.2 is now in Extended Support, receives security fixes only and will reach End-Of-Life in April 2024. Upgrade to a later Django version. See https://www.djangoproject.com/download/ --- MOVED | 1 + www/Makefile | 1 - www/py-django32/Makefile | 77 ----------------------------------- www/py-django32/distinfo | 3 -- www/py-django32/files/patch-setup.cfg | 9 ---- www/py-django32/pkg-descr | 8 ---- 6 files changed, 1 insertion(+), 98 deletions(-) diff --git a/MOVED b/MOVED index 3c4ee48bc8b1..432fc21bcf32 100644 --- a/MOVED +++ b/MOVED @@ -3366,3 +3366,4 @@ graphics/p5-ming||2024-06-30|Has expired: Depends on deprecated graphics/ming print/panda||2024-06-30|Has expired: Depends on deprecated Oracle Berkeley DB 5.3 and upstream is dead mail/avenger||2024-06-30|Has expired: Depends on deprecated Oracle Berkeley DB 5.3 and upstream is dead www/py-django-bootstrap-pagination||2024-06-30|Has expired: not compatible with Django 4.2, upstream no longer maintained +www/py-django32||2024-06-30|Has expired: Django 3.2 is now in Extended Support, receives security fixes only and will reach End-Of-Life in April 2024. Upgrade to a later Django version. See https://www.djangoproject.com/download/ diff --git a/www/Makefile b/www/Makefile index 1d13dd8dc1a1..27cb21d11151 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1581,7 +1581,6 @@ SUBDIR += py-django-voting SUBDIR += py-django-webpack-loader SUBDIR += py-django-widget-tweaks - SUBDIR += py-django32 SUBDIR += py-django42 SUBDIR += py-django50 SUBDIR += py-django_compressor diff --git a/www/py-django32/Makefile b/www/py-django32/Makefile deleted file mode 100644 index e017a5d022f1..000000000000 --- a/www/py-django32/Makefile +++ /dev/null @@ -1,77 +0,0 @@ -PORTNAME= django -PORTVERSION= 3.2.25 -PORTREVISION= 1 -CATEGORIES= www python -MASTER_SITES= PYPI \ - https://media.djangoproject.com/releases/${PORTVERSION:R}/ -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -PKGNAMESUFFIX= 32 -DISTNAME= Django-${PORTVERSION} -DIST_SUBDIR= python - -MAINTAINER= python@FreeBSD.org -COMMENT= High-level Python Web Framework -WWW= https://www.djangoproject.com/ - -LICENSE= BSD3CLAUSE -LICENSE_FILE= ${WRKSRC}/LICENSE - -DEPRECATED= Django 3.2 is now in Extended Support, receives security fixes only and will reach End-Of-Life in April 2024. Upgrade to a later Django version. See https://www.djangoproject.com/download/ -EXPIRATION_DATE=2024-06-30 - -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}asgiref>0:www/py-asgiref@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}sqlparse>=0:databases/py-sqlparse@${PY_FLAVOR} -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tblib>0:devel/py-tblib@${PY_FLAVOR} - -USES= cpe python shebangfix -USE_PYTHON= autoplist pep517 - -NO_ARCH= yes - -DOCSDIR= ${PREFIX}/share/doc/py-django -PLIST_FILES= share/man/man1/django-admin.1.gz -PORTDOCS= * - -SHEBANG_FILES= django/bin/django-admin.py \ - django/conf/project_template/manage.py-tpl - -CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}django[0-9][0-9] - -CPE_VENDOR= djangoproject - -# Upstream archive contains files with UTF-8 names -EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 /usr/bin/bsdtar - -OPTIONS_DEFINE= DOCS HTMLDOCS -OPTIONS_GROUP= DATABASE -OPTIONS_GROUP_DATABASE= PGSQL MYSQL SQLITE -OPTIONS_DEFAULT=SQLITE -HTMLDOCS_DESC= Install HTML documentation (requires Sphinx) - -HTMLDOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=4.5.0,1:textproc/py-sphinx@${PY_FLAVOR} -HTMLDOCS_IMPLIES= DOCS -HTMLDOCS_USES= gmake -PGSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}psycopg2>0:databases/py-psycopg2@${PY_FLAVOR} -MYSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mysqlclient>=1.3.13:databases/py-mysqlclient@${PY_FLAVOR} -SQLITE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} - -post-build-HTMLDOCS-on: - cd ${WRKSRC}/docs && ${MAKE_CMD} html SPHINXBUILD=sphinx-build-${PYTHON_VER} - -post-install: - ${INSTALL_MAN} ${WRKSRC}/docs/man/* ${STAGEDIR}/${PREFIX}/share/man/man1 - @${ECHO_MSG} "" - @${ECHO_MSG} " * See http://docs.djangoproject.com/ for complete documentation" - @${ECHO_MSG} "" - -post-install-HTMLDOCS-on: - ${MKDIR} ${STAGEDIR}/${DOCSDIR} - ${CP} -R ${WRKSRC}/docs/_build/html ${STAGEDIR}/${DOCSDIR} - -do-test: - @cd ${WRKSRC} && ${PYTHON_CMD} tests/runtests.py --settings=test_sqlite - -.include <bsd.port.mk> diff --git a/www/py-django32/distinfo b/www/py-django32/distinfo deleted file mode 100644 index 6674637a6233..000000000000 --- a/www/py-django32/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1709553022 -SHA256 (python/Django-3.2.25.tar.gz) = 7ca38a78654aee72378594d63e51636c04b8e28574f5505dff630895b5472777 -SIZE (python/Django-3.2.25.tar.gz) = 9836336 diff --git a/www/py-django32/files/patch-setup.cfg b/www/py-django32/files/patch-setup.cfg deleted file mode 100644 index cf8a570a4bbf..000000000000 --- a/www/py-django32/files/patch-setup.cfg +++ /dev/null @@ -1,9 +0,0 @@ ---- setup.cfg.orig 2024-03-04 07:49:27 UTC -+++ setup.cfg -@@ -1,5 +1,5 @@ - [metadata] --name = Django -+name = django - version = attr: django.__version__ - url = https://www.djangoproject.com/ - author = Django Software Foundation diff --git a/www/py-django32/pkg-descr b/www/py-django32/pkg-descr deleted file mode 100644 index 1f0e73eddef2..000000000000 --- a/www/py-django32/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Django is a high-level Python Web framework that encourages rapid development -and clean, pragmatic design. - -Developed and used over the past two years by a fast-moving online-news -operation, Django was designed from scratch to handle two challenges: the -intensive deadlines of a newsroom and the stringent requirements of experienced -Web developers. It has convenient niceties for developing content-management -systems, but it's an excellent tool for building any Web site.