From owner-svn-ports-head@freebsd.org Sat May 16 00:40:54 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C00082DEDAB; Sat, 16 May 2020 00:40:54 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49P5zp4Ryhz3C29; Sat, 16 May 2020 00:40:54 +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 93D98544B; Sat, 16 May 2020 00:40:54 +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 04G0esYF026569; Sat, 16 May 2020 00:40:54 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04G0erCH026565; Sat, 16 May 2020 00:40:53 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202005160040.04G0erCH026565@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 16 May 2020 00:40:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r535343 - in head/math: . py-hdmedians X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-hdmedians X-SVN-Commit-Revision: 535343 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.33 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: Sat, 16 May 2020 00:40:54 -0000 Author: yuri Date: Sat May 16 00:40:53 2020 New Revision: 535343 URL: https://svnweb.freebsd.org/changeset/ports/535343 Log: New port: math/py-hdmedians: High-dimensional medians Added: head/math/py-hdmedians/ head/math/py-hdmedians/Makefile (contents, props changed) head/math/py-hdmedians/distinfo (contents, props changed) head/math/py-hdmedians/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sat May 16 00:25:38 2020 (r535342) +++ head/math/Makefile Sat May 16 00:40:53 2020 (r535343) @@ -757,6 +757,7 @@ SUBDIR += py-graphillion SUBDIR += py-gym SUBDIR += py-hdbscan + SUBDIR += py-hdmedians SUBDIR += py-igraph SUBDIR += py-intspan SUBDIR += py-keras Added: head/math/py-hdmedians/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-hdmedians/Makefile Sat May 16 00:40:53 2020 (r535343) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= hdmedians +PORTVERSION= 0.13 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= High-dimensional medians + +LICENSE= APACHE20 + +BUILD_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} +RUN_DEPENDS= ${PYNUMPY} + +USES= python +USE_PYTHON= autoplist cython distutils + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/hdmedians/geomedian.so + +.include Added: head/math/py-hdmedians/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-hdmedians/distinfo Sat May 16 00:40:53 2020 (r535343) @@ -0,0 +1,3 @@ +TIMESTAMP = 1589589218 +SHA256 (hdmedians-0.13.tar.gz) = 230f80e064d905c49a1941af1b7e806e2f22b3c9a90ad5c21fd17d72636ea277 +SIZE (hdmedians-0.13.tar.gz) = 3108 Added: head/math/py-hdmedians/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-hdmedians/pkg-descr Sat May 16 00:40:53 2020 (r535343) @@ -0,0 +1,4 @@ +High-dimensional medians (medoid, geometric median, etc.). +Fast implementations in Python. + +WWW: https://github.com/daleroberts/hdmedians