svn commit: r413470 - in head/www: . py-django-post_office
Kurt Jaeger
pi at FreeBSD.org
Sat Apr 16 17:48:11 UTC 2016
Author: pi
Date: Sat Apr 16 17:48:10 2016
New Revision: 413470
URL: https://svnweb.freebsd.org/changeset/ports/413470
Log:
New port: www/py-django-post_office
Django Post Office is a simple app to send and manage your emails in
Django. Some awesome features are:
* Allows you to send email asynchronously
* Multi backend support
* Supports HTML email
* Supports database based email templates
* Built in scheduling support
* Works well with task queues like RQ or Celery
* Uses multiprocessing to send a large number of emails in parallel
* Supports multilingual email templates (i18n)
WWW: https://github.com/ui/django-post_office
PR: 208836
Submitted by: Ultima1252 at gmail.com
Added:
head/www/py-django-post_office/
head/www/py-django-post_office/Makefile (contents, props changed)
head/www/py-django-post_office/distinfo (contents, props changed)
head/www/py-django-post_office/pkg-descr (contents, props changed)
Modified:
head/www/Makefile
Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile Sat Apr 16 17:43:11 2016 (r413469)
+++ head/www/Makefile Sat Apr 16 17:48:10 2016 (r413470)
@@ -1570,6 +1570,7 @@
SUBDIR += py-django-pipeline
SUBDIR += py-django-pipeline13
SUBDIR += py-django-piston
+ SUBDIR += py-django-post_office
SUBDIR += py-django-profiles
SUBDIR += py-django-recaptcha
SUBDIR += py-django-redis
Added: head/www/py-django-post_office/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/py-django-post_office/Makefile Sat Apr 16 17:48:10 2016 (r413470)
@@ -0,0 +1,26 @@
+# Created by: Ultima <ultima1252 at gmail.com>
+# $FreeBSD$
+
+PORTNAME= django-post_office
+PORTVERSION= 2.0.7
+DISTVERSIONPREFIX= v
+CATEGORIES= www python
+MASTER_SITES= GH
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= ultima1252 at gmail.com
+COMMENT= Django app to monitor and send mail asynchronously
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django-jsonfield>=0:www/py-django-jsonfield \
+ ${PYTHON_PKGNAMEPREFIX}django18>=1.4:www/py-django18
+
+USES= python
+USE_PYTHON= autoplist distutils
+NO_ARCH= yes
+USE_GITHUB= yes
+GH_ACCOUNT= ui
+
+.include <bsd.port.mk>
Added: head/www/py-django-post_office/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/py-django-post_office/distinfo Sat Apr 16 17:48:10 2016 (r413470)
@@ -0,0 +1,2 @@
+SHA256 (ui-django-post_office-v2.0.7_GH0.tar.gz) = d549a46aba0d72233a24cf4ac601da14e8955e68f1e3438db02477a7b3269426
+SIZE (ui-django-post_office-v2.0.7_GH0.tar.gz) = 37529
Added: head/www/py-django-post_office/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/py-django-post_office/pkg-descr Sat Apr 16 17:48:10 2016 (r413470)
@@ -0,0 +1,13 @@
+Django Post Office is a simple app to send and manage your emails in
+Django. Some awesome features are:
+
+* Allows you to send email asynchronously
+* Multi backend support
+* Supports HTML email
+* Supports database based email templates
+* Built in scheduling support
+* Works well with task queues like RQ or Celery
+* Uses multiprocessing to send a large number of emails in parallel
+* Supports multilingual email templates (i18n)
+
+WWW: https://github.com/ui/django-post_office
More information about the svn-ports-head
mailing list