From owner-svn-ports-all@freebsd.org Sat Feb 3 04:19:20 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 F095CEE589D; Sat, 3 Feb 2018 04:19:19 +0000 (UTC) (envelope-from swills@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 9F86571A7B; Sat, 3 Feb 2018 04:19:19 +0000 (UTC) (envelope-from swills@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 81C24258A7; Sat, 3 Feb 2018 04:19:19 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w134JJMh020938; Sat, 3 Feb 2018 04:19:19 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w134JJAD020936; Sat, 3 Feb 2018 04:19:19 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201802030419.w134JJAD020936@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 3 Feb 2018 04:19:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460770 - in head/security/py-pysaml2: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/security/py-pysaml2: . files X-SVN-Commit-Revision: 460770 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, 03 Feb 2018 04:19:20 -0000 Author: swills Date: Sat Feb 3 04:19:19 2018 New Revision: 460770 URL: https://svnweb.freebsd.org/changeset/ports/460770 Log: security/py-pysaml2: Upgrade to 4.5.0 PR: 225201 Submitted by: John W. O'Brien Approved by: maintainer timeout (brendan+freebsd@bbqsrc.net, > 2 weeks) Deleted: head/security/py-pysaml2/files/ Modified: head/security/py-pysaml2/Makefile (contents, props changed) head/security/py-pysaml2/distinfo (contents, props changed) Modified: head/security/py-pysaml2/Makefile ============================================================================== --- head/security/py-pysaml2/Makefile Sat Feb 3 03:54:16 2018 (r460769) +++ head/security/py-pysaml2/Makefile Sat Feb 3 04:19:19 2018 (r460770) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= pysaml2 -PORTVERSION= 4.0.2 +PORTVERSION= 4.5.0 +PORTREVISION= 0 CATEGORIES= security devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,15 +14,16 @@ COMMENT= Python implementation of SAML Version 2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}decorator>0:devel/py-decorator@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}requests>1.0.0:www/py-requests@${FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>1.0.0:www/py-requests@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Paste>0:www/py-paste@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}zope.interface>0:devel/py-zope.interface@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}repoze.who>0:devel/py-repoze.who@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pycrypto>2.5:security/py-pycrypto@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cryptography>0:security/py-cryptography@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytz>0:devel/py-pytz@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}openssl>0:security/py-openssl@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}dateutil>0:devel/py-dateutil@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}defusedxml>0:devel/py-defusedxml@${FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR} \ xmlsec1:security/xmlsec1 TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${FLAVOR} \ @@ -29,7 +31,7 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py ${PYTHON_PKGNAMEPREFIX}responses>0:devel/py-responses@${FLAVOR} USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes Modified: head/security/py-pysaml2/distinfo ============================================================================== --- head/security/py-pysaml2/distinfo Sat Feb 3 03:54:16 2018 (r460769) +++ head/security/py-pysaml2/distinfo Sat Feb 3 04:19:19 2018 (r460770) @@ -1,2 +1,3 @@ -SHA256 (pysaml2-4.0.2.tar.gz) = 24cec8dbc20a7772854563ffc9a19297afcc38c4c7558c063b4c8c302f8a958b -SIZE (pysaml2-4.0.2.tar.gz) = 13657558 +TIMESTAMP = 1516044462 +SHA256 (pysaml2-4.5.0.tar.gz) = 59f82ee82390482640b298045a792455dae6cae580d8c0a3c935f0038f878133 +SIZE (pysaml2-4.5.0.tar.gz) = 20030696