Hello community,

here is the log from the commit of package rubygem-cool.io for openSUSE:Factory 
checked in at 2020-10-05 19:30:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-cool.io (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-cool.io.new.4249 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-cool.io"

Mon Oct  5 19:30:21 2020 rev:8 rq:838025 version:1.6.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-cool.io/rubygem-cool.io.changes  
2020-03-07 21:37:40.672249434 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-cool.io.new.4249/rubygem-cool.io.changes    
    2020-10-05 19:30:30.232564805 +0200
@@ -1,0 +2,12 @@
+Fri Sep 25 13:48:02 UTC 2020 - Stephan Kulow <co...@suse.com>
+
+updated to version 1.6.1
+ see installed CHANGES.md
+
+  1.6.1
+  -----
+  
+  * Fix warning for recent compilers
+  
+
+-------------------------------------------------------------------

Old:
----
  cool.io-1.6.0.gem

New:
----
  cool.io-1.6.1.gem

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

Other differences:
------------------
++++++ rubygem-cool.io.spec ++++++
--- /var/tmp/diff_new_pack.oWx6kC/_old  2020-10-05 19:30:31.356565891 +0200
+++ /var/tmp/diff_new_pack.oWx6kC/_new  2020-10-05 19:30:31.356565891 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-cool.io
-Version:        1.6.0
+Version:        1.6.1
 Release:        0
 %define mod_name cool.io
 %define mod_full_name %{mod_name}-%{version}

++++++ cool.io-1.6.0.gem -> cool.io-1.6.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGES.md new/CHANGES.md
--- old/CHANGES.md      2020-01-24 08:51:03.000000000 +0100
+++ new/CHANGES.md      2020-09-24 13:09:56.000000000 +0200
@@ -1,3 +1,8 @@
+1.6.1
+-----
+
+* Fix warning for recent compilers
+
 1.6.0
 -----
 
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cool.io.gemspec new/cool.io.gemspec
--- old/cool.io.gemspec 2020-01-24 08:51:03.000000000 +0100
+++ new/cool.io.gemspec 2020-09-24 13:09:56.000000000 +0200
@@ -11,6 +11,7 @@
   s.summary     = "A cool framework for doing high performance I/O in Ruby"
   s.description = "Cool.io provides a high performance event framework for 
Ruby which uses the libev C library"
   s.extensions = ["ext/cool.io/extconf.rb", "ext/iobuffer/extconf.rb"]
+  s.licenses   = ["MIT"]
 
   s.files         = `git ls-files`.split("\n")
   s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
@@ -18,7 +19,7 @@
   s.require_paths = ["lib"]
 
   s.add_development_dependency "rake-compiler", "~> 1.0"
-  s.add_development_dependency "rake-compiler-dock", "~> 0.6.0"
+  s.add_development_dependency "rake-compiler-dock", "~> 1.0"
   s.add_development_dependency "rspec", ">= 2.13.0"
   s.add_development_dependency "rdoc", ">= 3.6.0"
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/cool.io/cool.io.h new/ext/cool.io/cool.io.h
--- old/ext/cool.io/cool.io.h   2020-01-24 08:51:03.000000000 +0100
+++ new/ext/cool.io/cool.io.h   2020-09-24 13:09:56.000000000 +0200
@@ -8,7 +8,11 @@
 #define COOLIO_H
 
 #include "ruby.h"
+#if defined(HAVE_RUBY_IO_H)
+#include "ruby/io.h"
+#else
 #include "rubyio.h"
+#endif
 
 #ifdef GetReadFile
 #define FPTR_TO_FD(fptr) (fileno(GetReadFile(fptr)))
@@ -56,4 +60,11 @@
 
 void Coolio_Loop_process_event(VALUE watcher, int revents);
 
+void Init_coolio_loop();
+void Init_coolio_watcher();
+void Init_coolio_iowatcher();
+void Init_coolio_timer_watcher();
+void Init_coolio_stat_watcher();
+void Init_coolio_utils();
+
 #endif
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/cool.io/extconf.rb new/ext/cool.io/extconf.rb
--- old/ext/cool.io/extconf.rb  2020-01-24 08:51:03.000000000 +0100
+++ new/ext/cool.io/extconf.rb  2020-09-24 13:09:56.000000000 +0200
@@ -10,6 +10,14 @@
 have_func('rb_str_set_len')
 have_library('rt', 'clock_gettime')
 
+if have_header('ruby/io.h')
+  $defs << '-DHAVE_RUBY_IO_H'
+end
+
+if have_header('ruby/thread.h')
+  $defs << '-DHAVE_RUBY_THREAD_H'
+end
+
 if have_header('sys/select.h')
   $defs << '-DEV_USE_SELECT'
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/cool.io/iowatcher.c new/ext/cool.io/iowatcher.c
--- old/ext/cool.io/iowatcher.c 2020-01-24 08:51:03.000000000 +0100
+++ new/ext/cool.io/iowatcher.c 2020-09-24 13:09:56.000000000 +0200
@@ -5,7 +5,11 @@
  */
 
 #include "ruby.h"
+#if defined(HAVE_RUBY_IO_H)
+#include "ruby/io.h"
+#else
 #include "rubyio.h"
+#endif
 
 #include "ev_wrap.h"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/cool.io/utils.c new/ext/cool.io/utils.c
--- old/ext/cool.io/utils.c     2020-01-24 08:51:03.000000000 +0100
+++ new/ext/cool.io/utils.c     2020-09-24 13:09:56.000000000 +0200
@@ -15,6 +15,11 @@
 #include <sys/sysctl.h>
 #endif
 
+#ifdef HAVE_SYSCTLBYNAME
+#include <sys/sysctl.h>
+#include <sys/types.h>
+#endif
+
 static VALUE mCoolio = Qnil;
 static VALUE cCoolio_Utils = Qnil;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/libev/ev.c new/ext/libev/ev.c
--- old/ext/libev/ev.c  2020-01-24 08:51:03.000000000 +0100
+++ new/ext/libev/ev.c  2020-09-24 13:09:56.000000000 +0200
@@ -39,6 +39,9 @@
 
 /* ########## COOLIO PATCHERY HO! ########## */
 #include "ruby.h"
+#if defined(HAVE_RUBY_THREAD_H)
+#include "ruby/thread.h"
+#endif
 /* ######################################## */
 
 /* this big block deduces configuration from config.h */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/cool.io/version.rb new/lib/cool.io/version.rb
--- old/lib/cool.io/version.rb  2020-01-24 08:51:03.000000000 +0100
+++ new/lib/cool.io/version.rb  2020-09-24 13:09:56.000000000 +0200
@@ -1,5 +1,5 @@
 module Coolio
-  VERSION = "1.6.0"
+  VERSION = "1.6.1"
   
   def self.version
     VERSION
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2020-01-24 08:51:03.000000000 +0100
+++ new/metadata        2020-09-24 13:09:56.000000000 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: cool.io
 version: !ruby/object:Gem::Version
-  version: 1.6.0
+  version: 1.6.1
 platform: ruby
 authors:
 - Tony Arcieri
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2020-01-24 00:00:00.000000000 Z
+date: 2020-09-24 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rake-compiler
@@ -31,14 +31,14 @@
     requirements:
     - - "~>"
       - !ruby/object:Gem::Version
-        version: 0.6.0
+        version: '1.0'
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - "~>"
       - !ruby/object:Gem::Version
-        version: 0.6.0
+        version: '1.0'
 - !ruby/object:Gem::Dependency
   name: rspec
   requirement: !ruby/object:Gem::Requirement
@@ -154,7 +154,8 @@
 - spec/unix_listener_spec.rb
 - spec/unix_server_spec.rb
 homepage: http://coolio.github.com
-licenses: []
+licenses:
+- MIT
 metadata: {}
 post_install_message: 
 rdoc_options: []


Reply via email to