Index: head/mail/Makefile =================================================================== --- head/mail/Makefile +++ head/mail/Makefile @@ -505,6 +505,7 @@ SUBDIR += py-postfix-mta-sts-resolver SUBDIR += py-premailer SUBDIR += py-pymailq + SUBDIR += py-pysasl SUBDIR += py-pyspf SUBDIR += py-pyzmail SUBDIR += py-spf-engine Index: head/mail/py-pysasl/Makefile =================================================================== --- head/mail/py-pysasl/Makefile +++ head/mail/py-pysasl/Makefile @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= pysasl +DISTVERSION= 0.8.0 +CATEGORIES= mail security +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= nc@FreeBSD.org +COMMENT= Pure Python SASL client and server library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}typing-extensions>=0:devel/py-typing-extensions@${PY_FLAVOR} + +USES= python:3.6+ +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +OPTIONS_DEFINE= PASSLIB +OPTIONS_DEFAULT= PASSLIB + +PASSLIB_DESC= Password hashing support + +PASSLIB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}passlib>=0:security/py-passlib@${PY_FLAVOR} + +.include Index: head/mail/py-pysasl/distinfo =================================================================== --- head/mail/py-pysasl/distinfo +++ head/mail/py-pysasl/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1609988672 +SHA256 (pysasl-0.8.0.tar.gz) = e6eff599093a179ea7aad4ff10a4be139ed2ba338fb9a2c225f828151ef38264 +SIZE (pysasl-0.8.0.tar.gz) = 17126 Index: head/mail/py-pysasl/pkg-descr =================================================================== --- head/mail/py-pysasl/pkg-descr +++ head/mail/py-pysasl/pkg-descr @@ -0,0 +1,8 @@ +pysasl is a Pure Python SASL client and server library. The design of the +library is intended to be agnostic of the protocol or network library. + +The library currently offers PLAIN, LOGIN, and CRAM-MD5 mechanisms by +default. The EXTERNAL and XOAUTH2 mechanisms are also available for +special circumstances. + +WWW: https://pypi.org/project/pysasl/