Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 17 Mar 2019 14:48:51 +0000 (UTC)
From:      Kai Knoblich <kai@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r496068 - in head/www: . py-django-cron
Message-ID:  <201903171448.x2HEmp39015817@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kai
Date: Sun Mar 17 14:48:51 2019
New Revision: 496068
URL: https://svnweb.freebsd.org/changeset/ports/496068

Log:
  New port: www/py-django-cron
  
  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.
  
  WWW: https://github.com/tivix/django-cron
  
  Approved by:	tcberner (mentor)
  Differential Revision:	https://reviews.freebsd.org/D19589

Added:
  head/www/py-django-cron/
  head/www/py-django-cron/Makefile   (contents, props changed)
  head/www/py-django-cron/distinfo   (contents, props changed)
  head/www/py-django-cron/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sun Mar 17 14:35:45 2019	(r496067)
+++ head/www/Makefile	Sun Mar 17 14:48:51 2019	(r496068)
@@ -1548,6 +1548,7 @@
     SUBDIR += py-django-cors-headers
     SUBDIR += py-django-countries
     SUBDIR += py-django-crispy-forms
+    SUBDIR += py-django-cron
     SUBDIR += py-django-datetime-widget
     SUBDIR += py-django-debug-toolbar
     SUBDIR += py-django-dpaste

Added: head/www/py-django-cron/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-cron/Makefile	Sun Mar 17 14:48:51 2019	(r496068)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	django-cron
+PORTVERSION=	0.5.1
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	kai@FreeBSD.org
+COMMENT=	Running Python crons in a Django project
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}django111>=1.8:www/py-django111@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}django-common-helpers>=0.6.4:www/py-django-common-helpers@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/www/py-django-cron/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-cron/distinfo	Sun Mar 17 14:48:51 2019	(r496068)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1549629311
+SHA256 (django-cron-0.5.1.tar.gz) = 08d22708c8b2ecab8cda989019a66c7e1e2424c59d822796fd45abf7731d261d
+SIZE (django-cron-0.5.1.tar.gz) = 12122

Added: head/www/py-django-cron/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-django-cron/pkg-descr	Sun Mar 17 14:48:51 2019	(r496068)
@@ -0,0 +1,12 @@
+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.
+
+WWW: https://github.com/tivix/django-cron



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903171448.x2HEmp39015817>