sqlite3 1.3.9-x86-mswin32-60 → 1.3.10-x86-mswin32-60
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 +13 -5
- data/CHANGELOG.rdoc +5 -0
- data/Gemfile +5 -5
- data/ext/sqlite3/extconf.rb +0 -5
- data/lib/sqlite3/1.8/sqlite3_native.so +0 -0
- data/lib/sqlite3/1.9/sqlite3_native.so +0 -0
- data/lib/sqlite3/2.0/sqlite3_native.so +0 -0
- data/lib/sqlite3/2.1/sqlite3_native.so +0 -0
- data/lib/sqlite3/version.rb +2 -2
- data/tasks/gem.rake +2 -2
- data/tasks/native.rake +11 -4
- data/tasks/vendor_sqlite3.rake +10 -6
- metadata +52 -39
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
MmRmZjZmYjhhMGRmMjQ5NjhhOGEwNDM0MjRiYzc3ZTExZjY2Y2EyOQ==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
ODEyMjNhNDE4ZjRlNTE2ZTljMGY3NzdkNWYyMWQ1NDMxM2Q2OTFkOQ==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
ZTZkMTViYTRkOTYyOWEyNWJhMDk0Mjc4NTAwYTY5NmI1YWE0MjM4NGVlNzgw
|
10
|
+
Y2ViYjNlODM1NDc2YTVlOTZkYjMzMzdjOTk4MmZjMTNiZmZmNTRmYjRmNjdl
|
11
|
+
NGY1YWNiMzBhY2I2YzljZDUzNDJkNGEzNDczNGJjODg5ZmI0YTI=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
MWFmNzZjYmM2ZmNhNjE5ZTA3YmFjMzYxMjAyMjk0ZGRlZWEyY2M4YjQxZWFi
|
14
|
+
MGI0N2U2MDBkODBiYzY0MTVlMDEwMTJiODk3ZDlmOTQxOGM1ZmYyMjYwYTEw
|
15
|
+
YTNiNDAyNjI2MTA5ZWQ2MWNjMmFhYmE5YzdhYzUzNDQxMDRmMjU=
|
data/CHANGELOG.rdoc
CHANGED
data/Gemfile
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
source "https://rubygems.org/"
|
6
6
|
|
7
7
|
|
8
|
-
gem "
|
9
|
-
gem "
|
10
|
-
gem "rake-compiler", "~>0.9.1", :group => [:development, :test]
|
11
|
-
gem "mini_portile", "~>0.5.1", :group => [:development, :test]
|
8
|
+
gem "mini_portile", "~>0.6.1", :group => [:development, :test]
|
9
|
+
gem "minitest", "~>5.4", :group => [:development, :test]
|
12
10
|
gem "hoe-bundler", "~>1.0", :group => [:development, :test]
|
13
|
-
gem "
|
11
|
+
gem "rake-compiler", "~>0.9.3", :group => [:development, :test]
|
12
|
+
gem "rdoc", "~>4.0", :group => [:development, :test]
|
13
|
+
gem "hoe", "~>3.12", :group => [:development, :test]
|
14
14
|
|
15
15
|
# vim: syntax=ruby
|
data/ext/sqlite3/extconf.rb
CHANGED
@@ -9,11 +9,6 @@ RbConfig::MAKEFILE_CONFIG['CC'] = ENV['CC'] if ENV['CC']
|
|
9
9
|
# --with-sqlite3-{dir,include,lib}
|
10
10
|
dir_config("sqlite3")
|
11
11
|
|
12
|
-
# prioritize local builds
|
13
|
-
if enable_config("local", false)
|
14
|
-
$LDFLAGS = ENV.fetch("LDFLAGS", "")
|
15
|
-
end
|
16
|
-
|
17
12
|
if RbConfig::CONFIG["host_os"] =~ /mswin/
|
18
13
|
$CFLAGS << ' -W3'
|
19
14
|
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/sqlite3/version.rb
CHANGED
data/tasks/gem.rake
CHANGED
@@ -24,8 +24,8 @@ HOE = Hoe.spec 'sqlite3' do
|
|
24
24
|
|
25
25
|
spec_extras[:extensions] = ["ext/sqlite3/extconf.rb"]
|
26
26
|
|
27
|
-
extra_dev_deps << ['rake-compiler', "~> 0.9.
|
28
|
-
extra_dev_deps << ["mini_portile", "~> 0.
|
27
|
+
extra_dev_deps << ['rake-compiler', "~> 0.9.3"]
|
28
|
+
extra_dev_deps << ["mini_portile", "~> 0.6.1"]
|
29
29
|
extra_dev_deps << ["minitest", "~> 5.0"]
|
30
30
|
extra_dev_deps << ["hoe-bundler", "~> 1.0"]
|
31
31
|
|
data/tasks/native.rake
CHANGED
@@ -5,9 +5,17 @@ require 'rake/extensioncompiler'
|
|
5
5
|
# NOTE: version used by cross compilation of Windows native extension
|
6
6
|
# It do not affect compilation under other operating systems
|
7
7
|
# The version indicated is the minimum DLL suggested for correct functionality
|
8
|
-
BINARY_VERSION = "3.7.
|
9
|
-
URL_VERSION = "
|
10
|
-
URL_PATH = "/
|
8
|
+
BINARY_VERSION = "3.8.7.1"
|
9
|
+
URL_VERSION = "3080701"
|
10
|
+
URL_PATH = "/2014"
|
11
|
+
|
12
|
+
task :devkit do
|
13
|
+
begin
|
14
|
+
require "devkit"
|
15
|
+
rescue LoadError => e
|
16
|
+
abort "Failed to activate RubyInstaller's DevKit required for compilation."
|
17
|
+
end
|
18
|
+
end
|
11
19
|
|
12
20
|
# build sqlite3_native C extension
|
13
21
|
RUBY_EXTENSION = Rake::ExtensionTask.new('sqlite3_native', HOE.spec) do |ext|
|
@@ -25,7 +33,6 @@ RUBY_EXTENSION = Rake::ExtensionTask.new('sqlite3_native', HOE.spec) do |ext|
|
|
25
33
|
# define target for extension (supporting fat binaries)
|
26
34
|
RUBY_VERSION =~ /(\d+\.\d+)/
|
27
35
|
ext.lib_dir = "lib/sqlite3/#{$1}"
|
28
|
-
ext.config_options << "--enable-local"
|
29
36
|
else
|
30
37
|
|
31
38
|
# detect cross-compiler available
|
data/tasks/vendor_sqlite3.rake
CHANGED
@@ -28,7 +28,16 @@ def define_sqlite_task(platform, host)
|
|
28
28
|
end
|
29
29
|
|
30
30
|
# native sqlite3 compilation
|
31
|
-
define_sqlite_task
|
31
|
+
recipe = define_sqlite_task(RUBY_PLATFORM, RbConfig::CONFIG["host"])
|
32
|
+
|
33
|
+
# force compilation of sqlite3 when working natively under MinGW
|
34
|
+
if RUBY_PLATFORM =~ /mingw/
|
35
|
+
RUBY_EXTENSION.config_options << "--with-opt-dir=#{recipe.path}"
|
36
|
+
|
37
|
+
# also prepend DevKit into compilation phase
|
38
|
+
Rake::Task["compile"].prerequisites.unshift "devkit", "ports:sqlite3:#{RUBY_PLATFORM}"
|
39
|
+
Rake::Task["native"].prerequisites.unshift "devkit", "ports:sqlite3:#{RUBY_PLATFORM}"
|
40
|
+
end
|
32
41
|
|
33
42
|
# trick to test local compilation of sqlite3
|
34
43
|
if ENV["USE_MINI_PORTILE"] == "true"
|
@@ -42,11 +51,6 @@ if ENV["USE_MINI_PORTILE"] == "true"
|
|
42
51
|
Rake::Task["compile"].prerequisites.unshift "ports:sqlite3:#{RUBY_PLATFORM}"
|
43
52
|
end
|
44
53
|
|
45
|
-
# force compilation of sqlite3 when working natively under MinGW
|
46
|
-
if RUBY_PLATFORM =~ /mingw/
|
47
|
-
Rake::Task['compile'].prerequisites.unshift "ports:sqlite3:#{RUBY_PLATFORM}"
|
48
|
-
end
|
49
|
-
|
50
54
|
# iterate over all cross-compilation platforms and define the proper
|
51
55
|
# sqlite3 recipe for it.
|
52
56
|
if RUBY_EXTENSION.cross_compile
|
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.3.
|
4
|
+
version: 1.3.10
|
5
5
|
platform: x86-mswin32-60
|
6
6
|
authors:
|
7
7
|
- Jamis Buck
|
@@ -10,98 +10,110 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2014-
|
13
|
+
date: 2014-10-31 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
|
-
name:
|
16
|
+
name: minitest
|
17
17
|
requirement: !ruby/object:Gem::Requirement
|
18
18
|
requirements:
|
19
|
-
- -
|
19
|
+
- - ~>
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version:
|
21
|
+
version: !binary |-
|
22
|
+
NS40
|
22
23
|
type: :development
|
23
24
|
prerelease: false
|
24
25
|
version_requirements: !ruby/object:Gem::Requirement
|
25
26
|
requirements:
|
26
|
-
- -
|
27
|
+
- - ~>
|
27
28
|
- !ruby/object:Gem::Version
|
28
|
-
version:
|
29
|
+
version: !binary |-
|
30
|
+
NS40
|
29
31
|
- !ruby/object:Gem::Dependency
|
30
|
-
name:
|
32
|
+
name: rdoc
|
31
33
|
requirement: !ruby/object:Gem::Requirement
|
32
34
|
requirements:
|
33
|
-
- -
|
35
|
+
- - ~>
|
34
36
|
- !ruby/object:Gem::Version
|
35
|
-
version:
|
37
|
+
version: !binary |-
|
38
|
+
NC4w
|
36
39
|
type: :development
|
37
40
|
prerelease: false
|
38
41
|
version_requirements: !ruby/object:Gem::Requirement
|
39
42
|
requirements:
|
40
|
-
- -
|
43
|
+
- - ~>
|
41
44
|
- !ruby/object:Gem::Version
|
42
|
-
version:
|
45
|
+
version: !binary |-
|
46
|
+
NC4w
|
43
47
|
- !ruby/object:Gem::Dependency
|
44
|
-
name:
|
48
|
+
name: rake-compiler
|
45
49
|
requirement: !ruby/object:Gem::Requirement
|
46
50
|
requirements:
|
47
|
-
- -
|
51
|
+
- - ~>
|
48
52
|
- !ruby/object:Gem::Version
|
49
|
-
version:
|
53
|
+
version: !binary |-
|
54
|
+
MC45LjM=
|
50
55
|
type: :development
|
51
56
|
prerelease: false
|
52
57
|
version_requirements: !ruby/object:Gem::Requirement
|
53
58
|
requirements:
|
54
|
-
- -
|
59
|
+
- - ~>
|
55
60
|
- !ruby/object:Gem::Version
|
56
|
-
version:
|
61
|
+
version: !binary |-
|
62
|
+
MC45LjM=
|
57
63
|
- !ruby/object:Gem::Dependency
|
58
|
-
name:
|
64
|
+
name: mini_portile
|
59
65
|
requirement: !ruby/object:Gem::Requirement
|
60
66
|
requirements:
|
61
|
-
- -
|
67
|
+
- - ~>
|
62
68
|
- !ruby/object:Gem::Version
|
63
|
-
version:
|
69
|
+
version: !binary |-
|
70
|
+
MC42LjE=
|
64
71
|
type: :development
|
65
72
|
prerelease: false
|
66
73
|
version_requirements: !ruby/object:Gem::Requirement
|
67
74
|
requirements:
|
68
|
-
- -
|
75
|
+
- - ~>
|
69
76
|
- !ruby/object:Gem::Version
|
70
|
-
version:
|
77
|
+
version: !binary |-
|
78
|
+
MC42LjE=
|
71
79
|
- !ruby/object:Gem::Dependency
|
72
80
|
name: hoe-bundler
|
73
81
|
requirement: !ruby/object:Gem::Requirement
|
74
82
|
requirements:
|
75
|
-
- -
|
83
|
+
- - ~>
|
76
84
|
- !ruby/object:Gem::Version
|
77
|
-
version:
|
85
|
+
version: !binary |-
|
86
|
+
MS4w
|
78
87
|
type: :development
|
79
88
|
prerelease: false
|
80
89
|
version_requirements: !ruby/object:Gem::Requirement
|
81
90
|
requirements:
|
82
|
-
- -
|
91
|
+
- - ~>
|
83
92
|
- !ruby/object:Gem::Version
|
84
|
-
version:
|
93
|
+
version: !binary |-
|
94
|
+
MS4w
|
85
95
|
- !ruby/object:Gem::Dependency
|
86
96
|
name: hoe
|
87
97
|
requirement: !ruby/object:Gem::Requirement
|
88
98
|
requirements:
|
89
|
-
- -
|
99
|
+
- - ~>
|
90
100
|
- !ruby/object:Gem::Version
|
91
|
-
version: '3.
|
101
|
+
version: '3.13'
|
92
102
|
type: :development
|
93
103
|
prerelease: false
|
94
104
|
version_requirements: !ruby/object:Gem::Requirement
|
95
105
|
requirements:
|
96
|
-
- -
|
106
|
+
- - ~>
|
97
107
|
- !ruby/object:Gem::Version
|
98
|
-
version: '3.
|
99
|
-
description:
|
100
|
-
|
108
|
+
version: '3.13'
|
109
|
+
description: ! 'This module allows Ruby programs to interface with the SQLite3
|
110
|
+
|
101
111
|
database engine (http://www.sqlite.org). You must have the
|
112
|
+
|
102
113
|
SQLite engine installed in order to build this module.
|
103
114
|
|
104
|
-
|
115
|
+
|
116
|
+
Note that this module is only compatible with SQLite 3.6.16 or newer.'
|
105
117
|
email:
|
106
118
|
- jamis@37signals.com
|
107
119
|
- luislavena@gmail.com
|
@@ -119,7 +131,7 @@ extra_rdoc_files:
|
|
119
131
|
- ext/sqlite3/sqlite3.c
|
120
132
|
- ext/sqlite3/statement.c
|
121
133
|
files:
|
122
|
-
-
|
134
|
+
- .gemtest
|
123
135
|
- API_CHANGES.rdoc
|
124
136
|
- CHANGELOG.rdoc
|
125
137
|
- ChangeLog.cvs
|
@@ -145,6 +157,7 @@ files:
|
|
145
157
|
- lib/sqlite3/1.8/sqlite3_native.so
|
146
158
|
- lib/sqlite3/1.9/sqlite3_native.so
|
147
159
|
- lib/sqlite3/2.0/sqlite3_native.so
|
160
|
+
- lib/sqlite3/2.1/sqlite3_native.so
|
148
161
|
- lib/sqlite3/constants.rb
|
149
162
|
- lib/sqlite3/database.rb
|
150
163
|
- lib/sqlite3/errors.rb
|
@@ -181,23 +194,23 @@ licenses:
|
|
181
194
|
metadata: {}
|
182
195
|
post_install_message:
|
183
196
|
rdoc_options:
|
184
|
-
-
|
197
|
+
- --main
|
185
198
|
- README.rdoc
|
186
199
|
require_paths:
|
187
200
|
- lib
|
188
201
|
required_ruby_version: !ruby/object:Gem::Requirement
|
189
202
|
requirements:
|
190
|
-
- -
|
203
|
+
- - ! '>='
|
191
204
|
- !ruby/object:Gem::Version
|
192
205
|
version: 1.8.7
|
193
206
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
194
207
|
requirements:
|
195
|
-
- -
|
208
|
+
- - ! '>='
|
196
209
|
- !ruby/object:Gem::Version
|
197
210
|
version: 1.3.5
|
198
211
|
requirements: []
|
199
|
-
rubyforge_project:
|
200
|
-
rubygems_version: 2.
|
212
|
+
rubyforge_project:
|
213
|
+
rubygems_version: 2.4.2
|
201
214
|
signing_key:
|
202
215
|
specification_version: 4
|
203
216
|
summary: This module allows Ruby programs to interface with the SQLite3 database engine
|