Hello community,

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

Package is "rubygem-pkg-config"

Mon Dec 10 12:25:48 2018 rev:17 rq:653704 version:1.3.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-pkg-config/rubygem-pkg-config.changes    
2018-07-13 10:13:59.157931237 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-pkg-config.new.19453/rubygem-pkg-config.changes
 2018-12-10 12:26:04.078663026 +0100
@@ -1,0 +2,13 @@
+Thu Nov 22 05:27:21 UTC 2018 - Stephan Kulow <co...@suse.com>
+
+- updated to version 1.3.2
+ see installed NEWS
+
+  == 1.3.2 - 2018-11-03
+  
+  === Improvements
+  
+    * Added support for Ruby installed by RubyInstaller for Windows with
+      MSYS2-Devkit.
+
+-------------------------------------------------------------------

Old:
----
  pkg-config-1.3.1.gem

New:
----
  pkg-config-1.3.2.gem

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

Other differences:
------------------
++++++ rubygem-pkg-config.spec ++++++
--- /var/tmp/diff_new_pack.gUhWM7/_old  2018-12-10 12:26:04.490662615 +0100
+++ /var/tmp/diff_new_pack.gUhWM7/_new  2018-12-10 12:26:04.490662615 +0100
@@ -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-pkg-config
-Version:        1.3.1
+Version:        1.3.2
 Release:        0
 %define mod_name pkg-config
 %define mod_full_name %{mod_name}-%{version}

++++++ pkg-config-1.3.1.gem -> pkg-config-1.3.2.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NEWS new/NEWS
--- old/NEWS    2018-04-28 05:34:19.000000000 +0200
+++ new/NEWS    2018-11-03 12:50:57.000000000 +0100
@@ -1,5 +1,12 @@
 = NEWS
 
+== 1.3.2 - 2018-11-03
+
+=== Improvements
+
+  * Added support for Ruby installed by RubyInstaller for Windows with
+    MSYS2-Devkit.
+
 == 1.3.1 - 2018-04-28
 
 === 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-04-28 05:34:19.000000000 +0200
+++ new/lib/pkg-config/version.rb       2018-11-03 12:50:57.000000000 +0100
@@ -15,5 +15,5 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
 
 module PKGConfig
-  VERSION = "1.3.1"
+  VERSION = "1.3.2"
 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-04-28 05:34:19.000000000 +0200
+++ new/lib/pkg-config.rb       2018-11-03 12:50:57.000000000 +0100
@@ -235,9 +235,15 @@
       prefix = ""
       case RUBY_PLATFORM
       when "x86-mingw32"
-        prefix = Dir.glob("c:/msys{32,64,*}").first
+        ruby_prefix = RbConfig::CONFIG["prefix"]
+        candidates = Dir.glob("#{ruby_prefix}/msys{32,64,*}")
+        candidates.concat(Dir.glob("c:/msys{32,64,*}"))
+        prefix = candidates.first
       when "x64-mingw32"
-        prefix = Dir.glob("c:/msys{64,*}").first
+        ruby_prefix = RbConfig::CONFIG["prefix"]
+        candidates = Dir.glob("#{ruby_prefix}/msys{64,*}")
+        candidates.concat(Dir.glob("c:/msys{64,*}"))
+        prefix = candidates.first
       end
       if /\A[a-z]:/i === path
         "#{flag_option}#{path}"
@@ -357,8 +363,12 @@
     ]
     case RUBY_PLATFORM
     when "x86-mingw32"
+      prefix = RbConfig::CONFIG["prefix"]
+      default_paths.concat(Dir.glob("#{prefix}/msys*/mingw32/lib/pkgconfig"))
       default_paths.concat(Dir.glob("c:/msys*/mingw32/lib/pkgconfig"))
     when "x64-mingw32"
+      prefix = RbConfig::CONFIG["prefix"]
+      default_paths.concat(Dir.glob("#{prefix}/msys*/mingw64/lib/pkgconfig"))
       default_paths.concat(Dir.glob("c:/msys*/mingw64/lib/pkgconfig"))
     end
     libdir = ENV["PKG_CONFIG_LIBDIR"]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2018-04-28 05:34:19.000000000 +0200
+++ new/metadata        2018-11-03 12:50:57.000000000 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: pkg-config
 version: !ruby/object:Gem::Version
-  version: 1.3.1
+  version: 1.3.2
 platform: ruby
 authors:
 - Kouhei Sutou
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2018-04-28 00:00:00.000000000 Z
+date: 2018-11-03 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: test-unit


Reply via email to