Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Jul 2016 16:57:14 +0000 (UTC)
From:      Kurt Jaeger <pi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r418492 - in head/devel: . py-cluster
Message-ID:  <201607131657.u6DGvE07059443@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pi
Date: Wed Jul 13 16:57:14 2016
New Revision: 418492
URL: https://svnweb.freebsd.org/changeset/ports/418492

Log:
  New port: devel/py-cluster
  
  Python-cluster is a simple package that allows to create several
  groups (clusters) of objects from a list. It's meant to be flexible
  and able to cluster any object. To ensure this kind of flexibility,
  you need not only to supply the list of objects, but also a function
  that calculates the similarity between two of those objects.
  For simple datatypes, like integers, this can be as simple as a
  subtraction, but more complex calculations are possible.
  
  WWW: https://pypi.python.org/pypi/cluster
  
  PR:		211052
  Submitted by:	Danilo G. Baio <dbaio@bsd.com.br>

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Jul 13 16:39:49 2016	(r418491)
+++ head/devel/Makefile	Wed Jul 13 16:57:14 2016	(r418492)
@@ -4006,6 +4006,7 @@
     SUBDIR += py-clint
     SUBDIR += py-clonedigger
     SUBDIR += py-cloudpickle
+    SUBDIR += py-cluster
     SUBDIR += py-cmdln
     SUBDIR += py-codecov
     SUBDIR += py-codegen

Added: head/devel/py-cluster/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cluster/Makefile	Wed Jul 13 16:57:14 2016	(r418492)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	cluster
+PORTVERSION=	1.3.1
+DISTVERSIONPREFIX=	v
+CATEGORIES=	devel python
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dbaio@bsd.com.br
+COMMENT=	Create several groups (clusters) of objects from a list in Python
+
+LICENSE=	LGPL21
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	exhuma
+GH_PROJECT=	python-cluster
+
+NO_ARCH=	yes
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-cluster/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cluster/distinfo	Wed Jul 13 16:57:14 2016	(r418492)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1468020597
+SHA256 (exhuma-python-cluster-v1.3.1_GH0.tar.gz) = f53411f76d96a98a90dff7ad0032cb828b96dc8866eeb69465f52f7e3aaaa794
+SIZE (exhuma-python-cluster-v1.3.1_GH0.tar.gz) = 49328

Added: head/devel/py-cluster/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-cluster/pkg-descr	Wed Jul 13 16:57:14 2016	(r418492)
@@ -0,0 +1,9 @@
+Python-cluster is a simple package that allows to create several 
+groups (clusters) of objects from a list. It's meant to be flexible 
+and able to cluster any object. To ensure this kind of flexibility, 
+you need not only to supply the list of objects, but also a function 
+that calculates the similarity between two of those objects. 
+For simple datatypes, like integers, this can be as simple as a 
+subtraction, but more complex calculations are possible. 
+
+WWW: https://pypi.python.org/pypi/cluster



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