From owner-svn-ports-head@freebsd.org Mon Jun 10 00:44:26 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AD1B15AF99E; Mon, 10 Jun 2019 00:44:26 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 94F518C29D; Mon, 10 Jun 2019 00:44:25 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7069DAC10; Mon, 10 Jun 2019 00:44:25 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5A0iPKM025394; Mon, 10 Jun 2019 00:44:25 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5A0iOOq025391; Mon, 10 Jun 2019 00:44:24 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201906100044.x5A0iOOq025391@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Mon, 10 Jun 2019 00:44:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r503867 - in head/security: . py-social-auth-core X-SVN-Group: ports-head X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in head/security: . py-social-auth-core X-SVN-Commit-Revision: 503867 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 94F518C29D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2019 00:44:26 -0000 Author: ultima Date: Mon Jun 10 00:44:24 2019 New Revision: 503867 URL: https://svnweb.freebsd.org/changeset/ports/503867 Log: 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 Added: head/security/py-social-auth-core/ head/security/py-social-auth-core/Makefile (contents, props changed) head/security/py-social-auth-core/distinfo (contents, props changed) head/security/py-social-auth-core/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Jun 10 00:29:04 2019 (r503866) +++ head/security/Makefile Mon Jun 10 00:44:24 2019 (r503867) @@ -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 Added: head/security/py-social-auth-core/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-social-auth-core/Makefile Mon Jun 10 00:44:24 2019 (r503867) @@ -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 Added: head/security/py-social-auth-core/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-social-auth-core/distinfo Mon Jun 10 00:44:24 2019 (r503867) @@ -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 Added: head/security/py-social-auth-core/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-social-auth-core/pkg-descr Mon Jun 10 00:44:24 2019 (r503867) @@ -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