xot 0.3.1 → 0.3.3
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/.github/workflows/utils.rb +1 -1
- data/ChangeLog.md +10 -0
- data/VERSION +1 -1
- data/lib/xot/rake/util.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fa861eb30c33128b0e74dd83df44a8c15054f6a8e95824416cde752b05537d1e
|
|
4
|
+
data.tar.gz: 1ac4dcef85e86e11c1456077d4207ce5959337c3be0bff51db66bafe66935e80
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e14450d3400e72990fcd333228d6da06d9aeb5dd7e9e62c4c704f12097e70bd77796dff50400d64889a2cc37a5727dd54cb25ef3ccf4d8ec10e4b847b0f25d6b
|
|
7
|
+
data.tar.gz: a024de0aeadf9583314ac3d4145ae1edc24f35af87109be0059aeadc82785620edc545bbb36bef484e45b18a97e76f899586a35c994ee81a71830b98c57d51dc
|
data/.github/workflows/utils.rb
CHANGED
|
@@ -20,7 +20,7 @@ def setup_dependencies(build: true, only: nil)
|
|
|
20
20
|
|
|
21
21
|
exts.each do |ext|
|
|
22
22
|
gem = RENAMES[ext.to_sym].then {|s| s || ext}
|
|
23
|
-
ver = gemspec[/
|
|
23
|
+
ver = gemspec[/add_dependency.*['"]#{gem}['"].*['"]\s*>=\s*([\d\.]+)\s*['"]/, 1]
|
|
24
24
|
opts = '-c advice.detachedHead=false --depth 1'
|
|
25
25
|
clone = "git clone #{opts} https://github.com/xord/#{ext}.git ../#{ext}"
|
|
26
26
|
|
data/ChangeLog.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
# xot ChangeLog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## [v0.3.3] - 2025-01-23
|
|
5
|
+
|
|
6
|
+
- Fix '=bar' in CFLAGS when '-Wfoo=bar' is included in CFLAGS, which leaves only '=bar' in CFLAGS and causes a compile error
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [v0.3.2] - 2025-01-14
|
|
10
|
+
|
|
11
|
+
- Update workflow files
|
|
12
|
+
|
|
13
|
+
|
|
4
14
|
## [v0.3.1] - 2025-01-13
|
|
5
15
|
|
|
6
16
|
- Update LICENSE
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.3
|
data/lib/xot/rake/util.rb
CHANGED
|
@@ -250,7 +250,7 @@ module Xot
|
|
|
250
250
|
def cxxflags(warnings = true)
|
|
251
251
|
cflags = env :CFLAGS, RbConfig::CONFIG['CFLAGS']
|
|
252
252
|
cxxflags = env :CXXFLAGS, RbConfig::CONFIG['CXXFLAGS']
|
|
253
|
-
cflags = cflags.gsub(/-W[\w
|
|
253
|
+
cflags = cflags.gsub(/-W[\w\-\=]+/, '') + ' -w' unless warnings
|
|
254
254
|
make_cflags "#{cflags} #{cxxflags}"
|
|
255
255
|
end
|
|
256
256
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- xordog
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-01-
|
|
11
|
+
date: 2025-01-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: This library include some useful utility classes and functions for development
|
|
14
14
|
with C++.
|