Hello community,

here is the log from the commit of package rubygem-unf_ext for openSUSE:Factory 
checked in at 2019-06-12 13:00:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-unf_ext (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-unf_ext.new.4811 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-unf_ext"

Wed Jun 12 13:00:53 2019 rev:5 rq:706032 version:0.0.7.6

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-unf_ext/rubygem-unf_ext.changes  
2018-03-06 10:46:26.674112149 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-unf_ext.new.4811/rubygem-unf_ext.changes    
    2019-06-12 13:00:54.693305857 +0200
@@ -1,0 +2,10 @@
+Sun May  5 09:47:48 UTC 2019 - Stephan Kulow <[email protected]>
+
+- updated to version 0.0.7.6
+ see installed CHANGELOG.md
+
+  ## 0.0.7.6 (2019-03-19)
+  
+  - Version bump just for adding Windows binaries for Ruby 2.6.
+
+-------------------------------------------------------------------

Old:
----
  unf_ext-0.0.7.5.gem

New:
----
  unf_ext-0.0.7.6.gem

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

Other differences:
------------------
++++++ rubygem-unf_ext.spec ++++++
--- /var/tmp/diff_new_pack.4uONsd/_old  2019-06-12 13:00:55.541305668 +0200
+++ /var/tmp/diff_new_pack.4uONsd/_new  2019-06-12 13:00:55.549305667 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-unf_ext
 #
-# Copyright (c) 2018 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,7 +24,7 @@
 #
 
 Name:           rubygem-unf_ext
-Version:        0.0.7.5
+Version:        0.0.7.6
 Release:        0
 %define mod_name unf_ext
 %define mod_full_name %{mod_name}-%{version}

++++++ unf_ext-0.0.7.5.gem -> unf_ext-0.0.7.6.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml     2018-02-06 06:47:43.000000000 +0100
+++ new/.travis.yml     2019-04-20 03:35:33.000000000 +0200
@@ -7,8 +7,9 @@
   - 2.0
   - 2.1
   - 2.2
-  - 2.3.4
-  - 2.4.1
+  - 2.3
+  - 2.4
+  - 2.5
   - ruby-head
   - rbx-18mode
   - rbx-19mode
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md    2018-02-06 06:47:43.000000000 +0100
+++ new/CHANGELOG.md    2019-04-20 03:35:33.000000000 +0200
@@ -1,3 +1,7 @@
+## 0.0.7.6 (2019-03-19)
+
+- Version bump just for adding Windows binaries for Ruby 2.6.
+
 ## 0.0.7.5 (2018-02-06)
 
 - Version bump just for adding Windows binaries for Ruby 2.5.
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/unf_ext/extconf.rb new/ext/unf_ext/extconf.rb
--- old/ext/unf_ext/extconf.rb  2018-02-06 06:47:43.000000000 +0100
+++ new/ext/unf_ext/extconf.rb  2019-04-20 03:35:33.000000000 +0200
@@ -4,6 +4,26 @@
   $LDFLAGS << ' ' << `#{CONFIG['CC']} -print-file-name=libstdc++.a`.chomp
 else
   have_library('stdc++')
+
+  case RbConfig::CONFIG['host_os']
+  when /solaris(!?2.11)/
+    # Do a little trickery here to enable C++ standard on Solaris 11 if found.
+    # This also forces 64bit compilation mode.
+    $CXX = CONFIG['CXX']
+    $CXX << ' ' << '-m64'
+    $CFLAGS = CONFIG['CFLAGS'].gsub(/-std=c99/, '')
+    $CFLAGS << ' ' << '-m64 -std=c++11'
+    $CPPFLAGS = CONFIG['CFLAGS'].gsub(/-std=c99/, '')
+    $CPPFLAGS << ' ' << '-m64 -std=c++11'
+    $CXXFLAGS = CONFIG['CFLAGS'].gsub(/-std=c99/, '')
+    $CXXFLAGS << ' ' << '-m64 -std=c++11'
+  when /aix/
+    # Compiler flags necessary on AIX.
+    # rubocop:disable Style/GlobalVars
+    $CFLAGS << ' ' << '-D_ALL_SOURCE=1'
+    $CPPFLAGS << ' ' << '-D_ALL_SOURCE=1'
+    $CXXFLAGS << ' ' << '-D_ALL_SOURCE=1'
+  end
 end
 
 create_makefile 'unf_ext'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/unf_ext/version.rb new/lib/unf_ext/version.rb
--- old/lib/unf_ext/version.rb  2018-02-06 06:47:43.000000000 +0100
+++ new/lib/unf_ext/version.rb  2019-04-20 03:35:33.000000000 +0200
@@ -1,5 +1,5 @@
 module UNF
   class Normalizer
-    VERSION = "0.0.7.5"
+    VERSION = "0.0.7.6"
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2018-02-06 06:47:43.000000000 +0100
+++ new/metadata        2019-04-20 03:35:33.000000000 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: unf_ext
 version: !ruby/object:Gem::Version
-  version: 0.0.7.5
+  version: 0.0.7.6
 platform: ruby
 authors:
 - Takeru Ohta
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2018-02-06 00:00:00.000000000 Z
+date: 2019-04-20 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rake
@@ -87,14 +87,14 @@
     requirements:
     - - "~>"
       - !ruby/object:Gem::Version
-        version: 0.6.0
+        version: 0.7.0
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
     requirements:
     - - "~>"
       - !ruby/object:Gem::Version
-        version: 0.6.0
+        version: 0.7.0
 description: Unicode Normalization Form support library for CRuby
 email:
 - [email protected]
@@ -146,8 +146,7 @@
     - !ruby/object:Gem::Version
       version: '0'
 requirements: []
-rubyforge_project: 
-rubygems_version: 2.6.14
+rubygems_version: 3.0.3
 signing_key: 
 specification_version: 4
 summary: Unicode Normalization Form support library for CRuby
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/unf_ext.gemspec new/unf_ext.gemspec
--- old/unf_ext.gemspec 2018-02-06 06:47:44.000000000 +0100
+++ new/unf_ext.gemspec 2019-04-20 03:35:33.000000000 +0200
@@ -38,5 +38,5 @@
   gem.add_development_dependency("rdoc", ["> 2.4.2"])
   gem.add_development_dependency("bundler", [">= 1.2"])
   gem.add_development_dependency("rake-compiler", [">= 0.7.9"])
-  gem.add_development_dependency("rake-compiler-dock", ["~> 0.6.0"])
+  gem.add_development_dependency("rake-compiler-dock", ["~> 0.7.0"])
 end


Reply via email to