diff options
author | Mat Sadler <[email protected]> | 2023-01-22 22:46:22 -0800 |
---|---|---|
committer | git <[email protected]> | 2023-01-30 17:39:47 +0000 |
commit | b4defea362278a38a4f7c86a86c5c44fff173e8b () | |
tree | 659ea08fcc52d625f29792dbaf5205213f4b6456 /lib | |
parent | ca951f671920b64c8275ffccdc680848f60cbede (diff) |
[rubygems/rubygems] install rust extensions into expected directory nesting
https://.com/rubygems/rubygems/commit/85ea86d348
-rw-r--r-- | lib/rubygems/ext/cargo_builder.rb | 32 |
1 files changed, 26 insertions, 6 deletions
@@ -14,7 +14,7 @@ class Gem::Ext::CargoBuilder < Gem::Ext::Builder @profile = :release end - def build(_extension, dest_path, results, args = [], lib_dir = nil, cargo_dir = Dir.pwd) require "tempfile" require "fileutils" @@ -43,16 +43,19 @@ class Gem::Ext::CargoBuilder < Gem::Ext::Builder dlext_path = File.join(File.dirname(dylib_path), dlext_name) FileUtils.cp(dylib_path, dlext_path) # TODO: remove in RubyGems 4 if Gem.install_extension_in_lib && lib_dir - FileUtils.mkdir_p lib_dir - p [dlext_path, lib_dir] - FileUtils.cp_r dlext_path, lib_dir, remove_destination: true end # move to final destination - FileUtils.mkdir_p dest_path - FileUtils.cp_r dlext_path, dest_path, remove_destination: true ensure # clean up intermediary build artifacts FileUtils.rm_rf tmp_dest if tmp_dest @@ -94,6 +97,23 @@ class Gem::Ext::CargoBuilder < Gem::Ext::Builder ENV.fetch("CARGO", "cargo") end def rb_config_env result = {} RbConfig::CONFIG.each {|k, v| result["RBCONFIG_#{k}"] = v } |