sqlite3 1.6.0.rc1-arm64-darwin → 1.6.0.rc2-arm64-darwin

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: 9a6f5f4c21a090ad26bb7510f6055bf0f02c17ec7a62f75bec86f5fd1c2167d0
4
- data.tar.gz: 974db5085c72741c0cec7810feaefe9978a8b242c6c2209adb1ff94bb73822b8
3
+ metadata.gz: 0d6c3632e0d541acb54fef9de1d6cac0399e57159eaf7ffa7dc1fa2a0edca684
4
+ data.tar.gz: a3d7e23fd5c61be751df66e7c25696df21ab21208f6ef1871f6ba44a17349f58
5
5
  SHA512:
6
- metadata.gz: da76e45abdba883e262cb30db5f72650a8010e8026848aa58cfe2bb0fd12f8509b8b16ce0af71c8044461f6983de4a4cefb00ea61d1690130db19155e2d13d4d
7
- data.tar.gz: bdcd1d0cd51bceec6653222f3bc75da153e5e1d02358bd61788d0be6cc5458bf5a2899fb7edd59f04818a430b5238b6478ce07429046f8bcd083b7c1e53802b0
6
+ metadata.gz: 01bf7e271d660062bc2d9a058244c046ce472395ef198fb0abecb94993be4b0788d18c821243fb44662050da0de0f3dc5d1c38945986a917b03556e4c7602539
7
+ data.tar.gz: 7ade76bcda72e9323daa9ce6fd04d04d287359240e9da326feb9e1e796f646db10ce7ac3d8baeb0c28c1aaaad9f75b45c740f4b3761f8eed557c5d020b702a25
@@ -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: arm64-darwin
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