Accepting request 1160798 from devel:languages:perl:autoupdate

- Remove perl-IO-Socket-SSL-Openssl32.patch, fixed upstream
- updated to 2.085
   see /usr/share/doc/packages/perl-IO-Socket-SSL/Changes
  2.085 2024/01/22
  - #147 fix test which failed due to behavior changes in OpenSSL 3.2
  - update PublicSuffix
  - add examples for TLS JA3/JA4 fingerprinting to tls_fingerprint/

OBS-URL: https://build.opensuse.org/request/show/1160798
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-IO-Socket-SSL?expand=0&rev=150
This commit is contained in:
Pedro Monreal Gonzalez 2024-03-27 18:59:55 +00:00 committed by Git OBS Bridge
parent 2be064de89
commit 0db87ca43c
5 changed files with 25 additions and 33 deletions

BIN
IO-Socket-SSL-2.084.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:95b2f7c0628a7e246a159665fbf0620d0d7835e3a940f22d3fdd47c3aa799c2e
size 265644

View File

@ -1,23 +0,0 @@
From 7c0798d6de3467603dff42253448e36aded7f5ac Mon Sep 17 00:00:00 2001
From: Steffen Ullrich <github@maulwuff.de>
Date: Fri, 22 Dec 2023 08:07:20 +0100
Subject: [PATCH] fixed test fail #147 with OpenSSL 3.2
---
t/core.t | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/t/core.t b/t/core.t
index e194811..22d78fb 100755
--- a/t/core.t
+++ b/t/core.t
@@ -74,7 +74,8 @@ unless (fork) {
LocalAddr => $localip,
);
print $client "Test\n";
- is( <$client>, "This server is SSL only", "Client non-SSL connection");
+
+ like( <$client>, qr/This server is SSL only/, "Client non-SSL connection");
close $client;
$client = IO::Socket::SSL->new(

View File

@ -1,3 +1,19 @@
-------------------------------------------------------------------
Fri Mar 22 19:12:44 UTC 2024 - Tina Müller <tina.mueller@suse.com>
- Remove perl-IO-Socket-SSL-Openssl32.patch, fixed upstream
-------------------------------------------------------------------
Tue Jan 23 03:07:53 UTC 2024 - Tina Müller <timueller+perl@suse.de>
- updated to 2.085
see /usr/share/doc/packages/perl-IO-Socket-SSL/Changes
2.085 2024/01/22
- #147 fix test which failed due to behavior changes in OpenSSL 3.2
- update PublicSuffix
- add examples for TLS JA3/JA4 fingerprinting to tls_fingerprint/
-------------------------------------------------------------------
Fri Dec 22 08:44:13 UTC 2023 - Pedro Monreal <pmonreal@suse.com>

View File

@ -1,7 +1,7 @@
#
# spec file for package perl-IO-Socket-SSL
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -18,9 +18,10 @@
%define cpan_name IO-Socket-SSL
Name: perl-IO-Socket-SSL
Version: 2.84.0
Version: 2.85.0
Release: 0
%define cpan_version 2.084
# 2.085 -> normalize -> 2.85.0
%define cpan_version 2.085
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Nearly transparent SSL encapsulation for IO::Socket::INET
URL: https://metacpan.org/release/%{cpan_name}
@ -28,8 +29,6 @@ Source0: https://cpan.metacpan.org/authors/id/S/SU/SULLR/%{cpan_name}-%{c
Source1: cpanspec.yml
# PATCH-FIX-UPSTREAM (bsc1200295) perl-IO-Socket-SSL doesn't follow system "PROFILE=SYSTEM" openSSL ciphers - https://git.centos.org/rpms/perl-IO-Socket-SSL/blob/e0b0ae04f5cdb41b1f29cb7d76c23abba7ac35e9/f/SOURCES/IO-Socket-SSL-2.066-use-system-default-cipher-list.patch
Patch0: perl-IO-Socket-SSL-use-system-default-cipher-list.patch
# PATCH-FIX-UPSTREAM (bsc#1218342) Fix the test t/core.t to build with OpenSSL 3.2.0
Patch1: perl-IO-Socket-SSL-Openssl32.patch
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
@ -37,7 +36,7 @@ BuildRequires: perl-macros
BuildRequires: perl(Net::SSLeay) >= 1.46
#Requires: perl(Mozilla::CA)
Requires: perl(Net::SSLeay) >= 1.46
Provides: perl(IO::Socket::SSL) = 2.84.0
Provides: perl(IO::Socket::SSL) = %{version}
Provides: perl(IO::Socket::SSL::Intercept) = 2.056
Provides: perl(IO::Socket::SSL::OCSP_Cache)
Provides: perl(IO::Socket::SSL::OCSP_Resolver)
@ -47,7 +46,7 @@ Provides: perl(IO::Socket::SSL::SSL_HANDLE)
Provides: perl(IO::Socket::SSL::Session_Cache)
Provides: perl(IO::Socket::SSL::Trace)
Provides: perl(IO::Socket::SSL::Utils) = 2.015
%define __perllib_provides /bin/true
%undefine __perllib_provides
%{perl_requires}
%description