Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rake-compiler/rake-compiler
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.6
Choose a base ref
...
head repository: rake-compiler/rake-compiler
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.7
Choose a head ref
  • 6 commits
  • 5 files changed
  • 2 contributors

Commits on Dec 11, 2021

  1. Bump version

    kou committed Dec 11, 2021
    Copy the full SHA
    4530280 View commit details

Commits on Jan 3, 2022

  1. Copy the full SHA
    7ccc152 View commit details
  2. Copy the full SHA
    ea3eb7c View commit details
  3. Reduce duplicated binary(platf)

    kou committed Jan 3, 2022
    Copy the full SHA
    dcd0c95 View commit details
  4. Add 1.1.7 entry

    kou committed Jan 3, 2022
    Copy the full SHA
    574a869 View commit details
  5. ci: add Ruby 3.1

    kou committed Jan 3, 2022
    Copy the full SHA
    cc5e794 View commit details
Showing with 51 additions and 23 deletions.
  1. +1 −0 .github/workflows/test.yml
  2. +6 −0 History.md
  3. +26 −13 lib/rake/extensiontask.rb
  4. +17 −9 lib/rake/javaextensiontask.rb
  5. +1 −1 rake-compiler.gemspec
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@ jobs:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- head
steps:
- uses: actions/checkout@v2
6 changes: 6 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 1.1.7 / 2022-01-04

* Fixes:
* Fix binary paths for staging and clobber.
[#197](https://github.com/rake-compiler/rake-compiler/issues/197) [Patch by konsolebox]

### 1.1.6 / 2021-12-12

* Fixes:
39 changes: 26 additions & 13 deletions lib/rake/extensiontask.rb
Original file line number Diff line number Diff line change
@@ -82,9 +82,12 @@ def cross_config_options(for_platform=nil)
private
# copy other gem files to staging directory
def define_staging_file_tasks(files, lib_path, stage_path, platf, ruby_ver)
# lib_binary_path
lib_binary_path = "#{lib_path}/#{File.basename(binary(platf))}"

files.each do |gem_file|
# ignore directories and the binary extension
next if File.directory?(gem_file) || gem_file == "#{lib_path}/#{binary(platf)}"
next if File.directory?(gem_file) || gem_file == lib_binary_path
stage_file = "#{stage_path}/#{gem_file}"

# copy each file from base to stage directory
@@ -105,24 +108,28 @@ def define_compile_tasks(for_platform = nil, ruby_ver = RUBY_VERSION)
platf = for_platform || platform

binary_path = binary(platf)
binary_base_name = File.basename(binary_path)

# lib_path
lib_path = lib_dir

# lib_binary_path
lib_binary_path = "#{lib_path}/#{binary_base_name}"

# tmp_path
tmp_path = "#{@tmp_dir}/#{platf}/#{@name}/#{ruby_ver}"
stage_path = "#{@tmp_dir}/#{platf}/stage"

siteconf_path = "#{tmp_path}/.rake-compiler-siteconf.rb"
tmp_binary_path = "#{tmp_path}/#{binary_path}"
tmp_binary_dir_path = File.dirname(tmp_binary_path)
stage_binary_path = "#{stage_path}/#{lib_path}/#{binary_path}"
stage_binary_path = "#{stage_path}/#{lib_binary_path}"
stage_binary_dir_path = File.dirname(stage_binary_path)

# cleanup and clobbering
CLEAN.include(tmp_path)
CLEAN.include(stage_path)
CLOBBER.include("#{lib_path}/#{binary(platf)}")
CLOBBER.include(lib_binary_path)
CLOBBER.include("#{@tmp_dir}")

# directories we need
@@ -172,8 +179,8 @@ def define_compile_tasks(for_platform = nil, ruby_ver = RUBY_VERSION)

chdir tmp_path do
sh make
if binary_path != File.basename(binary_path)
cp File.basename(binary_path), binary_path
if binary_path != binary_base_name
cp binary_base_name, binary_path
end
end
end
@@ -234,7 +241,7 @@ def define_compile_tasks(for_platform = nil, ruby_ver = RUBY_VERSION)
# platform matches the indicated one.
if platf == RUBY_PLATFORM then
# ensure file is always copied
file "#{lib_path}/#{File.basename(binary_path)}" => ["copy:#{name}:#{platf}:#{ruby_ver}"]
file lib_binary_path => ["copy:#{name}:#{platf}:#{ruby_ver}"]

task "compile:#{@name}" => ["compile:#{@name}:#{platf}"]
task "compile" => ["compile:#{platf}"]
@@ -250,6 +257,9 @@ def define_native_tasks(for_platform = nil, ruby_ver = RUBY_VERSION, callback =
# lib_path
lib_path = lib_dir

# lib_binary_path
lib_binary_path = "#{lib_path}/#{File.basename(binary(platf))}"

# Update compiled platform/version combinations
@ruby_versions_per_platform[platf] << ruby_ver

@@ -329,13 +339,13 @@ def define_native_tasks(for_platform = nil, ruby_ver = RUBY_VERSION, callback =
end

# add binaries to the dependency chain
task "native:#{@gem_spec.name}:#{platf}" => ["#{stage_path}/#{lib_path}/#{binary(platf)}"]
task "native:#{@gem_spec.name}:#{platf}" => ["#{stage_path}/#{lib_binary_path}"]

# ensure the extension get copied
unless Rake::Task.task_defined?("#{lib_path}/#{binary(platf)}") then
file "#{lib_path}/#{binary(platf)}" => ["copy:#{@name}:#{platf}:#{ruby_ver}"]
unless Rake::Task.task_defined?(lib_binary_path) then
file lib_binary_path => ["copy:#{@name}:#{platf}:#{ruby_ver}"]
end
file "#{stage_path}/#{lib_dir}/#{binary(platf)}" => ["copy:#{@name}:#{platf}:#{ruby_ver}"]
file "#{stage_path}/#{lib_binary_path}" => ["copy:#{@name}:#{platf}:#{ruby_ver}"]

# Allow segmented packaging by platform (open door for 'cross compile')
task "native:#{platf}" => ["native:#{@gem_spec.name}:#{platf}"]
@@ -394,6 +404,9 @@ def define_cross_platform_tasks_with_version(for_platform, ruby_ver)
# lib_path
lib_path = lib_dir

# lib_binary_path
lib_binary_path = "#{lib_path}/#{File.basename(binary(for_platform))}"

unless rbconfig_file = config_file["rbconfig-#{for_platform}-#{ruby_ver}"] then
warn "no configuration section for specified version of Ruby (rbconfig-#{for_platform}-#{ruby_ver})"
return
@@ -460,12 +473,12 @@ def define_cross_platform_tasks_with_version(for_platform, ruby_ver)

# clear lib/binary dependencies and trigger cross platform ones
# check if lib/binary is defined (damn bundle versus so versus dll)
if Rake::Task.task_defined?("#{lib_path}/#{binary(for_platform)}") then
Rake::Task["#{lib_path}/#{binary(for_platform)}"].prerequisites.clear
if Rake::Task.task_defined?(lib_binary_path) then
Rake::Task[lib_binary_path].prerequisites.clear
end

# FIXME: targeting multiple platforms copies the file twice
file "#{lib_path}/#{File.basename(binary(for_platform))}" => ["copy:#{@name}:#{for_platform}:#{ruby_ver}"]
file lib_binary_path => ["copy:#{@name}:#{for_platform}:#{ruby_ver}"]

# if everything for native task is in place
if @gem_spec && @gem_spec.platform == 'ruby' then
26 changes: 17 additions & 9 deletions lib/rake/javaextensiontask.rb
Original file line number Diff line number Diff line change
@@ -53,15 +53,20 @@ def define_compile_tasks(for_platform = nil, ruby_ver = RUBY_VERSION)
# platform usage
platf = for_platform || platform

binary_path = binary(platf)

# lib_path
lib_path = lib_dir

# lib_binary_path
lib_binary_path = "#{lib_path}/#{File.basename(binary_path)}"

# tmp_path
tmp_path = "#{@tmp_dir}/#{platf}/#{@name}"

# cleanup and clobbering
CLEAN.include(tmp_path)
CLOBBER.include("#{lib_path}/#{binary(platf)}")
CLOBBER.include(lib_binary_path)
CLOBBER.include("#{@tmp_dir}")

# directories we need
@@ -70,11 +75,11 @@ def define_compile_tasks(for_platform = nil, ruby_ver = RUBY_VERSION)

# copy binary from temporary location to final lib
# tmp/extension_name/extension_name.{so,bundle} => lib/
task "copy:#{@name}:#{platf}" => [lib_path, "#{tmp_path}/#{binary(platf)}"] do
install "#{tmp_path}/#{binary(platf)}", "#{lib_path}/#{binary(platf)}"
task "copy:#{@name}:#{platf}" => [lib_path, "#{tmp_path}/#{binary_path}"] do
install "#{tmp_path}/#{binary_path}", lib_binary_path
end

file "#{tmp_path}/#{binary(platf)}" => "#{tmp_path}/.build" do
file "#{tmp_path}/#{binary_path}" => "#{tmp_path}/.build" do

class_files = FileList["#{tmp_path}/**/*.class"].
gsub("#{tmp_path}/", '')
@@ -86,7 +91,7 @@ def define_compile_tasks(for_platform = nil, ruby_ver = RUBY_VERSION)
["-C #{tmp_path}", path]
}.flatten

sh "jar cf #{tmp_path}/#{binary(platf)} #{args.join(' ')}"
sh "jar cf #{tmp_path}/#{binary_path} #{args.join(' ')}"
end

file "#{tmp_path}/.build" => [tmp_path] + source_files do
@@ -137,7 +142,7 @@ def define_compile_tasks(for_platform = nil, ruby_ver = RUBY_VERSION)
# platform matches the indicated one.
if platf == RUBY_PLATFORM then
# ensure file is always copied
file "#{lib_path}/#{binary(platf)}" => ["copy:#{name}:#{platf}"]
file lib_binary_path => ["copy:#{name}:#{platf}"]

task "compile:#{@name}" => ["compile:#{@name}:#{platf}"]
task "compile" => ["compile:#{platf}"]
@@ -184,12 +189,15 @@ def define_java_platform_tasks
end
end

# lib_binary_path
lib_binary_path = "#{lib_path}/#{File.basename(binary(platform))}"

# add binaries to the dependency chain
task "java:#{@gem_spec.name}" => ["#{lib_path}/#{binary(platform)}"]
task "java:#{@gem_spec.name}" => [lib_binary_path]

# ensure the extension get copied
unless Rake::Task.task_defined?("#{lib_path}/#{binary(platform)}") then
file "#{lib_path}/#{binary(platform)}" => ["copy:#{name}:#{platform}"]
unless Rake::Task.task_defined?(lib_binary_path) then
file lib_binary_path => ["copy:#{name}:#{platform}"]
end

task 'java' => ["java:#{@gem_spec.name}"]
2 changes: 1 addition & 1 deletion rake-compiler.gemspec
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
Gem::Specification.new do |s|
# basic information
s.name = "rake-compiler"
s.version = "1.1.6"
s.version = "1.1.7"
s.platform = Gem::Platform::RUBY

# description and details