From owner-svn-ports-all@FreeBSD.ORG Fri Nov 28 09:21:58 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A16E8CC9; Fri, 28 Nov 2014 09:21:58 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 756DDA89; Fri, 28 Nov 2014 09:21:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAS9Lww3098854; Fri, 28 Nov 2014 09:21:58 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAS9LvsC098850; Fri, 28 Nov 2014 09:21:57 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201411280921.sAS9LvsC098850@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Fri, 28 Nov 2014 09:21:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r373537 - in head/math: . py-altgraph X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Nov 2014 09:21:58 -0000 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 +# $FreeBSD$ + +PORTNAME= altgraph +PORTVERSION= 0.12 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= python@FreeBSD.org +COMMENT= Python graph (network) package + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist distutils + +.include 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/