svn commit: r555252 - in head/security: . py-webauthn
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sun Nov 15 17:56:03 UTC 2020
Author: sunpoet
Date: Sun Nov 15 17:55:59 2020
New Revision: 555252
URL: https://svnweb.freebsd.org/changeset/ports/555252
Log:
Add py-webauthn 0.4.7
PyWebAuthn is a Python module which can be used to handle WebAuthn registration
and assertion. Currently, WebAuthn is supported in Firefox, Chrome, and Edge.
WWW: https://github.com/duo-labs/py_webauthn
Added:
head/security/py-webauthn/
head/security/py-webauthn/Makefile (contents, props changed)
head/security/py-webauthn/distinfo (contents, props changed)
head/security/py-webauthn/pkg-descr (contents, props changed)
Modified:
head/security/Makefile
Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile Sun Nov 15 17:55:53 2020 (r555251)
+++ head/security/Makefile Sun Nov 15 17:55:59 2020 (r555252)
@@ -1005,6 +1005,7 @@
SUBDIR += py-virustotal-api
SUBDIR += py-volatility3
SUBDIR += py-vulndb
+ SUBDIR += py-webauthn
SUBDIR += py-xkcdpass
SUBDIR += py-xmlsec
SUBDIR += py-yara
Added: head/security/py-webauthn/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/py-webauthn/Makefile Sun Nov 15 17:55:59 2020 (r555252)
@@ -0,0 +1,30 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= webauthn
+PORTVERSION= 0.4.7
+CATEGORIES= security python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= sunpoet at FreeBSD.org
+COMMENT= WebAuthn Python module
+
+LICENSE= BSD3CLAUSE
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cbor2>=4.0.1:devel/py-cbor2@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}cryptography>=2.3.1:security/py-cryptography@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}future>=0.17.1:devel/py-future@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}openssl>=16.0.0:security/py-openssl@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}six>=1.11.0:devel/py-six@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist concurrent distutils
+
+NO_ARCH= yes
+
+do-test:
+ cd ${WRKSRC} && ${PYTHON_CMD} -m unittest
+
+.include <bsd.port.mk>
Added: head/security/py-webauthn/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/py-webauthn/distinfo Sun Nov 15 17:55:59 2020 (r555252)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1605426321
+SHA256 (webauthn-0.4.7.tar.gz) = 8ad9072ff1d6169f3be30d4dc8733ea563dd266962397bc58b40f674a6af74ac
+SIZE (webauthn-0.4.7.tar.gz) = 65784
Added: head/security/py-webauthn/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/py-webauthn/pkg-descr Sun Nov 15 17:55:59 2020 (r555252)
@@ -0,0 +1,4 @@
+PyWebAuthn is a Python module which can be used to handle WebAuthn registration
+and assertion. Currently, WebAuthn is supported in Firefox, Chrome, and Edge.
+
+WWW: https://github.com/duo-labs/py_webauthn
More information about the svn-ports-head
mailing list