Hello community, here is the log from the commit of package rubygem-gpgme for openSUSE:Factory checked in at 2019-01-21 10:25:45 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-gpgme (Old) and /work/SRC/openSUSE:Factory/.rubygem-gpgme.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-gpgme" Mon Jan 21 10:25:45 2019 rev:9 rq:656376 version:2.0.18 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-gpgme/rubygem-gpgme.changes 2018-02-14 09:28:16.874743547 +0100 +++ /work/SRC/openSUSE:Factory/.rubygem-gpgme.new.28833/rubygem-gpgme.changes 2019-01-21 10:25:49.045720036 +0100 @@ -1,0 +2,6 @@ +Sat Dec 8 16:21:57 UTC 2018 - Stephan Kulow <[email protected]> + +- updated to version 2.0.18 + no changelog found + +------------------------------------------------------------------- Old: ---- gpgme-2.0.16.gem New: ---- gpgme-2.0.18.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-gpgme.spec ++++++ --- /var/tmp/diff_new_pack.Nb1qdJ/_old 2019-01-21 10:25:49.569719460 +0100 +++ /var/tmp/diff_new_pack.Nb1qdJ/_new 2019-01-21 10:25:49.569719460 +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-gpgme -Version: 2.0.16 +Version: 2.0.18 Release: 0 %define mod_name gpgme %define mod_full_name %{mod_name}-%{version} @@ -42,7 +42,7 @@ Source1: rubygem-gpgme-rpmlintrc Source2: gem2rpm.yml Summary: Ruby binding of GPGME -License: LGPL-2.1+ +License: LGPL-2.1-or-later Group: Development/Languages/Ruby %description ++++++ gpgme-2.0.16.gem -> gpgme-2.0.18.gem ++++++ Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ext/gpgme/extconf.rb new/ext/gpgme/extconf.rb --- old/ext/gpgme/extconf.rb 2018-01-03 12:52:10.000000000 +0100 +++ new/ext/gpgme/extconf.rb 2018-11-22 14:05:33.000000000 +0100 @@ -62,11 +62,11 @@ require 'rubygems' require 'mini_portile2' - libgpg_error_recipe = MiniPortile.new('libgpg-error', '1.27').tap do |recipe| + libgpg_error_recipe = MiniPortile.new('libgpg-error', '1.32').tap do |recipe| recipe.target = File.join(ROOT, "ports") recipe.files = [{ :url => "https://www.gnupg.org/ftp/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2", - :sha256 => '4f93aac6fecb7da2b92871bb9ee33032be6a87b174f54abf8ddf0911a22d29d2' + :sha256 => 'c345c5e73cc2332f8d50db84a2280abfb1d8f6d4f1858b9daa30404db44540ca' }] recipe.configure_options = [ '--disable-shared', @@ -82,11 +82,11 @@ recipe.activate end - libassuan_recipe = MiniPortile.new('libassuan', '2.4.3').tap do |recipe| + libassuan_recipe = MiniPortile.new('libassuan', '2.5.1').tap do |recipe| recipe.target = File.join(ROOT, "ports") recipe.files = [{ :url => "https://www.gnupg.org/ftp/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2", - :sha256 => '22843a3bdb256f59be49842abf24da76700354293a066d82ade8134bb5aa2b71' + :sha256 => '47f96c37b4f2aac289f0bc1bacfa8bd8b4b209a488d3d15e2229cb6cc9b26449' }] recipe.configure_options = [ '--disable-shared', @@ -102,11 +102,11 @@ recipe.activate end - gpgme_recipe = MiniPortile.new('gpgme', '1.9.0').tap do |recipe| + gpgme_recipe = MiniPortile.new('gpgme', '1.12.0').tap do |recipe| recipe.target = File.join(ROOT, "ports") recipe.files = [{ :url => "https://www.gnupg.org/ftp/gcrypt/#{recipe.name}/#{recipe.name}-#{recipe.version}.tar.bz2", - :sha256 => '1b29fedb8bfad775e70eafac5b0590621683b2d9869db994568e6401f4034ceb' + :sha256 => 'b4dc951c3743a60e2e120a77892e9e864fb936b2e58e7c77e8581f4d050e8cd8' }] recipe.configure_options = [ '--disable-shared', @@ -116,7 +116,10 @@ # GPGME 1.5.0 assumes gpgsm is present if gpgconf is found. # However, on some systems (e.g. Debian), they are splitted into # separate packages. + '--disable-gpgconf-test', + '--disable-gpg-test', '--disable-gpgsm-test', + '--disable-g13-test', # We only need the C API. '--disable-languages', "CFLAGS=-fPIC #{ENV["CFLAGS"]}", diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/gpgme/version.rb new/lib/gpgme/version.rb --- old/lib/gpgme/version.rb 2018-01-03 12:52:10.000000000 +0100 +++ new/lib/gpgme/version.rb 2018-11-22 14:05:33.000000000 +0100 @@ -1,4 +1,4 @@ module GPGME # The version of GPGME ruby binding you are using - VERSION = "2.0.16" + VERSION = "2.0.18" end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2018-01-03 12:52:10.000000000 +0100 +++ new/metadata 2018-11-22 14:05:33.000000000 +0100 @@ -1,7 +1,7 @@ --- !ruby/object:Gem::Specification name: gpgme version: !ruby/object:Gem::Version - version: 2.0.16 + version: 2.0.18 platform: ruby authors: - Daiki Ueno @@ -9,7 +9,7 @@ autorequire: bindir: bin cert_chain: [] -date: 2018-01-03 00:00:00.000000000 Z +date: 2018-11-22 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: mini_portile2 @@ -131,9 +131,12 @@ - lib/gpgme/sub_key.rb - lib/gpgme/user_id.rb - lib/gpgme/version.rb +- ports/archives/gpgme-1.12.0.tar.bz2 - ports/archives/gpgme-1.9.0.tar.bz2 - ports/archives/libassuan-2.4.3.tar.bz2 +- ports/archives/libassuan-2.5.1.tar.bz2 - ports/archives/libgpg-error-1.27.tar.bz2 +- ports/archives/libgpg-error-1.32.tar.bz2 - test/crypto_test.rb - test/ctx_test.rb - test/data_test.rb @@ -166,7 +169,7 @@ version: '0' requirements: [] rubyforge_project: ruby-gpgme -rubygems_version: 2.5.2 +rubygems_version: 2.7.3 signing_key: specification_version: 4 summary: Ruby binding of GPGME. Binary files old/ports/archives/gpgme-1.12.0.tar.bz2 and new/ports/archives/gpgme-1.12.0.tar.bz2 differ Binary files old/ports/archives/libassuan-2.5.1.tar.bz2 and new/ports/archives/libassuan-2.5.1.tar.bz2 differ Binary files old/ports/archives/libgpg-error-1.32.tar.bz2 and new/ports/archives/libgpg-error-1.32.tar.bz2 differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/test/crypto_test.rb new/test/crypto_test.rb --- old/test/crypto_test.rb 2018-01-03 12:52:10.000000000 +0100 +++ new/test/crypto_test.rb 2018-11-22 14:05:33.000000000 +0100 @@ -63,7 +63,7 @@ remove_key key encrypted.seek 0 - assert_raises GPGME::Error::DecryptFailed do + assert_raises GPGME::Error::NoSecretKey do crypto.decrypt(encrypted) end import_key key @@ -79,7 +79,7 @@ remove_key key encrypted.seek 0 - assert_raises GPGME::Error::DecryptFailed do + assert_raises GPGME::Error::NoSecretKey do crypto.decrypt(encrypted) end import_key key @@ -195,7 +195,7 @@ # it "raises WrongKeyUsage" it "raises DecryptFailed when the decrypting key isn't available" do - assert_raises GPGME::Error::DecryptFailed do + assert_raises GPGME::Error::NoSecretKey do GPGME::Crypto.new.decrypt(TEXT[:unavailable]) end end
