From gslin@ccreader.NCTU.edu.tw  Sat Jun  9 23:56:16 2007
Return-Path: <gslin@ccreader.NCTU.edu.tw>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 4549916A400
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  9 Jun 2007 23:56:16 +0000 (UTC)
	(envelope-from gslin@ccreader.NCTU.edu.tw)
Received: from ccreader.NCTU.edu.tw (ccreader.nctu.edu.tw [140.113.54.119])
	by mx1.freebsd.org (Postfix) with ESMTP id DE28813C469
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  9 Jun 2007 23:56:15 +0000 (UTC)
	(envelope-from gslin@ccreader.NCTU.edu.tw)
Received: by ccreader.NCTU.edu.tw (Postfix, from userid 1000)
	id 0DB8D5C1F; Sun, 10 Jun 2007 07:56:15 +0800 (CST)
Message-Id: <20070609235615.0DB8D5C1F@ccreader.NCTU.edu.tw>
Date: Sun, 10 Jun 2007 07:56:15 +0800 (CST)
From: Gea-Suan Lin <gslin@gslin.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc: gslin@gslin.org
Subject: [NEW PORT] devel/p5-IO-Async: Perl modules that implement asynchronous filehandle IO
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         113505
>Category:       ports
>Synopsis:       [NEW PORT] devel/p5-IO-Async: Perl modules that implement asynchronous filehandle IO
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    clsung
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Jun 10 00:00:13 GMT 2007
>Closed-Date:    Thu Jun 14 01:58:08 GMT 2007
>Last-Modified:  Thu Jun 14 02:00:11 GMT 2007
>Originator:     Gea-Suan Lin
>Release:        FreeBSD 6.2-STABLE i386
>Organization:
>Environment:
System: FreeBSD ccreader.NCTU.edu.tw 6.2-STABLE FreeBSD 6.2-STABLE #1: Tue Jun  5 03:26:27 CST
>Description:
This collection of modules allows programs to be written that perform
asynchronous filehandle IO operations. A typical program using them
would consist of a single subclass of IO::Async::Set to act as a
container for a number of IO::Async::Notifier objects (or subclasses
thereof). The set itself is responsible for checking read- or
write-readiness, and informing the notifiers of these conditions. The
notifiers then perform whatever work is required on these conditions,
by using subclass methods or callback functions.

WWW:	http://search.cpan.org/dist/IO-Async/

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- p5-IO-Async-0.07.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	p5-IO-Async
#	p5-IO-Async/pkg-descr
#	p5-IO-Async/Makefile
#	p5-IO-Async/pkg-plist
#	p5-IO-Async/distinfo
#
echo c - p5-IO-Async
mkdir -p p5-IO-Async > /dev/null 2>&1
echo x - p5-IO-Async/pkg-descr
sed 's/^X//' >p5-IO-Async/pkg-descr << 'END-of-p5-IO-Async/pkg-descr'
XThis collection of modules allows programs to be written that perform
Xasynchronous filehandle IO operations. A typical program using them
Xwould consist of a single subclass of IO::Async::Set to act as a
Xcontainer for a number of IO::Async::Notifier objects (or subclasses
Xthereof). The set itself is responsible for checking read- or
Xwrite-readiness, and informing the notifiers of these conditions. The
Xnotifiers then perform whatever work is required on these conditions,
Xby using subclass methods or callback functions.
X
XWWW:	http://search.cpan.org/dist/IO-Async/
END-of-p5-IO-Async/pkg-descr
echo x - p5-IO-Async/Makefile
sed 's/^X//' >p5-IO-Async/Makefile << 'END-of-p5-IO-Async/Makefile'
X# New ports collection makefile for:	p5-IO-Async
X# Date created:		2007-06-10
X# Whom:			Gea-Suan Lin <gslin@gslin.org>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	IO-Async
XPORTVERSION=	0.07
XCATEGORIES=	devel perl5
XMASTER_SITES=	CPAN
XMASTER_SITE_SUBDIR=	IO
XPKGNAMEPREFIX=	p5-
X
XMAINTAINER=	gslin@gslin.org
XCOMMENT=	Perl modules that implement asynchronous filehandle IO
X
XRUN_DEPENDS=	${SITE_PERL}/${PERL_ARCH}/IO/Poll.pm:${PORTSDIR}/devel/p5-IO
X
XPERL_CONFIGURE=	yes
X
XMAN3=		IO::Async.3 IO::Async::Buffer.3 IO::Async::ChildManager.3 \
X		IO::Async::Notifier.3 IO::Async::Set.3 \
X		IO::Async::Set::GMainLoop.3 IO::Async::Set::IO_Poll.3 \
X		IO::Async::Set::Select.3 IO::Async::SignalProxy.3
X
X.include <bsd.port.mk>
END-of-p5-IO-Async/Makefile
echo x - p5-IO-Async/pkg-plist
sed 's/^X//' >p5-IO-Async/pkg-plist << 'END-of-p5-IO-Async/pkg-plist'
X@comment $FreeBSD$
X%%SITE_PERL%%/%%PERL_ARCH%%/auto/IO/Async/.packlist
X%%SITE_PERL%%/IO/Async.pod
X%%SITE_PERL%%/IO/Async/Buffer.pm
X%%SITE_PERL%%/IO/Async/ChildManager.pm
X%%SITE_PERL%%/IO/Async/Notifier.pm
X%%SITE_PERL%%/IO/Async/Set.pm
X%%SITE_PERL%%/IO/Async/Set/GMainLoop.pm
X%%SITE_PERL%%/IO/Async/Set/IO_Poll.pm
X%%SITE_PERL%%/IO/Async/Set/Select.pm
X%%SITE_PERL%%/IO/Async/SignalProxy.pm
X@dirrmtry %%SITE_PERL%%/mach/auto/IO/Async
X@dirrmtry %%SITE_PERL%%/mach/auto/IO
X@dirrmtry %%SITE_PERL%%/IO/Async/Set
X@dirrmtry %%SITE_PERL%%/IO/Async
X@dirrmtry %%SITE_PERL%%/IO
END-of-p5-IO-Async/pkg-plist
echo x - p5-IO-Async/distinfo
sed 's/^X//' >p5-IO-Async/distinfo << 'END-of-p5-IO-Async/distinfo'
XMD5 (IO-Async-0.07.tar.gz) = d0addd5a98b59de0c15f6542937ec7f9
XSHA256 (IO-Async-0.07.tar.gz) = 133efb840a7d8d558de7c875aadc176b6dea4d786a6aa53b7eedfb2b223968d2
XSIZE (IO-Async-0.07.tar.gz) = 30647
END-of-p5-IO-Async/distinfo
exit
--- p5-IO-Async-0.07.shar ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->clsung 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sun Jun 10 00:00:19 UTC 2007 
Responsible-Changed-Why:  
clsung@ wants his PRs 

http://www.freebsd.org/cgi/query-pr.cgi?pr=113505 
State-Changed-From-To: open->closed 
State-Changed-By: clsung 
State-Changed-When: Thu Jun 14 01:58:07 UTC 2007 
State-Changed-Why:  
New port added. Thank You. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=113505 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/113505: commit references a PR
Date: Thu, 14 Jun 2007 01:57:18 +0000 (UTC)

 clsung      2007-06-14 01:57:12 UTC
 
   FreeBSD ports repository
 
   Modified files:
     devel                Makefile 
   Added files:
     devel/p5-IO-Async    Makefile distinfo pkg-descr pkg-plist 
   Log:
   Add p5-IO-Async 0.07, perl modules that implement asynchronous
   filehandle IO.
   
   PR:             ports/113505
   Submitted by:   Gea-Suan Lin <gslin at gslin.org>
   
   Revision  Changes    Path
   1.2784    +1 -0      ports/devel/Makefile
   1.1       +25 -0     ports/devel/p5-IO-Async/Makefile (new)
   1.1       +3 -0      ports/devel/p5-IO-Async/distinfo (new)
   1.1       +10 -0     ports/devel/p5-IO-Async/pkg-descr (new)
   1.1       +16 -0     ports/devel/p5-IO-Async/pkg-plist (new)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
