diff --git a/www/Makefile b/www/Makefile index 48a69e98cb621..6059870b367b7 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1690,6 +1690,7 @@ SUBDIR += py-mwoauth SUBDIR += py-nevow SUBDIR += py-notebook + SUBDIR += py-onetimepass SUBDIR += py-openbrokerapi SUBDIR += py-pafy SUBDIR += py-paste diff --git a/www/py-onetimepass/Makefile b/www/py-onetimepass/Makefile new file mode 100644 index 0000000000000..7fb1711ec94a4 --- /dev/null +++ b/www/py-onetimepass/Makefile @@ -0,0 +1,21 @@ +PORTNAME= onetimepass +DISTVERSION= 1.0.1 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Module for generating and validating HOTP and TOTP tokens +WWW= https://github.com/tadeck/onetimepass/ + +LICENSE= MIT + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include diff --git a/www/py-onetimepass/distinfo b/www/py-onetimepass/distinfo new file mode 100644 index 0000000000000..558ef62e50347 --- /dev/null +++ b/www/py-onetimepass/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1672081898 +SHA256 (onetimepass-1.0.1.tar.gz) = a569dac076d6e3761cbc55e36952144a637ca1b075c6d509de1c1dbc5e7f6a27 +SIZE (onetimepass-1.0.1.tar.gz) = 6046 diff --git a/www/py-onetimepass/pkg-descr b/www/py-onetimepass/pkg-descr new file mode 100644 index 0000000000000..c0e73e06ec91a --- /dev/null +++ b/www/py-onetimepass/pkg-descr @@ -0,0 +1 @@ +One-time password library for HMAC-based (HOTP) and time-based (TOTP) passwords.