Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 27BBE1A9239 for ; Sun, 19 Dec 2021 13:43:01 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 630EC84E62; Sun, 19 Dec 2021 13:43:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 99F0484D57 for ; Sun, 19 Dec 2021 13:42:59 +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 fT3p59_YIJbh for ; Sun, 19 Dec 2021 13:42:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2049784CE8 for ; Sun, 19 Dec 2021 13:42:59 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 17FF6FAEC; Sun, 19 Dec 2021 13:42:59 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1639921379122980" MIME-Version: 1.0 Date: Sun, 19 Dec 2021 13:42:59 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20211219134259.17FF6FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1639921379122980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Dec 19 13:42:59 UTC 2021 Modified Files: pkgsrc/devel/py-progressbar2: Makefile pkgsrc/devel/py-utils: Makefile Log Message: py-utils: mark as not for python 2.7 Also mark its users that way To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-progressbar2/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-utils/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1639921379122980 Content-Disposition: inline Content-Length: 1437 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-progressbar2/Makefile diff -u pkgsrc/devel/py-progressbar2/Makefile:1.2 pkgsrc/devel/py-progressbar2/Makefile:1.3 --- pkgsrc/devel/py-progressbar2/Makefile:1.2 Tue Nov 16 19:42:31 2021 +++ pkgsrc/devel/py-progressbar2/Makefile Sun Dec 19 13:42:58 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2021/11/16 19:42:31 adam Exp $ +# $NetBSD: Makefile,v 1.3 2021/12/19 13:42:58 wiz Exp $ DISTNAME= progressbar2-3.55.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -18,6 +18,8 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>= USE_LANGUAGES= # none +PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-utils + do-test: ${LN} -f ${WRKSRC}/examples.py ${WRKSRC}/tests/examples.py cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests Index: pkgsrc/devel/py-utils/Makefile diff -u pkgsrc/devel/py-utils/Makefile:1.3 pkgsrc/devel/py-utils/Makefile:1.4 --- pkgsrc/devel/py-utils/Makefile:1.3 Fri Dec 17 08:11:56 2021 +++ pkgsrc/devel/py-utils/Makefile Sun Dec 19 13:42:58 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2021/12/17 08:11:56 adam Exp $ +# $NetBSD: Makefile,v 1.4 2021/12/19 13:42:58 wiz Exp $ DISTNAME= python-utils-2.6.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/python-//} @@ -17,6 +17,8 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-test-flake USE_LANGUAGES= # none +PYTHON_VERSIONS_INCOMPATIBLE= 27 + do-test: cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} _python_utils_tests --_----------=_1639921379122980--