GNU bug report logs - #77156
[core-packages-team PATCH 0/2] Fix Perl packages.

Previous Next

Package: guix-patches;

Reported by: Greg Hogan <code <at> greghogan.com>

Date: Fri, 21 Mar 2025 18:01:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

To reply to this bug, email your comments to 77156 AT debbugs.gnu.org.
There is no need to reopen the bug first.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#77156; Package guix-patches. (Fri, 21 Mar 2025 18:01:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Greg Hogan <code <at> greghogan.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 21 Mar 2025 18:01:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: guix-patches <at> gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [core-packages-team PATCH 0/2] Fix Perl packages.
Date: Fri, 21 Mar 2025 17:59:40 +0000
Fix breakage due to the OpenSSL update.

Greg Hogan (2):
  gnu: perl-net-ssleay: Update to 1.94.
  gnu: perl-io-socket-ssl: Update to 2.089.

 gnu/local.mk                                  |  1 +
 .../perl-net-ssleay-colon-parsing.patch       | 28 +++++++++++++++++++
 gnu/packages/tls.scm                          |  5 ++--
 gnu/packages/web.scm                          |  4 +--
 4 files changed, 34 insertions(+), 4 deletions(-)
 create mode 100644 gnu/packages/patches/perl-net-ssleay-colon-parsing.patch


base-commit: 8c33798a54945541aa1d6494113547a0d465d34a
-- 
2.49.0





Information forwarded to guix-patches <at> gnu.org:
bug#77156; Package guix-patches. (Fri, 21 Mar 2025 18:05:02 GMT) Full text and rfc822 format available.

Message #8 received at 77156 <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 77156 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [core-packages-team PATCH 1/2] gnu: perl-net-ssleay: Update to 1.94.
Date: Fri, 21 Mar 2025 18:03:45 +0000
* gnu/packages/patches/perl-net-ssleay-colon-parsing.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/base.scm (perl-net-ssleay): Update to 1.94.
[source](origin): Add patch.

Change-Id: Ie4b8bc713618fb72e86c07860fab30e47b96dc76
---
 gnu/local.mk                                  |  1 +
 .../perl-net-ssleay-colon-parsing.patch       | 28 +++++++++++++++++++
 gnu/packages/tls.scm                          |  5 ++--
 3 files changed, 32 insertions(+), 2 deletions(-)
 create mode 100644 gnu/packages/patches/perl-net-ssleay-colon-parsing.patch

diff --git a/gnu/local.mk b/gnu/local.mk
index 4d59992469..b156c57de7 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -2046,6 +2046,7 @@ dist_patch_DATA =						\
   %D%/packages/patches/perl-image-exiftool-CVE-2021-22204.patch	\
   %D%/packages/patches/perl-net-amazon-s3-moose-warning.patch	\
   %D%/packages/patches/perl-net-dns-resolver-programmable-fix.patch	\
+  %D%/packages/patches/perl-net-ssleay-colon-parsing.patch	\
   %D%/packages/patches/perl-no-sys-dirs.patch			\
   %D%/packages/patches/perl-text-markdown-discount-unbundle.patch	\
   %D%/packages/patches/perl-module-pluggable-search.patch	\
diff --git a/gnu/packages/patches/perl-net-ssleay-colon-parsing.patch b/gnu/packages/patches/perl-net-ssleay-colon-parsing.patch
new file mode 100644
index 0000000000..532271cc3f
--- /dev/null
+++ b/gnu/packages/patches/perl-net-ssleay-colon-parsing.patch
@@ -0,0 +1,28 @@
+From e73cf1139a6651a968828d1634be8fec5beb50ba Mon Sep 17 00:00:00 2001
+From: Sebastian Andrzej Siewior <sebastian <at> breakpoint.cc>
+Date: Wed, 16 Oct 2024 21:48:51 +0200
+Subject: [PATCH] test: 32_x509_get_cert_info allow single colon.
+
+Starting with 3.4.0 the double colon in emailAddress has been removed.
+Adapt the test to allow a single colon in 3.4.0 and later.
+
+Signed-off-by: Sebastian Andrzej Siewior <sebastian <at> breakpoint.cc>
+---
+ t/local/32_x509_get_cert_info.t | 4 ++++
+ 1 file changed, 4 insertions(+)
+
+diff --git a/t/local/32_x509_get_cert_info.t b/t/local/32_x509_get_cert_info.t
+index 0f7e2d5a..0fd1b689 100644
+--- a/t/local/32_x509_get_cert_info.t
++++ b/t/local/32_x509_get_cert_info.t
+@@ -188,6 +188,10 @@ for my $f (keys (%$dump)) {
+                   ) {
+                       $ext_data =~ s{(othername:) [^, ]+}{$1<unsupported>}g;
+                   }
++                  # Starting with 3.4.0 the double colon in emailAddress has been removed.
++                  if (Net::SSLeay::SSLeay >= 0x30400000) {
++                      $ext_data =~ s{emailAddress::}{emailAddress:};
++                  }
+               }
+               elsif ( $nid == 89 ) {
+                   # The output formatting for certificate policies has a
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index 0c95e8e63f..01bca91aa3 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -817,14 +817,15 @@ (define-public letsencrypt
 (define-public perl-net-ssleay
   (package
     (name "perl-net-ssleay")
-    (version "1.92")
+    (version "1.94")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://cpan/authors/id/C/CH/CHRISN/"
                                   "Net-SSLeay-" version ".tar.gz"))
               (sha256
                (base32
-                "1acnjd5180dca26dmjq0b9ib0dbavlrzd6fnf4nidrzj02rz5hj7"))))
+                "0pfrpi77964cg15dm6y0w03l64xs0k2nqc15qh2xmv8vdnjyhywx"))
+              (patches (search-patches "perl-net-ssleay-colon-parsing.patch"))))
     (build-system perl-build-system)
     (inputs (list openssl))
     (arguments
-- 
2.49.0





Information forwarded to guix-patches <at> gnu.org:
bug#77156; Package guix-patches. (Fri, 21 Mar 2025 18:05:02 GMT) Full text and rfc822 format available.

Message #11 received at 77156 <at> debbugs.gnu.org (full text, mbox):

From: Greg Hogan <code <at> greghogan.com>
To: 77156 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [core-packages-team PATCH 2/2] gnu: perl-io-socket-ssl: Update to
 2.089.
Date: Fri, 21 Mar 2025 18:03:46 +0000
* gnu/packages/web.scm (perl-io-socket-ssl): Update to 2.089.

Change-Id: I6c9331a509607f87ef07bc272b375ce133d59075
---
 gnu/packages/web.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index f8519bbfa9..3488089072 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -4335,14 +4335,14 @@ (define-public perl-io-socket-ip
 (define-public perl-io-socket-ssl
   (package
     (name "perl-io-socket-ssl")
-    (version "2.081")
+    (version "2.089")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://cpan/authors/id/S/SU/SULLR/"
                                   "IO-Socket-SSL-" version ".tar.gz"))
               (sha256
                (base32
-                "0hw4c62abq0cs3ixi0ws96i2y0fij3452514dlqn7d6nm0kgig87"))))
+                "1l8l78p9sq2mj0xb4bpjn8rph0fdxi9xa6pm968px5j22qn130zn"))))
     (build-system perl-build-system)
     (propagated-inputs
      (list perl-net-ssleay
-- 
2.49.0





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Sat, 22 Mar 2025 21:59:04 GMT) Full text and rfc822 format available.

Notification sent to Greg Hogan <code <at> greghogan.com>:
bug acknowledged by developer. (Sat, 22 Mar 2025 21:59:05 GMT) Full text and rfc822 format available.

Message #16 received at 77156-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Greg Hogan <code <at> greghogan.com>
Cc: 77156-done <at> debbugs.gnu.org
Subject: Re: [bug#77156] [core-packages-team PATCH 0/2] Fix Perl packages.
Date: Sat, 22 Mar 2025 22:58:15 +0100
Greg Hogan <code <at> greghogan.com> skribis:

> Fix breakage due to the OpenSSL update.
>
> Greg Hogan (2):
>   gnu: perl-net-ssleay: Update to 1.94.
>   gnu: perl-io-socket-ssl: Update to 2.089.

Applied, thanks.




This bug report was last modified 13 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.