Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 30 Oct 2018 06:18:48 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r483453 - in head/math: . py-python-louvain
Message-ID:  <201810300618.w9U6ImUd029159@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Tue Oct 30 06:18:48 2018
New Revision: 483453
URL: https://svnweb.freebsd.org/changeset/ports/483453

Log:
  New port: math/py-python-louvain: Louvain algorithm for community detection

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

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Tue Oct 30 06:00:05 2018	(r483452)
+++ head/math/Makefile	Tue Oct 30 06:18:48 2018	(r483453)
@@ -744,6 +744,7 @@
     SUBDIR += py-pyodesys
     SUBDIR += py-pysparse
     SUBDIR += py-pysym
+    SUBDIR += py-python-louvain
     SUBDIR += py-pyvtk
     SUBDIR += py-random2
     SUBDIR += py-rapi

Added: head/math/py-python-louvain/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-python-louvain/Makefile	Tue Oct 30 06:18:48 2018	(r483453)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	python-louvain
+DISTVERSION=	0.11
+CATEGORIES=	math python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Louvain algorithm for community detection
+
+LICENSE=	BSD3CLAUSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}networkx>0:math/py-networkx@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils concurrent autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/math/py-python-louvain/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-python-louvain/distinfo	Tue Oct 30 06:18:48 2018	(r483453)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1540879709
+SHA256 (python-louvain-0.11.tar.gz) = 2ce7143f8d2bb4693a84dc0046dbf94dc576c9f6030f518f73c4420bfb2a442a
+SIZE (python-louvain-0.11.tar.gz) = 6648

Added: head/math/py-python-louvain/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-python-louvain/pkg-descr	Tue Oct 30 06:18:48 2018	(r483453)
@@ -0,0 +1,7 @@
+This module implements community detection.
+
+It uses the louvain method described in Fast unfolding of communities in large
+networks, Vincent D Blondel, Jean-Loup Guillaume, Renaud Lambiotte, Renaud
+Lefebvre, Journal of Statistical Mechanics: Theory and Experiment 2008(10).
+
+WWW: https://github.com/taynaud/python-louvain



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810300618.w9U6ImUd029159>