From owner-svn-ports-all@freebsd.org Sat Feb 10 19:58:37 2018 Return-Path: Delivered-To: svn-ports-all@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 6B46EF194DA; Sat, 10 Feb 2018 19:58:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1C68A6F54F; Sat, 10 Feb 2018 19:58:37 +0000 (UTC) (envelope-from sunpoet@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 173EF189D9; Sat, 10 Feb 2018 19:58:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1AJwaPS094064; Sat, 10 Feb 2018 19:58:36 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1AJwaKj094060; Sat, 10 Feb 2018 19:58:36 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802101958.w1AJwaKj094060@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 10 Feb 2018 19:58:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461418 - in head/security: . py-python3-openid X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/security: . py-python3-openid X-SVN-Commit-Revision: 461418 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Feb 2018 19:58:37 -0000 Author: sunpoet Date: Sat Feb 10 19:58:36 2018 New Revision: 461418 URL: https://svnweb.freebsd.org/changeset/ports/461418 Log: Add py-python3-openid 3.1.0 This is a set of Python packages to support use of the OpenID decentralized identity system in your application, update to Python 3. Want to enable single sign-on for your web site? Use the openid.consumer package. Want to run your own OpenID server? Check out openid.server. Includes example code and support for a variety of storage back-ends. WWW: https://pypi.python.org/pypi/python3-openid WWW: https://github.com/necaris/python3-openid Added: head/security/py-python3-openid/ head/security/py-python3-openid/Makefile (contents, props changed) head/security/py-python3-openid/distinfo (contents, props changed) head/security/py-python3-openid/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Feb 10 19:55:27 2018 (r461417) +++ head/security/Makefile Sat Feb 10 19:58:36 2018 (r461418) @@ -969,6 +969,7 @@ SUBDIR += py-python-openid SUBDIR += py-python-registry SUBDIR += py-python-social-auth + SUBDIR += py-python3-openid SUBDIR += py-rekall SUBDIR += py-rekall-core SUBDIR += py-requests-kerberos Added: head/security/py-python3-openid/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python3-openid/Makefile Sat Feb 10 19:58:36 2018 (r461418) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= python3-openid +PORTVERSION= 3.1.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Python 3 port of the python-openid library + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}defusedxml>=0:devel/py-defusedxml@${FLAVOR} + +NO_ARCH= yes +USE_PYTHON= autoplist distutils +USES= python:3.4+ + +.include Added: head/security/py-python3-openid/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python3-openid/distinfo Sat Feb 10 19:58:36 2018 (r461418) @@ -0,0 +1,3 @@ +TIMESTAMP = 1518291242 +SHA256 (python3-openid-3.1.0.tar.gz) = 628d365d687e12da12d02c6691170f4451db28d6d68d050007e4a40065868502 +SIZE (python3-openid-3.1.0.tar.gz) = 299326 Added: head/security/py-python3-openid/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python3-openid/pkg-descr Sat Feb 10 19:58:36 2018 (r461418) @@ -0,0 +1,8 @@ +This is a set of Python packages to support use of the OpenID decentralized +identity system in your application, update to Python 3. Want to enable single +sign-on for your web site? Use the openid.consumer package. Want to run your own +OpenID server? Check out openid.server. Includes example code and support for a +variety of storage back-ends. + +WWW: https://pypi.python.org/pypi/python3-openid +WWW: https://github.com/necaris/python3-openid