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 28EED1A9239 for ; Sun, 16 Jan 2022 20:15:46 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 6458C84D28; Sun, 16 Jan 2022 20:15:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9BF6984D61 for ; Sun, 16 Jan 2022 20:15:44 +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 C8E7tcF3Zuyz for ; Sun, 16 Jan 2022 20:15:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id F2F6F84D28 for ; Sun, 16 Jan 2022 20:15:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EC111FB24; Sun, 16 Jan 2022 20:15:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1642364143133510" MIME-Version: 1.0 Date: Sun, 16 Jan 2022 20:15:43 +0000 From: "Olaf Seibert" Subject: CVS commit: pkgsrc/databases/py-apsw To: pkgsrc-changes@NetBSD.org Reply-To: rhialto@netbsd.org X-Mailer: log_accum Message-Id: <20220116201543.EC111FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1642364143133510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rhialto Date: Sun Jan 16 20:15:43 UTC 2022 Modified Files: pkgsrc/databases/py-apsw: Makefile Log Message: databases/py-apsw: add --enable=load_extension This will be needed for calibre 5.x. There is also --enable-all-extensions but I left that off for now. To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 pkgsrc/databases/py-apsw/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1642364143133510 Content-Disposition: inline Content-Length: 865 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.41 pkgsrc/databases/py-apsw/Makefile:1.42 --- pkgsrc/databases/py-apsw/Makefile:1.41 Tue Jan 11 09:06:10 2022 +++ pkgsrc/databases/py-apsw/Makefile Sun Jan 16 20:15:43 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.41 2022/01/11 09:06:10 adam Exp $ +# $NetBSD: Makefile,v 1.42 2022/01/16 20:15:43 rhialto Exp $ DISTNAME= apsw-${GITHUB_RELEASE} PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/-r1//} +PKGREVISION= 1 CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_GITHUB:=rogerbinns/} EXTRACT_SUFX= .zip @@ -15,6 +16,8 @@ LICENSE= zlib EGG_NAME= ${DISTNAME:S/-r1/.post1/} +PYSETUPBUILDARGS+= --enable=load_extension + BUILDLINK_API_DEPENDS.sqlite3+= sqlite3>=3.37.0 .include "../../databases/sqlite3/buildlink3.mk" .include "../../lang/python/egg.mk" --_----------=_1642364143133510--