math/py-disjoint-set: New port: Disjoint set data structure implementation for Python

This commit is contained in:
Yuri Victorovich 2023-01-26 00:50:13 -08:00
parent c3737fc68a
commit 7d164f5ed5
4 changed files with 25 additions and 0 deletions

View file

@ -898,6 +898,7 @@
SUBDIR += py-cypari2 SUBDIR += py-cypari2
SUBDIR += py-deap SUBDIR += py-deap
SUBDIR += py-dionysus SUBDIR += py-dionysus
SUBDIR += py-disjoint-set
SUBDIR += py-docplex SUBDIR += py-docplex
SUBDIR += py-ducc0 SUBDIR += py-ducc0
SUBDIR += py-ecos SUBDIR += py-ecos

View file

@ -0,0 +1,19 @@
PORTNAME= disjoint-set
DISTVERSION= 0.7.3
CATEGORIES= math
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME:S/-/_/}-${DISTVERSION}
MAINTAINER= yuri@FreeBSD.org
COMMENT= Disjoint set data structure implementation for Python
WWW= https://github.com/mrapacz/disjoint-set
LICENSE= MIT
USES= python:3.6+
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1674722387
SHA256 (disjoint_set-0.7.3.tar.gz) = cc09320b35d5a5bb36ceba86ab885b073340d0ba05cd92e9bd413fbea026162a
SIZE (disjoint_set-0.7.3.tar.gz) = 3714

View file

@ -0,0 +1,2 @@
disjoint-set is a DisjointSet (a.k.a. union-find data structure or merge-find
set) implementation for Python.