svn commit: r373537 - in head/math: . py-altgraph

Alexey Dokuchaev danfe at FreeBSD.org
Fri Nov 28 09:21:58 UTC 2014


Author: danfe
Date: Fri Nov 28 09:21:56 2014
New Revision: 373537
URL: https://svnweb.freebsd.org/changeset/ports/373537
QAT: https://qat.redports.org/buildarchive/r373537/

Log:
  altgraph is a fork of graphlib: a graph (network) package for constructing
  graphs, BFS and DFS traversals, topological sort, shortest paths, etc. with
  graphviz output.
  
  WWW: https://pypi.python.org/pypi/altgraph/

Added:
  head/math/py-altgraph/
  head/math/py-altgraph/Makefile   (contents, props changed)
  head/math/py-altgraph/distinfo   (contents, props changed)
  head/math/py-altgraph/pkg-descr   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Fri Nov 28 09:05:47 2014	(r373536)
+++ head/math/Makefile	Fri Nov 28 09:21:56 2014	(r373537)
@@ -538,6 +538,7 @@
     SUBDIR += pspp
     SUBDIR += pure-mpfr
     SUBDIR += pure-rational
+    SUBDIR += py-altgraph
     SUBDIR += py-apgl
     SUBDIR += py-basemap
     SUBDIR += py-basemap-data

Added: head/math/py-altgraph/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-altgraph/Makefile	Fri Nov 28 09:21:56 2014	(r373537)
@@ -0,0 +1,18 @@
+# Created by: Alexey Dokuchaev <danfe at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	altgraph
+PORTVERSION=	0.12
+CATEGORIES=	math python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	python at FreeBSD.org
+COMMENT=	Python graph (network) package
+
+LICENSE=	MIT
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/math/py-altgraph/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-altgraph/distinfo	Fri Nov 28 09:21:56 2014	(r373537)
@@ -0,0 +1,2 @@
+SHA256 (altgraph-0.12.tar.gz) = b90db0dba36d9ece282b6a95ae3d324b63239694ce2cf2fd07d3efd7f2f7cab2
+SIZE (altgraph-0.12.tar.gz) = 492343

Added: head/math/py-altgraph/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-altgraph/pkg-descr	Fri Nov 28 09:21:56 2014	(r373537)
@@ -0,0 +1,8 @@
+altgraph is a fork of graphlib: a graph (network) package for constructing
+graphs, BFS and DFS traversals, topological sort, shortest paths, etc. with
+graphviz output.
+
+altgraph includes some additional usage of Python 2.6+ features and
+enhancements related to modulegraph and macholib.
+
+WWW: https://pypi.python.org/pypi/altgraph/


More information about the svn-ports-all mailing list