Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package rubygem-rdiscount for 
openSUSE:Factory checked in at 2022-02-22 21:17:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-rdiscount (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-rdiscount.new.1958 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-rdiscount"

Tue Feb 22 21:17:56 2022 rev:2 rq:956583 version:2.2.0.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-rdiscount/rubygem-rdiscount.changes      
2018-02-07 18:40:16.443384433 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rdiscount.new.1958/rubygem-rdiscount.changes
    2022-02-22 21:18:24.886288694 +0100
@@ -1,0 +2,6 @@
+Mon Feb 21 11:35:56 UTC 2022 - Stephan Kulow <co...@suse.com>
+
+updated to version 2.2.0.2
+  no changelog found
+
+-------------------------------------------------------------------

Old:
----
  rdiscount-2.2.0.1.gem

New:
----
  rdiscount-2.2.0.2.gem

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

Other differences:
------------------
++++++ rubygem-rdiscount.spec ++++++
--- /var/tmp/diff_new_pack.Kr762L/_old  2022-02-22 21:18:25.362288783 +0100
+++ /var/tmp/diff_new_pack.Kr762L/_new  2022-02-22 21:18:25.370288784 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-rdiscount
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2022 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,7 +24,7 @@
 #
 
 Name:           rubygem-rdiscount
-Version:        2.2.0.1
+Version:        2.2.0.2
 Release:        0
 %define mod_name rdiscount
 %define mod_full_name %{mod_name}-%{version}
@@ -34,13 +34,14 @@
 # and ">" operators. Otherwise it won't build.
 # This is a manual hack until the != operator for ruby gets correctly 
 # translated by gem2rpm
+BuildRequires:  ruby-devel > 1.9.2
 # /MANUAL
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
-BuildRequires:  %{rubydevel > 1.9.2}
+#BuildRequires:  %{rubydevel < 1.9.2}
 BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  ruby-macros >= 5
 BuildRequires:  update-alternatives
-Url:            http://dafoster.net/projects/rdiscount/
+URL:            http://dafoster.net/projects/rdiscount/
 Source:         https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:        rubygem-rdiscount-rpmlintrc
 Source2:        gem2rpm.yml

++++++ rdiscount-2.2.0.1.gem -> rdiscount-2.2.0.2.gem ++++++
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/rdiscount.c new/ext/rdiscount.c
--- old/ext/rdiscount.c 2016-05-08 02:57:51.000000000 +0200
+++ new/ext/rdiscount.c 2020-08-10 03:30:47.000000000 +0200
@@ -39,6 +39,28 @@
 
 static VALUE rb_cRDiscount;
 
+int rb_rdiscount__get_flags(VALUE ruby_obj)
+{
+    AccessorFlagPair *entry;
+    
+    /* compile flags */
+    int flags = MKD_TABSTOP | MKD_NOHEADER | MKD_DLEXTRA | MKD_FENCEDCODE | 
MKD_GITHUBTAGS;
+    
+    /* The "smart" accessor turns OFF the MKD_NOPANTS flag. */
+    if ( rb_funcall(ruby_obj, rb_intern("smart"), 0) != Qtrue ) {
+        flags = flags | MKD_NOPANTS;
+    }
+    
+    /* Handle standard flags declared in ACCESSOR_2_FLAG */
+    for ( entry = ACCESSOR_2_FLAG; entry->accessor_name; entry++ ) {
+        if ( rb_funcall(ruby_obj, rb_intern(entry->accessor_name), 0) == Qtrue 
) {
+            flags = flags | entry->flag;
+        }
+    }
+    
+    return flags;
+}
+
 static VALUE
 rb_rdiscount_to_html(int argc, VALUE *argv, VALUE self)
 {
@@ -117,28 +139,6 @@
     return buf;
 }
 
-int rb_rdiscount__get_flags(VALUE ruby_obj)
-{
-    AccessorFlagPair *entry;
-    
-    /* compile flags */
-    int flags = MKD_TABSTOP | MKD_NOHEADER | MKD_DLEXTRA | MKD_FENCEDCODE | 
MKD_GITHUBTAGS;
-    
-    /* The "smart" accessor turns OFF the MKD_NOPANTS flag. */
-    if ( rb_funcall(ruby_obj, rb_intern("smart"), 0) != Qtrue ) {
-        flags = flags | MKD_NOPANTS;
-    }
-    
-    /* Handle standard flags declared in ACCESSOR_2_FLAG */
-    for ( entry = ACCESSOR_2_FLAG; entry->accessor_name; entry++ ) {
-        if ( rb_funcall(ruby_obj, rb_intern(entry->accessor_name), 0) == Qtrue 
) {
-            flags = flags | entry->flag;
-        }
-    }
-    
-    return flags;
-}
-
 
 void Init_rdiscount()
 {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rdiscount.rb new/lib/rdiscount.rb
--- old/lib/rdiscount.rb        2016-05-08 02:57:51.000000000 +0200
+++ new/lib/rdiscount.rb        2020-08-10 03:30:47.000000000 +0200
@@ -24,7 +24,7 @@
 #   end
 #
 class RDiscount
-  VERSION = '2.2.0.1'
+  VERSION = '2.2.0.2'
 
   # Original Markdown formatted text.
   attr_reader :text
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2016-05-08 02:57:51.000000000 +0200
+++ new/metadata        2020-08-10 03:30:47.000000000 +0200
@@ -1,19 +1,19 @@
 --- !ruby/object:Gem::Specification
 name: rdiscount
 version: !ruby/object:Gem::Version
-  version: 2.2.0.1
+  version: 2.2.0.2
 platform: ruby
 authors:
 - Ryan Tomayko
 - David Loren Parsons
 - Andrew White
 - David Foster
-autorequire: 
+autorequire:
 bindir: bin
 cert_chain: []
-date: 2016-05-07 00:00:00.000000000 Z
+date: 2020-08-09 00:00:00.000000000 Z
 dependencies: []
-description: 
+description:
 email: da...@dafoster.net
 executables:
 - rdiscount
@@ -74,7 +74,7 @@
 licenses:
 - BSD-3-Clause
 metadata: {}
-post_install_message: 
+post_install_message:
 rdoc_options: []
 require_paths:
 - lib
@@ -89,9 +89,8 @@
     - !ruby/object:Gem::Version
       version: '0'
 requirements: []
-rubyforge_project: wink
-rubygems_version: 2.5.1
-signing_key: 
+rubygems_version: 3.0.8
+signing_key:
 specification_version: 4
 summary: Fast Implementation of Gruber's Markdown in C
 test_files:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rdiscount.gemspec new/rdiscount.gemspec
--- old/rdiscount.gemspec       2016-05-08 02:57:51.000000000 +0200
+++ new/rdiscount.gemspec       2020-08-10 03:30:47.000000000 +0200
@@ -1,8 +1,8 @@
 Gem::Specification.new do |s|
   s.name = 'rdiscount'
-  s.version = '2.2.0.1'
+  s.version = '2.2.0.2'
   s.summary = "Fast Implementation of Gruber's Markdown in C"
-  s.date = '2016-05-07'
+  s.date = '2020-08-09'
   s.email = 'da...@dafoster.net'
   s.homepage = 'http://dafoster.net/projects/rdiscount/'
   s.authors = ["Ryan Tomayko", "David Loren Parsons", "Andrew White", "David 
Foster"]

Reply via email to