From owner-svn-ports-all@freebsd.org Tue Oct 30 06:18:50 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F90010D6A5B; Tue, 30 Oct 2018 06:18:50 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DA4AC74363; Tue, 30 Oct 2018 06:18:49 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B5F8E19A0E; Tue, 30 Oct 2018 06:18:49 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9U6In72029164; Tue, 30 Oct 2018 06:18:49 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9U6ImUd029159; Tue, 30 Oct 2018 06:18:48 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201810300618.w9U6ImUd029159@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 30 Oct 2018 06:18:48 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-python-louvain X-SVN-Commit-Revision: 483453 X-SVN-Commit-Repository: ports 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.29 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: Tue, 30 Oct 2018 06:18:50 -0000 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 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