git: 0b22440bd4fc - main - www/py-django-cron: Remove expired port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 31 Mar 2026 16:07:40 UTC
The branch main has been updated by rene:
URL: https://cgit.FreeBSD.org/ports/commit/?id=0b22440bd4fcaaab1518dc75e8807a240d7b4e5f
commit 0b22440bd4fcaaab1518dc75e8807a240d7b4e5f
Author: Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2026-03-31 16:07:35 +0000
Commit: Rene Ladan <rene@FreeBSD.org>
CommitDate: 2026-03-31 16:07:35 +0000
www/py-django-cron: Remove expired port
2026-03-31 www/py-django-cron: Upstream inactive since 3+ years, not compatible with Django 5.2 or newer
---
MOVED | 1 +
www/Makefile | 1 -
www/py-django-cron/Makefile | 25 -------------------------
www/py-django-cron/distinfo | 3 ---
www/py-django-cron/pkg-descr | 10 ----------
5 files changed, 1 insertion(+), 39 deletions(-)
diff --git a/MOVED b/MOVED
index b89398adc4cc..73b5d12af49d 100644
--- a/MOVED
+++ b/MOVED
@@ -5174,3 +5174,4 @@ science/kst2|science/kst|2026-03-25|Rename to match upstream naming
graphics/luminance-qt5||2026-03-29|Broken for more than a year
sysutils/tmate-ssh-server||2026-03-31|Has expired: Upstream unmaintained
editors/wordgrinder||2026-03-31|Has expired: broken since 2023, maintainer AWOL
+www/py-django-cron||2026-03-31|Has expired: Upstream inactive since 3+ years, not compatible with Django 5.2 or newer
diff --git a/www/Makefile b/www/Makefile
index 1dca900bfeff..887780b08258 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -1611,7 +1611,6 @@
SUBDIR += py-django-cors-headers
SUBDIR += py-django-countries
SUBDIR += py-django-crispy-forms
- SUBDIR += py-django-cron
SUBDIR += py-django-csp
SUBDIR += py-django-debreach
SUBDIR += py-django-debug-toolbar
diff --git a/www/py-django-cron/Makefile b/www/py-django-cron/Makefile
deleted file mode 100644
index 28026c7ee084..000000000000
--- a/www/py-django-cron/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-PORTNAME= django-cron
-PORTVERSION= 0.6.0
-PORTREVISION= 2
-CATEGORIES= www python
-MASTER_SITES= PYPI
-PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-
-MAINTAINER= kai@FreeBSD.org
-COMMENT= Running Python crons in a Django project
-WWW= https://github.com/tivix/django-cron
-
-LICENSE= MIT
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-DEPRECATED= Upstream inactive since 3+ years, not compatible with Django 5.2 or newer
-EXPIRATION_DATE=2026-03-31
-
-RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django42>=3.2:www/py-django42@${PY_FLAVOR}
-
-USES= python
-USE_PYTHON= autoplist distutils
-
-NO_ARCH= yes
-
-.include <bsd.port.mk>
diff --git a/www/py-django-cron/distinfo b/www/py-django-cron/distinfo
deleted file mode 100644
index 98e237e135bc..000000000000
--- a/www/py-django-cron/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1652294249
-SHA256 (django-cron-0.6.0.tar.gz) = dc3c0d3433a2e4e7012f77f6d8415ad90367ba068649db2674325bc36f935841
-SIZE (django-cron-0.6.0.tar.gz) = 14768
diff --git a/www/py-django-cron/pkg-descr b/www/py-django-cron/pkg-descr
deleted file mode 100644
index b0c7c1f966b0..000000000000
--- a/www/py-django-cron/pkg-descr
+++ /dev/null
@@ -1,10 +0,0 @@
-Django-cron lets you run Django/Python code on a recurring basis providing
-basic plumbing to track and execute tasks. The two most common ways in which
-most people go about this is either writing custom python scripts or a
-management command per cron (leads to too many management commands).
-
-Along with that some mechanism to track success, failure etc. is also usually
-necessary.
-
-This app solves both issues to a reasonable extent. This is by no means a
-replacement for queues like Celery etc.