diff options
author | pi <pi@FreeBSD.org> | 2016-04-17 01:48:10 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2016-04-17 01:48:10 +0800 |
commit | 2ee13934ec2714b3e5e97cb82033225c69318b94 (patch) | |
tree | 5c1b47ca53c449db9dca06d07e4e322689febc1c /www | |
parent | e3337cc932513f231ea18d900973bfbc464dc016 (diff) | |
download | freebsd-ports-gnome-2ee13934ec2714b3e5e97cb82033225c69318b94.tar.gz freebsd-ports-gnome-2ee13934ec2714b3e5e97cb82033225c69318b94.tar.zst freebsd-ports-gnome-2ee13934ec2714b3e5e97cb82033225c69318b94.zip |
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@gmail.com
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/py-django-post_office/Makefile | 26 | ||||
-rw-r--r-- | www/py-django-post_office/distinfo | 2 | ||||
-rw-r--r-- | www/py-django-post_office/pkg-descr | 13 |
4 files changed, 42 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index a73707a8e323..05fe1bf56d20 100644 --- a/www/Makefile +++ b/www/Makefile @@ -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 diff --git a/www/py-django-post_office/Makefile b/www/py-django-post_office/Makefile new file mode 100644 index 000000000000..fe25ca1de2a8 --- /dev/null +++ b/www/py-django-post_office/Makefile @@ -0,0 +1,26 @@ +# Created by: Ultima <ultima1252@gmail.com> +# $FreeBSD$ + +PORTNAME= django-post_office +PORTVERSION= 2.0.7 +DISTVERSIONPREFIX= v +CATEGORIES= www python +MASTER_SITES= GH +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ultima1252@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> diff --git a/www/py-django-post_office/distinfo b/www/py-django-post_office/distinfo new file mode 100644 index 000000000000..9be8cad7d5ea --- /dev/null +++ b/www/py-django-post_office/distinfo @@ -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 diff --git a/www/py-django-post_office/pkg-descr b/www/py-django-post_office/pkg-descr new file mode 100644 index 000000000000..314db484e87d --- /dev/null +++ b/www/py-django-post_office/pkg-descr @@ -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 |