commit rubygem-bindex for openSUSE:Factory

2019-07-16 Thread root
Hello community,

here is the log from the commit of package rubygem-bindex for openSUSE:Factory 
checked in at 2019-07-16 08:41:38

Comparing /work/SRC/openSUSE:Factory/rubygem-bindex (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-bindex.new.1887 (New)


Package is "rubygem-bindex"

Tue Jul 16 08:41:38 2019 rev:3 rq:715394 version:0.8.1

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bindex/rubygem-bindex.changes
2019-06-19 20:59:18.974030311 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-bindex.new.1887/rubygem-bindex.changes  
2019-07-16 08:41:39.379031695 +0200
@@ -1,0 +2,7 @@
+Mon Jul 15 07:19:03 UTC 2019 - Manuel Schnitzer 
+
+- updated to version 0.8.1
+
+  no changelog found
+
+---

Old:

  bindex-0.7.0.gem

New:

  bindex-0.8.1.gem



Other differences:
--
++ rubygem-bindex.spec ++
--- /var/tmp/diff_new_pack.ivGODW/_old  2019-07-16 08:41:40.031031345 +0200
+++ /var/tmp/diff_new_pack.ivGODW/_new  2019-07-16 08:41:40.035031342 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-bindex
-Version:0.7.0
+Version:0.8.1
 Release:0
 %define mod_name bindex
 %define mod_full_name %{mod_name}-%{version}

++ bindex-0.7.0.gem -> bindex-0.8.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2019-04-08 22:09:35.0 +0200
+++ new/.travis.yml 2019-07-10 15:26:26.0 +0200
@@ -1,13 +1,10 @@
 language: ruby
 
 rvm:
-  - ruby-2.3.3
-  - ruby-2.4.0
+  - ruby-2.5
+  - ruby-2.6
   - ruby-head
 
-  - jruby-9.1.8.0
-  - jruby-head
-
 allow_failures:
 - rvm: ruby-head
 - rvm: jruby-head
@@ -18,6 +15,4 @@
 
 before_install: gem install bundler
 
-sudo: false
-
 cache: bundler
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2019-04-08 22:09:35.0 +0200
+++ new/README.md   2019-07-10 15:26:26.0 +0200
@@ -1,4 +1,4 @@
-# Skiptrace [![Build 
Status](https://travis-ci.org/gsamokovarov/bindex.svg?branch=master)](https://travis-ci.org/gsamokovarov/bindex)
+# Skiptrace [![Build 
Status](https://travis-ci.org/gsamokovarov/skiptrace.svg?branch=master)](https://travis-ci.org/gsamokovarov/skiptrace)
 
 When Ruby raises an exception, it leaves you a backtrace to help you figure out
 where did the exception originated in. Skiptrace gives you the bindings as 
well.
@@ -18,6 +18,11 @@
 
 Returns all the bindings up to the one in which the exception originated in.
 
+ Exception#binding_locations
+
+Returns an array of `Skiptrace::Location` objects that are like 
[`Thread::Backtrace::Location`](https://ruby-doc.org/core-2.6.3/Thread/Backtrace/Location.html)
+but also carry a `Binding` object for that frame through the `#binding` method.
+
  Skiptrace.current_bindings
 
 Returns all of the current Ruby execution state bindings. The first one is the
@@ -28,7 +33,7 @@
 
 ### CRuby
 
-CRuby 2.0.0 and above is supported.
+CRuby 2.5.0 and above is supported.
 
 ### JRuby
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile2019-04-08 22:09:35.0 +0200
+++ new/Rakefile2019-07-10 15:26:26.0 +0200
@@ -7,7 +7,7 @@
 
 Rake::TestTask.new do |t|
   t.libs << 'test'
-  t.test_files = FileList['test/*_test.rb']
+  t.test_files = FileList['test/**/*_test.rb']
   t.verbose = true
 end
 
@@ -17,7 +17,7 @@
 
   Rake::ExtensionTask.new('skiptrace') do |ext|
 ext.name = 'cruby'
-ext.lib_dir = 'lib/skiptrace'
+ext.lib_dir = 'lib/skiptrace/internal'
   end
 
   task default: [:clean, :compile, :test]
@@ -26,7 +26,7 @@
 
   Rake::JavaExtensionTask.new('skiptrace') do |ext|
 ext.name = 'jruby_internals'
-ext.lib_dir = 'lib/skiptrace'
+ext.lib_dir = 'lib/skiptrace/internal'
 ext.source_version = '1.8'
 ext.target_version = '1.8'
   end
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/skiptrace/extconf.rb new/ext/skiptrace/extconf.rb
--- old/ext/skiptrace/extconf.rb2019-04-08 22:09:35.0 +0200
+++ new/ext/skiptrace/extconf.rb2019-07-10 15:26:26.0 +0200
@@ -5,7 +5,7 @@
   $CFLAGS << " -Wall"
   $CFLAGS << " -g3 -O0" if ENV["DEBUG"]
 
-  create_makefile("skiptrace/cruby")
+  create_makefile("skiptrace/internal/cruby")
 else
   IO.write(File.expand_path("../Makefile", __FILE__), <<-END)
 all install static install-so install-rb: Makefile
diff -urN '--exclude=CVS' 

commit rubygem-bindex for openSUSE:Factory

2019-06-19 Thread root
Hello community,

here is the log from the commit of package rubygem-bindex for openSUSE:Factory 
checked in at 2019-06-19 20:59:18

Comparing /work/SRC/openSUSE:Factory/rubygem-bindex (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-bindex.new.4811 (New)


Package is "rubygem-bindex"

Wed Jun 19 20:59:18 2019 rev:2 rq:705978 version:0.7.0

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bindex/rubygem-bindex.changes
2017-06-04 01:56:48.461810744 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-bindex.new.4811/rubygem-bindex.changes  
2019-06-19 20:59:18.974030311 +0200
@@ -1,0 +2,6 @@
+Sun May  5 09:19:35 UTC 2019 - Stephan Kulow 
+
+- updated to version 0.7.0
+  no changelog found
+
+---

Old:

  bindex-0.5.0.gem

New:

  bindex-0.7.0.gem



Other differences:
--
++ rubygem-bindex.spec ++
--- /var/tmp/diff_new_pack.QZfLvb/_old  2019-06-19 20:59:19.526030805 +0200
+++ /var/tmp/diff_new_pack.QZfLvb/_new  2019-06-19 20:59:19.530030808 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-bindex
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -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,14 +24,14 @@
 #
 
 Name:   rubygem-bindex
-Version:0.5.0
+Version:0.7.0
 Release:0
 %define mod_name bindex
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
 BuildRequires:  %{rubydevel >= 2.0.0}
 BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  ruby-macros >= 5
 Url:https://github.com/gsamokovarov/bindex
 Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml

++ bindex-0.5.0.gem -> bindex-0.7.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2017-03-20 12:22:18.0 +0100
+++ new/.travis.yml 2019-04-08 22:09:35.0 +0200
@@ -1,10 +1,6 @@
 language: ruby
 
 rvm:
-  - ruby-2.0.0-p648
-  - ruby-2.1.10
-  - ruby-2.1.0
-  - ruby-2.2.6
   - ruby-2.3.3
   - ruby-2.4.0
   - ruby-head
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CONTRIBUTING.md new/CONTRIBUTING.md
--- old/CONTRIBUTING.md 2017-03-20 12:22:18.0 +0100
+++ new/CONTRIBUTING.md 2019-04-08 22:09:35.0 +0200
@@ -1,6 +1,6 @@
 # Contributing
 
-1. Fork it ( https://github.com/gsamokovarov/bindex/fork )
+1. Fork it ( https://github.com/gsamokovarov/skiptrace/fork )
 2. Create your feature branch (`git checkout -b my-new-feature`)
 3. Commit your changes (`git commit -am 'Add some feature'`)
 4. Push to the branch (`git push origin my-new-feature`)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile new/Gemfile
--- old/Gemfile 2017-03-20 12:22:18.0 +0100
+++ new/Gemfile 2019-04-08 22:09:35.0 +0200
@@ -1,6 +1,6 @@
 source 'https://rubygems.org'
 
-gemspec
+gemspec name: 'skiptrace'
 
 # Rubinius 2.2.2 travis tests complain about this one.
 platforms :rbx do
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2017-03-20 12:22:18.0 +0100
+++ new/README.md   2019-04-08 22:09:35.0 +0200
@@ -1,7 +1,7 @@
-# Bindex [![Build 
Status](https://travis-ci.org/gsamokovarov/bindex.svg?branch=master)](https://travis-ci.org/gsamokovarov/bindex)
+# Skiptrace [![Build 
Status](https://travis-ci.org/gsamokovarov/bindex.svg?branch=master)](https://travis-ci.org/gsamokovarov/bindex)
 
 When Ruby raises an exception, it leaves you a backtrace to help you figure out
-where did the exception originated in. Bindex gives you the bindings as well.
+where did the exception originated in. Skiptrace gives you the bindings as 
well.
 This can help you introspect the state of the Ruby program when at the point
 the exception occurred.
 
@@ -12,13 +12,13 @@
 
 ### API
 
-Bindex defines the following API:
+Skiptrace defines the following API:
 
  Exception#bindings
 
 Returns all the bindings up to the one in which the exception originated in.
 
- Bindex.current_bindings
+