From nobody Tue Oct 19 01:38:08 2021 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id D827317F3646; Tue, 19 Oct 2021 01:38:08 +0000 (UTC) (envelope-from git@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HYGbN5Fx6z4fQ6; Tue, 19 Oct 2021 01:38:08 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 943A12DEE; Tue, 19 Oct 2021 01:38:08 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19J1c8KM088275; Tue, 19 Oct 2021 01:38:08 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19J1c87f088274; Tue, 19 Oct 2021 01:38:08 GMT (envelope-from git) Date: Tue, 19 Oct 2021 01:38:08 GMT Message-Id: <202110190138.19J1c87f088274@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Yasuhiro Kimura Subject: git: e2f1240aec0d - main - devel/py-cfn-lint: Update to 0.54.2 List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: yasu X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: e2f1240aec0de215fb1b570e6125d486df789f26 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by yasu: URL: https://cgit.FreeBSD.org/ports/commit/?id=e2f1240aec0de215fb1b570e6125d486df789f26 commit e2f1240aec0de215fb1b570e6125d486df789f26 Author: Norikatsu Shigemura AuthorDate: 2021-10-18 09:44:04 +0000 Commit: Yasuhiro Kimura CommitDate: 2021-10-19 01:37:17 +0000 devel/py-cfn-lint: Update to 0.54.2 * Switch to DISTVERSION * Reformat Makefile with portfmt PR: 258854 Approved by: ygy (mentor) Differential Revision: https://reviews.freebsd.org/D32544 --- devel/py-cfn-lint/Makefile | 10 +++++----- devel/py-cfn-lint/distinfo | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/devel/py-cfn-lint/Makefile b/devel/py-cfn-lint/Makefile index 10a080980c40..d58b50e51cf9 100644 --- a/devel/py-cfn-lint/Makefile +++ b/devel/py-cfn-lint/Makefile @@ -1,5 +1,5 @@ PORTNAME= cfn-lint -PORTVERSION= 0.53.0 +DISTVERSION= 0.54.2 CATEGORIES= devel python textproc MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -10,13 +10,13 @@ COMMENT= AWS CloudFormation Linter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>5.4:devel/py-yaml@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}six>=1.11:devel/py-six@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}aws-sam-translator>=1.38.0:devel/py-aws-sam-translator@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aws-sam-translator>=1.38.0:devel/py-aws-sam-translator@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}jsonpatch>0:devel/py-jsonpatch@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}jsonschema>=3.2:devel/py-jsonschema@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}junit-xml>=1.9:textproc/py-junit-xml@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}networkx>=2.4:math/py-networkx@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}junit-xml>=1.9:textproc/py-junit-xml@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}six>=1.11:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>5.4:devel/py-yaml@${PY_FLAVOR} py36_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}importlib-resources>=1.4:devel/py-importlib-resources@${PY_FLAVOR} diff --git a/devel/py-cfn-lint/distinfo b/devel/py-cfn-lint/distinfo index 68c403c32a78..5f7184b5935d 100644 --- a/devel/py-cfn-lint/distinfo +++ b/devel/py-cfn-lint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1632014694 -SHA256 (cfn-lint-0.53.0.tar.gz) = b7f5964842f7a44c5af9c61d64308dc4bcb718cf5de5428781d5564e9663463d -SIZE (cfn-lint-0.53.0.tar.gz) = 6594211 +TIMESTAMP = 1633139083 +SHA256 (cfn-lint-0.54.2.tar.gz) = 82a2cc7d6fa3bbdc303bf1eb87f92ba6b3c552d8aef31918b47b69648ce262d3 +SIZE (cfn-lint-0.54.2.tar.gz) = 6744343