Hello community,

here is the log from the commit of package rubygem-pkg-config for 
openSUSE:Factory checked in at 2018-07-13 10:13:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-pkg-config (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-pkg-config.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-pkg-config"

Fri Jul 13 10:13:56 2018 rev:16 rq:621021 version:1.3.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-pkg-config/rubygem-pkg-config.changes    
2018-02-13 10:27:39.504866091 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-pkg-config.new/rubygem-pkg-config.changes   
    2018-07-13 10:13:59.157931237 +0200
@@ -1,0 +2,31 @@
+Sat Apr 28 04:12:34 UTC 2018 - factory-a...@kulow.org
+
+- updated to version 1.3.1
+ see installed NEWS
+
+  == 1.3.1 - 2018-04-28
+  
+  === Improvements
+  
+    * Changed search order to find C flags.
+      [GitHub#6][Reported by HIGUCHI Daisuke]
+      * Before: Requires -> Requires.private
+      * After: Requires.private -> Requires
+  
+  === Thanks
+  
+    * HIGUCHI Daisuke
+
+-------------------------------------------------------------------
+Tue Apr 10 14:21:53 UTC 2018 - factory-a...@kulow.org
+
+- updated to version 1.3.0
+ see installed NEWS
+
+  == 1.3.0 - 2018-04-10
+  
+  === Improvements
+  
+    * Added Ruby 2.0 on Ubuntu Trusty again.
+
+-------------------------------------------------------------------

Old:
----
  pkg-config-1.2.9.gem

New:
----
  pkg-config-1.3.1.gem

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

Other differences:
------------------
++++++ rubygem-pkg-config.spec ++++++
--- /var/tmp/diff_new_pack.OcXsHY/_old  2018-07-13 10:13:59.641931806 +0200
+++ /var/tmp/diff_new_pack.OcXsHY/_new  2018-07-13 10:13:59.641931806 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-pkg-config
-Version:        1.2.9
+Version:        1.3.1
 Release:        0
 %define mod_name pkg-config
 %define mod_full_name %{mod_name}-%{version}
@@ -36,7 +36,7 @@
 Source:         https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:        gem2rpm.yml
 Summary:        A pkg-config implementation for Ruby
-License:        LGPL-2.1+
+License:        LGPL-2.1-or-later
 Group:          Development/Languages/Ruby
 
 %description

++++++ pkg-config-1.2.9.gem -> pkg-config-1.3.1.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NEWS new/NEWS
--- old/NEWS    2018-01-13 04:51:02.000000000 +0100
+++ new/NEWS    2018-04-28 05:34:19.000000000 +0200
@@ -1,5 +1,24 @@
 = NEWS
 
+== 1.3.1 - 2018-04-28
+
+=== Improvements
+
+  * Changed search order to find C flags.
+    [GitHub#6][Reported by HIGUCHI Daisuke]
+    * Before: Requires -> Requires.private
+    * After: Requires.private -> Requires
+
+=== Thanks
+
+  * HIGUCHI Daisuke
+
+== 1.3.0 - 2018-04-10
+
+=== Improvements
+
+  * Added Ruby 2.0 on Ubuntu Trusty again.
+
 == 1.2.9 - 2018-01-13
 
 === Improvements
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/pkg-config/version.rb 
new/lib/pkg-config/version.rb
--- old/lib/pkg-config/version.rb       2018-01-13 04:51:02.000000000 +0100
+++ new/lib/pkg-config/version.rb       2018-04-28 05:34:19.000000000 +0200
@@ -1,4 +1,4 @@
-# Copyright 2012-2017 Kouhei Sutou <k...@cozmixng.org>
+# Copyright 2012-2018 Kouhei Sutou <k...@cozmixng.org>
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -15,5 +15,5 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
 
 module PKGConfig
-  VERSION = "1.2.9"
+  VERSION = "1.3.1"
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/pkg-config.rb new/lib/pkg-config.rb
--- old/lib/pkg-config.rb       2018-01-13 04:51:02.000000000 +0100
+++ new/lib/pkg-config.rb       2018-04-28 05:34:19.000000000 +0200
@@ -208,10 +208,10 @@
   private
   def collect_cflags
     cflags_set = [declaration("Cflags")]
-    cflags_set += required_packages.collect do |package|
+    cflags_set += private_required_packages.collect do |package|
       self.class.new(package, @options).cflags
     end
-    cflags_set += private_required_packages.collect do |package|
+    cflags_set += required_packages.collect do |package|
       self.class.new(package, @options).cflags
     end
     all_cflags = normalize_cflags(Shellwords.split(cflags_set.join(" ")))
@@ -520,7 +520,9 @@
         $LDFLAGS += ' ' + dldflags
       end
       $CFLAGS += ' ' + cflags_only_other(pkg)
-      $CXXFLAGS += ' ' + cflags_only_other(pkg)
+      if defined?($CXXFLAGS)
+        $CXXFLAGS += ' ' + cflags_only_other(pkg)
+      end
       $INCFLAGS += ' ' + cflags_only_I(pkg)
     end
     enough_version
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2018-01-13 04:51:02.000000000 +0100
+++ new/metadata        2018-04-28 05:34:19.000000000 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: pkg-config
 version: !ruby/object:Gem::Version
-  version: 1.2.9
+  version: 1.3.1
 platform: ruby
 authors:
 - Kouhei Sutou
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2018-01-13 00:00:00.000000000 Z
+date: 2018-04-28 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: test-unit
@@ -89,7 +89,7 @@
       version: '0'
 requirements: []
 rubyforge_project: cairo
-rubygems_version: 2.5.2.2
+rubygems_version: 2.7.6
 signing_key: 
 specification_version: 4
 summary: A pkg-config implementation for Ruby


Reply via email to