From owner-svn-ports-all@freebsd.org Fri Feb 28 19:22:20 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7C721242A5E; Fri, 28 Feb 2020 19:22:20 +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.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 48TfYm0l2sz476T; Fri, 28 Feb 2020 19:22:20 +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 0C19F69DB; Fri, 28 Feb 2020 19:22:20 +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 01SJMJub002260; Fri, 28 Feb 2020 19:22:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01SJMJWV002253; Fri, 28 Feb 2020 19:22:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202002281922.01SJMJWV002253@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 28 Feb 2020 19:22:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r527352 - in head/security: . py-python3-saml X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/security: . py-python3-saml X-SVN-Commit-Revision: 527352 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.29 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: Fri, 28 Feb 2020 19:22:20 -0000 Author: sunpoet Date: Fri Feb 28 19:22:18 2020 New Revision: 527352 URL: https://svnweb.freebsd.org/changeset/ports/527352 Log: Add py-python3-saml 1.9.0 Add SAML support to your Python software using this library. Forget those complicated libraries and use the open source library provided and supported by OneLogin Inc. WWW: https://github.com/onelogin/python3-saml Added: head/security/py-python3-saml/ head/security/py-python3-saml/Makefile (contents, props changed) head/security/py-python3-saml/distinfo (contents, props changed) head/security/py-python3-saml/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Fri Feb 28 19:21:37 2020 (r527351) +++ head/security/Makefile Fri Feb 28 19:22:18 2020 (r527352) @@ -962,6 +962,7 @@ SUBDIR += py-python-pam SUBDIR += py-python-registry SUBDIR += py-python3-openid + SUBDIR += py-python3-saml SUBDIR += py-pywinrm SUBDIR += py-rekall SUBDIR += py-rekall-core Added: head/security/py-python3-saml/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python3-saml/Makefile Fri Feb 28 19:22:18 2020 (r527352) @@ -0,0 +1,25 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= python3-saml +PORTVERSION= 1.9.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Add SAML support to your Python software + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}defusedxml>=0.5.0:devel/py-defusedxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}isodate>=0.5.0:devel/py-isodate@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}xmlsec>=0.6.0:security/py-xmlsec@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/security/py-python3-saml/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python3-saml/distinfo Fri Feb 28 19:22:18 2020 (r527352) @@ -0,0 +1,3 @@ +TIMESTAMP = 1582888982 +SHA256 (python3-saml-1.9.0.tar.gz) = 68ca2e5591769a1a87c9aac1779ff2c0852ddc89fb0b0371f50f781d354323da +SIZE (python3-saml-1.9.0.tar.gz) = 76331 Added: head/security/py-python3-saml/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-python3-saml/pkg-descr Fri Feb 28 19:22:18 2020 (r527352) @@ -0,0 +1,5 @@ +Add SAML support to your Python software using this library. Forget those +complicated libraries and use the open source library provided and supported by +OneLogin Inc. + +WWW: https://github.com/onelogin/python3-saml