sqlite3 1.5.3-x86-linux → 1.5.4-x86-linux
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 +4 -4
- data/CHANGELOG.md +7 -0
- data/CONTRIBUTING.md +2 -2
- data/dependencies.yml +7 -7
- data/ext/sqlite3/extconf.rb +14 -3
- data/lib/sqlite3/2.6/sqlite3_native.so +0 -0
- data/lib/sqlite3/2.7/sqlite3_native.so +0 -0
- data/lib/sqlite3/3.0/sqlite3_native.so +0 -0
- data/lib/sqlite3/3.1/sqlite3_native.so +0 -0
- data/lib/sqlite3/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79542a5115a55b33717198d20bed21a483d6ea9bc17322ec3f6fcd2873b46b01
|
4
|
+
data.tar.gz: c75de4084e2e5f89e54e3b188ffbf873d03cbbca87c78ba3433bc42ac26db12b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60374bd93be644d5703e2eaee29bdfc06020ba0aa9bc1e62f066ba393b5c378ab55819892e3e2ef0aa2b0f3095aeab4d7c48f6bfd774104cdc898af06f218f86
|
7
|
+
data.tar.gz: 5c32399e73c4c4903978499c0db585663c63aa63754cd0a0673eb8081ba63cb67bafcc9fdd321fa96ffb10be4340ad1c0b1b83956db04a5a05826bb512d77208
|
data/CHANGELOG.md
CHANGED
data/CONTRIBUTING.md
CHANGED
@@ -17,8 +17,8 @@ Run `bin/build-gems` which will package gems for all supported platforms, and ru
|
|
17
17
|
A quick checklist:
|
18
18
|
|
19
19
|
- [ ] make sure CI is green!
|
20
|
-
- [
|
21
|
-
- [
|
20
|
+
- [x] update `CHANGELOG.md` and `lib/sqlite3/version.rb` including `VersionProxy::{MINOR,TINY}`
|
21
|
+
- [x] create a git tag using a format that matches the pattern `v\d+\.\d+\.\d+`, e.g. `v1.3.13`
|
22
22
|
- [ ] run `bin/build-gems` and make sure it completes and all the tests pass
|
23
23
|
- [ ] `for g in gems/*.gem ; do gem push $g ; done`
|
24
24
|
- [ ] create a release at https://github.com/sparklemotion/sqlite3-ruby/releases and include sha2 checksums
|
data/dependencies.yml
CHANGED
@@ -2,13 +2,13 @@
|
|
2
2
|
:sqlite3:
|
3
3
|
# checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
|
4
4
|
#
|
5
|
-
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-
|
6
|
-
#
|
5
|
+
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3400000.tar.gz
|
6
|
+
# 7ee8f02b21edb4489df5082b5cf5b7ef47bcebcdb0e209bf14240db69633c878 ports/archives/sqlite-autoconf-3400000.tar.gz
|
7
7
|
#
|
8
|
-
# $ sha256sum ports/archives/sqlite-autoconf-
|
9
|
-
#
|
8
|
+
# $ sha256sum ports/archives/sqlite-autoconf-3400000.tar.gz
|
9
|
+
# 0333552076d2700c75352256e91c78bf5cd62491589ba0c69aed0a81868980e7 ports/archives/sqlite-autoconf-3400000.tar.gz
|
10
10
|
#
|
11
|
-
:version: "3.
|
11
|
+
:version: "3.40.0"
|
12
12
|
:files:
|
13
|
-
- :url: "https://sqlite.org/2022/sqlite-autoconf-
|
14
|
-
:sha256: "
|
13
|
+
- :url: "https://sqlite.org/2022/sqlite-autoconf-3400000.tar.gz"
|
14
|
+
:sha256: "0333552076d2700c75352256e91c78bf5cd62491589ba0c69aed0a81868980e7"
|
data/ext/sqlite3/extconf.rb
CHANGED
@@ -126,9 +126,13 @@ module Sqlite3
|
|
126
126
|
|
127
127
|
def minimal_recipe
|
128
128
|
MiniPortile.new(libname, sqlite3_config[:version]).tap do |recipe|
|
129
|
-
|
130
|
-
|
131
|
-
|
129
|
+
if sqlite_source_dir
|
130
|
+
recipe.source_directory = sqlite_source_dir
|
131
|
+
else
|
132
|
+
recipe.files = sqlite3_config[:files]
|
133
|
+
recipe.target = File.join(package_root_dir, "ports")
|
134
|
+
recipe.patch_files = Dir[File.join(package_root_dir, "patches", "*.patch")].sort
|
135
|
+
end
|
132
136
|
end
|
133
137
|
end
|
134
138
|
|
@@ -157,6 +161,10 @@ module Sqlite3
|
|
157
161
|
enable_config("cross-build")
|
158
162
|
end
|
159
163
|
|
164
|
+
def sqlite_source_dir
|
165
|
+
arg_config("--with-sqlite-source-dir")
|
166
|
+
end
|
167
|
+
|
160
168
|
def download
|
161
169
|
minimal_recipe.download
|
162
170
|
end
|
@@ -178,6 +186,9 @@ module Sqlite3
|
|
178
186
|
Use libsqlcipher instead of libsqlite3.
|
179
187
|
(Implies `--enable-system-libraries`.)
|
180
188
|
|
189
|
+
--with-sqlite-source-dir=DIRECTORY
|
190
|
+
(dev only) Build sqlite from the source code in DIRECTORY
|
191
|
+
|
181
192
|
--help
|
182
193
|
Display this message.
|
183
194
|
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/sqlite3/version.rb
CHANGED
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: 1.5.
|
4
|
+
version: 1.5.4
|
5
5
|
platform: x86-linux
|
6
6
|
authors:
|
7
7
|
- Jamis Buck
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-
|
13
|
+
date: 2022-11-18 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|