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 0B9C91A9239 for ; Thu, 16 Dec 2021 14:29:59 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 1D67984EE5; Thu, 16 Dec 2021 14:29:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5964284F78 for ; Thu, 16 Dec 2021 14:29:57 +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 NSXybzlS1rIH for ; Thu, 16 Dec 2021 14:29:56 +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 993A784EE5 for ; Thu, 16 Dec 2021 14:29:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8D64AFAEC; Thu, 16 Dec 2021 14:29:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1639664996145690" MIME-Version: 1.0 Date: Thu, 16 Dec 2021 14:29:56 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-pygit2 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20211216142956.8D64AFAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1639664996145690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Dec 16 14:29:56 UTC 2021 Modified Files: pkgsrc/devel/py-pygit2: Makefile Log Message: py-pygit2: not for python 3.6 Move restriction higher so it works To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/py-pygit2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1639664996145690 Content-Disposition: inline Content-Length: 1109 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.21 pkgsrc/devel/py-pygit2/Makefile:1.22 --- pkgsrc/devel/py-pygit2/Makefile:1.21 Mon Jul 19 11:32:31 2021 +++ pkgsrc/devel/py-pygit2/Makefile Thu Dec 16 14:29:56 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2021/07/19 11:32:31 adam Exp $ +# $NetBSD: Makefile,v 1.22 2021/12/16 14:29:56 wiz Exp $ DISTNAME= pygit2-1.6.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -14,6 +14,8 @@ DEPENDS+= ${PYPKGPREFIX}-cffi-[0-9]*:../ TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner +PYTHON_VERSIONS_INCOMPATIBLE= 27 36 + .include "../../lang/python/pyversion.mk" .if ${_PYTHON_VERSION} < 38 DEPENDS+= ${PYPKGPREFIX}-cached-property-[0-9]*:../../devel/py-cached-property @@ -21,8 +23,6 @@ DEPENDS+= ${PYPKGPREFIX}-cached-property PYSETUPTESTTARGET= pytest -PYTHON_VERSIONS_INCOMPATIBLE= 27 # since 1.0.0 - .include "../../devel/libgit2/buildlink3.mk" .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1639664996145690--