From owner-svn-ports-head@freebsd.org Fri Jun 15 04:38:20 2018 Return-Path: Delivered-To: svn-ports-head@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 DA78B1015BB9; Fri, 15 Jun 2018 04:38:19 +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 8C8E777041; Fri, 15 Jun 2018 04:38:19 +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 5378712A42; Fri, 15 Jun 2018 04:38:19 +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 w5F4cJ0F044208; Fri, 15 Jun 2018 04:38:19 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5F4cIx7044205; Fri, 15 Jun 2018 04:38:18 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201806150438.w5F4cIx7044205@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 15 Jun 2018 04:38:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472424 - in head/math: . py-simhash X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-simhash X-SVN-Commit-Revision: 472424 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jun 2018 04:38:20 -0000 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 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/