From owner-svn-ports-all@freebsd.org Wed Oct 30 00:05:59 2019 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 D9F80170D53; Wed, 30 Oct 2019 00:05:59 +0000 (UTC) (envelope-from kai@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 472pdM5Jy4z4CmH; Wed, 30 Oct 2019 00:05:59 +0000 (UTC) (envelope-from kai@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 9A5461D1E; Wed, 30 Oct 2019 00:05:59 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9U05xRs048467; Wed, 30 Oct 2019 00:05:59 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9U05xnt048466; Wed, 30 Oct 2019 00:05:59 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201910300005.x9U05xnt048466@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Wed, 30 Oct 2019 00:05:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r516042 - in branches/2019Q4/www/py-cheroot: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in branches/2019Q4/www/py-cheroot: . files X-SVN-Commit-Revision: 516042 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: Wed, 30 Oct 2019 00:05:59 -0000 Author: kai Date: Wed Oct 30 00:05:58 2019 New Revision: 516042 URL: https://svnweb.freebsd.org/changeset/ports/516042 Log: MFH: r515848 www/py-cheroot: Update to 6.5.6 * There is currently a signification amount of version churn in the upstream repository so use the most recent signed release for now. * Since release 6.3.0 the port installs a CLI tool outside the Python environment thus make it concurrent safe. * Also backport two patches to retain compatibility with recent versions of devel/py-setuptools and avoid failures at runtime with Python 3 while I'm here. [1] Changelog since 6.0.0: https://github.com/cherrypy/cheroot/blob/v6.5.6/CHANGES.rst PR: 241369 Submitted by: Keith Gaughan (maintainer) Approved by: Keith Gaughan (maintainer) [1] Approved by: ports-secteam (miwi) Added: branches/2019Q4/www/py-cheroot/files/ - copied from r515848, head/www/py-cheroot/files/ Modified: branches/2019Q4/www/py-cheroot/Makefile branches/2019Q4/www/py-cheroot/distinfo Directory Properties: branches/2019Q4/ (props changed) Modified: branches/2019Q4/www/py-cheroot/Makefile ============================================================================== --- branches/2019Q4/www/py-cheroot/Makefile Wed Oct 30 00:04:04 2019 (r516041) +++ branches/2019Q4/www/py-cheroot/Makefile Wed Oct 30 00:05:58 2019 (r516042) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= cheroot -DISTVERSION= 6.0.0 -PORTREVISION= 1 +DISTVERSION= 6.5.6 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,11 +13,12 @@ COMMENT= Highly-optimized, pure-python HTTP server LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.md -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.15.0:devel/py-setuptools_scm@${PY_FLAVOR} +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.15.0:devel/py-setuptools_scm@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}setuptools_scm_git_archive>=1.0:devel/py-setuptools_scm_git_archive@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.11.0:devel/py-six@${PY_FLAVOR} USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes @@ -28,6 +28,10 @@ NO_ARCH= yes RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}more-itertools>=2.6:devel/py-more-itertools@${PY_FLAVOR} .else RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}more-itertools5>=2.6:devel/py-more-itertools5@${PY_FLAVOR} +.endif + +.if ${PYTHON_REL} < 3300 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}backports.functools_lru_cache>0:devel/py-backports.functools_lru_cache@${PY_FLAVOR} .endif .include Modified: branches/2019Q4/www/py-cheroot/distinfo ============================================================================== --- branches/2019Q4/www/py-cheroot/distinfo Wed Oct 30 00:04:04 2019 (r516041) +++ branches/2019Q4/www/py-cheroot/distinfo Wed Oct 30 00:05:58 2019 (r516042) @@ -1,3 +1,3 @@ -TIMESTAMP = 1513882382 -SHA256 (cheroot-6.0.0.tar.gz) = ba474e5149b03fabc2bba2d0b490b4d95443894d45b1430b799dccea3b3f4683 -SIZE (cheroot-6.0.0.tar.gz) = 62763 +TIMESTAMP = 1571548810 +SHA256 (cheroot-6.5.6.tar.gz) = b824f9961eb447809badeb051820a05770354e2f9ae5c355eecc21f22633c217 +SIZE (cheroot-6.5.6.tar.gz) = 84633