Received: by mail.netbsd.org (Postfix, from userid 605) id C471784FA1; Fri, 9 Sep 2022 22:50:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0A91684FA0 for ; Fri, 9 Sep 2022 22:50:36 +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 denPBrMPuquK for ; Fri, 9 Sep 2022 22:50:35 +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 6061D84CEA for ; Fri, 9 Sep 2022 22:50:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 54822FA90; Fri, 9 Sep 2022 22:50:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_166276383577610" MIME-Version: 1.0 Date: Fri, 9 Sep 2022 22:50:35 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/databases/py-apsw To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220909225035.54822FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_166276383577610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Sep 9 22:50:35 UTC 2022 Modified Files: pkgsrc/databases/py-apsw: Makefile Log Message: py-apsw: does not support python 2.x any longer To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 pkgsrc/databases/py-apsw/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_166276383577610 Content-Disposition: inline Content-Length: 755 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/py-apsw/Makefile diff -u pkgsrc/databases/py-apsw/Makefile:1.44 pkgsrc/databases/py-apsw/Makefile:1.45 --- pkgsrc/databases/py-apsw/Makefile:1.44 Mon Sep 5 09:00:21 2022 +++ pkgsrc/databases/py-apsw/Makefile Fri Sep 9 22:50:35 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2022/09/05 09:00:21 adam Exp $ +# $NetBSD: Makefile,v 1.45 2022/09/09 22:50:35 wiz Exp $ DISTNAME= apsw-3.39.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/-r1//} @@ -17,6 +17,8 @@ EGG_NAME= ${DISTNAME:S/-r1/.post1/} PYSETUPBUILDARGS+= --enable=load_extension +PYTHON_VERSIONS_INCOMPATIBLE= 27 + BUILDLINK_API_DEPENDS.sqlite3+= sqlite3>=3.39.2 .include "../../databases/sqlite3/buildlink3.mk" .include "../../lang/python/egg.mk" --_----------=_166276383577610--