Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 25 Jan 2020 07:26:38 +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: r524016 - in head/math: . py-pynndescent
Message-ID:  <202001250726.00P7Qcup070093@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Sat Jan 25 07:26:38 2020
New Revision: 524016
URL: https://svnweb.freebsd.org/changeset/ports/524016

Log:
  New port: devel/py-pynndescent: Python nearest neighbor descent for approximate nearest neighbors

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

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Sat Jan 25 05:49:19 2020	(r524015)
+++ head/math/Makefile	Sat Jan 25 07:26:38 2020	(r524016)
@@ -772,6 +772,7 @@
     SUBDIR += py-pymc3
     SUBDIR += py-pyneqsys
     SUBDIR += py-pynleq2
+    SUBDIR += py-pynndescent
     SUBDIR += py-pyodeint
     SUBDIR += py-pyodesys
     SUBDIR += py-pysparse

Added: head/math/py-pynndescent/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-pynndescent/Makefile	Sat Jan 25 07:26:38 2020	(r524016)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	pynndescent
+DISTVERSION=	0.4.4
+CATEGORIES=	math python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Python nearest neighbor descent for approximate nearest neighbors
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}joblib>0:devel/py-joblib@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}llvmlite>=0.30:devel/py-llvmlite@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}numba>=0.46:devel/py-numba@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}scikit-learn>=0.18:science/py-scikit-learn@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	distutils autoplist
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/math/py-pynndescent/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-pynndescent/distinfo	Sat Jan 25 07:26:38 2020	(r524016)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1579920493
+SHA256 (pynndescent-0.4.4.tar.gz) = 43d390ae80793f4c1f8a8096b4ebab4186c3a9c378f7214975480105257ffb4b
+SIZE (pynndescent-0.4.4.tar.gz) = 1132646

Added: head/math/py-pynndescent/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-pynndescent/pkg-descr	Sat Jan 25 07:26:38 2020	(r524016)
@@ -0,0 +1,6 @@
+A Python nearest neighbor descent for approximate nearest neighbors.
+This is a relatively straightforward python implementation of Nearest
+Neighbor Descent for k-neighbor-graph construction and approximate
+nearest neighbor search.
+
+WWW: https://github.com/lmcinnes/pynndescent



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