From owner-svn-ports-all@freebsd.org Sat Apr 16 17:48:11 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3987B10654; Sat, 16 Apr 2016 17:48:11 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7F3011F8C; Sat, 16 Apr 2016 17:48:11 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3GHmATs068382; Sat, 16 Apr 2016 17:48:10 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3GHmAHK068378; Sat, 16 Apr 2016 17:48:10 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201604161748.u3GHmAHK068378@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 16 Apr 2016 17:48:10 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Apr 2016 17:48:11 -0000 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 +# $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 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