Hello community,

here is the log from the commit of package rubygem-pkg-config for 
openSUSE:Factory checked in at 2016-03-01 09:40:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rubygem-pkg-config (Old)
 and      /work/SRC/openSUSE:Factory/.rubygem-pkg-config.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "rubygem-pkg-config"

Changes:
--------
--- /work/SRC/openSUSE:Factory/rubygem-pkg-config/rubygem-pkg-config.changes    
2015-02-10 20:22:26.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-pkg-config.new/rubygem-pkg-config.changes   
    2016-03-01 09:40:34.000000000 +0100
@@ -1,0 +2,15 @@
+Thu Jan 21 05:43:30 UTC 2016 - [email protected]
+
+- updated to version 1.1.7
+ see installed NEWS
+
+  == 1.1.7 - 2015-01-16
+  
+    * Added path for FreeBSD to default paths.
+      [Reported by Hajime UMEMOTO]
+  
+  === Thanks
+  
+    * Hajime UMEMOTO
+
+-------------------------------------------------------------------

Old:
----
  pkg-config-1.1.6.gem

New:
----
  pkg-config-1.1.7.gem

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

Other differences:
------------------
++++++ rubygem-pkg-config.spec ++++++
--- /var/tmp/diff_new_pack.1L8aA1/_old  2016-03-01 09:40:35.000000000 +0100
+++ /var/tmp/diff_new_pack.1L8aA1/_new  2016-03-01 09:40:36.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-pkg-config
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -24,7 +24,7 @@
 #
 
 Name:           rubygem-pkg-config
-Version:        1.1.6
+Version:        1.1.7
 Release:        0
 %define mod_name pkg-config
 %define mod_full_name %{mod_name}-%{version}
@@ -49,7 +49,7 @@
 
 %install
 %gem_install \
-  --doc-files="README.rdoc" \
+  --doc-files="NEWS README.rdoc" \
   -f
 
 %gem_packages

++++++ pkg-config-1.1.6.gem -> pkg-config-1.1.7.gem ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NEWS new/NEWS
--- old/NEWS    2014-11-12 08:29:58.000000000 +0100
+++ new/NEWS    2016-01-06 06:10:37.000000000 +0100
@@ -1,5 +1,14 @@
 = NEWS
 
+== 1.1.7 - 2015-01-16
+
+  * Added path for FreeBSD to default paths.
+    [Reported by Hajime UMEMOTO]
+
+=== Thanks
+
+  * Hajime UMEMOTO
+
 == 1.1.6 - 2014/11/12
 
   * Supported Ruby 2.1.
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       2014-11-12 08:29:58.000000000 +0100
+++ new/lib/pkg-config/version.rb       2016-01-06 06:10:37.000000000 +0100
@@ -15,5 +15,5 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
 
 module PKGConfig
-  VERSION = "1.1.6"
+  VERSION = "1.1.7"
 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       2014-11-12 08:29:58.000000000 +0100
+++ new/lib/pkg-config.rb       2016-01-06 06:10:37.000000000 +0100
@@ -1,4 +1,4 @@
-# Copyright 2008-2013 Kouhei Sutou <[email protected]>
+# Copyright 2008-2016 Kouhei Sutou <[email protected]>
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -303,16 +303,20 @@
 
   def guess_default_path
     arch_depended_path = Dir.glob('/usr/lib/*/pkgconfig').join(SEPARATOR)
-    default_path = ["/usr/local/lib64/pkgconfig",
-                    "/usr/local/lib/pkgconfig",
-                    "/usr/local/libdata/pkgconfig",
-                    "/opt/local/lib/pkgconfig",
-                    arch_depended_path,
-                    "/usr/lib64/pkgconfig",
-                    "/usr/lib/pkgconfig",
-                    "/usr/X11/lib/pkgconfig/",
-                    "/opt/X11/lib/pkgconfig/",
-                    "/usr/share/pkgconfig"].join(SEPARATOR)
+    default_paths = [
+      "/usr/local/lib64/pkgconfig",
+      "/usr/local/lib/pkgconfig",
+      "/usr/local/libdata/pkgconfig",
+      "/opt/local/lib/pkgconfig",
+      arch_depended_path,
+      "/usr/lib64/pkgconfig",
+      "/usr/lib/pkgconfig",
+      "/usr/libdata/pkgconfig",
+      "/usr/X11/lib/pkgconfig",
+      "/opt/X11/lib/pkgconfig",
+      "/usr/share/pkgconfig",
+    ]
+    default_path = default_paths.join(SEPARATOR)
     libdir = ENV["PKG_CONFIG_LIBDIR"]
     default_path = [libdir, default_path].join(SEPARATOR) if libdir
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata        2014-11-12 08:29:58.000000000 +0100
+++ new/metadata        2016-01-06 06:10:37.000000000 +0100
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: pkg-config
 version: !ruby/object:Gem::Version
-  version: 1.1.6
+  version: 1.1.7
 platform: ruby
 authors:
 - Kouhei Sutou
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2014-11-12 00:00:00.000000000 Z
+date: 2016-01-06 00:00:00.000000000 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: test-unit
@@ -89,10 +89,11 @@
       version: '0'
 requirements: []
 rubyforge_project: cairo
-rubygems_version: 2.2.2
+rubygems_version: 2.4.5.1
 signing_key: 
 specification_version: 4
 summary: A pkg-config implementation for Ruby
 test_files:
-- test/test_pkg_config.rb
 - test/run-test.rb
+- test/test_pkg_config.rb
+has_rdoc: 


Reply via email to