From owner-svn-ports-head@freebsd.org Tue Aug 29 23:59:26 2017 Return-Path: Delivered-To: svn-ports-head@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 AF43ADE8F8E; Tue, 29 Aug 2017 23:59:26 +0000 (UTC) (envelope-from acm@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 7E5CD76068; Tue, 29 Aug 2017 23:59:26 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7TNxPgk004148; Tue, 29 Aug 2017 23:59:25 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7TNxPkX004144; Tue, 29 Aug 2017 23:59:25 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201708292359.v7TNxPkX004144@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Tue, 29 Aug 2017 23:59:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448941 - in head/mail: . py-aiosmtpd X-SVN-Group: ports-head X-SVN-Commit-Author: acm X-SVN-Commit-Paths: in head/mail: . py-aiosmtpd X-SVN-Commit-Revision: 448941 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Aug 2017 23:59:26 -0000 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 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