From root@poudriere.ithil.palantiri.org  Sun Apr 13 09:34:44 2014
Return-Path: <root@poudriere.ithil.palantiri.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTPS id 19384272;
	Sun, 13 Apr 2014 09:34:44 +0000 (UTC)
Received: from poudriere.ithil.palantiri.org (ithil.palantiri.org [144.76.36.55])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(Client CN "0254-fbsd-10-amd64", Issuer "0254-fbsd-10-amd64" (not verified))
	by mx1.freebsd.org (Postfix) with ESMTPS id 74C131A6B;
	Sun, 13 Apr 2014 09:34:42 +0000 (UTC)
Received: from poudriere.ithil.palantiri.org (localhost [127.0.0.1])
	by poudriere.ithil.palantiri.org (8.14.8/8.14.8) with ESMTP id s3D9Ydu5013614
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO);
	Sun, 13 Apr 2014 11:34:39 +0200 (CEST)
	(envelope-from root@poudriere.ithil.palantiri.org)
Received: (from root@localhost)
	by poudriere.ithil.palantiri.org (8.14.8/8.14.8/Submit) id s3D9Yd2e013613;
	Sun, 13 Apr 2014 11:34:39 +0200 (CEST)
	(envelope-from root)
Message-Id: <201404130934.s3D9Yd2e013613@poudriere.ithil.palantiri.org>
Date: Sun, 13 Apr 2014 11:34:39 +0200 (CEST)
From: Bartek Rutkowski <ports@robakdesign.com>
To: FreeBSD-gnats-submit@freebsd.org
Cc: lwhsu@FreeBSD.org
Subject: [PATCH] devel/py-pycallgraph: staging
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         188545
>Category:       ports
>Synopsis:       [PATCH] devel/py-pycallgraph: staging
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    lwhsu
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Apr 13 09:40:00 UTC 2014
>Closed-Date:    Fri Apr 18 07:31:41 UTC 2014
>Last-Modified:  Fri Apr 18 07:40:01 UTC 2014
>Originator:     Bartek Rutkowski
>Release:        FreeBSD 11.0-CURRENT amd64
>Organization:
Pixeware LTD
>Environment:
System: FreeBSD poudriere.ithil.palantiri.org 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r264341: Fri Apr 11 15:28:07 CEST
>Description:
- Staging
- Add LICENSE
- Fix plist
- Pet portlint

http://poudriere.ithil.palantiri.org:8080/latest-per-pkg/py27-pycallgraph/0.5.1_4/

Port maintainer (lwhsu@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 1.00.2014.03.23 (mode: change, diff: SVN)
>How-To-Repeat:
>Fix:

--- py-pycallgraph-0.5.1.patch begins here ---
Index: Makefile
===================================================================
--- Makefile	(revision 351192)
+++ Makefile	(working copy)
@@ -10,8 +10,10 @@
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
 
 MAINTAINER=	lwhsu@FreeBSD.org
-COMMENT=	A Python library that creates call graphs for Python programs
+COMMENT=	Python library that creates call graphs for Python programs
 
+LICENSE=	GPLv2
+
 RUN_DEPENDS+=	dot:${PORTSDIR}/graphics/graphviz
 
 USE_PYTHON=	yes
@@ -23,15 +25,14 @@
 
 EXAMPLESDIR=	${PREFIX}/share/examples/py-${PORTNAME}
 
-NO_STAGE=	yes
 post-install:
 .if !defined(NO_INSTALL_MANPAGES)
-	${INSTALL_MAN} ${WRKSRC}/man/pycallgraph.1 ${MAN1PREFIX}/man/man1
+	${INSTALL_MAN} ${WRKSRC}/man/pycallgraph.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
 .endif
 
 .if !defined(NOPORTEXAMPLES)
-	${MKDIR} ${EXAMPLESDIR}
-	(cd ${WRKSRC}/examples/ && ${COPYTREE_BIN} \* ${EXAMPLESDIR})
+	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
+	(cd ${WRKSRC}/examples/ && ${COPYTREE_BIN} \* ${STAGEDIR}${EXAMPLESDIR})
 .endif
 
 .include <bsd.port.mk>
Index: pkg-descr
===================================================================
--- pkg-descr	(revision 351192)
+++ pkg-descr	(working copy)
@@ -2,4 +2,4 @@
 your Python code. It's very easy to use and can point out possible problems
 with your code execution.
 
-WWW:	http://pycallgraph.slowchop.com/
+WWW: http://pycallgraph.slowchop.com/
Index: pkg-plist
===================================================================
--- pkg-plist	(revision 351192)
+++ pkg-plist	(working copy)
@@ -1,4 +1,5 @@
 bin/pycallgraph
+man/man1/pycallgraph.1.gz
 %%PYTHON_SITELIBDIR%%/pycallgraph.py
 %%PYTHON_SITELIBDIR%%/pycallgraph.pyc
 %%PYTHON_SITELIBDIR%%/pycallgraph.pyo
@@ -11,4 +12,4 @@
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/large.py
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/recursive.py
 %%PORTEXAMPLES%%%%EXAMPLESDIR%%/regexp.py
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
+@dirrm %%PORTEXAMPLES%%%%EXAMPLESDIR%%
--- py-pycallgraph-0.5.1.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->lwhsu 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sun Apr 13 09:40:04 UTC 2014 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=188545 
State-Changed-From-To: open->closed 
State-Changed-By: lwhsu 
State-Changed-When: Fri Apr 18 07:31:40 UTC 2014 
State-Changed-Why:  
Committed, with minor changes. Thanks! The plist seems OK to me. 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/188545: commit references a PR
Date: Fri, 18 Apr 2014 07:30:51 +0000 (UTC)

 Author: lwhsu
 Date: Fri Apr 18 07:30:47 2014
 New Revision: 351519
 URL: http://svnweb.freebsd.org/changeset/ports/351519
 QAT: https://qat.redports.org/buildarchive/r351519/
 
 Log:
   - Staging
   - Add LICENSE
   - Pet portlint
   
   PR:		ports/188545
   Submitted by:	Bartek Rutkowski <ports@robakdesign.com>
 
 Modified:
   head/devel/py-pycallgraph/Makefile
   head/devel/py-pycallgraph/pkg-descr
   head/devel/py-pycallgraph/pkg-plist
 
 Modified: head/devel/py-pycallgraph/Makefile
 ==============================================================================
 --- head/devel/py-pycallgraph/Makefile	Fri Apr 18 05:57:08 2014	(r351518)
 +++ head/devel/py-pycallgraph/Makefile	Fri Apr 18 07:30:47 2014	(r351519)
 @@ -10,7 +10,9 @@ MASTER_SITES=	http://pycallgraph.slowcho
  PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
  
  MAINTAINER=	lwhsu@FreeBSD.org
 -COMMENT=	A Python library that creates call graphs for Python programs
 +COMMENT=	Python library that creates call graphs for Python programs
 +
 +LICENSE=	GPLv2
  
  RUN_DEPENDS+=	dot:${PORTSDIR}/graphics/graphviz
  
 @@ -23,15 +25,14 @@ MAN1=	pycallgraph.1
  
  EXAMPLESDIR=	${PREFIX}/share/examples/py-${PORTNAME}
  
 -NO_STAGE=	yes
  post-install:
  .if !defined(NO_INSTALL_MANPAGES)
 -	${INSTALL_MAN} ${WRKSRC}/man/pycallgraph.1 ${MAN1PREFIX}/man/man1
 +	${INSTALL_MAN} ${WRKSRC}/man/pycallgraph.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
  .endif
  
  .if !defined(NOPORTEXAMPLES)
 -	${MKDIR} ${EXAMPLESDIR}
 -	(cd ${WRKSRC}/examples/ && ${COPYTREE_BIN} \* ${EXAMPLESDIR})
 +	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
 +	(cd ${WRKSRC}/examples/ && ${COPYTREE_BIN} \* ${STAGEDIR}${EXAMPLESDIR})
  .endif
  
  .include <bsd.port.mk>
 
 Modified: head/devel/py-pycallgraph/pkg-descr
 ==============================================================================
 --- head/devel/py-pycallgraph/pkg-descr	Fri Apr 18 05:57:08 2014	(r351518)
 +++ head/devel/py-pycallgraph/pkg-descr	Fri Apr 18 07:30:47 2014	(r351519)
 @@ -2,4 +2,4 @@ Python Call Graph uses GraphViz to gener
  your Python code. It's very easy to use and can point out possible problems
  with your code execution.
  
 -WWW:	http://pycallgraph.slowchop.com/
 +WWW: http://pycallgraph.slowchop.com/
 
 Modified: head/devel/py-pycallgraph/pkg-plist
 ==============================================================================
 --- head/devel/py-pycallgraph/pkg-plist	Fri Apr 18 05:57:08 2014	(r351518)
 +++ head/devel/py-pycallgraph/pkg-plist	Fri Apr 18 07:30:47 2014	(r351519)
 @@ -1,4 +1,5 @@
  bin/pycallgraph
 +man/man1/pycallgraph.1.gz
  %%PYTHON_SITELIBDIR%%/pycallgraph.py
  %%PYTHON_SITELIBDIR%%/pycallgraph.pyc
  %%PYTHON_SITELIBDIR%%/pycallgraph.pyo
 _______________________________________________
 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:
