commit rubygem-bcrypt for openSUSE:Factory

2020-09-14 Thread root
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 
+
+- 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.0 +0200
+++ new/.travis.yml 2020-09-03 22:47:23.0 +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.0 +0200
+++ new/CHANGELOG   2020-09-03 22:47:23.0 +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.lock2020-07-21 23:21:56.0 +0200
+++ new/Gemfile.lock1970-01-01 01:00:00.0 +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.0 +0200
+++ new/bcrypt.gemspec  2020-09-03 22:47:23.0 +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.0 +0200
+++ new/ext/mri/wrapper.c   2020-09-03 22:47:23.0 +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/metadata2020-07-21 23:21:56.0 +0200
+++ new/metadata2020-09-03 22:47:23.0 +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 

commit rubygem-bcrypt for openSUSE:Factory

2020-08-24 Thread root
Hello community,

here is the log from the commit of package rubygem-bcrypt for openSUSE:Factory 
checked in at 2020-08-24 15:09:30

Comparing /work/SRC/openSUSE:Factory/rubygem-bcrypt (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new.3399 (New)


Package is "rubygem-bcrypt"

Mon Aug 24 15:09:30 2020 rev:10 rq:828675 version:3.1.15

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bcrypt/rubygem-bcrypt.changes
2019-07-11 13:16:16.866807319 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new.3399/rubygem-bcrypt.changes  
2020-08-24 15:09:56.870594195 +0200
@@ -1,0 +2,7 @@
+Sat Aug 22 13:00:51 UTC 2020 - Manuel Schnitzer 
+
+- updated to version 3.1.15
+
+  * no changelog found
+
+---

Old:

  bcrypt-3.1.13.gem

New:

  bcrypt-3.1.15.gem



Other differences:
--
++ rubygem-bcrypt.spec ++
--- /var/tmp/diff_new_pack.MNoD7n/_old  2020-08-24 15:09:57.674594586 +0200
+++ /var/tmp/diff_new_pack.MNoD7n/_new  2020-08-24 15:09:57.678594589 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-bcrypt
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 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-bcrypt
-Version:3.1.13
+Version:3.1.15
 Release:0
 %define mod_name bcrypt
 %define mod_full_name %{mod_name}-%{version}
@@ -33,7 +33,7 @@
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{rubygem rdoc > 3.10}
 BuildRequires:  ruby-macros >= 5
-Url:https://github.com/codahale/bcrypt-ruby
+URL:https://github.com/codahale/bcrypt-ruby
 Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:rubygem-bcrypt-rpmlintrc
 Source2:gem2rpm.yml

++ bcrypt-3.1.13.gem -> bcrypt-3.1.15.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2019-05-31 21:05:10.0 +0200
+++ new/.travis.yml 2020-07-21 23:21:56.0 +0200
@@ -14,4 +14,10 @@
   - ruby-head
   - jruby-head
   - rbx-3
+matrix:
+  allow_failures:
+- rvm: ruby-head
+- rvm: jruby-head
+- rvm: rbx-3
+  fast_finish: true
 script: bundle exec rake
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG new/CHANGELOG
--- old/CHANGELOG   2019-05-31 21:05:10.0 +0200
+++ new/CHANGELOG   2020-07-21 23:21:56.0 +0200
@@ -1,94 +1,101 @@
-1.0.0  Feb 27 2007
- - Initial release.
+3.1.15 July 21 2020
+  - Remove GVL optimization.  Apparently it breaks things [GH #230]
 
-2.0.0  Mar 07 2007
- - Removed BCrypt::Password#exactly_equals -- use BCrypt::Password#eql? 
instead.
- - Added BCrypt::Password#is_password?.
- - Refactored out BCrypt::Internals into more useful BCrypt::Engine.
- - Added validation of secrets -- nil is not healthy.
+3.1.14 July 21 2020
+  - Start calibration from the minimum cost supported by the algorithm [GH 
#206 by @sergey-alekseev]
 
-2.0.1  Mar 09 2007
- - Fixed load path issues
- - Fixed crashes when hashing weird values (e.g., false, etc.)
+3.1.13 May 31 2019
+  - No longer include compiled binaries for Windows. See GH #173.
+  - Update C and Java implementations to latest versions [GH #182 by @fonica]
+  - Bump default cost to 12 [GH #181 by @bdewater]
+  - Remove explicit support for Rubies 1.8 and 1.9
+  - Define SKIP_GNU token when building extension (Fixes FreeBSD >= 12) [GH 
#189 by @adam12]
 
-2.0.2  Jun 06 2007
- - Fixed example code in the README [Winson]
- - Fixed Solaris compatibility [Jeremy LaTrasse, Twitter crew]
+3.1.12 May 16 2018
+  - Add support for Ruby 2.3, 2.4, and 2.5 in compiled Windows binaries
+  - Fix compatibility with libxcrypt [GH #164 by @besser82]
 
-2.0.3  May 07 2008
- - Made exception classes descend from StandardError, not Exception [Dan42]
- - Changed BCrypt::Engine.hash to BCrypt::Engine.hash_secret to avoid Merb
-   sorting issues. [Lee Pope]
+3.1.11 Mar 06 2016
+  - Add support for Ruby 2.2 in compiled Windows binaries
 
-2.0.4  Mar 09 2009
-  - Added Ruby 1.9 compatibility. [Genki Takiuchi]
-  - Fixed segfaults on some different types of empty strings. [Mike Pomraning]
+3.1.10 Jan 28 2015
+  - Fix issue with dumping a BCrypt::Password instance to YAML in Ruby 2.2 [GH 
#107 by @mattwildig]
 
-2.0.5  Mar 11 2009
-  - Fixed Ruby 1.8.5 compatibility. [Mike Pomraning]
+3.1.9  Oct 23 2014
+  - Rebuild corrupt binaries
 
-2.1.0  Aug 12 2009
-  - Improved code coverage, unit tests, and build chain. [Hongli Lai]
-  - Ruby 

commit rubygem-bcrypt for openSUSE:Factory

2019-07-11 Thread root
Hello community,

here is the log from the commit of package rubygem-bcrypt for openSUSE:Factory 
checked in at 2019-07-11 13:16:08

Comparing /work/SRC/openSUSE:Factory/rubygem-bcrypt (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new.4615 (New)


Package is "rubygem-bcrypt"

Thu Jul 11 13:16:08 2019 rev:9 rq:713990 version:3.1.13

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bcrypt/rubygem-bcrypt.changes
2018-05-17 18:05:50.786941381 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new.4615/rubygem-bcrypt.changes  
2019-07-11 13:16:16.866807319 +0200
@@ -1,0 +2,7 @@
+Mon Jul  8 07:06:02 UTC 2019 - Manuel Schnitzer 
+
+- updated to version 3.1.13
+
+  * no changelog entry found
+
+---

Old:

  bcrypt-3.1.12.gem

New:

  bcrypt-3.1.13.gem



Other differences:
--
++ rubygem-bcrypt.spec ++
--- /var/tmp/diff_new_pack.omyOuC/_old  2019-07-11 13:16:19.694806428 +0200
+++ /var/tmp/diff_new_pack.omyOuC/_new  2019-07-11 13:16:19.694806428 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-bcrypt
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -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-bcrypt
-Version:3.1.12
+Version:3.1.13
 Release:0
 %define mod_name bcrypt
 %define mod_full_name %{mod_name}-%{version}

++ bcrypt-3.1.12.gem -> bcrypt-3.1.13.gem ++
 3264 lines of diff (skipped)




commit rubygem-bcrypt for openSUSE:Factory

2018-05-17 Thread root
Hello community,

here is the log from the commit of package rubygem-bcrypt for openSUSE:Factory 
checked in at 2018-05-17 18:05:02

Comparing /work/SRC/openSUSE:Factory/rubygem-bcrypt (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new (New)


Package is "rubygem-bcrypt"

Thu May 17 18:05:02 2018 rev:8 rq:610007 version:3.1.12

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bcrypt/rubygem-bcrypt.changes
2017-07-04 13:29:59.555176197 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new/rubygem-bcrypt.changes   
2018-05-17 18:05:50.786941381 +0200
@@ -1,0 +2,11 @@
+Wed May 16 21:02:54 UTC 2018 - factory-a...@kulow.org
+
+- updated to version 3.1.12
+ see installed CHANGELOG
+
+  
+  3.1.12 May 16 2018
+- Add support for Ruby 2.3, 2.4, and 2.5 in compiled Windows binaries
+- Fix compatibility with libxcrypt [GH #164 by @besser82]
+
+---

Old:

  bcrypt-3.1.11.gem

New:

  bcrypt-3.1.12.gem



Other differences:
--
++ rubygem-bcrypt.spec ++
--- /var/tmp/diff_new_pack.31AUTX/_old  2018-05-17 18:05:54.302812798 +0200
+++ /var/tmp/diff_new_pack.31AUTX/_new  2018-05-17 18:05:54.302812798 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-bcrypt
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,15 +24,15 @@
 #
 
 Name:   rubygem-bcrypt
-Version:3.1.11
+Version:3.1.12
 Release:0
 %define mod_name bcrypt
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
 BuildRequires:  %{rubydevel}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{rubygem rdoc > 3.10}
+BuildRequires:  ruby-macros >= 5
 Url:https://github.com/codahale/bcrypt-ruby
 Source: https://rubygems.org/gems/%{mod_full_name}.gem
 Source1:rubygem-bcrypt-rpmlintrc

++ bcrypt-3.1.11.gem -> bcrypt-3.1.12.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2016-03-06 06:45:05.0 +0100
+++ new/.travis.yml 2018-05-16 22:02:54.0 +0200
@@ -1,16 +1,21 @@
 language: ruby
+before_install:
+  - gem update --system
+  - gem install bundler
 rvm:
-  - 1.8.7
-  - 1.9.2
-  - 1.9.3
-  - 2.0.0
-  - 2.1.0
-  - 2.2.0
-  - 2.3.0
+  - 1.8
+  - 1.9
+  - 2.0
+  - 2.1
+  - 2.2
+  - 2.3
+  - 2.4
+  - 2.5
+  - 2.6
   - ruby-head
   - jruby-18mode
   - jruby-19mode
   - jruby-head
-  - rbx-2
+  - rbx-3
   - ree
 script: bundle exec rake
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG new/CHANGELOG
--- old/CHANGELOG   2016-03-06 06:45:05.0 +0100
+++ new/CHANGELOG   2018-05-16 22:02:54.0 +0200
@@ -82,3 +82,7 @@
 
 3.1.11 Mar 06 2016
   - Add support for Ruby 2.2 in compiled Windows binaries
+
+3.1.12 May 16 2018
+  - Add support for Ruby 2.3, 2.4, and 2.5 in compiled Windows binaries
+  - Fix compatibility with libxcrypt [GH #164 by @besser82]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile.lock new/Gemfile.lock
--- old/Gemfile.lock2016-03-06 06:45:05.0 +0100
+++ new/Gemfile.lock2018-05-16 22:02:54.0 +0200
@@ -1,14 +1,14 @@
 PATH
   remote: .
   specs:
-bcrypt (3.1.11)
+bcrypt (3.1.12)
 
 GEM
   remote: https://rubygems.org/
   specs:
 diff-lcs (1.2.5)
-json (1.8.3)
-json (1.8.3-java)
+json (1.8.6)
+json (1.8.6-java)
 rake (10.4.2)
 rake-compiler (0.9.5)
   rake
@@ -41,4 +41,4 @@
   rspec (>= 3)
 
 BUNDLED WITH
-   1.11.2
+   1.16.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-03-06 06:45:05.0 +0100
+++ new/README.md   2018-05-16 22:02:54.0 +0200
@@ -30,8 +30,8 @@
 The bcrypt gem is available on the following ruby platforms:
 
 * JRuby
-* RubyInstaller 1.8, 1.9, 2.0, 2.1, and 2.2 builds on win32
-* Any 1.8, 1.9, 2.0, 2.1, 2.2, or 2.3 Ruby on a BSD/OS X/Linux system with a 
compiler
+* RubyInstaller 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, and 2.5 builds on Windows
+* Any 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, or 2.5 Ruby on a BSD/OS X/Linux 
system with a compiler
 
 ## How to use `bcrypt()` in your Rails application
 
@@ -40,69 +40,58 @@
 implements a similar authentication strategy to the code below.
 
 ### The _User_ model
+```ruby

commit rubygem-bcrypt for openSUSE:Factory

2017-07-04 Thread root
Hello community,

here is the log from the commit of package rubygem-bcrypt for openSUSE:Factory 
checked in at 2017-07-04 13:29:58

Comparing /work/SRC/openSUSE:Factory/rubygem-bcrypt (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new (New)


Package is "rubygem-bcrypt"

Tue Jul  4 13:29:58 2017 rev:7 rq:507886 version:3.1.11

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bcrypt/rubygem-bcrypt.changes
2016-07-12 23:53:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new/rubygem-bcrypt.changes   
2017-07-04 13:29:59.555176197 +0200
@@ -1,0 +2,6 @@
+Mon Jul  3 15:34:03 UTC 2017 - mrueck...@suse.de
+
+- add rpmlintrc as we run into rpmlint score limits because of the
+  C source files we ship.
+
+---

New:

  rubygem-bcrypt-rpmlintrc



Other differences:
--
++ rubygem-bcrypt.spec ++
--- /var/tmp/diff_new_pack.MELx2g/_old  2017-07-04 13:30:00.319068704 +0200
+++ /var/tmp/diff_new_pack.MELx2g/_new  2017-07-04 13:30:00.323068141 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-bcrypt
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -29,13 +29,14 @@
 %define mod_name bcrypt
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  ruby-macros >= 5
 BuildRequires:  %{rubydevel}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{rubygem rdoc > 3.10}
-BuildRequires:  ruby-macros >= 5
 Url:https://github.com/codahale/bcrypt-ruby
-Source: http://rubygems.org/gems/%{mod_full_name}.gem
-Source1:gem2rpm.yml
+Source: https://rubygems.org/gems/%{mod_full_name}.gem
+Source1:rubygem-bcrypt-rpmlintrc
+Source2:gem2rpm.yml
 Summary:OpenBSD's bcrypt() password hashing algorithm
 License:MIT
 Group:  Development/Languages/Ruby

++ gem2rpm.yml ++
--- /var/tmp/diff_new_pack.MELx2g/_old  2017-07-04 13:30:00.387059136 +0200
+++ /var/tmp/diff_new_pack.MELx2g/_new  2017-07-04 13:30:00.387059136 +0200
@@ -23,7 +23,7 @@
 #   foo.patch: -p1
 #   bar.patch: 
 # ## used by gem2rpm
-:sources:
+# :sources:
 # - foo.desktop
 # - bar.desktop
 # :gem_install_args: ''
@@ -68,3 +68,5 @@
 # :post: |-
 #   /bin/echo foo
 #
+:sources:
+  - rubygem-bcrypt-rpmlintrc

++ rubygem-bcrypt-rpmlintrc ++
addFilter("devel-file-in-non-devel-package")



commit rubygem-bcrypt for openSUSE:Factory

2016-07-12 Thread h_root
Hello community,

here is the log from the commit of package rubygem-bcrypt for openSUSE:Factory 
checked in at 2016-07-12 23:53:27

Comparing /work/SRC/openSUSE:Factory/rubygem-bcrypt (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new (New)


Package is "rubygem-bcrypt"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bcrypt/rubygem-bcrypt.changes
2015-02-11 16:45:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new/rubygem-bcrypt.changes   
2016-07-12 23:53:33.0 +0200
@@ -1,0 +2,10 @@
+Mon Mar  7 05:28:23 UTC 2016 - co...@suse.com
+
+- updated to version 3.1.11
+ see installed CHANGELOG
+
+  
+  3.1.11 Mar 06 2016
+- Add support for Ruby 2.2 in compiled Windows binaries
+
+---

Old:

  bcrypt-3.1.10.gem

New:

  bcrypt-3.1.11.gem



Other differences:
--
++ rubygem-bcrypt.spec ++
--- /var/tmp/diff_new_pack.aFxtSd/_old  2016-07-12 23:53:34.0 +0200
+++ /var/tmp/diff_new_pack.aFxtSd/_new  2016-07-12 23:53:34.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-bcrypt
 #
-# 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-bcrypt
-Version:3.1.10
+Version:3.1.11
 Release:0
 %define mod_name bcrypt
 %define mod_full_name %{mod_name}-%{version}

++ bcrypt-3.1.10.gem -> bcrypt-3.1.11.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2015-01-29 06:17:05.0 +0100
+++ new/.travis.yml 2016-03-06 06:45:05.0 +0100
@@ -6,6 +6,7 @@
   - 2.0.0
   - 2.1.0
   - 2.2.0
+  - 2.3.0
   - ruby-head
   - jruby-18mode
   - jruby-19mode
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG new/CHANGELOG
--- old/CHANGELOG   2015-01-29 06:17:05.0 +0100
+++ new/CHANGELOG   2016-03-06 06:45:05.0 +0100
@@ -79,3 +79,6 @@
 
 3.1.10 Jan 28 2015
   - Fix issue with dumping a BCrypt::Password instance to YAML in Ruby 2.2 [GH 
#107 by @mattwildig]
+
+3.1.11 Mar 06 2016
+  - Add support for Ruby 2.2 in compiled Windows binaries
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile.lock new/Gemfile.lock
--- old/Gemfile.lock2015-01-29 06:17:05.0 +0100
+++ new/Gemfile.lock2016-03-06 06:45:05.0 +0100
@@ -1,31 +1,32 @@
 PATH
   remote: .
   specs:
-bcrypt (3.1.10)
+bcrypt (3.1.11)
 
 GEM
   remote: https://rubygems.org/
   specs:
 diff-lcs (1.2.5)
-json (1.8.1)
-json (1.8.1-java)
-rake (10.1.0)
-rake-compiler (0.9.2)
+json (1.8.3)
+json (1.8.3-java)
+rake (10.4.2)
+rake-compiler (0.9.5)
   rake
 rdoc (3.12.2)
   json (~> 1.4)
-rspec (3.0.0)
-  rspec-core (~> 3.0.0)
-  rspec-expectations (~> 3.0.0)
-  rspec-mocks (~> 3.0.0)
-rspec-core (3.0.2)
-  rspec-support (~> 3.0.0)
-rspec-expectations (3.0.2)
+rspec (3.3.0)
+  rspec-core (~> 3.3.0)
+  rspec-expectations (~> 3.3.0)
+  rspec-mocks (~> 3.3.0)
+rspec-core (3.3.2)
+  rspec-support (~> 3.3.0)
+rspec-expectations (3.3.1)
   diff-lcs (>= 1.2.0, < 2.0)
-  rspec-support (~> 3.0.0)
-rspec-mocks (3.0.2)
-  rspec-support (~> 3.0.0)
-rspec-support (3.0.2)
+  rspec-support (~> 3.3.0)
+rspec-mocks (3.3.2)
+  diff-lcs (>= 1.2.0, < 2.0)
+  rspec-support (~> 3.3.0)
+rspec-support (3.3.0)
 
 PLATFORMS
   java
@@ -38,3 +39,6 @@
   rake-compiler (~> 0.9.2)
   rdoc (~> 3.12)
   rspec (>= 3)
+
+BUNDLED WITH
+   1.11.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2015-01-29 06:17:05.0 +0100
+++ new/README.md   2016-03-06 06:45:05.0 +0100
@@ -30,8 +30,8 @@
 The bcrypt gem is available on the following ruby platforms:
 
 * JRuby
-* RubyInstaller 1.8, 1.9, 2.0, and 2.1 builds on win32
-* Any 1.8, 1.9, 2.0, 2.1, or 2.2 Ruby on a BSD/OS X/Linux system with a 
compiler
+* RubyInstaller 1.8, 1.9, 2.0, 2.1, and 2.2 builds on win32
+* Any 1.8, 1.9, 2.0, 2.1, 2.2, or 2.3 Ruby on a BSD/OS X/Linux system with a 
compiler
 
 ## How to use `bcrypt()` in your Rails application
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bcrypt.gemspec new/bcrypt.gemspec
--- old/bcrypt.gemspec  

commit rubygem-bcrypt for openSUSE:Factory

2015-02-11 Thread h_root
Hello community,

here is the log from the commit of package rubygem-bcrypt for openSUSE:Factory 
checked in at 2015-02-11 16:45:05

Comparing /work/SRC/openSUSE:Factory/rubygem-bcrypt (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new (New)


Package is rubygem-bcrypt

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bcrypt/rubygem-bcrypt.changes
2014-10-14 07:12:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new/rubygem-bcrypt.changes   
2015-02-11 16:45:09.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb 10 17:23:47 UTC 2015 - co...@suse.com
+
+- updated to version 3.1.10
+
+---

Old:

  bcrypt-3.1.7.gem

New:

  bcrypt-3.1.10.gem
  gem2rpm.yml



Other differences:
--
++ rubygem-bcrypt.spec ++
--- /var/tmp/diff_new_pack.6I6fjb/_old  2015-02-11 16:45:10.0 +0100
+++ /var/tmp/diff_new_pack.6I6fjb/_new  2015-02-11 16:45:10.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-bcrypt
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -16,8 +16,15 @@
 #
 
 
+#
+# This file was generated with a gem2rpm.yml and not just plain gem2rpm.
+# All sections marked as MANUAL, license headers, summaries and descriptions
+# can be maintained in that file. Please consult this file before editing any
+# of those fields
+#
+
 Name:   rubygem-bcrypt
-Version:3.1.7
+Version:3.1.10
 Release:0
 %define mod_name bcrypt
 %define mod_full_name %{mod_name}-%{version}
@@ -28,6 +35,7 @@
 BuildRequires:  ruby-macros = 5
 Url:https://github.com/codahale/bcrypt-ruby
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
+Source1:gem2rpm.yml
 Summary:OpenBSD's bcrypt() password hashing algorithm
 License:MIT
 Group:  Development/Languages/Ruby

++ bcrypt-3.1.7.gem - bcrypt-3.1.10.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore  1970-01-01 01:00:00.0 +0100
+++ new/.gitignore  2015-01-29 06:17:05.0 +0100
@@ -1,10 +1,9 @@
+doc
+pkg
+tmp
 *.o
 *.bundle
 *.so
 *.jar
-ext/mri/Makefile
-doc
-pkg
-*.class
-tmp/
 .DS_Store
+.rbenv-gemsets
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 1970-01-01 01:00:00.0 +0100
+++ new/.travis.yml 2015-01-29 06:17:05.0 +0100
@@ -5,11 +5,11 @@
   - 1.9.3
   - 2.0.0
   - 2.1.0
+  - 2.2.0
   - ruby-head
   - jruby-18mode
   - jruby-19mode
   - jruby-head
   - rbx-2
-  - rbx
   - ree
 script: bundle exec rake
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG new/CHANGELOG
--- old/CHANGELOG   1970-01-01 01:00:00.0 +0100
+++ new/CHANGELOG   2015-01-29 06:17:05.0 +0100
@@ -70,3 +70,12 @@
 3.1.7  Feb 24 2014
   - Rebuild corrupt Java binary version of gem [GH #90]
   - The 2.1 support for Windows binaries alleged in 3.1.3 was a lie -- 
documentation removed
+
+3.1.8  Oct 23 2014
+  - Add support for Ruby 2.1 in compiled Windows binaries [GH #102]
+
+3.1.9  Oct 23 2014
+  - Rebuild corrupt binaries
+
+3.1.10 Jan 28 2015
+  - Fix issue with dumping a BCrypt::Password instance to YAML in Ruby 2.2 [GH 
#107 by @mattwildig]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile.lock new/Gemfile.lock
--- old/Gemfile.lock1970-01-01 01:00:00.0 +0100
+++ new/Gemfile.lock2015-01-29 06:17:05.0 +0100
@@ -1,7 +1,7 @@
 PATH
   remote: .
   specs:
-bcrypt (3.1.7)
+bcrypt (3.1.10)
 
 GEM
   remote: https://rubygems.org/
@@ -14,14 +14,18 @@
   rake
 rdoc (3.12.2)
   json (~ 1.4)
-rspec (2.14.1)
-  rspec-core (~ 2.14.0)
-  rspec-expectations (~ 2.14.0)
-  rspec-mocks (~ 2.14.0)
-rspec-core (2.14.7)
-rspec-expectations (2.14.4)
-  diff-lcs (= 1.1.3,  2.0)
-rspec-mocks (2.14.4)
+rspec (3.0.0)
+  rspec-core (~ 3.0.0)
+  rspec-expectations (~ 3.0.0)
+  rspec-mocks (~ 3.0.0)
+rspec-core (3.0.2)
+  rspec-support (~ 3.0.0)
+rspec-expectations (3.0.2)
+  diff-lcs (= 1.2.0,  2.0)
+  rspec-support (~ 3.0.0)
+rspec-mocks (3.0.2)
+  rspec-support (~ 3.0.0)
+rspec-support (3.0.2)
 
 PLATFORMS
   java
@@ -33,4 +37,4 @@
   bcrypt!
   rake-compiler (~ 0.9.2)
   rdoc (~ 3.12)
-  rspec

commit rubygem-bcrypt for openSUSE:Factory

2014-10-13 Thread h_root
Hello community,

here is the log from the commit of package rubygem-bcrypt for openSUSE:Factory 
checked in at 2014-10-14 07:11:44

Comparing /work/SRC/openSUSE:Factory/rubygem-bcrypt (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new (New)


Package is rubygem-bcrypt

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bcrypt/rubygem-bcrypt.changes
2014-03-18 14:03:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new/rubygem-bcrypt.changes   
2014-10-14 07:12:28.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct 13 05:42:52 UTC 2014 - co...@suse.com
+
+- adapt to new rubygem packaging
+
+---



Other differences:
--
++ rubygem-bcrypt.spec ++
--- /var/tmp/diff_new_pack.n9aPe3/_old  2014-10-14 07:12:29.0 +0200
+++ /var/tmp/diff_new_pack.n9aPe3/_new  2014-10-14 07:12:29.0 +0200
@@ -21,11 +21,11 @@
 Release:0
 %define mod_name bcrypt
 %define mod_full_name %{mod_name}-%{version}
-
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-devel
-BuildRequires:  ruby-macros = 3
-BuildRequires:  rubygem(rdoc)  3.10
+BuildRequires:  %{rubydevel}
+BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{rubygem rdoc  3.10}
+BuildRequires:  ruby-macros = 5
 Url:https://github.com/codahale/bcrypt-ruby
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Summary:OpenBSD's bcrypt() password hashing algorithm
@@ -39,53 +39,16 @@
 safely handling
 passwords.
 
-%package doc
-Summary:RDoc documentation for %{mod_name}
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description doc
-Documentation generated at gem installation time.
-Usually in RDoc and RI formats.
-
-%package testsuite
-Summary:Test suite for %{mod_name}
-Group:  Development/Languages/Ruby
-Requires:   %{name} = %{version}
-
-%description testsuite
-Test::Unit or RSpec files, useful for developers.
-
 %prep
-#gem_unpack
-#if you need patches, apply them here and replace the # with a % sign in the 
surrounding lines
-#gem_build
 
 %build
 
 %install
-%gem_install -f
+%gem_install \
+  --doc-files=CHANGELOG COPYING README.md \
+  -f
 %gem_cleanup
-mkdir -p %{buildroot}%{_docdir}/%{name}
-ln -s %{gem_base}/gems/%{mod_full_name}/CHANGELOG 
%buildroot/%{_docdir}/%{name}/CHANGELOG
-ln -s %{gem_base}/gems/%{mod_full_name}/COPYING 
%buildroot/%{_docdir}/%{name}/COPYING
-ln -s %{gem_base}/gems/%{mod_full_name}/README.md 
%buildroot/%{_docdir}/%{name}/README.md
-
-%files
-%defattr(-,root,root,-)
-%{_docdir}/%{name}
-%{gem_base}/cache/%{mod_full_name}.gem
-%{gem_base}/gems/%{mod_full_name}/
-%{gem_extensions}/%{mod_full_name}
-%exclude %{gem_base}/gems/%{mod_full_name}/spec
-%{gem_base}/specifications/%{mod_full_name}.gemspec
-
-%files doc
-%defattr(-,root,root,-)
-%doc %{gem_base}/doc
-
-%files testsuite
-%defattr(-,root,root,-)
-%{gem_base}/gems/%{mod_full_name}/spec
+
+%gem_packages
 
 %changelog

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit rubygem-bcrypt for openSUSE:Factory

2014-03-18 Thread h_root
Hello community,

here is the log from the commit of package rubygem-bcrypt for openSUSE:Factory 
checked in at 2014-03-18 14:03:03

Comparing /work/SRC/openSUSE:Factory/rubygem-bcrypt (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new (New)


Package is rubygem-bcrypt

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-bcrypt/rubygem-bcrypt.changes
2014-02-24 15:53:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-bcrypt.new/rubygem-bcrypt.changes   
2014-03-18 14:03:04.0 +0100
@@ -1,0 +2,7 @@
+Sat Mar 15 18:46:00 UTC 2014 - co...@suse.com
+
+- updated to version 3.1.7
+  - Rebuild corrupt Java binary version of gem [GH #90]
+  - The 2.1 support for Windows binaries alleged in 3.1.3 was a lie -- 
documentation removed
+
+---

Old:

  bcrypt-3.1.6.gem

New:

  bcrypt-3.1.7.gem



Other differences:
--
++ rubygem-bcrypt.spec ++
--- /var/tmp/diff_new_pack.L6cPgt/_old  2014-03-18 14:03:05.0 +0100
+++ /var/tmp/diff_new_pack.L6cPgt/_new  2014-03-18 14:03:05.0 +0100
@@ -17,14 +17,14 @@
 
 
 Name:   rubygem-bcrypt
-Version:3.1.6
+Version:3.1.7
 Release:0
 %define mod_name bcrypt
 %define mod_full_name %{mod_name}-%{version}
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros = 3
 BuildRequires:  ruby-devel
+BuildRequires:  ruby-macros = 3
 BuildRequires:  rubygem(rdoc)  3.10
 Url:https://github.com/codahale/bcrypt-ruby
 Source: http://rubygems.org/gems/%{mod_full_name}.gem

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org