pkgsrc-Changes archive

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

CVS commit: pkgsrc/databases/ruby-sqlite3



Module Name:    pkgsrc
Committed By:   taca
Date:           Sun Dec  8 14:24:40 UTC 2024

Modified Files:
        pkgsrc/databases/ruby-sqlite3: Makefile PLIST distinfo

Log Message:
databases/ruby-sqlite3: update to 2.4.0

2.3.0 (2024-11-20)

Added

* The SQLITE_DBPAGE extension is now enabled by default, which implements an
  eponymous-only virtual table that provides direct access to the underlying
  database file by interacting with the pager.  See
  https://www.sqlite.org/dbpage.html for more information.  [#578]
  @flavorjones

* The DBSTAT extension is now enabled by default, which implements a
  read-only eponymous virtual table that returns information about the
  amount of disk space used to store the content of an SQLite database.  See
  https://sqlite.org/dbstat.html for more information.  [#580] @pawurb
  @flavorjones

* Database#optimize which wraps the pragma optimize; statement. Also added
  Constants::Optimize to allow advanced users to pass a bitmask of options.
  See https://www.sqlite.org/pragma.html#pragma_optimize. [#572] @alexcwatt
  @flavorjones

* SQLite3::VERSION_INFO contains a bag of metadata about the gem and the
  sqlite library used.  SQLite3::SQLITE_PACKAGED_LIBRARIES and
  SQLite3::SQLITE_PRECOMPILED_LIBRARIES indicate how the gem was built.
  [#581] @flavorjones

Fixed

* Database#encoding= support for switching the database encoding to
  UTF-16BE, which has been broken since Database#encoding= was introduced in
  v1.3.12 in 2016.  [#575] @miyucy

* Omit mention of the pkg-config gem when failing to build from source,
  since it is not used.  [#358] @flavorjones

2.3.1 (2024-11-25)

Dependencies

* Vendored sqlite is updated to v3.47.1 [#589] @flavorjones

2.4.0 (2024-12-03)

Added

* Database#load_extension now accepts any object that responds to #to_path,
  in addition to String filesystem paths.  [#586] @flavorjones

* Database.new now accepts an extensions: parameter, which is an array of
  SQLite extensions that will be loaded during initialization.  The array
  may contain String filesystem paths and objects that respond to #to_path.
  [#586] @flavorjones


To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.85 pkgsrc/databases/ruby-sqlite3/Makefile
cvs rdiff -u -r1.29 -r1.30 pkgsrc/databases/ruby-sqlite3/PLIST
cvs rdiff -u -r1.47 -r1.48 pkgsrc/databases/ruby-sqlite3/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/ruby-sqlite3/Makefile
diff -u pkgsrc/databases/ruby-sqlite3/Makefile:1.84 pkgsrc/databases/ruby-sqlite3/Makefile:1.85
--- pkgsrc/databases/ruby-sqlite3/Makefile:1.84 Thu Nov 14 22:19:13 2024
+++ pkgsrc/databases/ruby-sqlite3/Makefile      Sun Dec  8 14:24:40 2024
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.84 2024/11/14 22:19:13 wiz Exp $
+# $NetBSD: Makefile,v 1.85 2024/12/08 14:24:40 taca Exp $
 
-DISTNAME=      sqlite3-2.2.0
-PKGREVISION=   1
+DISTNAME=      sqlite3-2.4.0
 CATEGORIES=    databases
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
@@ -15,7 +14,7 @@ USE_GCC_RUNTIME=      yes
 RUBY_EXTCONF_ARGS=     --enable-system-libraries
 OVERRIDE_GEMSPEC+=     :files ${BUNDLED_ARCHIVE}=
 
-BUNDLED_ARCHIVE=       ports/archives/sqlite-autoconf-3470000.tar.gz
+BUNDLED_ARCHIVE=       ports/archives/sqlite-autoconf-3470100.tar.gz
 
 pre-configure:
        ${RM} -f ${WRKSRC}/${BUNDLED_ARCHIVE}

Index: pkgsrc/databases/ruby-sqlite3/PLIST
diff -u pkgsrc/databases/ruby-sqlite3/PLIST:1.29 pkgsrc/databases/ruby-sqlite3/PLIST:1.30
--- pkgsrc/databases/ruby-sqlite3/PLIST:1.29    Sun Oct 13 16:22:23 2024
+++ pkgsrc/databases/ruby-sqlite3/PLIST Sun Dec  8 14:24:40 2024
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.29 2024/10/13 16:22:23 taca Exp $
+@comment $NetBSD: PLIST,v 1.30 2024/12/08 14:24:40 taca Exp $
 ${GEM_HOME}/build_info/${GEM_NAME}.info
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_EXTSDIR}/gem.build_complete
@@ -36,4 +36,5 @@ ${GEM_LIBDIR}/lib/sqlite3/sqlite3_native
 ${GEM_LIBDIR}/lib/sqlite3/statement.rb
 ${GEM_LIBDIR}/lib/sqlite3/value.rb
 ${GEM_LIBDIR}/lib/sqlite3/version.rb
+${GEM_LIBDIR}/lib/sqlite3/version_info.rb
 ${GEM_HOME}/specifications/${GEM_NAME}.gemspec

Index: pkgsrc/databases/ruby-sqlite3/distinfo
diff -u pkgsrc/databases/ruby-sqlite3/distinfo:1.47 pkgsrc/databases/ruby-sqlite3/distinfo:1.48
--- pkgsrc/databases/ruby-sqlite3/distinfo:1.47 Wed Nov  6 13:49:42 2024
+++ pkgsrc/databases/ruby-sqlite3/distinfo      Sun Dec  8 14:24:40 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.47 2024/11/06 13:49:42 taca Exp $
+$NetBSD: distinfo,v 1.48 2024/12/08 14:24:40 taca Exp $
 
-BLAKE2s (sqlite3-2.2.0.gem) = f589c1ebeccc519c280e8e543c083a2d1d336ff68c932c9b8283d886e57d07e7
-SHA512 (sqlite3-2.2.0.gem) = 3deac376013af0796345f735997bcddbcd6811d714d01b0e09ab4102d77f432cea2cc392af4c8ea0a5d149b9cafe0a22b224baa10048785a70d23b8208e8b4f8
-Size (sqlite3-2.2.0.gem) = 3387392 bytes
+BLAKE2s (sqlite3-2.4.0.gem) = a1228513e2ef9fe5f28a68704b6e57636eca61559fa9f2511f42476436242ddc
+SHA512 (sqlite3-2.4.0.gem) = 6048e91b8c7add8800868c6cea9086e550ae90d758ccbfe96a21ec9350b72d39ec72afc98c920b5ca818c632cc96d0a73b2229949c55680db72d440cdc0015a6
+Size (sqlite3-2.4.0.gem) = 3394048 bytes



Home | Main Index | Thread Index | Old Index