commit rubygem-rb-kqueue for openSUSE:Factory
Hello community, here is the log from the commit of package rubygem-rb-kqueue for openSUSE:Factory checked in at 2015-05-02 17:46:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-rb-kqueue (Old) and /work/SRC/openSUSE:Factory/.rubygem-rb-kqueue.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "rubygem-rb-kqueue" Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-rb-kqueue/rubygem-rb-kqueue.changes 2014-11-13 09:17:23.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-rb-kqueue.new/rubygem-rb-kqueue.changes 2015-05-02 17:46:18.000000000 +0200 @@ -1,0 +2,6 @@ +Fri May 1 04:30:44 UTC 2015 - coolo@suse.com + +- updated to version 0.2.4 + no changelog found + +------------------------------------------------------------------- Old: ---- rb-kqueue-0.2.3.gem New: ---- gem2rpm.yml rb-kqueue-0.2.4.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-rb-kqueue.spec ++++++ --- /var/tmp/diff_new_pack.ADSvWy/_old 2015-05-02 17:46:19.000000000 +0200 +++ /var/tmp/diff_new_pack.ADSvWy/_new 2015-05-02 17:46:19.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package rubygem-rb-kqueue # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 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 @@ -15,18 +15,27 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + +# +# This file was generated with a gem2rpm.yml and not just plain gem2rpm. +# All sections marked as MANUAL, license headers, summaries and descriptions +# can be maintained in that file. Please consult this file before editing any +# of those fields +# + Name: rubygem-rb-kqueue -Version: 0.2.3 +Version: 0.2.4 Release: 0 %define mod_name rb-kqueue %define mod_full_name %{mod_name}-%{version} BuildRoot: %{_tmppath}/%{name}-%{version}-build -BuildRequires: ruby-macros >= 5 -BuildRequires: %{ruby} BuildRequires: %{rubygem gem2rpm} BuildRequires: %{rubygem rdoc > 3.10} +BuildRequires: %{ruby} +BuildRequires: ruby-macros >= 5 Url: http://github.com/mat813/rb-kqueue Source: http://rubygems.org/gems/%{mod_full_name}.gem +Source1: gem2rpm.yml Summary: A Ruby wrapper for BSD's kqueue, using FFI License: MIT Group: Development/Languages/Ruby ++++++ gem2rpm.yml ++++++ # --- # ## used by gem2rpm # :summary: this is a custom summary # ## used by gem2rpm # :description: |- # this is a custom description # # it can be multiline # ## used by gem2rpm # :license: MIT or Ruby # ## used by gem2rpm and gem_packages # :version_suffix: -x_y # ## used by gem2rpm and gem_packages # :disable_docs: true # ## used by gem2rpm # :disable_automatic_rdoc_dep: true # ## used by gem2rpm # :preamble: |- # BuildRequires: foobar # Requires: foobar # ## used by gem2rpm # :patches: # foo.patch: -p1 # bar.patch: # ## used by gem2rpm :sources: # - foo.desktop # - bar.desktop # :gem_install_args: '....' # ## used by gem2rpm # :pre_install: |- # %if 0%{?use_system_libev} # export USE_VENDORED_LIBEV="no" # %endif # ## used by gem2rpm # :post_install: |- # # delete custom files here or do other fancy stuff # install -D -m 0644 %{S:1} %{buildroot}%{_bindir}/gem2rpm-opensuse # ## used by gem2rpm # :testsuite_command: |- # (pushd %{buildroot}%{gem_base}/gems/%{mod_full_name} && rake test) # ## used by gem2rpm # :filelist: |- # /usr/bin/gem2rpm-opensuse # ## used by gem2rpm # :scripts: # :post: |- # /bin/echo foo # ## used by gem_packages # :main: # :preamble: |- # Requires: util-linux # Recommends: pwgen # :filelist: |- # /usr/bin/gem2rpm-opensuse # ## used by gem_packages # :custom: # apache: # :preamble: |- # Requires: ..... # :filelist: |- # /etc/apache2/conf.d/passenger.conf # :summary: Custom summary is optional # :description: |- # Custom description is optional # # bar # :post: |- # /bin/echo foo # ++++++ rb-kqueue-0.2.3.gem -> rb-kqueue-0.2.4.gem ++++++ Files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rb-kqueue/version.rb new/lib/rb-kqueue/version.rb --- old/lib/rb-kqueue/version.rb 1970-01-01 01:00:00.000000000 +0100 +++ new/lib/rb-kqueue/version.rb 2015-05-01 01:07:17.000000000 +0200 @@ -0,0 +1,3 @@ +module KQueue + VERSION = [0, 2, 4] +end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rb-kqueue/watcher/signal.rb new/lib/rb-kqueue/watcher/signal.rb --- old/lib/rb-kqueue/watcher/signal.rb 2014-06-03 17:33:19.000000000 +0200 +++ new/lib/rb-kqueue/watcher/signal.rb 2015-05-01 01:07:17.000000000 +0200 @@ -19,9 +19,9 @@ def initialize(queue, signal, callback) if signal.is_a?(String) @name = signal - @number = Signal.list[signal] + @number = ::Signal.list[signal] else - @name = Signal.list.find {|_, n| n == signal}.first + @name = ::Signal.list.find {|_, n| n == signal}.first @number = signal end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/rb-kqueue.rb new/lib/rb-kqueue.rb --- old/lib/rb-kqueue.rb 2014-06-03 17:33:19.000000000 +0200 +++ new/lib/rb-kqueue.rb 2015-05-01 01:07:17.000000000 +0200 @@ -4,8 +4,11 @@ require 'rb-kqueue/watcher/file' require 'rb-kqueue/watcher/read_write' require 'rb-kqueue/watcher/process' +require 'rb-kqueue/watcher/signal' +require 'rb-kqueue/watcher/timer' require 'rb-kqueue/event' require 'rb-kqueue/queue' +require 'rb-kqueue/version' # The root module of the library, which is laid out as so: # @@ -13,8 +16,6 @@ # * {Watcher} -- A watcher for a single sort of event # * {Event} -- A notification that an event has occurred module KQueue - VERSION = [0, 2, 3] - # Raise an exception for a native kqueue error. # # @param errno [Fixnum] The errno identifying the sort of error. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2014-06-03 17:33:19.000000000 +0200 +++ new/metadata 2015-05-01 01:07:17.000000000 +0200 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: rb-kqueue version: !ruby/object:Gem::Version - version: 0.2.3 + version: 0.2.4 platform: ruby authors: - Mathieu Arnold @@ -9,7 +9,7 @@ autorequire: bindir: bin cert_chain: [] -date: 2014-06-03 00:00:00.000000000 Z +date: 2015-05-01 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: ffi @@ -58,6 +58,7 @@ - lib/rb-kqueue/native.rb - lib/rb-kqueue/native/flags.rb - lib/rb-kqueue/queue.rb +- lib/rb-kqueue/version.rb - lib/rb-kqueue/watcher.rb - lib/rb-kqueue/watcher/file.rb - lib/rb-kqueue/watcher/process.rb @@ -87,7 +88,7 @@ version: '0' requirements: [] rubyforge_project: -rubygems_version: 2.2.1 +rubygems_version: 2.2.2 signing_key: specification_version: 4 summary: A Ruby wrapper for BSD's kqueue, using FFI diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rb-kqueue.gemspec new/rb-kqueue.gemspec --- old/rb-kqueue.gemspec 2014-06-03 17:33:19.000000000 +0200 +++ new/rb-kqueue.gemspec 2015-05-01 01:07:17.000000000 +0200 @@ -3,13 +3,15 @@ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encoding: utf-8 -*- +require File.expand_path('../lib/rb-kqueue/version', __FILE__) + Gem::Specification.new do |gem| gem.name = %q{rb-kqueue} - gem.version = "0.2.3" + gem.version = KQueue::VERSION.join(".") gem.authors = ["Mathieu Arnold", "Nathan Weizenbaum"] gem.email = %q{mat@mat.cc nex342@gmail.com} - gem.date = %q{2014-06-03} + gem.date = %q{2015-05-01} gem.description = %q{A Ruby wrapper for BSD's kqueue, using FFI} gem.extra_rdoc_files = %w(README.md) gem.licenses = ['MIT']
participants (1)
-
root@hilbert.suse.de