rcee_precompiled 0.7.0 → 0.8.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/Gemfile +1 -1
- data/Rakefile +1 -1
- data/ext/precompiled/extconf.rb +5 -1
- data/lib/rcee/precompiled/version.rb +1 -1
- data/patches/libyaml/0001-Update-config.guess-and-config.sub-to-the-versions-p.patch +5919 -0
- data/rcee_precompiled.gemspec +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 75c8ab7d56eab66013c80207a9b7fc72085f39a4bdeaabdb07a92984973ee491
|
|
4
|
+
data.tar.gz: 73bae11d341e8758e62e3b5e3d30fb62a40600dbbf995f01452755ebe3bb2754
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9373fd313ba2b1c172d72331c6e9df639df70b309878d8cf507f0108c3ebdfc05bace5457d60da2a6d5b101b11bcb6ac559567278745174242923a2b5d488f4c
|
|
7
|
+
data.tar.gz: e92b9ae1c1b4b63184a11fdaca0f7b1a625216cf71cb9ba8e548473835ce3cb1c1a349ed687a398b0140ba0d143ccd5728c64030a38e8a8e5fec138ceb4250cd
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
|
@@ -19,7 +19,7 @@ cross_platforms = [
|
|
|
19
19
|
"x86_64-darwin",
|
|
20
20
|
"x64-mingw-ucrt",
|
|
21
21
|
]
|
|
22
|
-
RakeCompilerDock.set_ruby_cc_version("
|
|
22
|
+
RakeCompilerDock.set_ruby_cc_version(">= 3.2")
|
|
23
23
|
|
|
24
24
|
rcee_precompiled_spec = Bundler.load_gemspec("rcee_precompiled.gemspec")
|
|
25
25
|
Gem::PackageTask.new(rcee_precompiled_spec).define #packaged_tarball version of the gem for platform=ruby
|
data/ext/precompiled/extconf.rb
CHANGED
|
@@ -39,7 +39,10 @@ module RCEE
|
|
|
39
39
|
|
|
40
40
|
# use the packaged libyaml
|
|
41
41
|
recipe.activate
|
|
42
|
-
|
|
42
|
+
|
|
43
|
+
# explicitly add include/lib paths (pkg_config may not extract them correctly on all platforms)
|
|
44
|
+
$INCFLAGS << " -I#{File.join(recipe.path, "include")}"
|
|
45
|
+
$LIBPATH << File.join(recipe.path, "lib")
|
|
43
46
|
|
|
44
47
|
# assert that we can build against the packaged libyaml
|
|
45
48
|
unless have_library("yaml", "yaml_get_version", "yaml.h")
|
|
@@ -62,6 +65,7 @@ module RCEE
|
|
|
62
65
|
sha256: "c642ae9b75fee120b2d96c712538bd2cf283228d2337df2cf2988e3c02678ef4"
|
|
63
66
|
}]
|
|
64
67
|
recipe.target = File.join(PACKAGE_ROOT_DIR, "ports")
|
|
68
|
+
recipe.patch_files = Dir[File.join(PACKAGE_ROOT_DIR, "patches", "libyaml", "*.patch")].sort
|
|
65
69
|
end
|
|
66
70
|
end
|
|
67
71
|
end
|