Date: Sat, 16 Apr 2016 17:48:10 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413470 - in head/www: . py-django-post_office Message-ID: <201604161748.u3GHmAHK068378@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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@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> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201604161748.u3GHmAHK068378>