Received: by mail.netbsd.org (Postfix, from userid 605) id 5BB3784D51; Mon, 5 Sep 2022 09:00:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9489E84D27 for ; Mon, 5 Sep 2022 09:00:22 +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 ieW1CwkOCojF for ; Mon, 5 Sep 2022 09:00:21 +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 AC36984D12 for ; Mon, 5 Sep 2022 09:00:21 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A5DF6FA90; Mon, 5 Sep 2022 09:00:21 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1662368421239890" MIME-Version: 1.0 Date: Mon, 5 Sep 2022 09:00:21 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/databases/py-apsw To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220905090021.A5DF6FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1662368421239890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Mon Sep 5 09:00:21 UTC 2022 Modified Files: pkgsrc/databases/py-apsw: Makefile PLIST distinfo Log Message: py-apsw: updated to 3.39.2.1 3.39.2.1 PyPI now includes Python 3.11 builds. Instead of using scripts, you can now run several tools directly: tests: python3 -m apsw.tests [options] tracer: python3 -m apsw.trace [options] speed tester: python3 -m apsw.speedtest [options] shell: python3 -m apsw [options] The shell class has moved from apsw.Shell to apsw.shell.Shell (APSW issue 356). You can still reference it via the old name (ie existing code will not break, except on Python 3.6). Shell: On Windows the native console support for colour is now used (previously a third party module was supported). You can use –definevalues in setup.py build_ext to provide compiler defines used for configuring SQLite. (APSW issue 357) If SQLITE_ENABLE_COLUMN_METADATA is enabled then Cursor.description_full is available providing all the column metadata available. (APSW issue 354) Connection.cursor_factory attribute is now present and is used when Connection.cursor() is called. Added Connection.execute() and Connection.executemany() which automatically obtain the underlying cursor. See customizing connections and cursors in the Tips. (APSW issue 361) 3.39.2.0 Version numbering scheme change: Instead of a -r1 style suffix, there is .0 style suffix (APSW issue 340) Updated building for PyPI to include more compiled platforms, including aarch64 (Linux) and universal (MacOS). Windows binaries are no longer separately provided since PyPI has them. When the amalgamation is included into APSW, SQLITE_MAX_ATTACHED is set to 125 if not defined, up from the default of 10. Updated typing information stubs with more detail and include docstrings. This is still ongoing, but core functionality is well covered. (APSW issue 338) (APSW issue 381) Corrected the tips log handler of extended result code (APSW issue 342) Added Connection.db_names() (APSW issue 343) To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/databases/py-apsw/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/databases/py-apsw/PLIST cvs rdiff -u -r1.23 -r1.24 pkgsrc/databases/py-apsw/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1662368421239890 Content-Disposition: inline Content-Length: 3220 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.43 pkgsrc/databases/py-apsw/Makefile:1.44 --- pkgsrc/databases/py-apsw/Makefile:1.43 Mon Apr 18 19:10:44 2022 +++ pkgsrc/databases/py-apsw/Makefile Mon Sep 5 09:00:21 2022 @@ -1,13 +1,12 @@ -# $NetBSD: Makefile,v 1.43 2022/04/18 19:10:44 adam Exp $ +# $NetBSD: Makefile,v 1.44 2022/09/05 09:00:21 adam Exp $ -DISTNAME= apsw-${GITHUB_RELEASE} +DISTNAME= apsw-3.39.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/-r1//} -PKGREVISION= 2 CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_GITHUB:=rogerbinns/} EXTRACT_SUFX= .zip GITHUB_PROJECT= apsw -GITHUB_RELEASE= 3.37.0-r1 +GITHUB_RELEASE= ${PKGVERSION_NOREV} MAINTAINER= rhialto@falu.nl HOMEPAGE= https://github.com/rogerbinns/apsw @@ -18,7 +17,7 @@ EGG_NAME= ${DISTNAME:S/-r1/.post1/} PYSETUPBUILDARGS+= --enable=load_extension -BUILDLINK_API_DEPENDS.sqlite3+= sqlite3>=3.37.0 +BUILDLINK_API_DEPENDS.sqlite3+= sqlite3>=3.39.2 .include "../../databases/sqlite3/buildlink3.mk" .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/databases/py-apsw/PLIST diff -u pkgsrc/databases/py-apsw/PLIST:1.2 pkgsrc/databases/py-apsw/PLIST:1.3 --- pkgsrc/databases/py-apsw/PLIST:1.2 Wed Jul 26 11:18:30 2017 +++ pkgsrc/databases/py-apsw/PLIST Mon Sep 5 09:00:21 2022 @@ -1,6 +1,23 @@ -@comment $NetBSD: PLIST,v 1.2 2017/07/26 11:18:30 adam Exp $ +@comment $NetBSD: PLIST,v 1.3 2022/09/05 09:00:21 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt -${PYSITELIB}/apsw.so +${PYSITELIB}/apsw/__init__.pyi +${PYSITELIB}/apsw/__init__.so +${PYSITELIB}/apsw/__main__.py +${PYSITELIB}/apsw/__main__.pyc +${PYSITELIB}/apsw/__main__.pyo +${PYSITELIB}/apsw/py.typed +${PYSITELIB}/apsw/shell.py +${PYSITELIB}/apsw/shell.pyc +${PYSITELIB}/apsw/shell.pyo +${PYSITELIB}/apsw/speedtest.py +${PYSITELIB}/apsw/speedtest.pyc +${PYSITELIB}/apsw/speedtest.pyo +${PYSITELIB}/apsw/tests.py +${PYSITELIB}/apsw/tests.pyc +${PYSITELIB}/apsw/tests.pyo +${PYSITELIB}/apsw/trace.py +${PYSITELIB}/apsw/trace.pyc +${PYSITELIB}/apsw/trace.pyo Index: pkgsrc/databases/py-apsw/distinfo diff -u pkgsrc/databases/py-apsw/distinfo:1.23 pkgsrc/databases/py-apsw/distinfo:1.24 --- pkgsrc/databases/py-apsw/distinfo:1.23 Tue Jan 11 09:06:10 2022 +++ pkgsrc/databases/py-apsw/distinfo Mon Sep 5 09:00:21 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.23 2022/01/11 09:06:10 adam Exp $ +$NetBSD: distinfo,v 1.24 2022/09/05 09:00:21 adam Exp $ -BLAKE2s (apsw-3.37.0-r1.zip) = 80de1305727557fa16c63332192d0fbd9ccb6bec823468d5b6c7fdc54aa76620 -SHA512 (apsw-3.37.0-r1.zip) = 0ac4061fa851a453afba3d578e5ada7842c7507a54c256330f9aa8a37a05a76a8b2c86a901b7764b03b48e31b66d879cc88380706e0362c657b6549cbe011df8 -Size (apsw-3.37.0-r1.zip) = 698951 bytes +BLAKE2s (apsw-3.39.2.1.zip) = a0b39ad532480b38c18ffe2dbe7da775fb3bbf515a7dba6f9ed00b02d51ac873 +SHA512 (apsw-3.39.2.1.zip) = 8c26cf16ad1dea8f2611261eaecc70ea1bc27b6c12d703ff82d8c196cae8618a218a45be541f8da8f37b99191f8794bbb0e89333aae925582fece40f1a83e047 +Size (apsw-3.39.2.1.zip) = 751005 bytes --_----------=_1662368421239890--