sqlite3 1.5.2-x86-linux → 1.5.3-x86-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: 72194627c52cf97b29fdc009ce7f2f5475c9e129b4f15784ea1f6f1cacbe8963
4
- data.tar.gz: 175febe7badb2f1b0aafdd43684a48de1c8e06922c2a4b92aacb698696860e8e
3
+ metadata.gz: f0c7e92eb637e568dc149f39f8366bf0d24bbffc840b57ad4cf6e5141fada590
4
+ data.tar.gz: 0d4528d9bfac027ec28715cec9b44cdedf96bf8eb68900817688d6abdf3dcd81
5
5
  SHA512:
6
- metadata.gz: dd2a384b8130ec751c72503c3223ee3b718616a7b68c273d27632140ee0fce4c67b5f8d803efcb917af01f0521b5b7bf0f447f1ed51d1b14e752e388d010ff54
7
- data.tar.gz: cb471137b0d41e44adc67ff73fee544bad27ad19c9c4062fd6e873bd428a37c90396ed19917d1735c8f9d29b0221adc4e1a5a6bb593bdabf34adb1fc33791bd7
6
+ metadata.gz: 8e3bec4dd48c8b22412123b77da90e7268be528704f56ec7c58baab34572cf6e342f57481933f47af454f12a0757738c2dc9f4c589044113ac3db921e20d9d41
7
+ data.tar.gz: 1cd03b4ccbf66665d199466df9a606bb6f1f0ec30b4859841e004bdfa261ae42fb1ac068ae8c9512edd41bcc48a0e2011af591fe3ea7794014aea01ab2784f18
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
@@ -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-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: 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