sqlite3 1.5.2-arm64-darwin → 1.5.3-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: ef5b1f8ab4707eade36c5feb979a9512169c0f85c4aeed66246c07d57634e4b2
4
- data.tar.gz: fd0cb2184a81d99cee50359acd4db2cb6afdec99c63d7ae0e3e9e821aac7dfe1
3
+ metadata.gz: 4f94e80289254b0bc7c6978920fa48c21ae2e7559252e70af490eed2453937f4
4
+ data.tar.gz: 7e7c707be5f39a43523c8753ffb04651339d11bddbba2b19e336bba47a78c73a
5
5
  SHA512:
6
- metadata.gz: 9ca890c1088dd4e71285508a11d0080e8c8251388242504e72e1e80180cdb3783d5374ded1fcd93864b7302d45917e624ac1c64b28b28b732ad5636ebc724396
7
- data.tar.gz: 948f345f1c71aa19f105b8d60a63651c4c093da0e2e5ca38dc394d7cc58fd1c15d1e969cec33d331b3b421d9191b54313c9a4e5d575d70deb90f9ac6a4075495
6
+ metadata.gz: dfcabccdf97f099a61c6f1677df1589cdc7ca13819749c638303644b043dbff9d33e50ddf19107cc99a18c32f95bd758aec70c096bcba134d9434b941cc5772b
7
+ data.tar.gz: cb6ed052e21b04612abf1a38193009b62685e9c9de9a8b9f9504b0bb443815d254278bbb2b1069716a380eb17ae5d4eb7202350c68a7b97b60a686e313fab176
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 1.5.3 / 2022-10-11
4
+
5
+ ### Fixed
6
+
7
+ * Fixed installation of the "ruby" platform gem when building from source on Fedora. In v1.5.0..v1.5.2, installation failed on some systems due to the behavior of Fedora's pkg-config implementation. [#355]
8
+
9
+
3
10
  ## 1.5.2 / 2022-10-01
4
11
 
5
12
  ### Packaging
data/CONTRIBUTING.md CHANGED
@@ -20,5 +20,5 @@ A quick checklist:
20
20
  - [ ] update `CHANGELOG.md` and `lib/sqlite3/version.rb` including `VersionProxy::{MINOR,TINY}`
21
21
  - [ ] 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
- - [ ] `for g in gems/*.gem ; do gem push $g ; done`s
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
@@ -66,15 +66,24 @@ module Sqlite3
66
66
  end
67
67
  recipe.activate
68
68
 
69
- ENV["PKG_CONFIG_ALLOW_SYSTEM_CFLAGS"] = "t" # on macos, pkg-config will not return --cflags without this
70
- pcfile = File.join(recipe.path, "lib", "pkgconfig", "sqlite3.pc")
71
- if pkg_config(pcfile)
72
- # see https://bugs.ruby-lang.org/issues/18490
73
- libs = xpopen(["pkg-config", "--libs", "--static", pcfile], err: [:child, :out], &:read)
74
- libs.split.each { |lib| append_ldflags(lib) } if $?.success?
75
- else
76
- abort("\nCould not configure the build properly. Please install either the `pkg-config` utility or the `pkg-config` rubygem.\n\n")
69
+ # on macos, pkg-config will not return --cflags without this
70
+ ENV["PKG_CONFIG_ALLOW_SYSTEM_CFLAGS"] = "t"
71
+
72
+ lib_path = File.join(recipe.path, "lib")
73
+ pcfile = File.join(lib_path, "pkgconfig", "sqlite3.pc")
74
+ abort_pkg_config("pkg_config") unless pkg_config(pcfile)
75
+
76
+ # see https://bugs.ruby-lang.org/issues/18490
77
+ flags = xpopen(["pkg-config", "--libs", "--static", pcfile], err: [:child, :out], &:read)
78
+ abort_pkg_config("xpopen") unless $?.success?
79
+ flags = flags.split
80
+
81
+ # see https://github.com/flavorjones/mini_portile/issues/118
82
+ "-L#{lib_path}".tap do |lib_path_flag|
83
+ flags.prepend(lib_path_flag) unless flags.include?(lib_path_flag)
77
84
  end
85
+
86
+ flags.each { |flag| append_ldflags(flag) }
78
87
  end
79
88
  end
80
89
 
@@ -140,6 +149,10 @@ module Sqlite3
140
149
  abort("\nCould not find #{missing}.\nPlease visit https://github.com/sparklemotion/sqlite3-ruby for installation instructions.\n\n")
141
150
  end
142
151
 
152
+ def abort_pkg_config(id)
153
+ abort("\nCould not configure the build properly (#{id}). Please install either the `pkg-config` utility or the `pkg-config` rubygem.\n\n")
154
+ end
155
+
143
156
  def cross_build?
144
157
  enable_config("cross-build")
145
158
  end
Binary file
@@ -1,11 +1,11 @@
1
1
  module SQLite3
2
2
 
3
- VERSION = "1.5.2"
3
+ VERSION = "1.5.3"
4
4
 
5
5
  module VersionProxy
6
6
  MAJOR = 1
7
7
  MINOR = 5
8
- TINY = 2
8
+ TINY = 3
9
9
  BUILD = nil
10
10
 
11
11
  STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )
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.2
4
+ version: 1.5.3
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: 2022-10-01 00:00:00.000000000 Z
13
+ date: 2022-10-11 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: minitest