From yzlin@cs.nctu.edu.tw  Fri Aug 29 17:55:12 2008
Return-Path: <yzlin@cs.nctu.edu.tw>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 17A6F1065672
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 29 Aug 2008 17:55:12 +0000 (UTC)
	(envelope-from yzlin@cs.nctu.edu.tw)
Received: from csmailgate.cs.nctu.edu.tw (csmailgate.cs.nctu.edu.tw [140.113.235.103])
	by mx1.freebsd.org (Postfix) with ESMTP id C4EEA8FC1E
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 29 Aug 2008 17:55:11 +0000 (UTC)
	(envelope-from yzlin@cs.nctu.edu.tw)
Received: from bsd0.cs.nctu.edu.tw (bsd0 [140.113.235.130])
	by csmailgate.cs.nctu.edu.tw (Postfix) with ESMTP id BADDA12B064
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 30 Aug 2008 01:55:10 +0800 (CST)
Received: (from yzlin@localhost)
	by bsd0.cs.nctu.edu.tw (8.14.2/8.14.2/Submit) id m7THtAFx068990;
	Sat, 30 Aug 2008 01:55:10 +0800 (CST)
	(envelope-from yzlin)
Message-Id: <200808291755.m7THtAFx068990@bsd0.cs.nctu.edu.tw>
Date: Sat, 30 Aug 2008 01:55:10 +0800 (CST)
From: Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [NEW PORT] graphics/py25-graph: A library for working with graphs in Python
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         126957
>Category:       ports
>Synopsis:       [NEW PORT] graphics/py25-graph: A library for working with graphs in Python
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Aug 29 18:00:06 UTC 2008
>Closed-Date:    Fri Sep 05 14:15:35 UTC 2008
>Last-Modified:  Fri Sep  5 14:20:22 UTC 2008
>Originator:     Yi-Jheng Lin
>Release:        FreeBSD 7.0-RELEASE-p1 amd64
>Organization:
NCTU CS
>Environment:
System: FreeBSD stucgi 7.0-RELEASE-p1 FreeBSD 7.0-RELEASE-p1 #0: Thu Apr 17 15:56:39 CST 2008
>Description:
A library for working with graphs in Python.
It provides a suitable data structure for representing graphs
and a whole set of important algorithms.

WWW:	http://code.google.com/p/python-graph/

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

--- py25-graph-1.0.0.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:
#
#	py-graph
#	py-graph/pkg-descr
#	py-graph/Makefile
#	py-graph/pkg-plist
#	py-graph/distinfo
#
echo c - py-graph
mkdir -p py-graph > /dev/null 2>&1
echo x - py-graph/pkg-descr
sed 's/^X//' >py-graph/pkg-descr << 'END-of-py-graph/pkg-descr'
XA library for working with graphs in Python.
XIt provides a suitable data structure for representing graphs
Xand a whole set of important algorithms.
X
XWWW:	http://code.google.com/p/python-graph/
END-of-py-graph/pkg-descr
echo x - py-graph/Makefile
sed 's/^X//' >py-graph/Makefile << 'END-of-py-graph/Makefile'
X# New ports collection makefile for:	py-graph
X# Date created:		2008-08-29
X# Whom:			Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	graph
XPORTVERSION=	1.0.0
XCATEGORIES=	graphics python
XMASTER_SITES=	${MASTER_SITE_GOOGLE_CODE}
XPKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
XDISTNAME=	python-graph-${PORTVERSION}
X
XMAINTAINER=	yzlin@cs.nctu.edu.tw
XCOMMENT=	A library for working with graphs in Python
X
XBUILD_DEPENDS=	dot:${PORTSDIR}/graphics/graphviz
XRUN_DEPENDS=	${BUILD_DEPENDS}
X
XPROJECTHOST=	python-graph
XUSE_PYTHON=	yes
XUSE_PYDISTUTILS=	yes
XPYDISTUTILS_PKGNAME=	python-graph
X
XWRKSRC=		${WRKDIR}/${PYDISTUTILS_PKGNAME}
X
XUSE_BZIP2=	yes
X
XDOCSDIR=	${PREFIX}/share/doc/py-${PORTNAME}
XEXAMPLESDIR=	${PREFIX}/share/examples/py-${PORTNAME}
X
Xpost-install:
X.if !defined(NOPORTDOCS)
X	@${MKDIR} ${DOCSDIR}
X	${INSTALL_MAN} ${WRKSRC}/docs/* ${DOCSDIR}
X.endif
X.if !defined(NOPORTEXAMPLES)
X	@${MKDIR} ${EXAMPLESDIR}
X	${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}
X.endif
X
X.include <bsd.port.mk>
END-of-py-graph/Makefile
echo x - py-graph/pkg-plist
sed 's/^X//' >py-graph/pkg-plist << 'END-of-py-graph/pkg-plist'
X%%PYTHON_SITELIBDIR%%/graph/__init__.py
X%%PYTHON_SITELIBDIR%%/graph/__init__.pyc
X%%PYTHON_SITELIBDIR%%/graph/__init__.pyo
X%%PYTHON_SITELIBDIR%%/graph/accessibility.py
X%%PYTHON_SITELIBDIR%%/graph/accessibility.pyc
X%%PYTHON_SITELIBDIR%%/graph/accessibility.pyo
X%%PYTHON_SITELIBDIR%%/graph/generators.py
X%%PYTHON_SITELIBDIR%%/graph/generators.pyc
X%%PYTHON_SITELIBDIR%%/graph/generators.pyo
X%%PYTHON_SITELIBDIR%%/graph/minmax.py
X%%PYTHON_SITELIBDIR%%/graph/minmax.pyc
X%%PYTHON_SITELIBDIR%%/graph/minmax.pyo
X%%PYTHON_SITELIBDIR%%/graph/readwrite.py
X%%PYTHON_SITELIBDIR%%/graph/readwrite.pyc
X%%PYTHON_SITELIBDIR%%/graph/readwrite.pyo
X%%PYTHON_SITELIBDIR%%/graph/searching.py
X%%PYTHON_SITELIBDIR%%/graph/searching.pyc
X%%PYTHON_SITELIBDIR%%/graph/searching.pyo
X%%PYTHON_SITELIBDIR%%/graph/sorting.py
X%%PYTHON_SITELIBDIR%%/graph/sorting.pyc
X%%PYTHON_SITELIBDIR%%/graph/sorting.pyo
X@dirrm %%PYTHON_SITELIBDIR%%/graph
X%%PORTDOCS%%%%DOCSDIR%%/api-objects.txt
X%%PORTDOCS%%%%DOCSDIR%%/class-tree.html
X%%PORTDOCS%%%%DOCSDIR%%/crarr.png
X%%PORTDOCS%%%%DOCSDIR%%/epydoc.css
X%%PORTDOCS%%%%DOCSDIR%%/epydoc.js
X%%PORTDOCS%%%%DOCSDIR%%/graph-module.html
X%%PORTDOCS%%%%DOCSDIR%%/graph.accessibility-module.html
X%%PORTDOCS%%%%DOCSDIR%%/graph.generators-module.html
X%%PORTDOCS%%%%DOCSDIR%%/graph.graph-class.html
X%%PORTDOCS%%%%DOCSDIR%%/graph.minmax-module.html
X%%PORTDOCS%%%%DOCSDIR%%/graph.readwrite-module.html
X%%PORTDOCS%%%%DOCSDIR%%/graph.searching-module.html
X%%PORTDOCS%%%%DOCSDIR%%/graph.sorting-module.html
X%%PORTDOCS%%%%DOCSDIR%%/help.html
X%%PORTDOCS%%%%DOCSDIR%%/identifier-index.html
X%%PORTDOCS%%%%DOCSDIR%%/index.html
X%%PORTDOCS%%%%DOCSDIR%%/module-tree.html
X%%PORTDOCS%%%%DOCSDIR%%/redirect.html
X%%PORTDOCS%%@dirrm %%DOCSDIR%%
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/draw.py
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph.xml
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/read.py
X%%PORTEXAMPLES%%%%EXAMPLESDIR%%/write.py
X%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
END-of-py-graph/pkg-plist
echo x - py-graph/distinfo
sed 's/^X//' >py-graph/distinfo << 'END-of-py-graph/distinfo'
XMD5 (python-graph-1.0.0.tar.bz2) = a9e4113446225a473f95f02779628de8
XSHA256 (python-graph-1.0.0.tar.bz2) = fde61fe2e6d9ec7e5dc36324eb80c718e01eaf8e7f2cc1f6f802dde6b0ec2e7d
XSIZE (python-graph-1.0.0.tar.bz2) = 29737
END-of-py-graph/distinfo
exit
--- py25-graph-1.0.0.shar ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Fri Sep 5 11:55:41 UTC 2008 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=126957 
State-Changed-From-To: open->closed 
State-Changed-By: miwi 
State-Changed-When: Fri Sep 5 14:15:35 UTC 2008 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/126957: commit references a PR
Date: Fri,  5 Sep 2008 14:17:54 +0000 (UTC)

 miwi        2008-09-05 14:16:41 UTC
 
   FreeBSD ports repository
 
   Modified files:
     graphics             Makefile 
   Added files:
     graphics/py-graph    Makefile distinfo pkg-descr pkg-plist 
   Log:
   A library for working with graphs in Python.
   It provides a suitable data structure for representing graphs
   and a whole set of important algorithms.
   
   WWW:    http://code.google.com/p/python-graph/
   
   PR:             ports/126957
   Submitted by:   Yi-Jheng Lin <yzlin at cs.nctu.edu.tw>
   
   Revision  Changes    Path
   1.1185    +1 -0      ports/graphics/Makefile
   1.1       +43 -0     ports/graphics/py-graph/Makefile (new)
   1.1       +3 -0      ports/graphics/py-graph/distinfo (new)
   1.1       +5 -0      ports/graphics/py-graph/pkg-descr (new)
   1.1       +46 -0     ports/graphics/py-graph/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:
