Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-pkg-config for openSUSE:Factory checked in at 2022-08-07 18:33:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-pkg-config (Old) and /work/SRC/openSUSE:Factory/.rubygem-pkg-config.new.1521 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-pkg-config" Sun Aug 7 18:33:55 2022 rev:24 rq:993510 version:1.4.9 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-pkg-config/rubygem-pkg-config.changes 2022-01-27 23:16:39.939103042 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-pkg-config.new.1521/rubygem-pkg-config.changes 2022-08-07 18:34:04.081176962 +0200 @@ -1,0 +2,23 @@ +Thu Aug 4 13:22:51 UTC 2022 - Stephan Kulow <co...@suse.com> + +updated to version 1.4.9 + see installed NEWS + + == 1.4.9 - 2022-07-31 + + This is a bug fix release of 1.4.8. All 1.4.8 users should be upgraded + to 1.4.9. + + === Fixes + + * Fixed a regression bug in 1.4.8 that PkgConfig.have_package can't + detect nonexistent package. + + == 1.4.8 - 2022-07-30 + + === Improvements + + * Added support for showing found package version. + + +------------------------------------------------------------------- Old: ---- pkg-config-1.4.7.gem New: ---- pkg-config-1.4.9.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-pkg-config.spec ++++++ --- /var/tmp/diff_new_pack.SF2yJG/_old 2022-08-07 18:34:04.537178288 +0200 +++ /var/tmp/diff_new_pack.SF2yJG/_new 2022-08-07 18:34:04.541178300 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-pkg-config -Version: 1.4.7 +Version: 1.4.9 Release: 0 %define mod_name pkg-config %define mod_full_name %{mod_name}-%{version} ++++++ pkg-config-1.4.7.gem -> pkg-config-1.4.9.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/NEWS new/NEWS --- old/NEWS 2022-01-16 05:29:03.000000000 +0100 +++ new/NEWS 2022-07-30 22:18:46.000000000 +0200 @@ -1,5 +1,21 @@ = NEWS +== 1.4.9 - 2022-07-31 + +This is a bug fix release of 1.4.8. All 1.4.8 users should be upgraded +to 1.4.9. + +=== Fixes + + * Fixed a regression bug in 1.4.8 that PkgConfig.have_package can't + detect nonexistent package. + +== 1.4.8 - 2022-07-30 + +=== Improvements + + * Added support for showing found package version. + == 1.4.7 - 2022-01-16 === 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 2022-01-16 05:29:03.000000000 +0100 +++ new/lib/pkg-config/version.rb 2022-07-30 22:18:46.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright 2012-2021 Sutou Kouhei <k...@cozmixng.org> +# Copyright 2012-2022 Sutou Kouhei <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.4.7" + VERSION = "1.4.9" 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 2022-01-16 05:29:03.000000000 +0100 +++ new/lib/pkg-config.rb 2022-07-30 22:18:46.000000000 +0200 @@ -1,4 +1,4 @@ -# Copyright 2008-2021 Sutou Kouhei <k...@cozmixng.org> +# Copyright 2008-2022 Sutou Kouhei <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 @@ -598,9 +598,14 @@ message << " version (>= #{major}.#{minor}.#{micro})" end major ||= 0 - enough_version = checking_for(checking_message(message)) do - check_version?(pkg, major, minor, micro) + result = checking_for(checking_message(message), "%s") do + if check_version?(pkg, major, minor, micro) + "yes (#{modversion(pkg)})" + else + "no" + end end + enough_version = (result != "no") if enough_version libraries = libs_only_l(pkg) dldflags = libs(pkg) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2022-01-16 05:29:03.000000000 +0100 +++ new/metadata 2022-07-30 22:18:46.000000000 +0200 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: pkg-config version: !ruby/object:Gem::Version - version: 1.4.7 + version: 1.4.9 platform: ruby authors: - Kouhei Sutou autorequire: bindir: bin cert_chain: [] -date: 2022-01-16 00:00:00.000000000 Z +date: 2022-07-30 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: test-unit