Hello community, here is the log from the commit of package perl-Crypt-SSLeay for openSUSE:Leap:15.2 checked in at 2020-02-22 17:53:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/perl-Crypt-SSLeay (Old) and /work/SRC/openSUSE:Leap:15.2/.perl-Crypt-SSLeay.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Crypt-SSLeay" Sat Feb 22 17:53:05 2020 rev:17 rq:778112 version:0.72 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/perl-Crypt-SSLeay/perl-Crypt-SSLeay.changes 2020-01-15 15:40:18.123147609 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.perl-Crypt-SSLeay.new.26092/perl-Crypt-SSLeay.changes 2020-02-22 17:53:07.185853503 +0100 @@ -1,0 +2,13 @@ +Fri Oct 4 06:42:09 UTC 2019 - Pedro Monreal Gonzalez <[email protected]> + +- Fix build: Don't test content of returned version strings + * Add perl-Crypt-SSLeay-tests.patch + +------------------------------------------------------------------- +Fri Oct 4 06:37:54 UTC 2019 - Pedro Monreal Gonzalez <[email protected]> + +- Add missing zlib build dependency, which used to be pulled in + by libopenssl-devel. The package fails to build since the openssl + upgrade to 1.1.1 (bsc#1149792) + +------------------------------------------------------------------- New: ---- perl-Crypt-SSLeay-tests.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Crypt-SSLeay.spec ++++++ --- /var/tmp/diff_new_pack.XCG13x/_old 2020-02-22 17:53:07.569854279 +0100 +++ /var/tmp/diff_new_pack.XCG13x/_new 2020-02-22 17:53:07.569854279 +0100 @@ -28,6 +28,7 @@ Source1: cpanspec.yml Patch0: no-dot-inc.patch Patch1: Crypt-SSLeay-use_TLS_instead_of_SSL.patch +Patch2: perl-Crypt-SSLeay-tests.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: perl BuildRequires: perl-macros @@ -35,6 +36,7 @@ BuildRequires: perl(LWP::Protocol::https) >= 6.02 BuildRequires: perl(Path::Class) >= 0.26 BuildRequires: perl(Try::Tiny) >= 0.19 +BuildRequires: pkgconfig(zlib) Requires: perl(LWP::Protocol::https) >= 6.02 %{perl_requires} # MANUAL BEGIN @@ -57,6 +59,7 @@ find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644 %patch0 -p1 %patch1 -p1 +%patch2 -p1 %build %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" ++++++ perl-Crypt-SSLeay-tests.patch ++++++ Index: Crypt-SSLeay-0.72/t/03-version.t =================================================================== --- Crypt-SSLeay-0.72.orig/t/03-version.t +++ Crypt-SSLeay-0.72/t/03-version.t @@ -17,55 +17,30 @@ use Crypt::SSLeay::Version qw( my $built_on = openssl_built_on(); ok(defined $built_on, 'openssl_built_on returns a defined value'); note $built_on; - like( - $built_on, - qr/\Abuilt on:/, - 'openssl_built_on return value looks valid', - ); } { my $cflags = openssl_cflags(); ok(defined $cflags, 'openssl_cflags returns a defined value'); note $cflags; - like( - $cflags, - qr/\Acompiler:/, - 'openssl_cflags return value looks valid', - ); } { my $dir = openssl_dir(); ok(defined $dir, 'openssl_dir returns a defined value'); note $dir; - like( - $dir, - qr/\AOPENSSLDIR:/, - 'openssl_dir return value looks valid', - ); } { my $platform = openssl_platform(); ok(defined $platform, 'openssl_platform returns a defined value'); note $platform; - like( - $platform, - qr/\Aplatform:/, - 'openssl_platform return value looks valid', - ); } { my $version = openssl_version(); ok(defined $version, 'openssl_version returns a defined value'); note $version; - like( - $version, - qr/\AOpenSSL/, - 'openssl_version return value looks valid', - ); } {
