commit perl-Crypt-OpenSSL-Bignum for openSUSE:Factory

2018-10-11 Thread root
Hello community,

here is the log from the commit of package perl-Crypt-OpenSSL-Bignum for 
openSUSE:Factory checked in at 2018-10-11 11:51:58

Comparing /work/SRC/openSUSE:Factory/perl-Crypt-OpenSSL-Bignum (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Crypt-OpenSSL-Bignum.new (New)


Package is "perl-Crypt-OpenSSL-Bignum"

Thu Oct 11 11:51:58 2018 rev:19 rq:640262 version:0.09

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Crypt-OpenSSL-Bignum/perl-Crypt-OpenSSL-Bignum.changes
  2015-02-06 22:38:01.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Crypt-OpenSSL-Bignum.new/perl-Crypt-OpenSSL-Bignum.changes
 2018-10-11 11:53:22.714181739 +0200
@@ -1,0 +2,19 @@
+Wed Feb  7 16:16:40 UTC 2018 - co...@suse.com
+
+- updated to 0.09
+   see /usr/share/doc/packages/perl-Crypt-OpenSSL-Bignum/Changes
+
+  0.092017/12/01
+  - fix #4 License is not specified in metadata 
+  - fix #6 Strip 
+ and  out of $lib and $inc
+  - fix #7 Fix building with OpenSSL 1.1.0 
+  
+  0.082017/02/08
+  - Makefile.PL MSWin32 fix
+  
+  0.072016/10/25
+  - Makefile.PL supports OPENSSL_PREFIX or OPENSSL_LIB+OPENSSL_INCLUDE 
env variables
+  - Makefile.PL tries to find libcrypto via pkg-config
+
+---

Old:

  Crypt-OpenSSL-Bignum-0.06.tar.gz

New:

  Crypt-OpenSSL-Bignum-0.09.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Crypt-OpenSSL-Bignum.spec ++
--- /var/tmp/diff_new_pack.sas7Sz/_old  2018-10-11 11:53:23.178181149 +0200
+++ /var/tmp/diff_new_pack.sas7Sz/_new  2018-10-11 11:53:23.182181143 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Crypt-OpenSSL-Bignum
 #
-# Copyright (c) 2015 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,19 +12,20 @@
 # 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/
 #
 
 
 Name:   perl-Crypt-OpenSSL-Bignum
-Version:0.06
+Version:0.09
 Release:0
 %define cpan_name Crypt-OpenSSL-Bignum
 Summary:OpenSSL's multiprecision integer arithmetic
-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-Bignum/
-Source: 
http://www.cpan.org/authors/id/K/KM/KMX/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/K/KM/KMX/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
@@ -44,7 +45,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
+find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
@@ -60,6 +61,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README
+%doc Changes README
+%license LICENSE
 
 %changelog

++ Crypt-OpenSSL-Bignum-0.06.tar.gz -> Crypt-OpenSSL-Bignum-0.09.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Crypt-OpenSSL-Bignum-0.06/Bignum/CTX.pm 
new/Crypt-OpenSSL-Bignum-0.09/Bignum/CTX.pm
--- old/Crypt-OpenSSL-Bignum-0.06/Bignum/CTX.pm 2015-02-04 10:35:52.0 
+0100
+++ new/Crypt-OpenSSL-Bignum-0.09/Bignum/CTX.pm 2016-10-25 09:34:38.0 
+0200
@@ -9,7 +9,7 @@
 
 require DynaLoader;
 
-@ISA = qw(DynaLoader);
+use base qw(DynaLoader);
 
 bootstrap Crypt::OpenSSL::Bignum $Crypt::OpenSSL::Bignum::VERSION;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Crypt-OpenSSL-Bignum-0.06/Bignum.pm 
new/Crypt-OpenSSL-Bignum-0.09/Bignum.pm
--- old/Crypt-OpenSSL-Bignum-0.06/Bignum.pm 2015-02-06 07:48:34.0 
+0100
+++ new/Crypt-OpenSSL-Bignum-0.09/Bignum.pm 2017-12-01 20:07:57.0 
+0100
@@ -6,11 +6,9 @@
 
 use vars qw( $VERSION @ISA );
 
-require DynaLoader;
+use base qw(DynaLoader);
 
-@ISA = qw(DynaLoader);
-
-$VERSION = '0.06';
+$VERSION = '0.09';
 
 bootstrap Crypt::OpenSSL::Bignum $VERSION;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Crypt-OpenSSL-Bignum-0.06/Bignum.xs 
new/Crypt-OpenSSL-Bignum-0.09/Bignum.xs
--- 

commit perl-Crypt-OpenSSL-Bignum for openSUSE:Factory

2015-02-06 Thread h_root
Hello community,

here is the log from the commit of package perl-Crypt-OpenSSL-Bignum for 
openSUSE:Factory checked in at 2015-02-06 22:37:59

Comparing /work/SRC/openSUSE:Factory/perl-Crypt-OpenSSL-Bignum (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Crypt-OpenSSL-Bignum.new (New)


Package is perl-Crypt-OpenSSL-Bignum

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Crypt-OpenSSL-Bignum/perl-Crypt-OpenSSL-Bignum.changes
  2012-06-10 21:52:07.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Crypt-OpenSSL-Bignum.new/perl-Crypt-OpenSSL-Bignum.changes
 2015-02-06 22:38:01.0 +0100
@@ -1,0 +2,17 @@
+Fri Feb  6 11:03:45 UTC 2015 - co...@suse.com
+
+- updated to 0.06
+  - fix for #77911 Patch to add more functions
+  - new constructors: new, rand, pseudo_rand, rand_range
+  - new methods: ucmp, num_bits, num_bytes, rshift, lshift, swap
+  - improved pod documentation (added missing functions)
+  - XS code cleanup
+
+ 0.052015/02/04
+  - fix for #84369 Win32 compatibility patch
+  - fix for #100993 Memory not reclaimed when CTX object goes out of scope
+  - fix for #86561 typo fixes
+  - fix for #82959 Error in synopsis: 
Crypt::OpenSSL::Bignum-new_from_hex(0x3e8) returns 0
+  - fix for #81537 to_bin method returns garbage when value is zero
+
+---

Old:

  Crypt-OpenSSL-Bignum-0.04.tar.gz

New:

  Crypt-OpenSSL-Bignum-0.06.tar.gz



Other differences:
--
++ perl-Crypt-OpenSSL-Bignum.spec ++
--- /var/tmp/diff_new_pack.qZWtzE/_old  2015-02-06 22:38:02.0 +0100
+++ /var/tmp/diff_new_pack.qZWtzE/_new  2015-02-06 22:38:02.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Crypt-OpenSSL-Bignum
 #
-# Copyright (c) 2011 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
@@ -15,23 +15,22 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   perl-Crypt-OpenSSL-Bignum
+Version:0.06
+Release:0
 %define cpan_name Crypt-OpenSSL-Bignum
 Summary:OpenSSL's multiprecision integer arithmetic
-Version:0.04
-Release:9
 License:GPL-1.0+ or Artistic-1.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Crypt-OpenSSL-Bignum/
-#Source: 
http://www.cpan.org/modules/by-module/Crypt/Crypt-OpenSSL-Bignum-%{version}.tar.bz2
-Source: %{cpan_name}-%{version}.tar.gz
+Source: 
http://www.cpan.org/authors/id/K/KM/KMX/%{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
-BuildRequires:  openssl-devel perl
+BuildRequires:  perl
 BuildRequires:  perl-macros
+%{perl_requires}
+# MANUAL
+BuildRequires:  openssl-devel
 
 %description
 Crypt::OpenSSL::Bignum provides access to OpenSSL multiprecision integer
@@ -40,11 +39,15 @@
 module can be used to provide access to bignum values produced by other
 OpenSSL modules, such as key parameters from Crypt::OpenSSL::RSA.
 
+_NOTE_: Many of the methods in this package can croak, so use eval, or
+Error.pm's try/catch mechanism to capture errors.
+
 %prep
 %setup -q -n %{cpan_name}-%{version}
+find . -type f -print0 | xargs -0 chmod 644
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE=$RPM_OPT_FLAGS
+%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE=%{optflags}
 %{__make} %{?_smp_mflags}
 
 %check
@@ -55,11 +58,8 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files -f %{name}.files
-%defattr(-,root,root,-)
+%defattr(-,root,root,755)
 %doc Changes LICENSE README
 
 %changelog

++ Crypt-OpenSSL-Bignum-0.04.tar.gz - Crypt-OpenSSL-Bignum-0.06.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Crypt-OpenSSL-Bignum-0.04/Bignum/CTX.pm 
new/Crypt-OpenSSL-Bignum-0.06/Bignum/CTX.pm
--- old/Crypt-OpenSSL-Bignum-0.04/Bignum/CTX.pm 2003-02-18 04:51:08.0 
+0100
+++ new/Crypt-OpenSSL-Bignum-0.06/Bignum/CTX.pm 2015-02-04 10:35:52.0 
+0100
@@ -13,11 +13,6 @@
 
 bootstrap Crypt::OpenSSL::Bignum $Crypt::OpenSSL::Bignum::VERSION;
 
-sub DESTROY
-{
-shift-_free_BN_CTX();
-}
-
 1;
 __END__
 # Below is stub documentation for your module. You better edit it!
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Crypt-OpenSSL-Bignum-0.04/Bignum.pm 
new/Crypt-OpenSSL-Bignum-0.06/Bignum.pm
--- old/Crypt-OpenSSL-Bignum-0.04/Bignum.pm 2007-05-20 

commit perl-Crypt-OpenSSL-Bignum for openSUSE:Factory

2012-06-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Crypt-OpenSSL-Bignum for 
openSUSE:Factory checked in at 2012-06-10 20:18:40

Comparing /work/SRC/openSUSE:Factory/perl-Crypt-OpenSSL-Bignum (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Crypt-OpenSSL-Bignum.new (New)


Package is perl-Crypt-OpenSSL-Bignum, Maintainer is vark...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Crypt-OpenSSL-Bignum/perl-Crypt-OpenSSL-Bignum.changes
  2011-11-21 12:38:06.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Crypt-OpenSSL-Bignum.new/perl-Crypt-OpenSSL-Bignum.changes
 2012-06-10 21:52:07.0 +0200
@@ -1,0 +2,6 @@
+Wed Jun  6 13:52:39 UTC 2012 - cfarr...@suse.com
+
+- license update: GPL-1.0+ or Artistic-1.0
+  SPDX format
+
+---



Other differences:
--
++ perl-Crypt-OpenSSL-Bignum.spec ++
--- /var/tmp/diff_new_pack.HiKDxW/_old  2012-06-10 21:52:09.0 +0200
+++ /var/tmp/diff_new_pack.HiKDxW/_new  2012-06-10 21:52:09.0 +0200
@@ -23,7 +23,7 @@
 Summary:OpenSSL's multiprecision integer arithmetic
 Version:0.04
 Release:9
-License:Distributable, see LICENSE
+License:GPL-1.0+ or Artistic-1.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Crypt-OpenSSL-Bignum/
 #Source: 
http://www.cpan.org/modules/by-module/Crypt/Crypt-OpenSSL-Bignum-%{version}.tar.bz2

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



commit perl-Crypt-OpenSSL-Bignum for openSUSE:Factory

2011-11-21 Thread h_root
Hello community,

here is the log from the commit of package perl-Crypt-OpenSSL-Bignum for 
openSUSE:Factory checked in at 2011-11-21 12:37:18

Comparing /work/SRC/openSUSE:Factory/perl-Crypt-OpenSSL-Bignum (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Crypt-OpenSSL-Bignum.new (New)


Package is perl-Crypt-OpenSSL-Bignum, Maintainer is vark...@suse.com

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Crypt-OpenSSL-Bignum/perl-Crypt-OpenSSL-Bignum.changes
  2011-09-23 12:36:31.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Crypt-OpenSSL-Bignum.new/perl-Crypt-OpenSSL-Bignum.changes
 2011-11-21 12:38:06.0 +0100
@@ -1,0 +2,5 @@
+Fri Nov 18 11:09:54 UTC 2011 - co...@suse.com
+
+- use original .tar.gz
+
+---

Old:

  Crypt-OpenSSL-Bignum-0.04.tar.bz2

New:

  Crypt-OpenSSL-Bignum-0.04.tar.gz



Other differences:
--
++ perl-Crypt-OpenSSL-Bignum.spec ++
--- /var/tmp/diff_new_pack.r9ngc0/_old  2011-11-21 12:38:07.0 +0100
+++ /var/tmp/diff_new_pack.r9ngc0/_new  2011-11-21 12:38:07.0 +0100
@@ -1,7 +1,7 @@
 #
-# spec file for package perl-Crypt-OpenSSL-Bignum (Version 0.04)
+# spec file for package perl-Crypt-OpenSSL-Bignum
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,7 +27,7 @@
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Crypt-OpenSSL-Bignum/
 #Source: 
http://www.cpan.org/modules/by-module/Crypt/Crypt-OpenSSL-Bignum-%{version}.tar.bz2
-Source: %{cpan_name}-%{version}.tar.bz2
+Source: %{cpan_name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{perl_requires}
 BuildRequires:  openssl-devel perl

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