sqlite3 1.5.2-x86_64-darwin → 1.5.3-x86_64-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: 488122c05e25dfed5dc0b26aa1a76143d3b6852b34636c0919d33b8447c4534e
4
- data.tar.gz: b5668e49b3b59de241856e6b3bc9ac6218152a0cdff7df1edabed625dfaeb953
3
+ metadata.gz: 314086d4dedcdcb8205d5daab0768c4f0e17998d13c231cf7dffa477a6a828ea
4
+ data.tar.gz: 1f2622df4996c15aeace675053037fbc915422ac2c47f446fde07a088dc089fe
5
5
  SHA512:
6
- metadata.gz: 494abbfc6f03046af7347f3101e4874e705fd0fb89cd7b53976f8a912d0bab77d16c4bd12a4c2bdc0391e2774987c90fa94b284b176283ea2416cef84790e681
7
- data.tar.gz: 7229c699e2ca4d5bd8b02487543e9450dd253610ad3f2c57566cd7e0428c9b43c81f04f8011380c54db47d025d2486a8af4f98bcfb7470572cdda29aba9ccd96
6
+ metadata.gz: 7cd8f6a4f0d63e09c914ed162918809874fb1746249a5e8165357ee00b3198595d4dc3a5cc3ecbaa756eb76424a28a95ea0152ab7a9098df36939f425d28a273
7
+ data.tar.gz: 323c696610fe8650a1193a56487a64e8071e1c2177a010e5cd0c953c2ea418a9920b31f469bbcddedd47d7a9a229dab27fd2874b40e029a8b8d6e46712122f6e
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: x86_64-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