mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-03-13 13:07:27 -07:00
- EAPI7 - Fix DEPEND/BDEPEND/etc - Remove empty/unused variable assignments - Parallel tests - Migrate .-in-inc "sed" to a "patch" - Add possible fix patch for bug #627058 Bug: https://bugs.gentoo.org/627058 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
32 lines
889 B
Diff
32 lines
889 B
Diff
From 877c93686ad36d5dcc4a42b8bff5f3c5383e6514 Mon Sep 17 00:00:00 2001
|
|
From: Kent Fredric <kentnl@gentoo.org>
|
|
Date: Thu, 2 Jul 2020 20:16:20 +1200
|
|
Subject: Change load order of Convert::ASCII::Armour
|
|
|
|
Which is reported to somehow fix segv's in t/11-wrapper.t
|
|
|
|
Bug: https://rt.cpan.org/Ticket/Display.html?id=4877
|
|
Bug: https://bugs.gentoo.org/627058
|
|
---
|
|
lib/Crypt/RSA.pm | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/Crypt/RSA.pm b/lib/Crypt/RSA.pm
|
|
index 5a3d3bc..072f0b4 100644
|
|
--- a/lib/Crypt/RSA.pm
|
|
+++ b/lib/Crypt/RSA.pm
|
|
@@ -15,9 +15,9 @@ use lib "$Bin/../../lib";
|
|
use strict;
|
|
use base 'Class::Loader';
|
|
use base 'Crypt::RSA::Errorhandler';
|
|
+use Convert::ASCII::Armour;
|
|
use Crypt::RSA::Key;
|
|
use Crypt::RSA::DataFormat qw(steak octet_len);
|
|
-use Convert::ASCII::Armour;
|
|
use Carp;
|
|
|
|
$Crypt::RSA::VERSION = '1.99'; # change this elsewhere too!
|
|
--
|
|
2.27.0
|
|
|