math/py-disjoint-set: New port: Disjoint set data structure implementation for Python
This commit is contained in:
parent
c3737fc68a
commit
7d164f5ed5
4 changed files with 25 additions and 0 deletions
|
@ -898,6 +898,7 @@
|
|||
SUBDIR += py-cypari2
|
||||
SUBDIR += py-deap
|
||||
SUBDIR += py-dionysus
|
||||
SUBDIR += py-disjoint-set
|
||||
SUBDIR += py-docplex
|
||||
SUBDIR += py-ducc0
|
||||
SUBDIR += py-ecos
|
||||
|
|
19
math/py-disjoint-set/Makefile
Normal file
19
math/py-disjoint-set/Makefile
Normal 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>
|
3
math/py-disjoint-set/distinfo
Normal file
3
math/py-disjoint-set/distinfo
Normal 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
|
2
math/py-disjoint-set/pkg-descr
Normal file
2
math/py-disjoint-set/pkg-descr
Normal file
|
@ -0,0 +1,2 @@
|
|||
disjoint-set is a DisjointSet (a.k.a. union-find data structure or merge-find
|
||||
set) implementation for Python.
|
Loading…
Reference in a new issue