git: c9bf093b83db - main - devel/py-pure-sasl: new port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 26 Jun 2026 09:37:52 UTC
The branch main has been updated by olivier:
URL: https://cgit.FreeBSD.org/ports/commit/?id=c9bf093b83db9cfe7851874e6a13f6af03153def
commit c9bf093b83db9cfe7851874e6a13f6af03153def
Author: Olivier Cochard <olivier@FreeBSD.org>
AuthorDate: 2026-06-26 09:31:24 +0000
Commit: Olivier Cochard <olivier@FreeBSD.org>
CommitDate: 2026-06-26 09:37:41 +0000
devel/py-pure-sasl: new port
Sponsored by: Netflix
---
devel/Makefile | 1 +
devel/py-pure-sasl/Makefile | 27 +++++++++++++++++++++++++++
devel/py-pure-sasl/distinfo | 3 +++
devel/py-pure-sasl/pkg-descr | 3 +++
4 files changed, 34 insertions(+)
diff --git a/devel/Makefile b/devel/Makefile
index e1591ae4221e..adf3b7857acc 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5707,6 +5707,7 @@
SUBDIR += py-ptvsd
SUBDIR += py-pudb
SUBDIR += py-pure-eval
+ SUBDIR += py-pure-sasl
SUBDIR += py-purl
SUBDIR += py-py
SUBDIR += py-py-deviceid
diff --git a/devel/py-pure-sasl/Makefile b/devel/py-pure-sasl/Makefile
new file mode 100644
index 000000000000..10600fe9a25f
--- /dev/null
+++ b/devel/py-pure-sasl/Makefile
@@ -0,0 +1,27 @@
+PORTNAME= pure-sasl
+DISTVERSION= 0.6.2
+CATEGORIES= devel python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= olivier@FreeBSD.org
+COMMENT= Pure Python client SASL implementation
+WWW= https://github.com/thobbs/pure-sasl
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist pep517
+NO_ARCH= yes
+
+OPTIONS_DEFINE= GSSAPI
+OPTIONS_DEFAULT= GSSAPI
+
+GSSAPI_DESC= GSSAPI/Kerberos mechanism support
+GSSAPI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}kerberos>=1.3.0:security/py-kerberos@${PY_FLAVOR}
+
+.include <bsd.port.mk>
diff --git a/devel/py-pure-sasl/distinfo b/devel/py-pure-sasl/distinfo
new file mode 100644
index 000000000000..d2d9fbe87210
--- /dev/null
+++ b/devel/py-pure-sasl/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1782459705
+SHA256 (pure-sasl-0.6.2.tar.gz) = 53c1355f5da95e2b85b2cc9a6af435518edc20c81193faa0eea65fdc835138f4
+SIZE (pure-sasl-0.6.2.tar.gz) = 11617
diff --git a/devel/py-pure-sasl/pkg-descr b/devel/py-pure-sasl/pkg-descr
new file mode 100644
index 000000000000..5cfa98ec45f4
--- /dev/null
+++ b/devel/py-pure-sasl/pkg-descr
@@ -0,0 +1,3 @@
+pure-sasl provides a reasonably high-level SASL client written in Python.
+New mechanisms may be integrated easily, but by default, support for PLAIN,
+ANONYMOUS, EXTERNAL, CRAM-MD5, DIGEST-MD5, and GSSAPI is provided.