From owner-svn-ports-head@freebsd.org Sat Feb 27 13:03:48 2021 Return-Path: Delivered-To: svn-ports-head@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 83B795666B5; Sat, 27 Feb 2021 13:03:48 +0000 (UTC) (envelope-from matthew@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 4DnmtX3Kdpz4r6h; Sat, 27 Feb 2021 13:03:48 +0000 (UTC) (envelope-from matthew@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 5A9EC1E29E; Sat, 27 Feb 2021 13:03:48 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11RD3meh044825; Sat, 27 Feb 2021 13:03:48 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11RD3mrG044823; Sat, 27 Feb 2021 13:03:48 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <202102271303.11RD3mrG044823@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Sat, 27 Feb 2021 13:03:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566700 - head/sysutils/py-ansible-lint X-SVN-Group: ports-head X-SVN-Commit-Author: matthew X-SVN-Commit-Paths: head/sysutils/py-ansible-lint X-SVN-Commit-Revision: 566700 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Feb 2021 13:03:48 -0000 Author: matthew Date: Sat Feb 27 13:03:47 2021 New Revision: 566700 URL: https://svnweb.freebsd.org/changeset/ports/566700 Log: Add the missing RUN_DEPENDS on wcmatch (1) Pet portlint Attempt to fix the do-test target: unfortunately this now requires a more modern verson of pytest than is currently available in ports. Reported by: freebsd-ports andre.rikkertdekoe.nl Modified: head/sysutils/py-ansible-lint/Makefile head/sysutils/py-ansible-lint/distinfo Modified: head/sysutils/py-ansible-lint/Makefile ============================================================================== --- head/sysutils/py-ansible-lint/Makefile Sat Feb 27 12:55:32 2021 (r566699) +++ head/sysutils/py-ansible-lint/Makefile Sat Feb 27 13:03:47 2021 (r566700) @@ -1,7 +1,8 @@ # $FreeBSD$ PORTNAME= ansible-lint -PORTVERSION= 5.0.1 +PORTVERSION= 5.0.2 +PORTREVISION= 1 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,21 +17,21 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ansible>=2.8:sysut ${PYTHON_PKGNAMEPREFIX}ruamel.yaml>=0.15.37:devel/py-ruamel.yaml@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}typing-extensions>=0:devel/py-typing-extensions@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}rich>=9.5.1:textproc/py-rich@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} - + ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wcmatch>=7.0:textproc/py-wcmatch@${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} - -TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=49.6.0:devel/py-setuptools@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \ +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=4.6.6:devel/py-pytest@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest-cov>0:devel/py-pytest-cov@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pytest-xdist>0:devel/py-pytest-xdist@${PY_FLAVOR} -NO_ARCH= yes USES= python:3.6+ USE_PYTHON= autoplist concurrent distutils +NO_ARCH= yes + +# Requires a newer version of pytest than is available in ports. do-test: - @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m tox) + @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest) .include Modified: head/sysutils/py-ansible-lint/distinfo ============================================================================== --- head/sysutils/py-ansible-lint/distinfo Sat Feb 27 12:55:32 2021 (r566699) +++ head/sysutils/py-ansible-lint/distinfo Sat Feb 27 13:03:47 2021 (r566700) @@ -1,3 +1,3 @@ -TIMESTAMP = 1613826472 -SHA256 (ansible-lint-5.0.1.tar.gz) = 809655a72960754bf9afb286b7089a7cd4e0a10b80382a56ff7ad42bf056c895 -SIZE (ansible-lint-5.0.1.tar.gz) = 329284 +TIMESTAMP = 1613997391 +SHA256 (ansible-lint-5.0.2.tar.gz) = be0b7f2aa368cd33da38dfc8d7d4b26c166ea3b6db9770eeab97530533258f8e +SIZE (ansible-lint-5.0.2.tar.gz) = 331359