From nobody@FreeBSD.org  Wed Dec  4 21:03:46 2013
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTPS id A89DDBFA
	for <freebsd-gnats-submit@FreeBSD.org>; Wed,  4 Dec 2013 21:03:46 +0000 (UTC)
Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by mx1.freebsd.org (Postfix) with ESMTPS id 95EE2111D
	for <freebsd-gnats-submit@FreeBSD.org>; Wed,  4 Dec 2013 21:03:46 +0000 (UTC)
Received: from oldred.freebsd.org ([127.0.1.6])
	by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id rB4L3kjQ055440
	for <freebsd-gnats-submit@FreeBSD.org>; Wed, 4 Dec 2013 21:03:46 GMT
	(envelope-from nobody@oldred.freebsd.org)
Received: (from nobody@localhost)
	by oldred.freebsd.org (8.14.5/8.14.5/Submit) id rB4L3kmc055434;
	Wed, 4 Dec 2013 21:03:46 GMT
	(envelope-from nobody)
Message-Id: <201312042103.rB4L3kmc055434@oldred.freebsd.org>
Date: Wed, 4 Dec 2013 21:03:46 GMT
From: Warren Block <wblock@FreeBSD.org>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [patch] devel/p5-Algorithm-Binpack: support staging
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         184502
>Category:       ports
>Synopsis:       [patch] devel/p5-Algorithm-Binpack: support staging
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    culot
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Dec 04 21:10:00 UTC 2013
>Closed-Date:    Mon Dec 09 09:37:47 UTC 2013
>Last-Modified:  Mon Dec  9 09:40:00 UTC 2013
>Originator:     Warren Block
>Release:        9-STABLE
>Organization:
>Environment:
FreeBSD lightning 9.2-STABLE FreeBSD 9.2-STABLE #0 r258240: Sat Nov 16 17:55:08 MST 2013     root@lightning:/usr/obj/usr/src/sys/LIGHTNING  amd64
>Description:
Support staging, with help from milki, xmj, and dinoex on IRC.
>How-To-Repeat:

>Fix:
Apply patch.

Patch attached with submission follows:

Index: Makefile
===================================================================
--- Makefile	(revision 335574)
+++ Makefile	(working copy)
@@ -12,9 +12,6 @@
 USES=		perl5
 USE_PERL5=	configure
 
-MAN3=		Algorithm::BinPack.3
-
 PORTSCOUT=	limit:^\d+\.\d+
 
-NO_STAGE=	yes
 .include <bsd.port.mk>
Index: pkg-plist
===================================================================
--- pkg-plist	(revision 335574)
+++ pkg-plist	(working copy)
@@ -1,5 +1,6 @@
 %%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm/BinPack/.packlist
 %%SITE_PERL%%/Algorithm/BinPack.pm
+%%PERL5_MAN3%%/Algorithm::BinPack.3.gz
 @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm/BinPack
 @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm
 @dirrmtry %%SITE_PERL%%/Algorithm


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->perl 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Wed Dec 4 21:10:08 UTC 2013 
Responsible-Changed-Why:  
perl@ wants this port PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184502 
Responsible-Changed-From-To: perl->culot 
Responsible-Changed-By: culot 
Responsible-Changed-When: Thu Dec 5 06:13:17 UTC 2013 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=184502 
State-Changed-From-To: open->closed 
State-Changed-By: culot 
State-Changed-When: Mon Dec 9 09:37:46 UTC 2013 
State-Changed-Why:  
Committed. Thanks Warren! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/184502: commit references a PR
Date: Mon,  9 Dec 2013 09:37:31 +0000 (UTC)

 Author: culot
 Date: Mon Dec  9 09:37:22 2013
 New Revision: 335957
 URL: http://svnweb.freebsd.org/changeset/ports/335957
 
 Log:
   - Support staging
   
   PR:		ports/184502
   Submitted by:	wblock@ (maintainer)
 
 Modified:
   head/devel/p5-Algorithm-Binpack/Makefile
   head/devel/p5-Algorithm-Binpack/pkg-plist
 
 Modified: head/devel/p5-Algorithm-Binpack/Makefile
 ==============================================================================
 --- head/devel/p5-Algorithm-Binpack/Makefile	Mon Dec  9 08:56:46 2013	(r335956)
 +++ head/devel/p5-Algorithm-Binpack/Makefile	Mon Dec  9 09:37:22 2013	(r335957)
 @@ -12,9 +12,6 @@ COMMENT=	Efficiently pack items into bin
  USES=		perl5
  USE_PERL5=	configure
  
 -MAN3=		Algorithm::BinPack.3
 -
  PORTSCOUT=	limit:^\d+\.\d+
  
 -NO_STAGE=	yes
  .include <bsd.port.mk>
 
 Modified: head/devel/p5-Algorithm-Binpack/pkg-plist
 ==============================================================================
 --- head/devel/p5-Algorithm-Binpack/pkg-plist	Mon Dec  9 08:56:46 2013	(r335956)
 +++ head/devel/p5-Algorithm-Binpack/pkg-plist	Mon Dec  9 09:37:22 2013	(r335957)
 @@ -1,5 +1,6 @@
  %%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm/BinPack/.packlist
  %%SITE_PERL%%/Algorithm/BinPack.pm
 +%%PERL5_MAN3%%/Algorithm::BinPack.3.gz
  @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm/BinPack
  @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Algorithm
  @dirrmtry %%SITE_PERL%%/Algorithm
 _______________________________________________
 svn-ports-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-ports-all
 To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
 
>Unformatted:
