Port details |
- py-pykdtree Fast kd-tree implementation with OpenMP-enabled queries
- 1.4.1 devel
=2 1.3.13Version of this port present on the latest quarterly branch. - Maintainer: sunpoet@FreeBSD.org
 - Port Added: 2023-08-21 17:15:27
- Last Update: 2025-04-09 14:55:11
- Commit Hash: 150c001
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py311-PyOpenGL, p5-Sane
- Also Listed In: python
- License: LGPL3
- WWW:
- https://github.com/storpipfugl/pykdtree
- Description:
- pykdtree is a kd-tree implementation for fast nearest neighbour search in
Python. The aim is to be the fastest implementation around for common use cases
(low dimensions and low number of neighbours) for both tree construction and
queries.
The implementation is based on scipy.spatial.cKDTree and libANN by combining the
best features from both and focus on implementation efficiency.
The interface is similar to that of scipy.spatial.cKDTree except only Euclidean
distance measure is supported.
Queries are optionally multithreaded using OpenMP.
¦ ¦ ¦ ¦ 
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - There is no configure plist information for this port.
- Dependency lines:
-
- ${PYTHON_PKGNAMEPREFIX}pykdtree>0:devel/py-pykdtree@${PY_FLAVOR}
- To install the port:
- cd /usr/ports/devel/py-pykdtree/ && make install clean
- To add the package, run one of these commands:
- pkg install devel/py-pykdtree
- pkg install py311-pykdtree
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above. NOTE: This is a Python port. Instead of py311-pykdtree listed in the above command, you can pick from the names under the Packages section.- PKGNAME: py311-pykdtree
- Package flavors (<flavor>: <package>)
- distinfo:
- TIMESTAMP = 1742405488
SHA256 (pykdtree-1.4.1.tar.gz) = 10848ff6ac7332b68e65bf8c2e89667b6b62b075aad272347744a69bf1c8ad7e
SIZE (pykdtree-1.4.1.tar.gz) = 28315
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- py311-numpy>=0,1 : math/py-numpy@py311
- py311-setuptools>=0 : devel/py-setuptools@py311
- py311-wheel>=0 : devel/py-wheel@py311
- py311-cython3>=3.0.12<3.1 : lang/cython3@py311
- python3.11 : lang/python311
- py311-build>=0 : devel/py-build@py311
- py311-installer>=0 : devel/py-installer@py311
- Test dependencies:
-
- python3.11 : lang/python311
- Runtime dependencies:
-
- py311-numpy>=0,1 : math/py-numpy@py311
- python3.11 : lang/python311
- There are no ports dependent upon this port
Configuration Options:
- No options to configure
- Options name:
- devel_py-pykdtree
- USES:
- python:3.9+
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.4.1 09 Apr 2025 14:55:11
    |
Po-Chuan Hsieh (sunpoet)  |
Mk/Uses/python.mk: Introduce USE_PYTHON=cython3{,_run,_test}
- Update USE_PYTHON=cython{,_run,_test}
- Convert all cython3 occurrence to USE_PYTHON=cython3*
- While I'm here, fix incorrect usage of combining cython3 in BUILD_DEPENDS and
USE_PYTHON=cython
It is added to simplify the future transition from Cython 0.29 to 3.
The minimal version is set to 3.0.12 because it is required by
devel/py-propcache.
The upper bound of version is set to 3.1 because it is limited by multiple
ports. |
1.4.1 09 Apr 2025 13:55:13
    |
Po-Chuan Hsieh (sunpoet)  |
devel/py-pykdtree: Update to 1.4.1
Changes: https://github.com/storpipfugl/pykdtree/releases |
1.3.13 08 Sep 2024 18:37:34
    |
Po-Chuan Hsieh (sunpoet)  |
devel/py-pykdtree: Update to 1.3.13
Changes: https://github.com/storpipfugl/pykdtree/releases |
1.3.12 20 Apr 2024 18:28:24
    |
Po-Chuan Hsieh (sunpoet)  |
devel/py-pykdtree: Update to 1.3.12
Changes: https://github.com/storpipfugl/pykdtree/releases |
1.3.11 09 Mar 2024 14:06:03
    |
Po-Chuan Hsieh (sunpoet)  |
devel/py-pykdtree: Update to 1.3.11
Changes: https://github.com/storpipfugl/pykdtree/releases |
1.3.10 21 Feb 2024 15:07:42
    |
Po-Chuan Hsieh (sunpoet)  |
devel/py-pykdtree: Fix build with cython 0.29.37+ |
1.3.10 17 Feb 2024 06:05:56
    |
Muhammad Moinur Rahman (bofh)  |
devel/py-pykdtree: mark BROKEN
Backend subprocess exited when trying to invoke build_wheel |
1.3.10 01 Dec 2023 22:11:44
    |
Po-Chuan Hsieh (sunpoet)  |
devel/py-pykdtree: Update to 1.3.10
- Convert to USE_PYTHON=pep517
Changes: https://github.com/storpipfugl/pykdtree/releases |
1.3.9 11 Oct 2023 12:58:00
    |
Po-Chuan Hsieh (sunpoet)  |
devel/py-pykdtree: Update to 1.3.9
Changes: https://github.com/storpipfugl/pykdtree/releases |
1.3.7.post0 21 Aug 2023 17:01:58
    |
Po-Chuan Hsieh (sunpoet)  |
devel/py-pykdtree: Add py-pykdtree 1.3.7.post0
pykdtree is a kd-tree implementation for fast nearest neighbour search in
Python. The aim is to be the fastest implementation around for common use cases
(low dimensions and low number of neighbours) for both tree construction and
queries.
The implementation is based on scipy.spatial.cKDTree and libANN by combining the
best features from both and focus on implementation efficiency.
The interface is similar to that of scipy.spatial.cKDTree except only Euclidean
distance measure is supported.
Queries are optionally multithreaded using OpenMP. |