sqlite3 1.3.9-x64-mingw32 → 1.3.10-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: bf742553964b51e3b088ccb28e5da57257806372
4
- data.tar.gz: 03857a966d234665674236a3bcf3fa7dc496d7a1
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ Njg1YzliMjBiZDRmOWYwODRiNzhhM2JkYjljOTFhZGFmYjYxYWRjYg==
5
+ data.tar.gz: !binary |-
6
+ ZWI3N2M5ZGUwMzU1NDI2N2JlNjM5MmQ3ZTVmOTYzY2U5MzI2NWFmNw==
5
7
  SHA512:
6
- metadata.gz: 20bff995bfcb347216a0cf3d1b8d4b596ad155910e7be9ff7d8a3147a8f301b77ab6cd090ba0e604778fcf4a049522815c30b11a8be1b6ac63784a901f2e6cea
7
- data.tar.gz: db92822e84331b9683ee76a8b94f7304a8d261c92c00416a6ec039e0dbf59dbc42496a405f585e7e5332d27df0403be7488fd7de791f00afc82ecb6590c0d7bd
8
+ metadata.gz: !binary |-
9
+ NWRkOTIwYWFkOGQ1NjhiZDIwNWZkYjk1ZGQyMDAyNGQxYTQzZGNmNWIwNzg3
10
+ YTg5MjZmNDU3OTVmZWMwYzFmZjYzMjJhYzY1YTk2YjIxMWIwMzAzYWFjMGM5
11
+ OTBkNTk0N2E3ZjM3OWYyZTZjZTYwY2U0ODRjYThhZGMwZjBlODc=
12
+ data.tar.gz: !binary |-
13
+ MzdkZTI0NTc2ZWFlODQ4MTZjMGFlMmJiYmU0ZWVkMTI0MTMzYzZlYWFmZDQz
14
+ MWQzNDQzZDRkNTM1NzllODc4OGI4YjVmZDNhYmZmYmMyMTlhMGI1ZTQzODY3
15
+ MTNhNmZiOWRkOGUyYzdmOWVhNDEyYjQ2M2I1ZWQyMmM4NjVkNGE=
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,8 @@
1
+ === 1.3.10 / 2014-10-30
2
+
3
+ * Enhancements:
4
+ * Windows: build against SQLite 3.8.7.1. Closes #134, #135 [Hubro]
5
+
1
6
  === 1.3.9 / 2014-02-25
2
7
 
3
8
  * Bugfixes:
data/Gemfile CHANGED
@@ -5,11 +5,11 @@
5
5
  source "https://rubygems.org/"
6
6
 
7
7
 
8
- gem "minitest", "~>5.0", :group => [:development, :test]
9
- gem "rdoc", "~>4.0", :group => [:development, :test]
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 "hoe", "~>3.7", :group => [:development, :test]
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
@@ -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
@@ -1,12 +1,12 @@
1
1
  module SQLite3
2
2
 
3
- VERSION = '1.3.9'
3
+ VERSION = '1.3.10'
4
4
 
5
5
  module VersionProxy
6
6
 
7
7
  MAJOR = 1
8
8
  MINOR = 3
9
- TINY = 9
9
+ TINY = 10
10
10
  BUILD = nil
11
11
 
12
12
  STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )
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.1"]
28
- extra_dev_deps << ["mini_portile", "~> 0.5.1"]
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.17"
9
- URL_VERSION = "3071700"
10
- URL_PATH = "/2013"
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
@@ -28,7 +28,16 @@ def define_sqlite_task(platform, host)
28
28
  end
29
29
 
30
30
  # native sqlite3 compilation
31
- define_sqlite_task RUBY_PLATFORM, RbConfig::CONFIG["host"]
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.9
4
+ version: 1.3.10
5
5
  platform: x64-mingw32
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-02-25 00:00:00.000000000 Z
13
+ date: 2014-10-31 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
- name: rdoc
16
+ name: minitest
17
17
  requirement: !ruby/object:Gem::Requirement
18
18
  requirements:
19
- - - "~>"
19
+ - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: '4.0'
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: '4.0'
29
+ version: !binary |-
30
+ NS40
29
31
  - !ruby/object:Gem::Dependency
30
- name: rake-compiler
32
+ name: rdoc
31
33
  requirement: !ruby/object:Gem::Requirement
32
34
  requirements:
33
- - - "~>"
35
+ - - ~>
34
36
  - !ruby/object:Gem::Version
35
- version: 0.9.1
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: 0.9.1
45
+ version: !binary |-
46
+ NC4w
43
47
  - !ruby/object:Gem::Dependency
44
- name: mini_portile
48
+ name: rake-compiler
45
49
  requirement: !ruby/object:Gem::Requirement
46
50
  requirements:
47
- - - "~>"
51
+ - - ~>
48
52
  - !ruby/object:Gem::Version
49
- version: 0.5.1
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: 0.5.1
61
+ version: !binary |-
62
+ MC45LjM=
57
63
  - !ruby/object:Gem::Dependency
58
- name: minitest
64
+ name: mini_portile
59
65
  requirement: !ruby/object:Gem::Requirement
60
66
  requirements:
61
- - - "~>"
67
+ - - ~>
62
68
  - !ruby/object:Gem::Version
63
- version: '5.0'
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: '5.0'
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: '1.0'
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: '1.0'
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.9'
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.9'
99
- description: |-
100
- This module allows Ruby programs to interface with the SQLite3
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
- Note that this module is only compatible with SQLite 3.6.16 or newer.
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
- - ".gemtest"
134
+ - .gemtest
123
135
  - API_CHANGES.rdoc
124
136
  - CHANGELOG.rdoc
125
137
  - ChangeLog.cvs
@@ -143,6 +155,7 @@ files:
143
155
  - faq/faq.yml
144
156
  - lib/sqlite3.rb
145
157
  - lib/sqlite3/2.0/sqlite3_native.so
158
+ - lib/sqlite3/2.1/sqlite3_native.so
146
159
  - lib/sqlite3/constants.rb
147
160
  - lib/sqlite3/database.rb
148
161
  - lib/sqlite3/errors.rb
@@ -179,23 +192,23 @@ licenses:
179
192
  metadata: {}
180
193
  post_install_message:
181
194
  rdoc_options:
182
- - "--main"
195
+ - --main
183
196
  - README.rdoc
184
197
  require_paths:
185
198
  - lib
186
199
  required_ruby_version: !ruby/object:Gem::Requirement
187
200
  requirements:
188
- - - ">="
201
+ - - ! '>='
189
202
  - !ruby/object:Gem::Version
190
203
  version: 1.8.7
191
204
  required_rubygems_version: !ruby/object:Gem::Requirement
192
205
  requirements:
193
- - - ">="
206
+ - - ! '>='
194
207
  - !ruby/object:Gem::Version
195
208
  version: 1.3.5
196
209
  requirements: []
197
- rubyforge_project: sqlite3
198
- rubygems_version: 2.2.2
210
+ rubyforge_project:
211
+ rubygems_version: 2.4.2
199
212
  signing_key:
200
213
  specification_version: 4
201
214
  summary: This module allows Ruby programs to interface with the SQLite3 database engine