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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e40e0d495ab334b4a11d8f90dcc3f9203e8dab0ae7fe6971560c240e25881e80
4
- data.tar.gz: eec5403c3b02652b97f25b7b41d4b8ee79a43f9c98b11bd0f95bacf190ba2de6
3
+ metadata.gz: 75c8ab7d56eab66013c80207a9b7fc72085f39a4bdeaabdb07a92984973ee491
4
+ data.tar.gz: 73bae11d341e8758e62e3b5e3d30fb62a40600dbbf995f01452755ebe3bb2754
5
5
  SHA512:
6
- metadata.gz: 74faa5eaf8589be91ebc12fe8ed4ad9e8d10f239540d793a27e6a77726c4b7b927b86314bcc6d8e867a9d3cb75d12a6c012a130d2d192243543132d4cf782aca
7
- data.tar.gz: 17146f3af160074fd68b77f04a87ce10bf2fbc74465fa41024b9f1a3dc45f4ffbc94483110822a2c69b4ef5e4e544aec1bb4598a9ae2fb5ccfb5a653e1426c21
6
+ metadata.gz: 9373fd313ba2b1c172d72331c6e9df639df70b309878d8cf507f0108c3ebdfc05bace5457d60da2a6d5b101b11bcb6ac559567278745174242923a2b5d488f4c
7
+ data.tar.gz: e92b9ae1c1b4b63184a11fdaca0f7b1a625216cf71cb9ba8e548473835ce3cb1c1a349ed687a398b0140ba0d143ccd5728c64030a38e8a8e5fec138ceb4250cd
data/Gemfile CHANGED
@@ -8,6 +8,6 @@ gemspec
8
8
  gem "rake", "~> 13.0"
9
9
 
10
10
  gem "rake-compiler"
11
- gem "rake-compiler-dock", "1.9.1"
11
+ gem "rake-compiler-dock", "1.11.0"
12
12
 
13
13
  gem "minitest", "~> 5.0"
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("~> 3.1")
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
@@ -39,7 +39,10 @@ module RCEE
39
39
 
40
40
  # use the packaged libyaml
41
41
  recipe.activate
42
- pkg_config(File.join(recipe.path, "lib", "pkgconfig", "yaml-0.1.pc"))
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RCEE
4
4
  module Precompiled
5
- VERSION = "0.7.0"
5
+ VERSION = "0.8.0"
6
6
  end
7
7
  end