summaryrefslogtreecommitdiff
path: root/devel/p5-IPC-Run
diff options
context:
space:
mode:
authorryoon <ryoon>2013-04-21 11:39:57 +0000
committerryoon <ryoon>2013-04-21 11:39:57 +0000
commitd992fbedf9bdc8a2c8ead1f895c2322a046379ab (patch)
tree6531c0584500e70c21c7bef26a8805cb36d5cce8 /devel/p5-IPC-Run
parent4e34909b14111e0db3135c4f6a2167abfeef2268 (diff)
downloadpkgsrc-d992fbedf9bdc8a2c8ead1f895c2322a046379ab.tar.gz
Update to 0.92
Changelog: 0.92 Thu Aug 30 2012 - Tests are good in dev version. Releasing to stable. 0.92_01 Wed 22 Aug 2012 - RT 59775 - Catching a signal during select() can lock up IPC::Run 0.91 Tue 14 Feb 2012 - Tests are good in dev version. Releasing to stable. 0.91_01 Mon 16 Jan 2012 - RT 57277 - Apply suggested 1 line fix for dev release to public. 0.90 Wed 29 Jun 2011 - RT 57277 - Add breaking test. No solution at present. - RT 68623 - disable parallel tests on windows - RT 43072 - Skip dragonfly platform on t/pty.t (hangs) - RT 14078 - run() miscalculates length of UTF-8 strings - RT 49693 - security patch for lib/IPC/Run/Win32IO.pm s/INADDR_ANY// - RT 38193 - Fix error detection on non-English operating systems - Add a blank doc entry for IPC::Run::Win32IO::poll to quiet windows pod parser errors - RT 57190 - handle PATH environment variable not being defined. WILL NOT default to '.' since UNIX would not do this and the program has been behaving the UNIX way to date.
Diffstat (limited to 'devel/p5-IPC-Run')
-rw-r--r--devel/p5-IPC-Run/Makefile5
-rw-r--r--devel/p5-IPC-Run/distinfo10
-rw-r--r--devel/p5-IPC-Run/patches/patch-aa8
3 files changed, 11 insertions, 12 deletions
diff --git a/devel/p5-IPC-Run/Makefile b/devel/p5-IPC-Run/Makefile
index 49b984f17d8..06d2a8c900b 100644
--- a/devel/p5-IPC-Run/Makefile
+++ b/devel/p5-IPC-Run/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.22 2012/10/31 11:18:23 asau Exp $
+# $NetBSD: Makefile,v 1.23 2013/04/21 11:39:57 ryoon Exp $
-DISTNAME= IPC-Run-0.89
+DISTNAME= IPC-Run-0.92
PKGNAME= p5-${DISTNAME}
-PKGREVISION= 3
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=IPC/}
diff --git a/devel/p5-IPC-Run/distinfo b/devel/p5-IPC-Run/distinfo
index cb3fc8f3982..ad3216a3509 100644
--- a/devel/p5-IPC-Run/distinfo
+++ b/devel/p5-IPC-Run/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.7 2010/04/25 18:05:25 seb Exp $
+$NetBSD: distinfo,v 1.8 2013/04/21 11:39:57 ryoon Exp $
-SHA1 (IPC-Run-0.89.tar.gz) = ac010b53ea48ff29f56257d4da082f47db903fca
-RMD160 (IPC-Run-0.89.tar.gz) = 607fd1be7b9687933bd90ab05ee822179f4cccc1
-Size (IPC-Run-0.89.tar.gz) = 120089 bytes
-SHA1 (patch-aa) = dd28737d37f4ff1bf695398f96cd87d93c83730e
+SHA1 (IPC-Run-0.92.tar.gz) = 87e0c796722a85e0908bb0224326af1436d35809
+RMD160 (IPC-Run-0.92.tar.gz) = 7beed806c129e214cc54854fbcc1c6ea28447282
+Size (IPC-Run-0.92.tar.gz) = 121532 bytes
+SHA1 (patch-aa) = c078542da7548c3d46cbd6c656cdfb99308ae11c
diff --git a/devel/p5-IPC-Run/patches/patch-aa b/devel/p5-IPC-Run/patches/patch-aa
index 19cc95fdfc5..b2ba464180a 100644
--- a/devel/p5-IPC-Run/patches/patch-aa
+++ b/devel/p5-IPC-Run/patches/patch-aa
@@ -1,15 +1,15 @@
-$NetBSD: patch-aa,v 1.1 2010/04/25 18:05:25 seb Exp $
+$NetBSD: patch-aa,v 1.2 2013/04/21 11:39:57 ryoon Exp $
Prevent test deadlocks on NetBSD
---- t/pty.t.orig 2010-04-01 03:40:08.000000000 +0000
+--- t/pty.t.orig 2012-01-16 07:26:28.000000000 +0000
+++ t/pty.t
@@ -99,7 +99,7 @@ my $text = "hello world\n";
## Older Perls can't ok( a, qr// ), so I manually do that here.
my $exp;
--my $platform_skip = $^O =~ /(?:aix|freebsd|openbsd|darwin)/ ? "$^O deadlocks on this test" : "";
-+my $platform_skip = $^O =~ /(?:aix|freebsd|openbsd|darwin|netbsd)/ ? "$^O deadlocks on this test" : "";
+-my $platform_skip = $^O =~ /(?:dragonfly|aix|freebsd|openbsd|darwin)/ ? "$^O deadlocks on this test" : "";
++my $platform_skip = $^O =~ /(?:dragonfly|aix|freebsd|openbsd|darwin|netbsd)/ ? "$^O deadlocks on this test" : "";
##
## stdin only