Received: by mail.netbsd.org (Postfix, from userid 605) id 3F85484E67; Sun, 30 Apr 2023 12:12:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6DC3784D25 for ; Sun, 30 Apr 2023 12:12:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id XjCTIOqiUxc3 for ; Sun, 30 Apr 2023 12:12:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AFA6A84CD0 for ; Sun, 30 Apr 2023 12:12:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A3388FA87; Sun, 30 Apr 2023 12:12:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1682856772175040" MIME-Version: 1.0 Date: Sun, 30 Apr 2023 12:12:52 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-attrs To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230430121252.A3388FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1682856772175040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Apr 30 12:12:52 UTC 2023 Modified Files: pkgsrc/devel/py-attrs: Makefile Log Message: py-attrs: add test status, comment out test dependency py-ZopeInterface will shortly stop supporting python 2.x, and it's an optional here. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/devel/py-attrs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1682856772175040 Content-Disposition: inline Content-Length: 1226 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-attrs/Makefile diff -u pkgsrc/devel/py-attrs/Makefile:1.20 pkgsrc/devel/py-attrs/Makefile:1.21 --- pkgsrc/devel/py-attrs/Makefile:1.20 Wed Aug 24 09:25:55 2022 +++ pkgsrc/devel/py-attrs/Makefile Sun Apr 30 12:12:52 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2022/08/24 09:25:55 wiz Exp $ +# $NetBSD: Makefile,v 1.21 2023/04/30 12:12:52 wiz Exp $ DISTNAME= attrs-21.4.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -11,7 +11,8 @@ COMMENT= Attributes without boilerplate LICENSE= mit TEST_DEPENDS+= ${PYPKGPREFIX}-Pympler-[0-9]*:../../devel/py-Pympler -TEST_DEPENDS+= ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface +# not required and does not support python 2.x +#TEST_DEPENDS+= ${PYPKGPREFIX}-ZopeInterface-[0-9]*:../../devel/py-ZopeInterface TEST_DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six PYTHON_VERSIONED_DEPENDENCIES+= coverage:test @@ -20,6 +21,9 @@ PYTHON_VERSIONED_DEPENDENCIES+= test:tes USE_LANGUAGES= # none +# 13 failed, 1155 passed, 11 skipped, 1 xfailed, 6 warnings +# with py-ZopeInterface +# 13 failed, 1158 passed, 8 skipped, 1 xfailed, 6 warnings do-test: cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} --_----------=_1682856772175040--