summaryrefslogtreecommitdiff
path: root/security/p5-Net-SSH
diff options
context:
space:
mode:
authorhe <he>2008-11-18 16:19:04 +0000
committerhe <he>2008-11-18 16:19:04 +0000
commita4e885c281aaa879d1d2b017139ae144839aa0a6 (patch)
tree219f0c371830fe14a8a44035954dd9f5de4e7eca /security/p5-Net-SSH
parent39283e00879419ef87c26eaf7f2d1c47015eadc0 (diff)
downloadpkgsrc-a4e885c281aaa879d1d2b017139ae144839aa0a6.tar.gz
Update from version 1.30nb1 to 1.33.
Pkgsrc changes: o Adapt patch-aa, still needed for non-hanging tests... Upstream changes: 1.33 2008.10.21 - Fix open() calls (rt.cpan.org #40020) - Fix non-shell problem (rt.cpan.org #39980) - Allow full agent forwarding (rt.cpan.org #32190) - Handle hashed known_hosts files (Greg Sabino Mullane, rt.cpan.org #25175) 1.32 2008.10.16 - Add IO::Handle to Perl.pm (rt.cpan.org #40057, #35985) - Minor test cleanups. 1.31 2008.10.02 - New co-maintainer, Greg Sabino Mullane (TURNSTEP). - Prevent t/03-packet.t from hanging due to high file descriptor. (altblue at n0i.net, rt.cpan.org #6101) - Skip some tests if Math::GMP not installed (e.g. from choosing only protocol 2 in Makefile.PL) (Greg Sabino Mullane, reported in rt.cpan.org #25152) - If ENV{HOME} is not set, use getpwuid. If both fail and the dir is needed, we croak. (Greg Sabino Mullane, expanded from patch by dgehl at inverse.ca in rt.cpan.org #25174) - Fix incorrect logical/bitwise AND mixup (Peter.Haydon at uk.fujitsu.com, rt.cpan.org #31490) - Allow empty stdin for SSH2 (rcp at rcable.co.uk, rt.cpan.org #32730) - Adjust terminal dimensions dynamically if Term::ReadKey is available (john at sackheads.org, rt.cpan.org #34874)
Diffstat (limited to 'security/p5-Net-SSH')
-rw-r--r--security/p5-Net-SSH/Makefile7
-rw-r--r--security/p5-Net-SSH/distinfo10
-rw-r--r--security/p5-Net-SSH/patches/patch-aa10
3 files changed, 13 insertions, 14 deletions
diff --git a/security/p5-Net-SSH/Makefile b/security/p5-Net-SSH/Makefile
index ee7e53f2e33..2471d533c6c 100644
--- a/security/p5-Net-SSH/Makefile
+++ b/security/p5-Net-SSH/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.6 2008/10/19 19:18:46 he Exp $
+# $NetBSD: Makefile,v 1.7 2008/11/18 16:19:04 he Exp $
#
-DISTNAME= Net-SSH-Perl-1.30
-PKGNAME= p5-Net-SSH-1.30
-PKGREVISION= 1
+DISTNAME= Net-SSH-Perl-1.33
+PKGNAME= p5-Net-SSH-1.33
SVR4_PKGNAME= p5nsh
CATEGORIES= security net perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/}
diff --git a/security/p5-Net-SSH/distinfo b/security/p5-Net-SSH/distinfo
index d50d311f8cb..b29f79f14f1 100644
--- a/security/p5-Net-SSH/distinfo
+++ b/security/p5-Net-SSH/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2007/10/22 06:53:16 dogcow Exp $
+$NetBSD: distinfo,v 1.3 2008/11/18 16:19:04 he Exp $
-SHA1 (Net-SSH-Perl-1.30.tar.gz) = 00809b91d1648a7a61d3463fd4c0f10de5769684
-RMD160 (Net-SSH-Perl-1.30.tar.gz) = 03e690071b43795e74e7240cd2183ebf80e83e37
-Size (Net-SSH-Perl-1.30.tar.gz) = 94950 bytes
-SHA1 (patch-aa) = 718adcedca009725d834be3307a45e4169f7eb29
+SHA1 (Net-SSH-Perl-1.33.tar.gz) = 969e1b32d0f2eed1cafd6495f86273db85c4cfb1
+RMD160 (Net-SSH-Perl-1.33.tar.gz) = 3dbb311b6be69a770410f91f9632a1806a38973e
+Size (Net-SSH-Perl-1.33.tar.gz) = 113826 bytes
+SHA1 (patch-aa) = d91762932f048a76fd90802d5960f1aeeeec3466
diff --git a/security/p5-Net-SSH/patches/patch-aa b/security/p5-Net-SSH/patches/patch-aa
index b54ddf9fb76..ce48177822a 100644
--- a/security/p5-Net-SSH/patches/patch-aa
+++ b/security/p5-Net-SSH/patches/patch-aa
@@ -1,14 +1,14 @@
-$NetBSD: patch-aa,v 1.1.1.1 2005/10/13 20:14:18 seb Exp $
+$NetBSD: patch-aa,v 1.2 2008/11/18 16:19:04 he Exp $
XXX YMMV
---- t/03-packet.t.orig 2003-12-20 04:40:21.000000000 +0000
+--- t/03-packet.t.orig 2008-10-21 15:41:51.000000000 +0000
+++ t/03-packet.t
@@ -99,7 +99,7 @@ $ssh->{session}{sock} = $fh;
- # with real handles that might be open. With Test::More in use
# (which dups some handles), we're likely to have as many as 8
- # real handles open, if note more
-- sub FILENO { 255 }
+ # real handles open, if not more
+ # However, too high and we run into problems with the shell
+- sub FILENO { 25 }
+ sub FILENO { 16 }
sub READ