From owner-svn-ports-all@freebsd.org Sun Apr 26 14:16:59 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 2BF692B1A2B; Sun, 26 Apr 2020 14:16:59 +0000 (UTC) (envelope-from dbaio@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 49992g0GRmz4XHZ; Sun, 26 Apr 2020 14:16:59 +0000 (UTC) (envelope-from dbaio@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 F418522219; Sun, 26 Apr 2020 14:16:58 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03QEGwCN020467; Sun, 26 Apr 2020 14:16:58 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03QEGwYw020466; Sun, 26 Apr 2020 14:16:58 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <202004261416.03QEGwYw020466@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sun, 26 Apr 2020 14:16:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r533065 - head/devel/py-twisted X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-twisted X-SVN-Commit-Revision: 533065 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: Sun, 26 Apr 2020 14:16:59 -0000 Author: dbaio Date: Sun Apr 26 14:16:58 2020 New Revision: 533065 URL: https://svnweb.freebsd.org/changeset/ports/533065 Log: devel/py-twisted: Update to 20.3.0, Fix security vulnerabilities Add extra_require dependencies as options, enabled by default. Changelog: https://github.com/twisted/twisted/blob/twisted-20.3.0/NEWS.rst PR: 245252 Exp-run by: antoine Submitted by: contact@evilham.com Submitted by: dereks_lifeofadishwasher.com MFH: 2020Q2 Security: 9fbaefb3-837e-11ea-b5b4-641c67a117d8 Differential Revision: https://reviews.freebsd.org/D24186 Modified: head/devel/py-twisted/Makefile head/devel/py-twisted/distinfo Modified: head/devel/py-twisted/Makefile ============================================================================== --- head/devel/py-twisted/Makefile Sun Apr 26 13:59:54 2020 (r533064) +++ head/devel/py-twisted/Makefile Sun Apr 26 14:16:58 2020 (r533065) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= twisted -PORTVERSION= 18.9.0 -PORTREVISION= 1 +PORTVERSION= 20.3.0 CATEGORIES= devel net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,18 +14,38 @@ COMMENT= Asynchronous networking framework written in LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}constantly>=15.1:devel/py-constantly@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}attrs>17.4.0:devel/py-attrs@${PY_FLAVOR} \ +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}incremental>=16.10.1:devel/py-incremental@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}attrs>19.2.0:devel/py-attrs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}Automat>=0.3.0:devel/py-Automat@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}constantly>=15.1:devel/py-constantly@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}hyperlink>=17.1.1:www/py-hyperlink@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}incremental>=16.10.1:devel/py-incremental@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}PyHamcrest>=1.9.0:textproc/py-pyhamcrest@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}zope.interface>=4.4.0:devel/py-zope.interface@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}Automat>=0.3.0:devel/py-Automat@${PY_FLAVOR} -RUN_DEPENDS:= ${BUILD_DEPENDS} + ${PYTHON_PKGNAMEPREFIX}zope.interface>=4.4.2:devel/py-zope.interface@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}service_identity>0:security/py-service_identity@${PY_FLAVOR} USES= python tar:bzip2 USE_PYTHON= autoplist concurrent distutils + +OPTIONS_DEFINE= CONCH HTTP2 SERIAL TLS +OPTIONS_DEFAULT= CONCH HTTP2 SERIAL TLS + +CONCH_DESC= Conch secure shell SSH +SERIAL_DESC= Serial port extension + +CONCH_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}appdirs>=1.4.0:devel/py-appdirs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}bcrypt>=3.0.0:security/py-bcrypt@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cryptography>=2.5:security/py-cryptography@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyasn1>=0:devel/py-pyasn1@${PY_FLAVOR} + +HTTP2_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}h2>=3.0:www/py-h2@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}priority>=1.1.0:www/py-priority@${PY_FLAVOR} + +SERIAL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}serial>=3.0:comms/py-serial@${PY_FLAVOR} + +TLS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}idna>=0.6:dns/py-idna@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}openssl>=16.0.0:security/py-openssl@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}service_identity>=18.1.0:security/py-service_identity@${PY_FLAVOR} post-install: ${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR}/ -name '*.so' -exec ${STRIP_CMD} {} + Modified: head/devel/py-twisted/distinfo ============================================================================== --- head/devel/py-twisted/distinfo Sun Apr 26 13:59:54 2020 (r533064) +++ head/devel/py-twisted/distinfo Sun Apr 26 14:16:58 2020 (r533065) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553221383 -SHA256 (Twisted-18.9.0.tar.bz2) = 294be2c6bf84ae776df2fc98e7af7d6537e1c5e60a46d33c3ce2a197677da395 -SIZE (Twisted-18.9.0.tar.bz2) = 3088398 +TIMESTAMP = 1584923087 +SHA256 (Twisted-20.3.0.tar.bz2) = d72c55b5d56e176563b91d11952d13b01af8725c623e498db5507b6614fc1e10 +SIZE (Twisted-20.3.0.tar.bz2) = 3127793