Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 29 Feb 2020 19:19:38 +0000 (UTC)
From:      "Danilo G. Baio" <dbaio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r527454 - in head/devel: . py-marrow.mailer py-marrow.mailer/files
Message-ID:  <202002291919.01TJJcVi068622@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dbaio
Date: Sat Feb 29 19:19:37 2020
New Revision: 527454
URL: https://svnweb.freebsd.org/changeset/ports/527454

Log:
  Add devel/py-marrow.mailer: Python library to ease sending emails
  
  Marrow Mailer is a Python library to ease sending emails from your application.
  
  By using Marrow Mailer you can:
   - Easily construct plain text and HTML emails.
   - Improve the testability of your e-mail deliveries.
   - Use different mail delivery management strategies; e.g. immediate, deferred,
     or even multi-server.
   - Deliver e-mail through a number of alternative transports including SMTP,
     Amazon SES, sendmail, or even via direct on-disk mbox/maildir.
   - Multiple simultaneous configurations for more targeted delivery.
  
  WWW: https://github.com/marrow/mailer

Added:
  head/devel/py-marrow.mailer/
  head/devel/py-marrow.mailer/Makefile   (contents, props changed)
  head/devel/py-marrow.mailer/distinfo   (contents, props changed)
  head/devel/py-marrow.mailer/files/
  head/devel/py-marrow.mailer/files/patch-setup.py   (contents, props changed)
  head/devel/py-marrow.mailer/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Feb 29 19:18:38 2020	(r527453)
+++ head/devel/Makefile	Sat Feb 29 19:19:37 2020	(r527454)
@@ -4581,6 +4581,8 @@
     SUBDIR += py-magic
     SUBDIR += py-mailcap-fix
     SUBDIR += py-manuel
+    SUBDIR += py-marrow.mailer
+    SUBDIR += py-marrow.util
     SUBDIR += py-marshmallow
     SUBDIR += py-matrix-angular-sdk
     SUBDIR += py-mccabe

Added: head/devel/py-marrow.mailer/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-marrow.mailer/Makefile	Sat Feb 29 19:19:37 2020	(r527454)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	marrow.mailer
+PORTVERSION=	4.0.3
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dbaio@FreeBSD.org
+COMMENT=	Python library to ease sending emails
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}marrow.util>=1.2.3:devel/py-marrow.util@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \
+		${PY_FUTURES}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-marrow.mailer/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-marrow.mailer/distinfo	Sat Feb 29 19:19:37 2020	(r527454)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1582998600
+SHA256 (marrow.mailer-4.0.3.tar.gz) = 5c374b65ea4b9d99b986e9cf8ba859ef3776864f1284c77c852bb51695206ccd
+SIZE (marrow.mailer-4.0.3.tar.gz) = 38464

Added: head/devel/py-marrow.mailer/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-marrow.mailer/files/patch-setup.py	Sat Feb 29 19:19:37 2020	(r527454)
@@ -0,0 +1,11 @@
+--- setup.py.orig	2019-09-14 01:23:39 UTC
++++ setup.py
+@@ -55,7 +55,7 @@ setup(
+ 				"Topic :: Utilities",
+ 			],
+ 		
+-		packages = find_packages(exclude=['examples', 'tests']),
++		packages = find_packages(exclude=['test', 'test.*']),
+ 		include_package_data = True,
+ 		package_data = {'': ['README.textile', 'LICENSE.txt']},
+ 		namespace_packages = ['marrow'],

Added: head/devel/py-marrow.mailer/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-marrow.mailer/pkg-descr	Sat Feb 29 19:19:37 2020	(r527454)
@@ -0,0 +1,12 @@
+Marrow Mailer is a Python library to ease sending emails from your application.
+
+By using Marrow Mailer you can:
+ - Easily construct plain text and HTML emails.
+ - Improve the testability of your e-mail deliveries.
+ - Use different mail delivery management strategies; e.g. immediate, deferred,
+   or even multi-server.
+ - Deliver e-mail through a number of alternative transports including SMTP,
+   Amazon SES, sendmail, or even via direct on-disk mbox/maildir.
+ - Multiple simultaneous configurations for more targeted delivery.
+
+WWW: https://github.com/marrow/mailer



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