Hello community,

here is the log from the commit of package perl-Crypt-OpenSSL-RSA for 
openSUSE:Factory checked in at 2018-10-15 10:05:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Crypt-OpenSSL-RSA (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Crypt-OpenSSL-RSA.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Crypt-OpenSSL-RSA"

Mon Oct 15 10:05:33 2018 rev:21 rq:640385 version:0.31

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/perl-Crypt-OpenSSL-RSA/perl-Crypt-OpenSSL-RSA.changes
    2017-09-05 15:13:52.312608602 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Crypt-OpenSSL-RSA.new/perl-Crypt-OpenSSL-RSA.changes
       2018-10-15 10:05:38.945909774 +0200
@@ -1,0 +2,45 @@
+Sun Oct  7 09:01:37 UTC 2018 - Dirk Stoecker <opens...@dstoecker.de>
+
+- Fix autogenerated changes to build again
+  * Drop openssl110.patch (upstream)
+
+-------------------------------------------------------------------
+Tue Sep 25 05:09:43 UTC 2018 - Stephan Kulow <co...@suse.com>
+
+- updated to 0.31
+   see /usr/share/doc/packages/perl-Crypt-OpenSSL-RSA/Changes
+
+  0.31 Mon Sep 24 2018
+      - Remove default of SHA256 for RSA keys. This has caused significant
+        problems with downstream modules and it has always been possible to
+        do $key->use_sha256_hash()
+
+-------------------------------------------------------------------
+Wed May  2 05:08:37 UTC 2018 - co...@suse.com
+
+- updated to 0.30
+   see /usr/share/doc/packages/perl-Crypt-OpenSSL-RSA/Changes
+
+  0.30 Tue May 1 2018
+          - Working windows library detection
+          - Actively testing on appveyor for windows now.
+          - work correctly on LibreSSL
+  
+  0.29_03  Mon Apr 16 2018
+          - Add whirlpool hash support.
+          - Crypt::OpenSSL::Random is now required at comnpile-time.
+          - Use the new interface to RSA_generate_key if available
+          - Add library paths to LIBS from Crypt::OpenSSL::Guess
+  
+  0.29_02  Sun Apr 15 2018
+          - Add missing require of Config::OpenSSL::Guess
+  
+  0.29_01  Fri Apr 13 2018
+          - Adapt to OpenSSL 1.1.0 (dur-randir)
+          - Move issue tracker to github.
+          - Modernization as in Crypt::OpenSSL::Random.
+          - better MSWin32 hints, fixes MSVC libraries,
+          - more meta tests,
+          - prefer hash mode NID_sha256 over NID_sha1 for sign
+
+-------------------------------------------------------------------

Old:
----
  Crypt-OpenSSL-RSA-0.28.tar.gz
  openssl110.patch

New:
----
  Crypt-OpenSSL-RSA-0.31.tar.gz
  cpanspec.yml

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-Crypt-OpenSSL-RSA.spec ++++++
--- /var/tmp/diff_new_pack.kdoa0j/_old  2018-10-15 10:05:39.373909315 +0200
+++ /var/tmp/diff_new_pack.kdoa0j/_new  2018-10-15 10:05:39.373909315 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Crypt-OpenSSL-RSA
 #
-# 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
@@ -12,44 +12,51 @@
 # 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/
 #
 
 
-%define cpan_name Crypt-OpenSSL-RSA
 Name:           perl-Crypt-OpenSSL-RSA
-Version:        0.28
+Version:        0.31
 Release:        0
+%define cpan_name Crypt-OpenSSL-RSA
 Summary:        RSA encoding and decoding, using the openSSL libraries
-License:        GPL-1.0+ OR Artistic-1.0
+License:        Artistic-1.0 OR GPL-1.0-or-later
 Group:          Development/Libraries/Perl
-Url:            http://search.cpan.org/dist/Crypt-OpenSSL-RSA
-Source:         
http://search.cpan.org/CPAN/authors/id/P/PE/PERLER/Crypt-OpenSSL-RSA-%{version}.tar.gz
+Url:            http://search.cpan.org/dist/Crypt-OpenSSL-RSA/
+Source0:        
https://cpan.metacpan.org/authors/id/T/TO/TODDR/%{cpan_name}-%{version}.tar.gz
+Source1:        cpanspec.yml
 Patch0:         %{cpan_name}.patch
-Patch1:         openssl110.patch
+BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  openssl-devel
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(Crypt::OpenSSL::Guess) >= 0.11
 BuildRequires:  perl(Crypt::OpenSSL::Random)
 Requires:       perl(Crypt::OpenSSL::Random)
+Recommends:     perl(Crypt::OpenSSL::Bignum)
 %{perl_requires}
 
 %description
-Crypt::OpenSSL::RSA is an XS perl module designed to provide basic RSA
-functionality.  It does this by providing a glue to the RSA functions
-in the OpenSSL library.
+'Crypt::OpenSSL::RSA' provides the ability to RSA encrypt strings which are
+somewhat shorter than the block size of a key. It also allows for
+decryption, signatures and signature verification.
+
+_NOTE_: Many of the methods in this package can croak, so use 'eval', or
+Error.pm's try/catch mechanism to capture errors. Also, while some methods
+from earlier versions of this package return true on success, this (never
+documented) behavior is no longer the case.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
 %patch0
-%patch1 -p1
 
 %build
-perl Makefile.PL OPTIMIZE="%{optflags} -Wall"
+perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
 make %{?_smp_mflags}
 
 %check
-make %{?_smp_mflags} test
+make test
 
 %install
 %perl_make_install
@@ -57,6 +64,8 @@
 %perl_gen_filelist
 
 %files -f %{name}.files
-%doc Changes LICENSE README
+%defattr(-,root,root,755)
+%doc Changes README README.md
+%license LICENSE
 
 %changelog

++++++ Crypt-OpenSSL-RSA-0.28.tar.gz -> Crypt-OpenSSL-RSA-0.31.tar.gz ++++++
++++ 2163 lines of diff (skipped)

++++++ cpanspec.yml ++++++
---
#description_paragraphs: 3
#description: |-
#  override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
#preamble: |-
# BuildRequires:  gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s,  *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL 
#post_build: |-
# rm unused.files
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module

Reply via email to