Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5FDF884FB5 for ; Sun, 30 Jul 2023 15:39:01 +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 T_8uVsuPc9Ke for ; Sun, 30 Jul 2023 15:39:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AF8B484D38 for ; Sun, 30 Jul 2023 15:39:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A986AFBDB; Sun, 30 Jul 2023 15:39:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1690731540174450" MIME-Version: 1.0 Date: Sun, 30 Jul 2023 15:39:00 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/databases/py-apsw To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230730153900.A986AFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1690731540174450 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Jul 30 15:39:00 UTC 2023 Modified Files: pkgsrc/databases/py-apsw: Makefile distinfo Log Message: py-apsw: updated to 3.42.0.1 3.42.0.1 Work with SQLite compiled with SQLITE_OMIT_DEPRECATED. Connection.setprofile() was changed from using the deprecated sqlite3_profile to sqlite3_trace_v2 giving the same results. When including the amalgamation, SQLITE_OMIT_DEPRECATED is defined. (APSW issue 443) Shell updates adding various commands to match the SQLite shell, as well as code and documentation improvements. (APSW issue 397) Added Connection.read() and apsw.ext.dbinfo() to provide information from the database and journal/wal files. The shell command .dbinfo displays it. Added apsw.vfs_details(). The shell command .vfslist displays it. Implemented VFS method xCurrentTimeInt64. The default SQLite VFS no longer provide xCurrentTime (floating point version) if SQLITE_OMIT_DEPRECATED is defined, so this is needed for inheritance to work. (APSW issue 451) Backwards incompatible change: VFS If you override xCurrentTime, then you will need to override xCurrentTimeInt64 in the same way, or exclude xCurrentTimeInt64 in VFS, or use iVersion of 1. speedtest now shows summary statistics, and improved help text. (APSW issue 444) To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 pkgsrc/databases/py-apsw/Makefile cvs rdiff -u -r1.31 -r1.32 pkgsrc/databases/py-apsw/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1690731540174450 Content-Disposition: inline Content-Length: 1572 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.54 pkgsrc/databases/py-apsw/Makefile:1.55 --- pkgsrc/databases/py-apsw/Makefile:1.54 Thu May 25 09:58:29 2023 +++ pkgsrc/databases/py-apsw/Makefile Sun Jul 30 15:39:00 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2023/05/25 09:58:29 adam Exp $ +# $NetBSD: Makefile,v 1.55 2023/07/30 15:39:00 adam Exp $ -DISTNAME= apsw-3.42.0.0 +DISTNAME= apsw-3.42.0.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/-r1//} CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_GITHUB:=rogerbinns/} Index: pkgsrc/databases/py-apsw/distinfo diff -u pkgsrc/databases/py-apsw/distinfo:1.31 pkgsrc/databases/py-apsw/distinfo:1.32 --- pkgsrc/databases/py-apsw/distinfo:1.31 Thu May 25 09:58:29 2023 +++ pkgsrc/databases/py-apsw/distinfo Sun Jul 30 15:39:00 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.31 2023/05/25 09:58:29 adam Exp $ +$NetBSD: distinfo,v 1.32 2023/07/30 15:39:00 adam Exp $ -BLAKE2s (apsw-3.42.0.0.zip) = 00dbb8a9d24c4807b5399a5b8786754d4716f751117510c1d33a16558f7de050 -SHA512 (apsw-3.42.0.0.zip) = facc981681b8dc24a50aeaf1e1533758702a54138aa7116c522cd37104ee9466a31f7305c93307bb9cccf5e2fc8c4ab4e52feed7ef418ea8ca40c57a6e673d3c -Size (apsw-3.42.0.0.zip) = 4062212 bytes +BLAKE2s (apsw-3.42.0.1.zip) = 9bd054a841ddd169f84574b50bdc758b8c2772417ece08d80899230581e06315 +SHA512 (apsw-3.42.0.1.zip) = 7d03a6ff361376424b7b70fa07811ed2f5e127598d64d9b1fec3212673cae76d13441bd0b6af93cdfe11c9bd5009f681e06366ca3373383e0f8d393b2d2899b1 +Size (apsw-3.42.0.1.zip) = 4102450 bytes --_----------=_1690731540174450--