svn commit: r560737 - in head/mail: . py-pysasl

Neel Chauhan nc at FreeBSD.org
Thu Jan 7 21:41:14 UTC 2021


Author: nc
Date: Thu Jan  7 21:41:12 2021
New Revision: 560737
URL: https://svnweb.freebsd.org/changeset/ports/560737

Log:
  New port: mail/pysasl: Pure Python SASL client and server library
  
  Reviewed by:		0mp (mentor)
  Approved by:		0mp (mentor)
  Differential Revision:	https://reviews.freebsd.org/D28024

Added:
  head/mail/py-pysasl/
  head/mail/py-pysasl/Makefile   (contents, props changed)
  head/mail/py-pysasl/distinfo   (contents, props changed)
  head/mail/py-pysasl/pkg-descr   (contents, props changed)
Modified:
  head/mail/Makefile

Modified: head/mail/Makefile
==============================================================================
--- head/mail/Makefile	Thu Jan  7 21:17:22 2021	(r560736)
+++ head/mail/Makefile	Thu Jan  7 21:41:12 2021	(r560737)
@@ -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

Added: head/mail/py-pysasl/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/py-pysasl/Makefile	Thu Jan  7 21:41:12 2021	(r560737)
@@ -0,0 +1,28 @@
+# $FreeBSD$
+
+PORTNAME=	pysasl
+DISTVERSION=	0.8.0
+CATEGORIES=	mail security
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	nc at 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 <bsd.port.mk>

Added: head/mail/py-pysasl/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/py-pysasl/distinfo	Thu Jan  7 21:41:12 2021	(r560737)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1609988672
+SHA256 (pysasl-0.8.0.tar.gz) = e6eff599093a179ea7aad4ff10a4be139ed2ba338fb9a2c225f828151ef38264
+SIZE (pysasl-0.8.0.tar.gz) = 17126

Added: head/mail/py-pysasl/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/py-pysasl/pkg-descr	Thu Jan  7 21:41:12 2021	(r560737)
@@ -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/


More information about the svn-ports-head mailing list