sqlite3 2.7.1 → 2.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 014ffb41099d8f3e17494c54316a24d27dec0020242dc98e1a0b9b9be51e4a8e
4
- data.tar.gz: fba41345c55338ed31fd59ea348527d1edab9ffed036e0112c757c764d5546ae
3
+ metadata.gz: b87b34fa9d9a30221b2c07d53357ec81c82a7df0256782ddd8b8176a2686cb5d
4
+ data.tar.gz: b493ebdc22fbcd74d6b484084116fd4c8925c213c2e95506ad3a48b447735d6a
5
5
  SHA512:
6
- metadata.gz: 43517b583adf4158c655f6cda3b9e6c53d5139f22ba63085198102195bd3a8954ef0912fc2ea4150f6f781a9246d35c4b8c447bf39d817d830b5708370766ede
7
- data.tar.gz: a383560725618575c9d9bf6eb984e886bef30070a048e0661348c907d7bcef0d9c68317baa30cb06eaebacf25f82c7855a75338d9ba94a19533575dce1b29ada
6
+ metadata.gz: c71b2cd2573a6e5bb87c3e6075f251c3b77e3e5d2cfb75b54ea4b2eb3452ff5b75362e5d704ab13c4c23c5984c1996e293bb77b1739030ecbfcb5b4c33f47519
7
+ data.tar.gz: 7ba0f0d1497316ddcdbffe376c8a6611642a8e6f145fc9baa5699582e82924698091fa5a96cb6b592c5e0d543afcbd47abee66578fa647be5179cf558609087a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 2.7.2 / 2025-07-05
4
+
5
+ - Backport a [fix](https://sqlite.org/src/info/64f5f14322) to the vendored SQLite to support compilation on Rocky Linux. See the [SQLite forum post](https://sqlite.org/forum/forumpost/44a58c8073) for more details. #634, #635 @flavorjones
6
+
7
+
3
8
  ## 2.7.1 / 2025-06-30
4
9
 
5
10
  - Vendored sqlite is updated to [v3.50.2](https://sqlite.org/releaselog/3_50_2.html) (from v3.50.1). #633 @flavorjones
@@ -194,6 +194,10 @@ module Sqlite3
194
194
  RbConfig::CONFIG["target_os"].include?("darwin")
195
195
  end
196
196
 
197
+ def windows?
198
+ RbConfig::CONFIG["target_os"].match?(/mingw|mswin/)
199
+ end
200
+
197
201
  def print_help
198
202
  print(<<~TEXT)
199
203
  USAGE: ruby #{$PROGRAM_NAME} [options]
@@ -1,4 +1,4 @@
1
1
  module SQLite3
2
2
  # (String) the version of the sqlite3 gem, e.g. "2.1.1"
3
- VERSION = "2.7.1"
3
+ VERSION = "2.7.2"
4
4
  end
@@ -0,0 +1,17 @@
1
+ commit d9eae6b7 (HEAD -> master, origin/master, origin/HEAD)
2
+ Author: stephan <stephan@noemail.net>
3
+ Date: 2025-07-04 17:20:37 +0000
4
+
5
+ Propagate the -ldl and -lpthread flags, if needed, into sqlite3.pc, per request in [forum:44a58c807353162f | forum post 44a58c807353162f].
6
+
7
+ FossilOrigin-Name: 64f5f14322349b47451b8cac03bf8cd6f1ae45a8822e7f1ddee3d0b265047501
8
+
9
+ --- a/sqlite3.pc.in
10
+ +++ b/sqlite3.pc.in
11
+ @@ -9,5 +9,5 @@ Name: SQLite
12
+ Description: SQL database engine
13
+ Version: @PACKAGE_VERSION@
14
+ Libs: -L${libdir} -lsqlite3
15
+ -Libs.private: @LDFLAGS_MATH@ @LDFLAGS_ZLIB@ @LDFLAGS_ICU@
16
+ +Libs.private: @LDFLAGS_MATH@ @LDFLAGS_ZLIB@ @LDFLAGS_DLOPEN@ @LDFLAGS_PTHREAD@ @LDFLAGS_ICU@
17
+ Cflags: -I${includedir}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqlite3
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.1
4
+ version: 2.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamis Buck
@@ -75,6 +75,7 @@ files:
75
75
  - lib/sqlite3/value.rb
76
76
  - lib/sqlite3/version.rb
77
77
  - lib/sqlite3/version_info.rb
78
+ - patches/001-dl-and-pthread-flags.patch
78
79
  - ports/archives/sqlite-autoconf-3500200.tar.gz
79
80
  homepage: https://github.com/sparklemotion/sqlite3-ruby
80
81
  licenses:
@@ -103,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
103
104
  - !ruby/object:Gem::Version
104
105
  version: '0'
105
106
  requirements: []
106
- rubygems_version: 3.6.8
107
+ rubygems_version: 3.6.7
107
108
  specification_version: 4
108
109
  summary: Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org).
109
110
  test_files: []