Hello community,

here is the log from the commit of package rubygem-rake-compiler for 
openSUSE:Factory checked in at 2018-09-24 13:12:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rake-compiler (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-rake-compiler.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-rake-compiler"

Mon Sep 24 13:12:40 2018 rev:20 rq:636988 version:1.0.5

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/rubygem-rake-compiler/rubygem-rake-compiler.changes  
    2017-06-02 10:33:47.771972486 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rake-compiler.new/rubygem-rake-compiler.changes
 2018-09-24 13:12:41.461766746 +0200
@@ -1,0 +2,14 @@
+Wed Sep  5 10:37:00 UTC 2018 - [email protected]
+
+- updated to version 1.0.5
+ see installed History.txt
+
+  === 1.0.5 / 2018-08-31
+  
+  * Enhancements:
+    * Improve JRuby class pass detection.
+      #147 [Patch by Prashant Vithani]
+    * Update the default source and target versions to Java 6.
+      #148 [Patch by Prashant Vithani]
+
+-------------------------------------------------------------------

Old:
----
  rake-compiler-1.0.4.gem

New:
----
  rake-compiler-1.0.5.gem

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ rubygem-rake-compiler.spec ++++++
--- /var/tmp/diff_new_pack.exdIa3/_old  2018-09-24 13:12:42.333765216 +0200
+++ /var/tmp/diff_new_pack.exdIa3/_new  2018-09-24 13:12:42.337765210 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-rake-compiler
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-rake-compiler
-Version:        1.0.4
+Version:        1.0.5
 Release:        0
 %define mod_name rake-compiler
 %define mod_full_name %{mod_name}-%{version}
@@ -35,7 +35,7 @@
 BuildRequires:  ruby-macros >= 5
 BuildRequires:  update-alternatives
 Url:            https://github.com/rake-compiler/rake-compiler
-Source:         http://rubygems.org/gems/%{mod_full_name}.gem
+Source:         https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:        gem2rpm.yml
 Summary:        Rake-based Ruby Extension (C, Java) task generator
 License:        MIT

++++++ rake-compiler-1.0.4.gem -> rake-compiler-1.0.5.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/History.txt new/History.txt
--- old/History.txt     2017-05-26 17:33:44.000000000 +0200
+++ new/History.txt     2018-08-31 07:59:40.000000000 +0200
@@ -1,3 +1,11 @@
+=== 1.0.5 / 2018-08-31
+
+* Enhancements:
+  * Improve JRuby class pass detection.
+    #147 [Patch by Prashant Vithani]
+  * Update the default source and target versions to Java 6.
+    #148 [Patch by Prashant Vithani]
+
 === 1.0.4 / 2017-05-27
 
 * Enhancements:
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rake/javaextensiontask.rb 
new/lib/rake/javaextensiontask.rb
--- old/lib/rake/javaextensiontask.rb   2017-05-26 17:33:44.000000000 +0200
+++ new/lib/rake/javaextensiontask.rb   2018-08-31 07:59:40.000000000 +0200
@@ -1,3 +1,5 @@
+require "rbconfig"
+
 require 'rake/baseextensiontask'
 
 # Define a series of tasks to aid in the compilation of Java extensions for
@@ -29,8 +31,8 @@
       @classpath      = nil
       @java_compiling = nil
       @debug          = false
-      @source_version = '1.5'
-      @target_version = '1.5'
+      @source_version = '1.6'
+      @target_version = '1.6'
     end
 
     def define
@@ -211,11 +213,12 @@
         end
       end
       unless jruby_cpath
-        jruby_cpath = ENV['JRUBY_PARENT_CLASSPATH'] || ENV['JRUBY_HOME'] &&
-          Dir.glob("#{File.expand_path(ENV['JRUBY_HOME'])}/lib/*.jar").
-            join(File::PATH_SEPARATOR)
+        libdir = RbConfig::CONFIG['libdir']
+        if libdir.start_with? "classpath:"
+          raise 'Cannot build with jruby-complete'
+        end
+        jruby_cpath = File.join(libdir, "jruby.jar")
       end
-      raise "JRUBY_HOME or JRUBY_PARENT_CLASSPATH are not set" unless 
jruby_cpath
       jruby_cpath += File::PATH_SEPARATOR + args.join(File::PATH_SEPARATOR) 
unless args.empty?
       jruby_cpath ? "-cp \"#{jruby_cpath}\"" : ""
     end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2017-05-26 17:33:44.000000000 +0200
+++ new/metadata        2018-08-31 07:59:40.000000000 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: rake-compiler
 version: !ruby/object:Gem::Version
-  version: 1.0.4
+  version: 1.0.5
 platform: ruby
 authors:
 - Kouhei Sutou
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2017-05-26 00:00:00.000000000 Z
+date: 2018-08-31 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rake
@@ -134,7 +134,7 @@
       version: 1.8.23
 requirements: []
 rubyforge_project: rake-compiler
-rubygems_version: 2.5.2
+rubygems_version: 3.0.0.beta1
 signing_key: 
 specification_version: 4
 summary: Rake-based Ruby Extension (C, Java) task generator.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tasks/gem.rake new/tasks/gem.rake
--- old/tasks/gem.rake  2017-05-26 17:33:44.000000000 +0200
+++ new/tasks/gem.rake  2018-08-31 07:59:40.000000000 +0200
@@ -1,51 +1,8 @@
 require 'rubygems/package_task'
 
-GEM_SPEC = Gem::Specification.new do |s|
-  # basic information
-  s.name        = "rake-compiler"
-  s.version     = "1.0.4"
-  s.platform    = Gem::Platform::RUBY
-
-  # description and details
-  s.summary     = 'Rake-based Ruby Extension (C, Java) task generator.'
-  s.description = "Provide a standard and simplified way to build and 
package\nRuby extensions (C, Java) using Rake as glue."
-
-  # requirements
-  s.required_ruby_version = ">= 1.8.7"
-  s.required_rubygems_version = ">= 1.8.23"
-
-  # dependencies
-  s.add_dependency  'rake'
-
-  # development dependencies
-  s.add_development_dependency 'rspec', '~> 2.8.0'
-  s.add_development_dependency 'cucumber', '~> 1.1.4'
-
-  # components, files and paths
-  s.files = FileList["features/**/*.{feature,rb}", "bin/rake-compiler",
-                      "lib/**/*.rb", "spec/spec.opts", "spec/**/*.rb",
-                      "tasks/**/*.rake", "Rakefile", "Gemfile",
-                      "*.{rdoc,txt,yml}"]
-
-  s.bindir      = 'bin'
-  s.executables = ['rake-compiler']
-
-  s.require_path = 'lib'
-
-  # documentation
-  s.rdoc_options << '--main'  << 'README.rdoc' << '--title' << 'rake-compiler 
-- Documentation'
-
-  s.extra_rdoc_files = %w(README.rdoc LICENSE.txt History.txt)
-
-  # project information
-  s.homepage          = 'https://github.com/rake-compiler/rake-compiler'
-  s.rubyforge_project = 'rake-compiler'
-  s.licenses          = ['MIT']
-
-  # author and contributors
-  s.authors     = ['Kouhei Sutou', 'Luis Lavena']
-  s.email       = ['[email protected]', '[email protected]']
-end
+gemspec_path = File.join(__dir__, "..", "rake-compiler.gemspec")
+gemspec_path = File.expand_path(gemspec_path)
+GEM_SPEC = eval(File.read(gemspec_path), TOPLEVEL_BINDING, gemspec_path)
 
 gem_package = Gem::PackageTask.new(GEM_SPEC) do |pkg|
   pkg.need_tar = false


Reply via email to