View | Details | Raw Unified | Return to bug 274204
Collapse All | Expand All

(-)b/devel/py-red-black-tree-mod/Makefile (+20 lines)
Added Link Here
1
PORTNAME=	red-black-tree-mod
2
DISTVERSION=	1.21
3
CATEGORIES=	devel python
4
MASTER_SITES=	PYPI
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	DtxdF@disroot.org
8
COMMENT=	Flexible python implementation of red black trees
9
WWW=		https://stromberg.dnsalias.org/~strombrg/${PORTNAME} \
10
		https://pypi.org/project/${PORTNAME}
11
12
LICENSE=	MIT
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
15
USES=		python
16
USE_PYTHON=	autoplist distutils
17
18
NO_ARCH=	yes
19
20
.include <bsd.port.mk>
(-)b/devel/py-red-black-tree-mod/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1696185588
2
SHA256 (red-black-tree-mod-1.21.tar.gz) = f4e06ac7942db836e93dc4db45f1e8302c5ff98a797e8d14565d971f262ef25c
3
SIZE (red-black-tree-mod-1.21.tar.gz) = 32735
(-)b/devel/py-red-black-tree-mod/pkg-descr (-1 / +9 lines)
Added Link Here
0
- 
1
red-black-tree-mod is a pair of python modules implementing red
2
black trees.
3
4
Red-black trees are a little slower than treaps, but they give a
5
nice low standard deviation in operation times, and this code is
6
rather flexible.
7
8
A module is provided for red black trees that enforce uniqueness.
9
They allow for set-like use and dictionary-like use.

Return to bug 274204