Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4B6A784D39 for ; Sun, 9 Jul 2023 15:06:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id pvjASX3pRWDj for ; Sun, 9 Jul 2023 15:06:43 +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 9587E84CF3 for ; Sun, 9 Jul 2023 15:06:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 847A1FBDB; Sun, 9 Jul 2023 15:06:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688915203120460" MIME-Version: 1.0 Date: Sun, 9 Jul 2023 15:06:43 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/py-pygit2 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230709150643.847A1FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688915203120460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jul 9 15:06:43 UTC 2023 Modified Files: pkgsrc/devel/py-pygit2: Makefile Log Message: py-pygit2: Assumes compiler defaults to c99 To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 pkgsrc/devel/py-pygit2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688915203120460 Content-Disposition: inline Content-Length: 828 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-pygit2/Makefile diff -u pkgsrc/devel/py-pygit2/Makefile:1.29 pkgsrc/devel/py-pygit2/Makefile:1.30 --- pkgsrc/devel/py-pygit2/Makefile:1.29 Tue Jul 4 10:03:10 2023 +++ pkgsrc/devel/py-pygit2/Makefile Sun Jul 9 15:06:43 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2023/07/04 10:03:10 adam Exp $ +# $NetBSD: Makefile,v 1.30 2023/07/09 15:06:43 nia Exp $ DISTNAME= pygit2-1.12.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -15,6 +15,9 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9] TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner +# error: 'for' loop initial declarations are only allowed in C99 mode +USE_LANGUAGES= c99 + PYSETUPTESTTARGET= pytest PYTHON_VERSIONS_INCOMPATIBLE= 27 --_----------=_1688915203120460--