pkgsrc/math/py-networkx/Makefile
wen b487e66174 Update to 1.8.1
Upstream changes:
Networkx-1.8.1
Release date: 4 August 2013

Bugfix release for missing files in source packaging

Networkx-1.8
Release date: 28 July 2013

Highlights
Faster (linear-time) graphicality tests and Havel-Hakimi graph generators
Directed Laplacian matrix generator
Katz centrality algorithm
Functions to generate all simple paths
Improved shapefile reader
More flexible weighted projection of bipartite graphs
Faster topological sort, decendents and ancestors of DAGs
Scaling parameter for force-directed layout
Bug Fixes
Error with average weighted connectivity for digraphs, correct normalized laplacian with self-loops, load betweenness for single node graphs, isolated nodes missing from dfs/bfs trees, normalize HITS using l1, handle density of graphs with self loops
Cleaner handling of current figure status with Matplotlib, Pajek files now don't write troublesome header line, default alpha value for GEXF files, read curved edges from yEd GraphML
2014-06-10 12:04:58 +00:00

40 lines
1.7 KiB
Makefile

# $NetBSD: Makefile,v 1.14 2014/06/10 12:04:58 wen Exp $
DISTNAME= networkx-1.8.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= math python
MASTER_SITES= http://pypi.python.org/packages/source/n/networkx/ \
http://networkx.lanl.gov/download/networkx/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://networkx.lanl.gov/
COMMENT= Python package for creating and manipulating graphs and networks
LICENSE= modified-bsd
PYTHON_SELF_CONFLICT= yes
PYTHON_VERSIONS_INCOMPATIBLE= 33 34
SUBST_CLASSES+= python
SUBST_STAGE.python= post-patch
SUBST_FILES.python+= networkx/readwrite/tests/*.py
SUBST_FILES.python+= networkx/utils/tests/*.py
SUBST_FILES.python+= networkx/tests/*.py
SUBST_FILES.python+= networkx/generators/tests/*.py
SUBST_FILES.python+= networkx/classes/tests/*.py
SUBST_FILES.python+= networkx/algorithms/tests/*.py
SUBST_FILES.python+= networkx/algorithms/approximation/tests/*.py
SUBST_FILES.python+= networkx/algorithms/assortativity/tests/*.py
SUBST_FILES.python+= networkx/algorithms/bipartite/tests/*.py
SUBST_FILES.python+= networkx/algorithms/centrality/tests/*.py
SUBST_FILES.python+= networkx/algorithms/chordal/tests/*.py
SUBST_FILES.python+= networkx/algorithms/community/tests/*.py
SUBST_FILES.python+= networkx/algorithms/components/tests/*.py
SUBST_FILES.python+= networkx/algorithms/isomorphism/tests/*.py
SUBST_FILES.python+= networkx/algorithms/link_analysis/tests/*.py
SUBST_FILES.python+= networkx/algorithms/shortest_paths/tests/*.py
SUBST_FILES.python+= networkx/algorithms/traversal/tests/*.py
SUBST_MESSAGE.python= Fixing path to Python interpreter.
SUBST_SED.python= -e "s,/usr/bin/env python,${PYTHONBIN},g"
.include "../../lang/python/distutils.mk"
.include "../../mk/bsd.pkg.mk"