Hello community, here is the log from the commit of package rubygem-bcrypt for openSUSE:Factory checked in at 2020-09-14 12:30:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rubygem-bcrypt (Old) and /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new.4249 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rubygem-bcrypt" Mon Sep 14 12:30:50 2020 rev:11 rq:833979 version:3.1.16 Changes: -------- --- /work/SRC/openSUSE:Factory/rubygem-bcrypt/rubygem-bcrypt.changes 2020-08-24 15:09:56.870594195 +0200 +++ /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new.4249/rubygem-bcrypt.changes 2020-09-14 12:31:58.073237907 +0200 @@ -1,0 +2,7 @@ +Sat Sep 12 12:24:17 UTC 2020 - Manuel Schnitzer <[email protected]> + +- updated to version 3.1.16 + + * Fix compilation on FreeBSD. [GH #234] + +------------------------------------------------------------------- Old: ---- bcrypt-3.1.15.gem New: ---- bcrypt-3.1.16.gem ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rubygem-bcrypt.spec ++++++ --- /var/tmp/diff_new_pack.xcRM5A/_old 2020-09-14 12:31:58.981238485 +0200 +++ /var/tmp/diff_new_pack.xcRM5A/_new 2020-09-14 12:31:58.981238485 +0200 @@ -24,7 +24,7 @@ # Name: rubygem-bcrypt -Version: 3.1.15 +Version: 3.1.16 Release: 0 %define mod_name bcrypt %define mod_full_name %{mod_name}-%{version} ++++++ bcrypt-3.1.15.gem -> bcrypt-3.1.16.gem ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/.travis.yml new/.travis.yml --- old/.travis.yml 2020-07-21 23:21:56.000000000 +0200 +++ new/.travis.yml 2020-09-03 22:47:23.000000000 +0200 @@ -1,8 +1,6 @@ language: ruby before_install: - "echo 'gem: --no-rdoc --no-ri' > ~/.gemrc" - - gem update --system 2.7.8 - - gem install bundler -v 1.17.3 rvm: - 2.0 - 2.1 @@ -11,6 +9,7 @@ - 2.4 - 2.5 - 2.6 + - 2.7 - ruby-head - jruby-head - rbx-3 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/CHANGELOG new/CHANGELOG --- old/CHANGELOG 2020-07-21 23:21:56.000000000 +0200 +++ new/CHANGELOG 2020-09-03 22:47:23.000000000 +0200 @@ -1,3 +1,6 @@ +3.1.16 Sep 3 2020 + - Fix compilation on FreeBSD. [GH #234] + 3.1.15 July 21 2020 - Remove GVL optimization. Apparently it breaks things [GH #230] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Gemfile.lock new/Gemfile.lock --- old/Gemfile.lock 2020-07-21 23:21:56.000000000 +0200 +++ new/Gemfile.lock 1970-01-01 01:00:00.000000000 +0100 @@ -1,37 +0,0 @@ -PATH - remote: . - specs: - bcrypt (3.1.15) - -GEM - remote: https://rubygems.org/ - specs: - diff-lcs (1.4.4) - rake (13.0.1) - rake-compiler (0.9.9) - rake - rspec (3.9.0) - rspec-core (~> 3.9.0) - rspec-expectations (~> 3.9.0) - rspec-mocks (~> 3.9.0) - rspec-core (3.9.2) - rspec-support (~> 3.9.3) - rspec-expectations (3.9.2) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.9.0) - rspec-mocks (3.9.1) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.9.0) - rspec-support (3.9.3) - -PLATFORMS - java - ruby - -DEPENDENCIES - bcrypt! - rake-compiler (~> 0.9.2) - rspec (>= 3) - -BUNDLED WITH - 2.2.0.dev diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/bcrypt.gemspec new/bcrypt.gemspec --- old/bcrypt.gemspec 2020-07-21 23:21:56.000000000 +0200 +++ new/bcrypt.gemspec 2020-09-03 22:47:23.000000000 +0200 @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'bcrypt' - s.version = '3.1.15' + s.version = '3.1.16' s.summary = "OpenBSD's bcrypt() password hashing algorithm." s.description = <<-EOF Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ext/mri/wrapper.c new/ext/mri/wrapper.c --- old/ext/mri/wrapper.c 2020-07-21 23:21:56.000000000 +0200 +++ new/ext/mri/wrapper.c 2020-09-03 22:47:23.000000000 +0200 @@ -179,7 +179,7 @@ return _crypt_blowfish_rn(key, setting, (char *)*data, *size); } -char *crypt_r(const char *key, const char *setting, void *data) +char *crypt_r(const char *key, const char *setting, struct crypt_data *data) { return _crypt_retval_magic( crypt_rn(key, setting, data, CRYPT_OUTPUT_SIZE), diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/metadata new/metadata --- old/metadata 2020-07-21 23:21:56.000000000 +0200 +++ new/metadata 2020-09-03 22:47:23.000000000 +0200 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: bcrypt version: !ruby/object:Gem::Version - version: 3.1.15 + version: 3.1.16 platform: ruby authors: - Coda Hale autorequire: bindir: bin cert_chain: [] -date: 2020-07-21 00:00:00.000000000 Z +date: 2020-09-03 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency requirement: !ruby/object:Gem::Requirement @@ -61,7 +61,6 @@ - CHANGELOG - COPYING - Gemfile -- Gemfile.lock - README.md - Rakefile - appveyor.yml
