diff options
author | tobez <tobez@FreeBSD.org> | 2003-12-16 10:20:16 +0000 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2003-12-16 10:20:16 +0000 |
commit | 4fcce3b5cbc5a0d9d342209616b54f341d38377c (patch) | |
tree | 1efa13506cee85d7f1ebe79dcc574071fc1735c0 /devel/p5-Coro | |
parent | 46f9fd675c9ecaa4de0112c0bf73ab894d24f574 (diff) | |
download | FreeBSD-ports-4fcce3b5cbc5a0d9d342209616b54f341d38377c.zip FreeBSD-ports-4fcce3b5cbc5a0d9d342209616b54f341d38377c.tar.gz |
Update to 0.9.
Diffstat (limited to 'devel/p5-Coro')
-rw-r--r-- | devel/p5-Coro/Makefile | 2 | ||||
-rw-r--r-- | devel/p5-Coro/distinfo | 2 | ||||
-rw-r--r-- | devel/p5-Coro/files/patch-Coro:Makefile.PL | 24 | ||||
-rw-r--r-- | devel/p5-Coro/pkg-plist | 1 |
4 files changed, 13 insertions, 16 deletions
diff --git a/devel/p5-Coro/Makefile b/devel/p5-Coro/Makefile index a8cfed1..a183eab 100644 --- a/devel/p5-Coro/Makefile +++ b/devel/p5-Coro/Makefile @@ -6,7 +6,7 @@ # PORTNAME= Coro -PORTVERSION= 0.6 +PORTVERSION= 0.9 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Coro diff --git a/devel/p5-Coro/distinfo b/devel/p5-Coro/distinfo index c35e380..67d656b 100644 --- a/devel/p5-Coro/distinfo +++ b/devel/p5-Coro/distinfo @@ -1 +1 @@ -MD5 (Coro-0.6.tar.gz) = 88f53f60471e04923845b06befd3403c +MD5 (Coro-0.9.tar.gz) = 239b34a1a901596b99b6660a8af4c4ec diff --git a/devel/p5-Coro/files/patch-Coro:Makefile.PL b/devel/p5-Coro/files/patch-Coro:Makefile.PL index 25f2f33..1646623 100644 --- a/devel/p5-Coro/files/patch-Coro:Makefile.PL +++ b/devel/p5-Coro/files/patch-Coro:Makefile.PL @@ -1,8 +1,8 @@ $FreeBSD$ ---- Coro/Makefile.PL.orig Mon Jan 27 10:25:21 2003 -+++ Coro/Makefile.PL Mon Jan 27 10:27:04 2003 -@@ -24,62 +24,15 @@ if ($^O =~ /win32/i or $^O =~ /cygwin/) +--- Coro/Makefile.PL.orig Tue Dec 16 11:11:52 2003 ++++ Coro/Makefile.PL Tue Dec 16 11:14:33 2003 +@@ -31,58 +31,15 @@ if ($^O =~ /win32/i or $^O =~ /cygwin/) $iface = "s"; } @@ -23,10 +23,8 @@ $FreeBSD$ - -EOF - --print "Do you want to enable C context sharing (y/n) [y]? "; -- --if (<> !~ /^\s*n/i) { -+if (1 || <> !~ /^\s*n/i) { +-if (prompt ("Do you want to enable C context sharing (y/n)", "y") !~ /^\s*n/i) { ++if (1 || prompt ("Do you want to enable C context sharing (y/n)", "y") !~ /^\s*n/i) { print "\nExperimental context sharing enabled.\n\n"; $DEFINE .= " -DCORO_LAZY_STACK"; } @@ -50,7 +48,7 @@ $FreeBSD$ - -l Older GNU/Linux systems (glibc-2.1 and below) need this hack. Since it is - very linux-specific it is also quite fast for newer versions; when it -- works, that is... +- works, that is (currently x86 only)... - -i IRIX. For some reason, SGI really does not like to follow the unix - standard (does that surprise you?), so this workaround might be needed @@ -59,11 +57,9 @@ $FreeBSD$ -EOF - retry: -- print "Use which implementation,\n", -- "<s>etjmp/longjump, <u>context, <i>rix or <l>inux [$iface]? "; -- my $r = <>; -+ my $r = "s" || <>; +- my $r = prompt "Use which implementation,\n" . ++ my $r = 's' || prompt "Use which implementation,\n" . + "<s>etjmp/longjump, <u>context, <i>rix or <l>inux?", + $iface; $iface = lc $1 if $r =~ /(\S)/; - - if ($iface eq "u") { diff --git a/devel/p5-Coro/pkg-plist b/devel/p5-Coro/pkg-plist index 8fa2f8e..333baf0 100644 --- a/devel/p5-Coro/pkg-plist +++ b/devel/p5-Coro/pkg-plist @@ -14,6 +14,7 @@ %%SITE_PERL%%/%%PERL_ARCH%%/Coro/Specific.pm %%SITE_PERL%%/%%PERL_ARCH%%/Coro/Timer.pm %%SITE_PERL%%/%%PERL_ARCH%%/Coro/MakeMaker.pm +%%SITE_PERL%%/%%PERL_ARCH%%/Coro/Select.pm %%SITE_PERL%%/%%PERL_ARCH%%/Coro/Signal.pm %%SITE_PERL%%/%%PERL_ARCH%%/Coro/Handle.pm %%SITE_PERL%%/%%PERL_ARCH%%/Coro/Util.pm |