From owner-svn-ports-head@freebsd.org Fri Jan 8 16:30:49 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C87D84CE906; Fri, 8 Jan 2021 16:30:49 +0000 (UTC) (envelope-from nc@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DC7rT5NLCz4bVm; Fri, 8 Jan 2021 16:30:49 +0000 (UTC) (envelope-from nc@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AB86C260ED; Fri, 8 Jan 2021 16:30:49 +0000 (UTC) (envelope-from nc@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 108GUnWF038523; Fri, 8 Jan 2021 16:30:49 GMT (envelope-from nc@FreeBSD.org) Received: (from nc@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 108GUmSW037884; Fri, 8 Jan 2021 16:30:48 GMT (envelope-from nc@FreeBSD.org) Message-Id: <202101081630.108GUmSW037884@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nc set sender to nc@FreeBSD.org using -f From: Neel Chauhan Date: Fri, 8 Jan 2021 16:30:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r560792 - in head/mail: . py-python-slimta X-SVN-Group: ports-head X-SVN-Commit-Author: nc X-SVN-Commit-Paths: in head/mail: . py-python-slimta X-SVN-Commit-Revision: 560792 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.34 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: Fri, 08 Jan 2021 16:30:49 -0000 Author: nc Date: Fri Jan 8 16:30:48 2021 New Revision: 560792 URL: https://svnweb.freebsd.org/changeset/ports/560792 Log: New port: mail/py-python-slimta: Python libraries to send, receive, and queue email Reviewed by: 0mp (mentor) Approved by: 0mp (mentor) Differential Revision: https://reviews.freebsd.org/D28033 Added: head/mail/py-python-slimta/ head/mail/py-python-slimta/Makefile (contents, props changed) head/mail/py-python-slimta/distinfo (contents, props changed) head/mail/py-python-slimta/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Fri Jan 8 16:29:05 2021 (r560791) +++ head/mail/Makefile Fri Jan 8 16:30:48 2021 (r560792) @@ -507,6 +507,7 @@ SUBDIR += py-pymailq SUBDIR += py-pysasl SUBDIR += py-pyspf + SUBDIR += py-python-slimta SUBDIR += py-pyzmail SUBDIR += py-spf-engine SUBDIR += py-validate_email Added: head/mail/py-python-slimta/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-python-slimta/Makefile Fri Jan 8 16:30:48 2021 (r560792) @@ -0,0 +1,35 @@ +# $FreeBSD$ + +PORTNAME= python-slimta +PORTVERSION= 4.1.1 +CATEGORIES= mail +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= nc@FreeBSD.org +COMMENT= Python libraries to send, receive, and queue email + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gevent>=1.1rc:devel/py-gevent@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pycares>=1:dns/py-pycares@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pysasl>=0.4.0:mail/py-pysasl@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +OPTIONS_DEFINE= BOTO REDIS SASL +OPTIONS_DEFAULT= SASL + +BOTO_DESC= Support for Amazon Web Services +REDIS_DESC= Redis Support +SASL_DESC= SASL Support + +BOTO_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boto>0:devel/py-boto@${PY_FLAVOR} +REDIS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}redis>0:databases/py-redis@${PY_FLAVOR} +SASL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyspf>0:mail/py-pyspf@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}py3dns>0:dns/py-py3dns@${PY_FLAVOR} + +.include Added: head/mail/py-python-slimta/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-python-slimta/distinfo Fri Jan 8 16:30:48 2021 (r560792) @@ -0,0 +1,3 @@ +TIMESTAMP = 1609989461 +SHA256 (python-slimta-4.1.1.tar.gz) = 3d84fecfdb4e43e41fe7b6b6944d6902fbbf6f6f9d5ecd5dc20c0c8f776c5c90 +SIZE (python-slimta-4.1.1.tar.gz) = 119888 Added: head/mail/py-python-slimta/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-python-slimta/pkg-descr Fri Jan 8 16:30:48 2021 (r560792) @@ -0,0 +1,7 @@ +The python-slimta project is a Python library offering the building blocks +necessary to create a full-featured MTA. An MTA built with python-slimta can +incorporate any protocol or policy - custom or built-in. An MTA built with +python-slimta can integrate with other Python libraries and take advantage +of Python’s great community. + +WWW: https://www.slimta.org/