From owner-svn-ports-all@freebsd.org Sun Jul 21 14:07:07 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 0C1C0B47F1; Sun, 21 Jul 2019 14:07:07 +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 E071E8215E; Sun, 21 Jul 2019 14:07:06 +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 B587D24452; Sun, 21 Jul 2019 14:07:06 +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 x6LE76bH017919; Sun, 21 Jul 2019 14:07:06 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x6LE76PX017918; Sun, 21 Jul 2019 14:07:06 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201907211407.x6LE76PX017918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Sun, 21 Jul 2019 14:07:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r507051 - in head/devel/py-cfn-lint: . files X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/devel/py-cfn-lint: . files X-SVN-Commit-Revision: 507051 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E071E8215E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] 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, 21 Jul 2019 14:07:07 -0000 Author: kai Date: Sun Jul 21 14:07:06 2019 New Revision: 507051 URL: https://svnweb.freebsd.org/changeset/ports/507051 Log: devel/py-cfn-lint: Update to 0.22.1 * Remove no longer required patch for setup.py that has been merged by upstream. * Fix runtime issues when Python 2.7 is used by replacing devel/py-pathlib with devel/py-pathlib2 while I'm here. Changelog: https://github.com/aws-cloudformation/cfn-python-lint/releases/tag/v0.22.1 PR: 239057 Submitted by: nork@ninth-nine.com (maintainer) Deleted: head/devel/py-cfn-lint/files/ Modified: head/devel/py-cfn-lint/Makefile head/devel/py-cfn-lint/distinfo Modified: head/devel/py-cfn-lint/Makefile ============================================================================== --- head/devel/py-cfn-lint/Makefile Sun Jul 21 14:01:21 2019 (r507050) +++ head/devel/py-cfn-lint/Makefile Sun Jul 21 14:07:06 2019 (r507051) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cfn-lint -PORTVERSION= 0.21.5 +PORTVERSION= 0.22.1 CATEGORIES= devel python textproc MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,10 +15,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.11:devel/py-six@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=2.15.0:www/py-requests@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}aws-sam-translator>=1.10.0:devel/py-aws-sam-translator@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}aws-sam-translator>=1.12.0:devel/py-aws-sam-translator@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}jsonpatch>0:devel/py-jsonpatch@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}jsonschema>=3.0:devel/py-jsonschema@${PY_FLAVOR} \ - ${PY_PATHLIB} + ${PYTHON_PKGNAMEPREFIX}jsonschema>=3.0:devel/py-jsonschema@${PY_FLAVOR} +py27_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pathlib2>=2.3.0:devel/py-pathlib2@${PY_FLAVOR} USES= python USE_PYTHON= autoplist concurrent distutils Modified: head/devel/py-cfn-lint/distinfo ============================================================================== --- head/devel/py-cfn-lint/distinfo Sun Jul 21 14:01:21 2019 (r507050) +++ head/devel/py-cfn-lint/distinfo Sun Jul 21 14:07:06 2019 (r507051) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560602229 -SHA256 (cfn-lint-0.21.5.tar.gz) = ce4bf8c0e6d5b8ad3f1b4cd8261e1eca795d61fb3723e3dce85c78eff95ab120 -SIZE (cfn-lint-0.21.5.tar.gz) = 2042476 +TIMESTAMP = 1562645973 +SHA256 (cfn-lint-0.22.1.tar.gz) = 9abf5f5ca7f2165393dfa48d4c7111fa760d1a6f5edcb1dcc3c70e3090ba4ddf +SIZE (cfn-lint-0.22.1.tar.gz) = 2225020