Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package rubygem-gssapi for openSUSE:Factory checked in at 2021-01-21 21:55:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-gssapi (Old) and /work/SRC/openSUSE:Factory/.rubygem-gssapi.new.28504 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-gssapi" Thu Jan 21 21:55:42 2021 rev:3 rq:865193 version:1.3.1 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-gssapi/rubygem-gssapi.changes 2019-06-19 21:00:00.110067158 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-gssapi.new.28504/rubygem-gssapi.changes 2021-01-21 21:55:43.285809227 +0100 @@ -1,0 +2,7 @@ +Wed Jan 20 12:45:45 UTC 2021 - Stephan Kulow <[email protected]> + +updated to version 1.3.1 + see installed Changelog.md + + +------------------------------------------------------------------- Old: ---- gssapi-1.3.0.gem New: ---- gssapi-1.3.1.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-gssapi.spec ++++++ --- /var/tmp/diff_new_pack.pQzOQJ/_old 2021-01-21 21:55:43.825809603 +0100 +++ /var/tmp/diff_new_pack.pQzOQJ/_new 2021-01-21 21:55:43.825809603 +0100 @@ -1,7 +1,7 @@ # # spec file for package rubygem-gssapi # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2021 SUSE LLC # # 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-gssapi -Version: 1.3.0 +Version: 1.3.1 Release: 0 %define mod_name gssapi %define mod_full_name %{mod_name}-%{version} @@ -33,7 +33,7 @@ BuildRequires: %{rubygem gem2rpm} BuildRequires: %{rubygem rdoc > 3.10} BuildRequires: ruby-macros >= 5 -Url: http://github.com/zenchild/gssapi +URL: http://github.com/zenchild/gssapi Source: https://rubygems.org/gems/%{mod_full_name}.gem Source1: gem2rpm.yml Summary: A FFI wrapper around the system GSSAPI library ++++++ gssapi-1.3.0.gem -> gssapi-1.3.1.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/VERSION new/VERSION --- old/VERSION 2019-04-30 20:23:26.000000000 +0200 +++ new/VERSION 2020-11-24 19:59:46.000000000 +0100 @@ -1 +1 @@ -1.3.0 +1.3.1 Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gssapi.gemspec new/gssapi.gemspec --- old/gssapi.gemspec 2019-04-30 20:23:26.000000000 +0200 +++ new/gssapi.gemspec 2020-11-24 19:59:46.000000000 +0100 @@ -31,4 +31,6 @@ gem.required_ruby_version = '>= 1.8.7' gem.add_runtime_dependency 'ffi', '>= 1.0.1' + + gem.add_development_dependency "pry-byebug" end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lib/gssapi/lib_gssapi.rb new/lib/gssapi/lib_gssapi.rb --- old/lib/gssapi/lib_gssapi.rb 2019-04-30 20:23:26.000000000 +0200 +++ new/lib/gssapi/lib_gssapi.rb 2020-11-24 19:59:46.000000000 +0100 @@ -179,11 +179,13 @@ class GssCtxIdT < GssPointer def self.release_ptr(context_ptr) min_stat = FFI::MemoryPointer.new :OM_uint32 - maj_stat = LibGSSAPI.gss_delete_sec_context(min_stat, context_ptr, LibGSSAPI::GSS_C_NO_BUFFER) + ptr_p = FFI::MemoryPointer.new :pointer + ctx_ptr = ptr_p.write_pointer(context_ptr) + maj_stat = LibGSSAPI.gss_delete_sec_context(min_stat, ctx_ptr, LibGSSAPI::GSS_C_NO_BUFFER) end def self.gss_c_no_context - self.new(GSSAPI::LibGSSAPI::GSS_C_NO_CONTEXT) + GssPointer.new(GSSAPI::LibGSSAPI::GSS_C_NO_CONTEXT) end end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2019-04-30 20:23:26.000000000 +0200 +++ new/metadata 2020-11-24 19:59:46.000000000 +0100 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: gssapi version: !ruby/object:Gem::Version - version: 1.3.0 + version: 1.3.1 platform: ruby authors: - Dan Wanek -autorequire: +autorequire: bindir: bin cert_chain: [] -date: 2019-04-30 00:00:00.000000000 Z +date: 2020-11-24 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: ffi @@ -24,6 +24,20 @@ - - ">=" - !ruby/object:Gem::Version version: 1.0.1 +- !ruby/object:Gem::Dependency + name: pry-byebug + requirement: !ruby/object:Gem::Requirement + requirements: + - - ">=" + - !ruby/object:Gem::Version + version: '0' + type: :development + prerelease: false + version_requirements: !ruby/object:Gem::Requirement + requirements: + - - ">=" + - !ruby/object:Gem::Version + version: '0' description: |2 A FFI wrapper around the system GSSAPI library. Please make sure and read the Yard docs or standard GSSAPI documentation if you have any questions. @@ -65,7 +79,7 @@ licenses: - MIT metadata: {} -post_install_message: +post_install_message: rdoc_options: - "-x" - test/ @@ -84,9 +98,8 @@ - !ruby/object:Gem::Version version: '0' requirements: [] -rubyforge_project: -rubygems_version: 2.7.9 -signing_key: +rubygems_version: 3.0.8 +signing_key: specification_version: 4 summary: A FFI wrapper around the system GSSAPI library. test_files: []
