Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-rice for openSUSE:Factory checked in at 2022-08-09 15:26:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-rice (Old) and /work/SRC/openSUSE:Factory/.rubygem-rice.new.1521 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-rice" Tue Aug 9 15:26:50 2022 rev:9 rq:993516 version:4.0.4 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-rice/rubygem-rice.changes 2022-02-02 22:45:02.634055514 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-rice.new.1521/rubygem-rice.changes 2022-08-09 15:27:05.577409276 +0200 @@ -1,0 +2,7 @@ +Thu Aug 4 13:25:51 UTC 2022 - Stephan Kulow <co...@suse.com> + +updated to version 4.0.4 + see installed CHANGELOG.md + + +------------------------------------------------------------------- Old: ---- rice-4.0.3.gem New: ---- rice-4.0.4.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-rice.spec ++++++ --- /var/tmp/diff_new_pack.GlZeIG/_old 2022-08-09 15:27:06.053410636 +0200 +++ /var/tmp/diff_new_pack.GlZeIG/_new 2022-08-09 15:27:06.057410648 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-rice -Version: 4.0.3 +Version: 4.0.4 Release: 0 %define mod_name rice %define mod_full_name %{mod_name}-%{version} ++++++ rice-4.0.3.gem -> rice-4.0.4.gem ++++++ Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/include/rice/rice.hpp new/include/rice/rice.hpp --- old/include/rice/rice.hpp 2022-01-15 23:04:59.000000000 +0100 +++ new/include/rice/rice.hpp 2022-05-24 14:22:36.000000000 +0200 @@ -304,6 +304,7 @@ // --------- Type.ipp --------- #include <iosfwd> +#include <iterator> #include <numeric> #include <regex> #include <sstream> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/version.rb new/lib/version.rb --- old/lib/version.rb 2022-01-15 23:04:59.000000000 +0100 +++ new/lib/version.rb 2022-05-24 14:22:36.000000000 +0200 @@ -1,3 +1,3 @@ module Rice - VERSION = "4.0.3" + VERSION = "4.0.4" end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2022-01-15 23:04:59.000000000 +0100 +++ new/metadata 2022-05-24 14:22:36.000000000 +0200 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: rice version: !ruby/object:Gem::Version - version: 4.0.3 + version: 4.0.4 platform: ruby authors: - Paul Brannan @@ -10,7 +10,7 @@ autorequire: bindir: bin cert_chain: [] -date: 2022-01-15 00:00:00.000000000 Z +date: 2022-05-24 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: bundler @@ -220,7 +220,7 @@ - !ruby/object:Gem::Version version: '0' requirements: [] -rubygems_version: 3.2.32 +rubygems_version: 3.3.11 signing_key: specification_version: 4 summary: Ruby Interface for C++ Extensions diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rice/detail/Type.ipp new/rice/detail/Type.ipp --- old/rice/detail/Type.ipp 2022-01-15 23:04:59.000000000 +0100 +++ new/rice/detail/Type.ipp 2022-05-24 14:22:36.000000000 +0200 @@ -1,6 +1,7 @@ #include "rice_traits.hpp" #include <iosfwd> +#include <iterator> #include <numeric> #include <regex> #include <sstream> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/test/embed_ruby.cpp new/test/embed_ruby.cpp --- old/test/embed_ruby.cpp 2022-01-15 23:04:59.000000000 +0100 +++ new/test/embed_ruby.cpp 2022-05-24 14:22:36.000000000 +0200 @@ -21,8 +21,9 @@ // results in a crash. // See https://bugs.ruby-lang.org/issues/17643 if (RUBY_API_VERSION_MAJOR == 3 && - RUBY_API_VERSION_MINOR == 0 && - RUBY_API_VERSION_TEENY == 0) + (RUBY_API_VERSION_MINOR == 1 || + (RUBY_API_VERSION_MINOR == 0 && + RUBY_API_VERSION_TEENY == 0))) { // do nothing }