git: 88cb79a1829e - main - www/py-dj52-django-celery-results: New port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 29 Sep 2025 18:08:52 UTC
The branch main has been updated by grembo:
URL: https://cgit.FreeBSD.org/ports/commit/?id=88cb79a1829e51460d6759e00db8ca0e8adab45e
commit 88cb79a1829e51460d6759e00db8ca0e8adab45e
Author: Michael Gmelin <grembo@FreeBSD.org>
AuthorDate: 2025-09-29 17:45:58 +0000
Commit: Michael Gmelin <grembo@FreeBSD.org>
CommitDate: 2025-09-29 18:07:46 +0000
www/py-dj52-django-celery-results: New port
Clone of existing port for Django 5.2.
---
www/Makefile | 1 +
www/py-dj52-django-celery-results/Makefile | 21 +++++++++++++++++++++
www/py-dj52-django-celery-results/distinfo | 3 +++
www/py-dj52-django-celery-results/pkg-descr | 6 ++++++
4 files changed, 31 insertions(+)
diff --git a/www/Makefile b/www/Makefile
index 7d4fae6a2869..eba8eb5566a6 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -1566,6 +1566,7 @@
SUBDIR += py-dj52-django-allauth
SUBDIR += py-dj52-django-auditlog
SUBDIR += py-dj52-django-auth-ldap
+ SUBDIR += py-dj52-django-celery-results
SUBDIR += py-dj52-django-choices-field
SUBDIR += py-dj52-django-cors-headers
SUBDIR += py-dj52-django-debug-toolbar
diff --git a/www/py-dj52-django-celery-results/Makefile b/www/py-dj52-django-celery-results/Makefile
new file mode 100644
index 000000000000..7def2d213131
--- /dev/null
+++ b/www/py-dj52-django-celery-results/Makefile
@@ -0,0 +1,21 @@
+PORTNAME= django-celery-results
+PORTVERSION= 2.6.0
+CATEGORIES= www python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj52-
+DISTNAME= ${PORTNAME:S/-/_/g}-${PORTVERSION}
+
+MAINTAINER= grembo@FreeBSD.org
+COMMENT= Celery result backends for django
+WWW= https://github.com/celery/django-celery-results
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django52>=5.2:www/py-django52@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}celery>=5.3.6:devel/py-celery@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist distutils
+
+.include <bsd.port.mk>
diff --git a/www/py-dj52-django-celery-results/distinfo b/www/py-dj52-django-celery-results/distinfo
new file mode 100644
index 000000000000..9f7f11775c75
--- /dev/null
+++ b/www/py-dj52-django-celery-results/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1746372914
+SHA256 (django_celery_results-2.6.0.tar.gz) = 9abcd836ae6b61063779244d8887a88fe80bbfaba143df36d3cb07034671277c
+SIZE (django_celery_results-2.6.0.tar.gz) = 83985
diff --git a/www/py-dj52-django-celery-results/pkg-descr b/www/py-dj52-django-celery-results/pkg-descr
new file mode 100644
index 000000000000..da24ab97a379
--- /dev/null
+++ b/www/py-dj52-django-celery-results/pkg-descr
@@ -0,0 +1,6 @@
+Celery Result Backends using the Django ORM/Cache framework.
+
+This extension enables you to store Celery task results using the Django
+ORM. It defines a single model (django_celery_results.models.TaskResult)
+used to store task results, and you can query this database table like any
+other Django model.