Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Jun 2018 04:38:18 +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: r472424 - in head/math: . py-simhash
Message-ID:  <201806150438.w5F4cIx7044205@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Fri Jun 15 04:38:18 2018
New Revision: 472424
URL: https://svnweb.freebsd.org/changeset/ports/472424

Log:
  New port: math/py-simhash: Python implementation of simhash algorithm

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

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Fri Jun 15 04:11:27 2018	(r472423)
+++ head/math/Makefile	Fri Jun 15 04:38:18 2018	(r472424)
@@ -715,6 +715,7 @@
     SUBDIR += py-scikit-umfpack
     SUBDIR += py-seaborn
     SUBDIR += py-secp256k1
+    SUBDIR += py-simhash
     SUBDIR += py-statsmodels
     SUBDIR += py-svgmath
     SUBDIR += py-sym

Added: head/math/py-simhash/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-simhash/Makefile	Fri Jun 15 04:38:18 2018	(r472424)
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PORTNAME=	simhash
+DISTVERSION=	1.9.0
+CATEGORIES=	math python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Python implementation of simhash algorithm
+
+LICENSE=	MIT
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/math/py-simhash/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-simhash/distinfo	Fri Jun 15 04:38:18 2018	(r472424)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1529036382
+SHA256 (simhash-1.9.0.tar.gz) = 99fe945d675700ff1cb30ea616586010c8e46abef625b4959acd2636024f6af3
+SIZE (simhash-1.9.0.tar.gz) = 3024

Added: head/math/py-simhash/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-simhash/pkg-descr	Fri Jun 15 04:38:18 2018	(r472424)
@@ -0,0 +1,4 @@
+A Python implementation of the SimHash algorithm, a technique for quickly
+estimating how similar two sets are.
+
+WWW: https://leons.im/posts/a-python-implementation-of-simhash-algorithm/



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