pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/p5-Net-SSH Update dependency list according t...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/eefb8c08ec78
branches:  trunk
changeset: 367071:eefb8c08ec78
user:      he <he%pkgsrc.org@localhost>
date:      Wed Aug 23 14:52:53 2017 +0000

description:
Update dependency list according to Makefile.pl, in particular
add dependency on the recently added p5-Crypt-Curve25519 package.
Bump PKGREVISION.

diffstat:

 security/p5-Net-SSH/Makefile                              |   8 ++++--
 security/p5-Net-SSH/distinfo                              |   3 +-
 security/p5-Net-SSH/patches/patch-lib_Net_SSH_Perl_Kex.pm |  16 +++++++++++++++
 3 files changed, 23 insertions(+), 4 deletions(-)

diffs (62 lines):

diff -r b66073fb302a -r eefb8c08ec78 security/p5-Net-SSH/Makefile
--- a/security/p5-Net-SSH/Makefile      Wed Aug 23 13:59:11 2017 +0000
+++ b/security/p5-Net-SSH/Makefile      Wed Aug 23 14:52:53 2017 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.23 2017/06/05 14:24:34 ryoon Exp $
+# $NetBSD: Makefile,v 1.24 2017/08/23 14:52:53 he Exp $
 #
 
 DISTNAME=              Net-SSH-Perl-2.09.01
 PKGNAME=               p5-${DISTNAME:C/-Perl//}
-PKGREVISION=           1
+PKGREVISION=           2
 CATEGORIES=            security net perl5
 MASTER_SITES=          ${MASTER_SITE_PERL_CPAN:=Net/}
 
@@ -13,10 +13,12 @@
 LICENSE=               ${PERL5_LICENSE}
 
 DEPENDS+=              p5-Convert-PEM>=0.05:../../textproc/p5-Convert-PEM
-DEPENDS+=              p5-CryptX-[0-9]*:../../security/p5-CryptX
+DEPENDS+=              p5-CryptX>=0.032:../../security/p5-CryptX
 DEPENDS+=              p5-Digest-BubbleBabble>=0.01:../../security/p5-Digest-BubbleBabble
 DEPENDS+=              p5-Math-GMP>=1.04:../../math/p5-Math-GMP
 DEPENDS+=              p5-String-CRC32>=1.2:../../textproc/p5-String-CRC32
+DEPENDS+=              p5-Digest-MD5-[0-9]*:../../security/p5-Digest-MD5
+DEPENDS+=              p5-Crypt-Curve25519>=0.05:../../security/p5-Crypt-Curve25519
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.p5-Net-SSH
 PKG_SUPPORTED_OPTIONS= idea
diff -r b66073fb302a -r eefb8c08ec78 security/p5-Net-SSH/distinfo
--- a/security/p5-Net-SSH/distinfo      Wed Aug 23 13:59:11 2017 +0000
+++ b/security/p5-Net-SSH/distinfo      Wed Aug 23 14:52:53 2017 +0000
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.7 2017/04/07 00:41:59 mef Exp $
+$NetBSD: distinfo,v 1.8 2017/08/23 14:52:53 he Exp $
 
 SHA1 (Net-SSH-Perl-2.09.01.tar.gz) = 926cbdbb30aa85b7503698763455ad6926c471ee
 RMD160 (Net-SSH-Perl-2.09.01.tar.gz) = 235dab415b1e094f4b13313d5fe0e6ed359c8c39
 SHA512 (Net-SSH-Perl-2.09.01.tar.gz) = e7d7194e175490ba0849357ebbb504932d97b358722f2045e0acbaba9c14dc945629bd5653b36934317632e0d3894525e4f34ea48b494f2cc815959106138b44
 Size (Net-SSH-Perl-2.09.01.tar.gz) = 255286 bytes
 SHA1 (patch-aa) = d85b70f5f4d4ccb55aabef6671171bf64c6fcdb9
+SHA1 (patch-lib_Net_SSH_Perl_Kex.pm) = ebd933b7ee9510a8182083da97ef38433ee61102
diff -r b66073fb302a -r eefb8c08ec78 security/p5-Net-SSH/patches/patch-lib_Net_SSH_Perl_Kex.pm
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/security/p5-Net-SSH/patches/patch-lib_Net_SSH_Perl_Kex.pm Wed Aug 23 14:52:53 2017 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-lib_Net_SSH_Perl_Kex.pm,v 1.1 2017/08/23 14:52:53 he Exp $
+
+At least output a debug message if use of the key exchange algo fails.
+
+--- lib/Net/SSH/Perl/Kex.pm.orig       2017-03-15 10:12:27.000000000 +0000
++++ lib/Net/SSH/Perl/Kex.pm
+@@ -232,6 +232,9 @@ sub choose_kex {
+     if (my $pkg = $kexmap{$name}) {
+         $kex->{ssh}->debug("Using $name for key exchange");
+         eval "use Net::SSH::Perl::Kex::$pkg";
++      if ($@) {
++          $kex->{ssh}->debug("Problem doing use Net::SSH::Perl::Kex::$pkg: $@");
++      }
+         $kex->{class_name} = __PACKAGE__ . '::' . $pkg;
+     } else {
+         croak "Bad kex algorithm $name";



Home | Main Index | Thread Index | Old Index