svn commit: r529045 - in head/security: . py-scramp
Wen Heping
wen at FreeBSD.org
Tue Mar 24 13:35:27 UTC 2020
Author: wen
Date: Tue Mar 24 13:27:34 2020
New Revision: 529045
URL: https://svnweb.freebsd.org/changeset/ports/529045
Log:
A Python implementation of the SCRAM authentication protocol defined
by RFC 5802 and RFC 7677. Scramp supports the following mechanisms:
* SCRAM-SHA-256
* SCRAM-SHA-1
WWW: https://github.com/tlocke/scramp
Added:
head/security/py-scramp/
head/security/py-scramp/Makefile (contents, props changed)
head/security/py-scramp/distinfo (contents, props changed)
head/security/py-scramp/pkg-descr (contents, props changed)
Modified:
head/security/Makefile
Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile Tue Mar 24 13:14:46 2020 (r529044)
+++ head/security/Makefile Tue Mar 24 13:27:34 2020 (r529045)
@@ -977,6 +977,7 @@
SUBDIR += py-rsa
SUBDIR += py-safe
SUBDIR += py-scp
+ SUBDIR += py-scramp
SUBDIR += py-scrypt
SUBDIR += py-securesystemslib
SUBDIR += py-service_identity
Added: head/security/py-scramp/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/py-scramp/Makefile Tue Mar 24 13:27:34 2020 (r529045)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME= scramp
+PORTVERSION= 1.1.0
+CATEGORIES= security python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= wen at FreeBSD.org
+COMMENT= Pure-Python implementation of the SCRAM authentication protocol
+
+LICENSE= MIT
+
+USES= python:3.5+
+USE_PYTHON= autoplist distutils
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/security/py-scramp/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/py-scramp/distinfo Tue Mar 24 13:27:34 2020 (r529045)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1585042269
+SHA256 (scramp-1.1.0.tar.gz) = 475aa6296deb2737b86e9df9098e8eca0f30c8ad1cc0a8adadb99ef012a5ceba
+SIZE (scramp-1.1.0.tar.gz) = 20211
Added: head/security/py-scramp/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/py-scramp/pkg-descr Tue Mar 24 13:27:34 2020 (r529045)
@@ -0,0 +1,6 @@
+A Python implementation of the SCRAM authentication protocol defined
+by RFC 5802 and RFC 7677. Scramp supports the following mechanisms:
+ * SCRAM-SHA-256
+ * SCRAM-SHA-1
+
+WWW: https://github.com/tlocke/scramp
More information about the svn-ports-all
mailing list