Hello community,

here is the log from the commit of package rubygem-rb-inotify for 
openSUSE:Factory checked in at 2017-04-11 09:31:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rb-inotify (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-rb-inotify.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-rb-inotify"

Tue Apr 11 09:31:16 2017 rev:3 rq:456599 version:0.9.8

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-rb-inotify/rubygem-rb-inotify.changes    
2016-03-07 13:27:49.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rb-inotify.new/rubygem-rb-inotify.changes   
    2017-04-11 09:31:17.446658626 +0200
@@ -1,0 +2,6 @@
+Fri Jan 27 05:42:45 UTC 2017 - [email protected]
+
+- updated to version 0.9.8
+  no changelog found
+
+-------------------------------------------------------------------

Old:
----
  rb-inotify-0.9.7.gem

New:
----
  rb-inotify-0.9.8.gem

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

Other differences:
------------------
++++++ rubygem-rb-inotify.spec ++++++
--- /var/tmp/diff_new_pack.Ni1aKJ/_old  2017-04-11 09:31:19.186412918 +0200
+++ /var/tmp/diff_new_pack.Ni1aKJ/_new  2017-04-11 09:31:19.190412353 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-rb-inotify
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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-rb-inotify
-Version:        0.9.7
+Version:        0.9.8
 Release:        0
 %define mod_name rb-inotify
 %define mod_full_name %{mod_name}-%{version}

++++++ rb-inotify-0.9.7.gem -> rb-inotify-0.9.8.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/VERSION new/VERSION
--- old/VERSION 2016-02-09 00:10:26.000000000 +0100
+++ new/VERSION 2017-01-27 00:28:55.000000000 +0100
@@ -1 +1 @@
-0.9.7
\ No newline at end of file
+0.9.8
\ No newline at end of file
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rb-inotify/event.rb new/lib/rb-inotify/event.rb
--- old/lib/rb-inotify/event.rb 2016-02-09 00:10:26.000000000 +0100
+++ new/lib/rb-inotify/event.rb 2017-01-27 00:28:55.000000000 +0100
@@ -125,7 +125,7 @@
     #
     # @private
     def callback!
-      watcher.callback!(self)
+      watcher && watcher.callback!(self)
     end
 
     # Returns the size of this event object in bytes,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rb-inotify/native.rb new/lib/rb-inotify/native.rb
--- old/lib/rb-inotify/native.rb        2016-02-09 00:10:26.000000000 +0100
+++ new/lib/rb-inotify/native.rb        2017-01-27 00:28:55.000000000 +0100
@@ -9,6 +9,10 @@
   module Native
     extend FFI::Library
     ffi_lib FFI::Library::LIBC
+    begin
+      ffi_lib 'inotify'
+    rescue LoadError
+    end
 
     # The C struct describing an inotify event.
     #
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rb-inotify/notifier.rb 
new/lib/rb-inotify/notifier.rb
--- old/lib/rb-inotify/notifier.rb      2016-02-09 00:10:26.000000000 +0100
+++ new/lib/rb-inotify/notifier.rb      2017-01-27 00:28:55.000000000 +0100
@@ -195,7 +195,11 @@
         d = File.join(path, base)
         binary_d = d.respond_to?(:force_encoding) ? 
d.dup.force_encoding('BINARY') : d
         next if binary_d =~ /\/\.\.?$/ # Current or parent directory
-        watch(d, *flags, &callback) if !RECURSIVE_BLACKLIST.include?(d) && 
File.directory?(d)
+        next if RECURSIVE_BLACKLIST.include?(d)
+        next if flags.include?(:dont_follow) && File.symlink?(d)
+        next if !File.directory?(d)
+
+        watch(d, *flags, &callback)
       end
 
       dir.close
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rb-inotify.rb new/lib/rb-inotify.rb
--- old/lib/rb-inotify.rb       2016-02-09 00:10:26.000000000 +0100
+++ new/lib/rb-inotify.rb       2017-01-27 00:28:55.000000000 +0100
@@ -14,5 +14,5 @@
   # An array containing the version number of rb-inotify.
   # The numbers in the array are the major, minor, and patch versions,
   # respectively.
-  VERSION = [0, 9, 7]
+  VERSION = [0, 9, 8]
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2016-02-09 00:10:26.000000000 +0100
+++ new/metadata        2017-01-27 00:28:55.000000000 +0100
@@ -1,41 +1,41 @@
 --- !ruby/object:Gem::Specification
 name: rb-inotify
 version: !ruby/object:Gem::Version
-  version: 0.9.7
+  version: 0.9.8
 platform: ruby
 authors:
 - Nathan Weizenbaum
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-02-08 00:00:00.000000000 Z
+date: 2017-01-26 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: ffi
   requirement: !ruby/object:Gem::Requirement
     requirements:
-    - - ! '>='
+    - - ">="
       - !ruby/object:Gem::Version
         version: 0.5.0
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
-    - - ! '>='
+    - - ">="
       - !ruby/object:Gem::Version
         version: 0.5.0
 - !ruby/object:Gem::Dependency
   name: yard
   requirement: !ruby/object:Gem::Requirement
     requirements:
-    - - ! '>='
+    - - ">="
       - !ruby/object:Gem::Version
         version: 0.4.0
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
-    - - ! '>='
+    - - ">="
       - !ruby/object:Gem::Version
         version: 0.4.0
 description: A Ruby wrapper for Linux's inotify, using FFI
@@ -45,7 +45,7 @@
 extra_rdoc_files:
 - README.md
 files:
-- .yardopts
+- ".yardopts"
 - MIT-LICENSE
 - README.md
 - Rakefile
@@ -67,17 +67,17 @@
 - lib
 required_ruby_version: !ruby/object:Gem::Requirement
   requirements:
-  - - ! '>='
+  - - ">="
     - !ruby/object:Gem::Version
       version: '0'
 required_rubygems_version: !ruby/object:Gem::Requirement
   requirements:
-  - - ! '>='
+  - - ">="
     - !ruby/object:Gem::Version
       version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.4.3
+rubygems_version: 2.4.8
 signing_key: 
 specification_version: 4
 summary: A Ruby wrapper for Linux's inotify, using FFI
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rb-inotify.gemspec new/rb-inotify.gemspec
--- old/rb-inotify.gemspec      2016-02-09 00:10:26.000000000 +0100
+++ new/rb-inotify.gemspec      2017-01-27 00:28:55.000000000 +0100
@@ -2,16 +2,16 @@
 # DO NOT EDIT THIS FILE DIRECTLY
 # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
 # -*- encoding: utf-8 -*-
-# stub: rb-inotify 0.9.7 ruby lib
+# stub: rb-inotify 0.9.8 ruby lib
 
 Gem::Specification.new do |s|
   s.name = "rb-inotify"
-  s.version = "0.9.7"
+  s.version = "0.9.8"
 
   s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? 
:required_rubygems_version=
   s.require_paths = ["lib"]
   s.authors = ["Nathan Weizenbaum"]
-  s.date = "2016-02-08"
+  s.date = "2017-01-26"
   s.description = "A Ruby wrapper for Linux's inotify, using FFI"
   s.email = "[email protected]"
   s.extra_rdoc_files = [
@@ -33,7 +33,7 @@
     "rb-inotify.gemspec"
   ]
   s.homepage = "http://github.com/nex3/rb-inotify";
-  s.rubygems_version = "2.4.3"
+  s.rubygems_version = "2.4.8"
   s.summary = "A Ruby wrapper for Linux's inotify, using FFI"
 
   if s.respond_to? :specification_version then


Reply via email to