Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rubygem-benchmark for 
openSUSE:Factory checked in at 2021-01-21 21:55:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-benchmark (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-benchmark.new.28504 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-benchmark"

Thu Jan 21 21:55:14 2021 rev:2 rq:865169 version:0.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-benchmark/rubygem-benchmark.changes      
2020-01-27 20:19:31.708599116 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-benchmark.new.28504/rubygem-benchmark.changes
   2021-01-21 21:55:18.637792055 +0100
@@ -1,0 +2,6 @@
+Wed Jan 20 12:21:45 UTC 2021 - Stephan Kulow <[email protected]>
+
+updated to version 0.1.1
+  no changelog found
+
+-------------------------------------------------------------------

Old:
----
  benchmark-0.1.0.gem

New:
----
  benchmark-0.1.1.gem

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

Other differences:
------------------
++++++ rubygem-benchmark.spec ++++++
--- /var/tmp/diff_new_pack.ORm8Ew/_old  2021-01-21 21:55:19.197792446 +0100
+++ /var/tmp/diff_new_pack.ORm8Ew/_new  2021-01-21 21:55:19.201792448 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-benchmark
 #
-# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2021 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -24,22 +24,22 @@
 #
 
 Name:           rubygem-benchmark
-Version:        0.1.0
+Version:        0.1.1
 Release:        0
 %define mod_name benchmark
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
-BuildRequires:  %{ruby}
 BuildRequires:  %{rubygem gem2rpm}
-Url:            https://github.com/ruby/benchmark
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros >= 5
+URL:            https://github.com/ruby/benchmark
 Source:         https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:        gem2rpm.yml
 # MANUAL
 Patch0:  0001-Change-shebang-from-usr-bin-env-bash-to-usr-bin-bash.patch
 # /MANUAL
 Summary:        A performance benchmarking library
-License:        BSD-2-Clause
+License:        Ruby AND BSD-2-Clause
 Group:          Development/Languages/Ruby
 
 %description
@@ -61,7 +61,6 @@
 find %{buildroot}/%{_libdir}/ruby/gems \( -name .gitignore -o -name 
.travis.yml \) | xargs rm
 # /MANUAL
 
-
 %gem_packages
 
 %changelog

++++++ benchmark-0.1.0.gem -> benchmark-0.1.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/benchmark.gemspec new/benchmark.gemspec
--- old/benchmark.gemspec       2019-11-06 06:39:39.000000000 +0100
+++ new/benchmark.gemspec       2020-12-22 11:59:47.000000000 +0100
@@ -1,17 +1,19 @@
-lib = File.expand_path("lib", __dir__)
-$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
-require "benchmark/version"
+begin
+  require_relative "lib/benchmark/version"
+rescue LoadError # Fallback to load version file in ruby core repository
+  require_relative "version"
+end
 
 Gem::Specification.new do |spec|
   spec.name          = "benchmark"
   spec.version       = Benchmark::VERSION
-  spec.authors       = ["Hiroshi SHIBATA"]
-  spec.email         = ["[email protected]"]
+  spec.authors       = ["Yukihiro Matsumoto"]
+  spec.email         = ["[email protected]"]
 
   spec.summary       = %q{a performance benchmarking library}
   spec.description   = spec.summary
   spec.homepage      = "https://github.com/ruby/benchmark";
-  spec.license       = "BSD-2-Clause"
+  spec.licenses       = ["Ruby", "BSD-2-Clause"]
 
   spec.metadata["homepage_uri"] = spec.homepage
   spec.metadata["source_code_uri"] = spec.homepage
@@ -19,7 +21,7 @@
   # Specify which files should be added to the gem when it is released.
   # The `git ls-files -z` loads the files in the RubyGem that have been added 
into git.
   spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
-    `git ls-files -z`.split("\x0").reject { |f| 
f.match(%r{^(test|spec|features)/}) }
+    `git ls-files -z 2>/dev/null`.split("\x0").reject { |f| 
f.match(%r{^(test|spec|features)/}) }
   end
   spec.bindir        = "exe"
   spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/benchmark/version.rb new/lib/benchmark/version.rb
--- old/lib/benchmark/version.rb        2019-11-06 06:39:39.000000000 +0100
+++ new/lib/benchmark/version.rb        2020-12-22 11:59:47.000000000 +0100
@@ -1,3 +1,3 @@
 module Benchmark
-  VERSION = "0.1.0"
+  VERSION = "0.1.1"
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2019-11-06 06:39:39.000000000 +0100
+++ new/metadata        2020-12-22 11:59:47.000000000 +0100
@@ -1,18 +1,18 @@
 --- !ruby/object:Gem::Specification
 name: benchmark
 version: !ruby/object:Gem::Version
-  version: 0.1.0
+  version: 0.1.1
 platform: ruby
 authors:
-- Hiroshi SHIBATA
-autorequire: 
+- Yukihiro Matsumoto
+autorequire:
 bindir: exe
 cert_chain: []
-date: 2019-11-06 00:00:00.000000000 Z
+date: 2020-12-22 00:00:00.000000000 Z
 dependencies: []
 description: a performance benchmarking library
 email:
-- [email protected]
+- [email protected]
 executables: []
 extensions: []
 extra_rdoc_files: []
@@ -30,11 +30,12 @@
 - lib/benchmark/version.rb
 homepage: https://github.com/ruby/benchmark
 licenses:
+- Ruby
 - BSD-2-Clause
 metadata:
   homepage_uri: https://github.com/ruby/benchmark
   source_code_uri: https://github.com/ruby/benchmark
-post_install_message: 
+post_install_message:
 rdoc_options: []
 require_paths:
 - lib
@@ -49,8 +50,8 @@
     - !ruby/object:Gem::Version
       version: '0'
 requirements: []
-rubygems_version: 3.0.3
-signing_key: 
+rubygems_version: 3.2.2
+signing_key:
 specification_version: 4
 summary: a performance benchmarking library
 test_files: []

Reply via email to