Date: Tue, 29 Aug 2017 23:59:25 +0000 (UTC) From: Jose Alonso Cardenas Marquez <acm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448941 - in head/mail: . py-aiosmtpd Message-ID: <201708292359.v7TNxPkX004144@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: acm Date: Tue Aug 29 23:59:25 2017 New Revision: 448941 URL: https://svnweb.freebsd.org/changeset/ports/448941 Log: - New port: mail/py-aiosmtpd This is a server for SMTP and related protocols, similar in utility to the standard library's smtpd.py module, but rewritten to be based on asyncio for Python 3. WWW: http://aiosmtpd.readthedocs.io Added: head/mail/py-aiosmtpd/ head/mail/py-aiosmtpd/Makefile (contents, props changed) head/mail/py-aiosmtpd/distinfo (contents, props changed) head/mail/py-aiosmtpd/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Tue Aug 29 23:43:05 2017 (r448940) +++ head/mail/Makefile Tue Aug 29 23:59:25 2017 (r448941) @@ -529,6 +529,7 @@ SUBDIR += proxsmtp SUBDIR += py-Products.MailHost SUBDIR += py-Products.SecureMailHost + SUBDIR += py-aiosmtpd SUBDIR += py-apolicy SUBDIR += py-authres SUBDIR += py-cyruslib Added: head/mail/py-aiosmtpd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-aiosmtpd/Makefile Tue Aug 29 23:59:25 2017 (r448941) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= aiosmtpd +PORTVERSION= 1.1 +CATEGORIES= mail python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= acm@FreeBSD.org +COMMENT= Asyncio based SMTP server + +LICENSE= APACHE20 + +USES= python:3 +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/mail/py-aiosmtpd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-aiosmtpd/distinfo Tue Aug 29 23:59:25 2017 (r448941) @@ -0,0 +1,3 @@ +TIMESTAMP = 1503269175 +SHA256 (aiosmtpd-1.1.tar.gz) = 8ab8cd2bb2459f8eb04b835bf1f0dbb8fe590140080b2b3b7793a0992270a557 +SIZE (aiosmtpd-1.1.tar.gz) = 50722 Added: head/mail/py-aiosmtpd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-aiosmtpd/pkg-descr Tue Aug 29 23:59:25 2017 (r448941) @@ -0,0 +1,5 @@ +This is a server for SMTP and related protocols, similar in utility to the +standard library's smtpd.py module, but rewritten to be based on asyncio for +Python 3. + +WWW: http://aiosmtpd.readthedocs.io
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708292359.v7TNxPkX004144>