sqlite3 1.6.0.rc1-arm-linux → 1.6.0.rc2-arm-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a827d6f318d7ccfd85f6bdf6cd7474652a01584df7215cd5c3758b2ee239c48a
4
- data.tar.gz: c3042008e5f2da43d02daca9e9acaa9185ca44bd7bed5ed318d7172f15f9b656
3
+ metadata.gz: 76592cf177c41582479b5ab38091fdd33539462902e2e089320e6e24b2deae44
4
+ data.tar.gz: d1eb50105491c439a50fc0e85f5fe0bba36aa952d274a3055a1a2443567493ee
5
5
  SHA512:
6
- metadata.gz: a7cbac969772a5f564c09a5f2eaff975ee6c618e098d50a20ab5a9dddad253af6a9cc16bbec3886992821d073029521f5fc4ec13f0c5e74328add283a56537d0
7
- data.tar.gz: 8447a02b719e546e86d6fae721931a0667bc6832532f0d5033b7885b485a90577d722a4fcbcbc24f9e415e2f6d18c34fbc1f82a43e94d6eaf00ba3ddae68896a
6
+ metadata.gz: a804a6aab85d5c898cbd4cfca48903bef16e60b7eb438be904225d97f32e6ebb4f64c3e2f33c2128830692f6f2e70bf4d89b7eb0889e0a682a0b77949555e5c1
7
+ data.tar.gz: c87b67c88baedaad8bff498f6a11429c9c46d004f51a4a9e8e27588deddfdd72f151a0733a602b9589ce7576bf44f56dfc12346ddec5fafeee6316002cce6d1d
@@ -55,6 +55,7 @@ module Sqlite3
55
55
  additional_cflags = [
56
56
  "-fPIC", # needed for linking the static library into a shared library
57
57
  "-O2", # see https://github.com/sparklemotion/sqlite3-ruby/issues/335 for some benchmarks
58
+ "-fvisibility=hidden", # see https://github.com/rake-compiler/rake-compiler-dock/issues/87
58
59
  ]
59
60
  env["CFLAGS"] = [env["CFLAGS"], additional_cflags].flatten.join(" ")
60
61
  recipe.configure_options += env.select { |k,v| ENV_ALLOWLIST.include?(k) }
@@ -81,14 +82,9 @@ module Sqlite3
81
82
  abort_pkg_config("xpopen") unless $?.success?
82
83
  ldflags = ldflags.split
83
84
 
84
- if needs_darwin_linker_hack
85
- ldflags.delete("-lsqlite3")
86
- ldflags.prepend("-Wl,-flat_namespace", "-Wl,-hidden-lsqlite3")
87
- else
88
- # see https://github.com/flavorjones/mini_portile/issues/118
89
- "-L#{lib_path}".tap do |lib_path_flag|
90
- ldflags.prepend(lib_path_flag) unless ldflags.include?(lib_path_flag)
91
- end
85
+ # see https://github.com/flavorjones/mini_portile/issues/118
86
+ "-L#{lib_path}".tap do |lib_path_flag|
87
+ ldflags.prepend(lib_path_flag) unless ldflags.include?(lib_path_flag)
92
88
  end
93
89
 
94
90
  ldflags.each { |ldflag| append_ldflags(ldflag) }
@@ -100,6 +96,8 @@ module Sqlite3
100
96
  append_cppflags("-DTAINTING_SUPPORT")
101
97
  end
102
98
 
99
+ append_cflags("-fvisibility=hidden") # see https://github.com/rake-compiler/rake-compiler-dock/issues/87
100
+
103
101
  if find_header("sqlite3.h")
104
102
  # noop
105
103
  elsif sqlcipher? && find_header("sqlcipher/sqlite3.h")
@@ -177,13 +175,6 @@ module Sqlite3
177
175
  minimal_recipe.download
178
176
  end
179
177
 
180
- def needs_darwin_linker_hack
181
- # See https://github.com/rake-compiler/rake-compiler-dock/issues/87 for more info.
182
- cross_build? &&
183
- darwin? &&
184
- RbConfig::CONFIG["ruby_version"] >= "3.2"
185
- end
186
-
187
178
  def darwin?
188
179
  RbConfig::CONFIG["target_os"].include?("darwin")
189
180
  end
@@ -127,6 +127,7 @@ void init_sqlite3_constants()
127
127
  #endif
128
128
  }
129
129
 
130
+ RUBY_FUNC_EXPORTED
130
131
  void Init_sqlite3_native()
131
132
  {
132
133
  /*
Binary file
Binary file
Binary file
Binary file
@@ -1,12 +1,12 @@
1
1
  module SQLite3
2
2
 
3
- VERSION = "1.6.0.rc1"
3
+ VERSION = "1.6.0.rc2"
4
4
 
5
5
  module VersionProxy
6
6
  MAJOR = 1
7
7
  MINOR = 6
8
8
  TINY = 0
9
- BUILD = "rc1"
9
+ BUILD = "rc2"
10
10
 
11
11
  STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )
12
12
 
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.6.0.rc1
4
+ version: 1.6.0.rc2
5
5
  platform: arm-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: 2023-01-02 00:00:00.000000000 Z
13
+ date: 2023-01-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest