ruby-qt6-rice 6.1.0 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/mkmf-rubyqt6.rb +4 -2
- data/lib/qt6/rice/version.rb +1 -1
- data/lib/qt6/rice.rb +2 -2
- metadata +4 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6a6aeeea52c229e9ec9107f0a878f810f4da0f57f1125e4d234a7cbee9f34f26
|
|
4
|
+
data.tar.gz: b4a14875c07b82212e67509d0ca6554390a841e1c27a477a249f21329d67f223
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a0e49a306ecd7bb4cee1081b75e46255cb2d8a94a1da790d6b7863b1eecb657111a324faea87076eedd950471f049f8f9f21b718a8d476e7cf12d7b1b484bd3
|
|
7
|
+
data.tar.gz: e8e55d43cabc562f8570fbb84c14405d336b37a2b31501c8f10f818c8911ff2bf53dc43db5fea72f1f6a1783edb78bcfd0540ce6b877d33850591b7cc948ae90
|
data/lib/mkmf-rubyqt6.rb
CHANGED
|
@@ -68,8 +68,10 @@ def rubyqt6_extconf(mod, depends:)
|
|
|
68
68
|
|
|
69
69
|
# Add rice library
|
|
70
70
|
if mod != "Rice"
|
|
71
|
-
|
|
72
|
-
|
|
71
|
+
spec = Gem::Specification.find_by_name("ruby-qt6-rice")
|
|
72
|
+
rice_so = File.join(spec.full_gem_path, "lib/qt6/rice/rice.so")
|
|
73
|
+
rice_so = File.join(spec.extension_dir, "qt6/rice/rice.so") unless File.exist?(rice_so)
|
|
74
|
+
append_ldflags(rice_so)
|
|
73
75
|
end
|
|
74
76
|
|
|
75
77
|
# Create Makefile
|
data/lib/qt6/rice/version.rb
CHANGED
data/lib/qt6/rice.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-qt6-rice
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.
|
|
4
|
+
version: 6.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Doe
|
|
@@ -9,7 +9,6 @@ bindir: exe
|
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies: []
|
|
12
|
-
description: Extend the Rice library with support for the Qt framework.
|
|
13
12
|
email:
|
|
14
13
|
- johndoe@example.com
|
|
15
14
|
executables: []
|
|
@@ -61,11 +60,9 @@ files:
|
|
|
61
60
|
- lib/qt6/rice.rb
|
|
62
61
|
- lib/qt6/rice/version.rb
|
|
63
62
|
homepage: https://github.com/souk4711/ruby-qt6
|
|
64
|
-
licenses:
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
source_code_uri: https://github.com/souk4711/ruby-qt6
|
|
68
|
-
changelog_uri: https://github.com/souk4711/ruby-qt6
|
|
63
|
+
licenses:
|
|
64
|
+
- LGPL-3.0-only WITH LGPL-3.0-linking-exception
|
|
65
|
+
metadata: {}
|
|
69
66
|
rdoc_options: []
|
|
70
67
|
require_paths:
|
|
71
68
|
- lib
|