1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

This is the core component of the python-social-auth

ecosystem, it implements the common interface to
define new authentication backends to third parties
services, implement integrations with web frameworks
and storage solutions.

WWW: https://github.com/python-social-auth/social-core
This commit is contained in:
Richard Gallamore 2019-06-10 00:44:24 +00:00
parent b9dc1b5659
commit add9abbb69
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=503867
4 changed files with 42 additions and 0 deletions

View File

@ -995,6 +995,7 @@
SUBDIR += py-service_identity
SUBDIR += py-signedjson
SUBDIR += py-slowaes
SUBDIR += py-social-auth-core
SUBDIR += py-spake2
SUBDIR += py-ssh
SUBDIR += py-ssh-audit

View File

@ -0,0 +1,31 @@
# $FreeBSD$
PORTNAME= social-auth-core
DISTVERSION= 3.2.0
CATEGORIES= security www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ultima@FreeBSD.org
COMMENT= Social authentication/registration mechanism for several frameworks
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
# TODO Need to add saml support, requires porting python-saml and python3-saml.
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=2.1.1:security/py-cryptography@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}defusedxml>=0.5.0:devel/py-defusedxml@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}python-jose>=3.0.0:security/py-python-jose@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}python${PYTHON_MAJOR_VER:M3}-openid>=2.2.5:security/py-python${PYTHON_MAJOR_VER:M3}-openid@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pyjwt>=1.4.0:www/py-pyjwt@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}oauthlib>=1.0.3:security/py-oauthlib@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}requests>=2.9.1:www/py-requests@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}requests-oauthlib>=0.6.1:www/py-requests-oauthlib@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR}
USES= python
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1560127084
SHA256 (social-auth-core-3.2.0.tar.gz) = 8320666548a532eb158968eda542bbe1863682357c432d8c4e28034a7f1e3b58
SIZE (social-auth-core-3.2.0.tar.gz) = 174171

View File

@ -0,0 +1,7 @@
This is the core component of the python-social-auth
ecosystem, it implements the common interface to
define new authentication backends to third parties
services, implement integrations with web frameworks
and storage solutions.
WWW: https://github.com/python-social-auth/social-core