From cmanley@hfx.xs4all.nl  Fri Dec 29 13:06:56 2006
Return-Path: <cmanley@hfx.xs4all.nl>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 0D31D16A4AB
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 29 Dec 2006 13:06:56 +0000 (UTC)
	(envelope-from cmanley@hfx.xs4all.nl)
Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35])
	by mx1.freebsd.org (Postfix) with ESMTP id AE4E313C4A1
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 29 Dec 2006 13:06:55 +0000 (UTC)
	(envelope-from cmanley@hfx.xs4all.nl)
Received: from hfx.xs4all.nl (hfx.xs4all.nl [80.126.189.25])
	by smtp-vbr15.xs4all.nl (8.13.8/8.13.8) with ESMTP id kBTD6r10043023
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 29 Dec 2006 14:06:54 +0100 (CET)
	(envelope-from cmanley@hfx.xs4all.nl)
Received: from hfx.xs4all.nl (localhost [127.0.0.1])
	by hfx.xs4all.nl (8.13.6/8.13.6) with ESMTP id kBTD6pb1021467
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 29 Dec 2006 14:06:52 +0100 (CET)
	(envelope-from cmanley@hfx.xs4all.nl)
Received: (from cmanley@localhost)
	by hfx.xs4all.nl (8.13.6/8.13.6/Submit) id kBTD6pUx021466;
	Fri, 29 Dec 2006 14:06:51 +0100 (CET)
	(envelope-from cmanley)
Message-Id: <200612291306.kBTD6pUx021466@hfx.xs4all.nl>
Date: Fri, 29 Dec 2006 14:06:51 +0100 (CET)
From: Craig Manley <cmanley@xs4all.nl>
Reply-To: Craig Manley <cmanley@xs4all.nl>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: New port: p5-Scope-Guard
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         107321
>Category:       ports
>Synopsis:       New port: p5-Scope-Guard
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Dec 29 13:10:19 GMT 2006
>Closed-Date:    Sat Dec 30 22:08:59 GMT 2006
>Last-Modified:  Sat Dec 30 22:10:17 GMT 2006
>Originator:     Craig Manley
>Release:        FreeBSD 6.1-RELEASE-p5 amd64
>Organization:
>Environment:
System: FreeBSD hfx.xs4all.nl 6.1-RELEASE-p5 FreeBSD 6.1-RELEASE-p5 #1: Sun Sep 3 17:08:38 CEST 2006 root@hfx.xs4all.nl:/usr/obj/usr/src/sys/HFX amd64


	
>Description:
This module provides a convenient way to perform cleanup or other forms of
resource management at the end of a scope. It is particularly useful when
dealing with exceptions: the Scope::Guard constructor takes a reference to a
subroutine that is guaranteed to be called even if the thread of execution is
aborted prematurely. This effectively allows lexically-scoped "promises" to be
made that are automatically honoured by perl's garbage collector.

For more info, see: http://www.cuj.com/documents/s=8000/cujcexp1812alexandr/

WWW: http://search.cpan.org/dist/Scope-Guard/

>How-To-Repeat:
	
>Fix:
# 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:
#
#       .
#       ./Makefile
#       ./distinfo
#       ./pkg-descr
#       ./pkg-plist
#
echo c - .
mkdir -p . > /dev/null 2>&1
echo x - ./Makefile
sed 's/^X//' >./Makefile << 'END-of-./Makefile'
X# New ports collection makefile for:   Scope-Guard
X# Date created:           29 December 2006
X# Whom:                   Craig Manley
X#
X# $FreeBSD$
X#
X
XPORTNAME=      Scope-Guard
XPORTVERSION=   0.02
XCATEGORIES=    devel perl5
XMASTER_SITES=  ${MASTER_SITE_PERL_CPAN}
X#MASTER_SITE_SUBDIR=   Scope
XMASTER_SITE_SUBDIR=    ../by-authors/id/C/CH/CHOCOLATE
XPKGNAMEPREFIX= p5-
X
XMAINTAINER=    perl@FreeBSD.org
XCOMMENT=       Lexically scoped resource management
X
XPERL_CONFIGURE=        yes
X
XMAN3=          Scope::Guard.3
X
X.include <bsd.port.pre.mk>
X
X.if ${PERL_LEVEL} < 500600
XIGNORE=                requires perl 5.6.0 or later
X.endif
X
X.include <bsd.port.post.mk>
END-of-./Makefile
echo x - ./distinfo
sed 's/^X//' >./distinfo << 'END-of-./distinfo'
XMD5 (Scope-Guard-0.02.tar.gz) = 6c5da688e7dbe762147fd1441a747b25
XSHA256 (Scope-Guard-0.02.tar.gz) = 562ac7867c68f488b63f6ef88230b7b341dc69d0a91d31b1bdc672b7bf1f3d10
XSIZE (Scope-Guard-0.02.tar.gz) = 2736
END-of-./distinfo
echo x - ./pkg-descr
sed 's/^X//' >./pkg-descr << 'END-of-./pkg-descr'
XThis module provides a convenient way to perform cleanup or other forms of
Xresource management at the end of a scope. It is particularly useful when
Xdealing with exceptions: the Scope::Guard constructor takes a reference to a
Xsubroutine that is guaranteed to be called even if the thread of execution is
Xaborted prematurely. This effectively allows lexically-scoped "promises" to be
Xmade that are automatically honoured by perl's garbage collector.
X
XFor more info, see: http://www.cuj.com/documents/s=8000/cujcexp1812alexandr/
X
XWWW: http://search.cpan.org/dist/Scope-Guard/
END-of-./pkg-descr
echo x - ./pkg-plist
sed 's/^X//' >./pkg-plist << 'END-of-./pkg-plist'
X@comment $FreeBSD$
X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Scope/Guard/.packlist
X%%SITE_PERL%%/Scope/Guard.pm
X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Scope/Guard
X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Scope
X@dirrmtry %%SITE_PERL%%/Scope
END-of-./pkg-plist
exit


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Fri Dec 29 13:20:14 UTC 2006 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=107321 
State-Changed-From-To: open->feedback 
State-Changed-By: miwi 
State-Changed-When: Sat Dec 30 20:01:34 UTC 2006 
State-Changed-Why:  
Ask for maintainer approval. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=107321 
State-Changed-From-To: feedback->closed 
State-Changed-By: miwi 
State-Changed-When: Sat Dec 30 22:08:57 UTC 2006 
State-Changed-Why:  
New port added. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/107321: commit references a PR
Date: Sat, 30 Dec 2006 22:09:22 +0000 (UTC)

 miwi        2006-12-30 22:09:16 UTC
 
   FreeBSD ports repository
 
   Modified files:
     devel                Makefile 
   Added files:
     devel/p5-Scope-Guard Makefile distinfo pkg-descr pkg-plist 
   Log:
   This module provides a convenient way to perform cleanup or other forms of
   resource management at the end of a scope. It is particularly useful when
   dealing with exceptions: the Scope::Guard constructor takes a reference to a
   subroutine that is guaranteed to be called even if the thread of execution is
   aborted prematurely. This effectively allows lexically-scoped "promises" to be
   made that are automatically honoured by perl's garbage collector.
   
   For more info, see: http://www.cuj.com/documents/s=8000/cujcexp1812alexandr/
   
   WWW: http://search.cpan.org/dist/Scope-Guard/
   
   PR:             ports/107321
   Submitted by:   Craig Manley <cmanley@xs4all.nl>
   
   Revision  Changes    Path
   1.2567    +1 -0      ports/devel/Makefile
   1.1       +29 -0     ports/devel/p5-Scope-Guard/Makefile (new)
   1.1       +3 -0      ports/devel/p5-Scope-Guard/distinfo (new)
   1.1       +10 -0     ports/devel/p5-Scope-Guard/pkg-descr (new)
   1.1       +6 -0      ports/devel/p5-Scope-Guard/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:
