pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu Jul 14 08:05:51 UTC 2022

Modified Files:
        pkgsrc/databases/sqlite3: Makefile.common distinfo
        pkgsrc/databases/sqlite3-docs: PLIST distinfo
        pkgsrc/databases/sqlite3-tcl: distinfo
        pkgsrc/devel/lemon: distinfo

Log Message:
sqlite3: updated to 3.39.1

Changes in version 3.39.1 (2022-07-13):

Fix an incorrect result from a query that uses a view that contains a compound SELECT in which only one arm contains a RIGHT JOIN and where the view is not the first FROM clause term of the query 
that contains the view. forum post 174afeae5734d42d.
Fix some harmless compiler warnings.
Fix a long-standing problem with ALTER TABLE RENAME that can only arise if the sqlite3_limit(SQLITE_LIMIT_SQL_LENGTH) is set to a very small value.
Fix a long-standing problem in FTS3 that can only arise when compiled with the SQLITE_ENABLE_FTS3_PARENTHESIS compile-time option.
Fix the build so that is works when the SQLITE_DEBUG and SQLITE_OMIT_WINDOWFUNC compile-time options are both provided at the same time.
Fix the initial-prefix optimization for the REGEXP extension so that it works correctly even if the prefix contains characters that require a 3-byte UTF8 encoding.
Enhance the sqlite_stmt virtual table so that it buffers all of its output.


To generate a diff of this commit:
cvs rdiff -u -r1.91 -r1.92 pkgsrc/databases/sqlite3/Makefile.common
cvs rdiff -u -r1.184 -r1.185 pkgsrc/databases/sqlite3/distinfo
cvs rdiff -u -r1.114 -r1.115 pkgsrc/databases/sqlite3-docs/PLIST
cvs rdiff -u -r1.117 -r1.118 pkgsrc/databases/sqlite3-docs/distinfo
cvs rdiff -u -r1.129 -r1.130 pkgsrc/databases/sqlite3-tcl/distinfo
cvs rdiff -u -r1.58 -r1.59 pkgsrc/devel/lemon/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/databases/sqlite3/Makefile.common
diff -u pkgsrc/databases/sqlite3/Makefile.common:1.91 pkgsrc/databases/sqlite3/Makefile.common:1.92
--- pkgsrc/databases/sqlite3/Makefile.common:1.91       Fri Jul  1 17:49:39 2022
+++ pkgsrc/databases/sqlite3/Makefile.common    Thu Jul 14 08:05:51 2022
@@ -1,12 +1,12 @@
-# $NetBSD: Makefile.common,v 1.91 2022/07/01 17:49:39 adam Exp $
+# $NetBSD: Makefile.common,v 1.92 2022/07/14 08:05:51 adam Exp $
 #
 # used by databases/sqlite3/Makefile
 # used by databases/sqlite3-docs/Makefile
 # used by databases/sqlite3-tcl/Makefile
 # used by devel/lemon/Makefile
 
-SQLITE3_DISTVERSION=   3390000
-SQLITE3_VERSION=       3.39.0
+SQLITE3_DISTVERSION=   3390100
+SQLITE3_VERSION=       3.39.1
 
 MASTER_SITES=  http://www.sqlite.org/2022/
 MASTER_SITES+= http://www.hwaci.com/sw/sqlite/2022/

Index: pkgsrc/databases/sqlite3/distinfo
diff -u pkgsrc/databases/sqlite3/distinfo:1.184 pkgsrc/databases/sqlite3/distinfo:1.185
--- pkgsrc/databases/sqlite3/distinfo:1.184     Fri Jul  1 17:49:39 2022
+++ pkgsrc/databases/sqlite3/distinfo   Thu Jul 14 08:05:51 2022
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.184 2022/07/01 17:49:39 adam Exp $
+$NetBSD: distinfo,v 1.185 2022/07/14 08:05:51 adam Exp $
 
-BLAKE2s (sqlite-autoconf-3390000.tar.gz) = 351b0005ca8e75ee6f5dd10584a59b9f5b888548033139ffcb7b523cd7874949
-SHA512 (sqlite-autoconf-3390000.tar.gz) = cc6e4d9a8e821f1feae2bc69d1eb212723624e67197defbf86b7b7f1e2e80e473798964bf3863fbce728800b262851b967c7b7de008e6ccf2707e671ebb27398
-Size (sqlite-autoconf-3390000.tar.gz) = 3064015 bytes
+BLAKE2s (sqlite-autoconf-3390100.tar.gz) = 86505243e797200c8fa1ad3df4ff7880c58082b235aabc5c888dc1ac572071ab
+SHA512 (sqlite-autoconf-3390100.tar.gz) = 39e9b07e164770a9d61ab376f0dd84aba584396fdcf2b7b50461fbc1a889ea789f6248abc92e1b9345ac61fd062374a1a90233745525440b3aba0cef49ade996
+Size (sqlite-autoconf-3390100.tar.gz) = 3064607 bytes
 SHA1 (patch-configure) = c0aa83bddc20d090b3cd2fd840ac69031f4396e4

Index: pkgsrc/databases/sqlite3-docs/PLIST
diff -u pkgsrc/databases/sqlite3-docs/PLIST:1.114 pkgsrc/databases/sqlite3-docs/PLIST:1.115
--- pkgsrc/databases/sqlite3-docs/PLIST:1.114   Fri Jul  1 17:49:39 2022
+++ pkgsrc/databases/sqlite3-docs/PLIST Thu Jul 14 08:05:51 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.114 2022/07/01 17:49:39 adam Exp $
+@comment $NetBSD: PLIST,v 1.115 2022/07/14 08:05:51 adam Exp $
 share/doc/sqlite3/34to35.html
 share/doc/sqlite3/35to36.html
 share/doc/sqlite3/about.html
@@ -648,6 +648,7 @@ share/doc/sqlite3/releaselog/3_38_3.html
 share/doc/sqlite3/releaselog/3_38_4.html
 share/doc/sqlite3/releaselog/3_38_5.html
 share/doc/sqlite3/releaselog/3_39_0.html
+share/doc/sqlite3/releaselog/3_39_1.html
 share/doc/sqlite3/releaselog/3_3_0.html
 share/doc/sqlite3/releaselog/3_3_1.html
 share/doc/sqlite3/releaselog/3_3_10.html

Index: pkgsrc/databases/sqlite3-docs/distinfo
diff -u pkgsrc/databases/sqlite3-docs/distinfo:1.117 pkgsrc/databases/sqlite3-docs/distinfo:1.118
--- pkgsrc/databases/sqlite3-docs/distinfo:1.117        Fri Jul  1 17:49:39 2022
+++ pkgsrc/databases/sqlite3-docs/distinfo      Thu Jul 14 08:05:51 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.117 2022/07/01 17:49:39 adam Exp $
+$NetBSD: distinfo,v 1.118 2022/07/14 08:05:51 adam Exp $
 
-BLAKE2s (sqlite-doc-3390000.zip) = b64e9bfeed81e0e311d55bb04d94f669b63ff6174f5c3882a9e753d2bf7004b7
-SHA512 (sqlite-doc-3390000.zip) = c9d86c15f743deca233eabd68edb7538e75d7c3bd49caeb6a2a2958e1fdb3a258d2a69964626fac13c7f402dae9f33fd5e3b479ef23c43f835efeaf84d6ba32c
-Size (sqlite-doc-3390000.zip) = 10666677 bytes
+BLAKE2s (sqlite-doc-3390100.zip) = c162d02333c6a357fa0ad1d4dc54158604dddd7936b54ef30429899fdd3d29eb
+SHA512 (sqlite-doc-3390100.zip) = 81295ec49a4f22e38d4a459858c04731fdfc41e4fea307cdcf5443f30595fda7e268e85880dcc2d9d96e0bf3ccce96c6e5be692eb466258c196c89ed172635ac
+Size (sqlite-doc-3390100.zip) = 10675104 bytes

Index: pkgsrc/databases/sqlite3-tcl/distinfo
diff -u pkgsrc/databases/sqlite3-tcl/distinfo:1.129 pkgsrc/databases/sqlite3-tcl/distinfo:1.130
--- pkgsrc/databases/sqlite3-tcl/distinfo:1.129 Fri Jul  1 17:49:39 2022
+++ pkgsrc/databases/sqlite3-tcl/distinfo       Thu Jul 14 08:05:51 2022
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.129 2022/07/01 17:49:39 adam Exp $
+$NetBSD: distinfo,v 1.130 2022/07/14 08:05:51 adam Exp $
 
-BLAKE2s (sqlite-autoconf-3390000.tar.gz) = 351b0005ca8e75ee6f5dd10584a59b9f5b888548033139ffcb7b523cd7874949
-SHA512 (sqlite-autoconf-3390000.tar.gz) = cc6e4d9a8e821f1feae2bc69d1eb212723624e67197defbf86b7b7f1e2e80e473798964bf3863fbce728800b262851b967c7b7de008e6ccf2707e671ebb27398
-Size (sqlite-autoconf-3390000.tar.gz) = 3064015 bytes
+BLAKE2s (sqlite-autoconf-3390100.tar.gz) = 86505243e797200c8fa1ad3df4ff7880c58082b235aabc5c888dc1ac572071ab
+SHA512 (sqlite-autoconf-3390100.tar.gz) = 39e9b07e164770a9d61ab376f0dd84aba584396fdcf2b7b50461fbc1a889ea789f6248abc92e1b9345ac61fd062374a1a90233745525440b3aba0cef49ade996
+Size (sqlite-autoconf-3390100.tar.gz) = 3064607 bytes
 SHA1 (patch-Makefile.in) = 6cbbc33a5bc9c98b5aa128279f8e21e47406f537

Index: pkgsrc/devel/lemon/distinfo
diff -u pkgsrc/devel/lemon/distinfo:1.58 pkgsrc/devel/lemon/distinfo:1.59
--- pkgsrc/devel/lemon/distinfo:1.58    Fri Jul  1 17:49:39 2022
+++ pkgsrc/devel/lemon/distinfo Thu Jul 14 08:05:51 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.58 2022/07/01 17:49:39 adam Exp $
+$NetBSD: distinfo,v 1.59 2022/07/14 08:05:51 adam Exp $
 
-BLAKE2s (sqlite-src-3390000.zip) = 916beff22ea23b60972287e0b0e89a6e8430aaada6091bbde5ae601972609de3
-SHA512 (sqlite-src-3390000.zip) = 65409f78bf9f1f02739749c3ac151153fd78af07822be7d532a6aeb5d742463e0dde51702ce737780dc65c526802996da7569032b76a0527f6aa784f89c0cca2
-Size (sqlite-src-3390000.zip) = 13400405 bytes
+BLAKE2s (sqlite-src-3390100.zip) = cb76fc7a55baddefce8b86260a434b7cd2caf985808ee1152c7a9db43125d9a2
+SHA512 (sqlite-src-3390100.zip) = 2a4b6605e8925aed803ef6b62b9eb84e384325f9a81a800b07e0f4e63ce31f66881687ccf3cdc3c5ee89b8fb38cc8d8e2883b8feb5ae538800d99fa93a0b8de1
+Size (sqlite-src-3390100.zip) = 13401695 bytes



Home | Main Index | Thread Index | Old Index