mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 14:50:31 -04:00
Add py-radix - a python radix tree implementation.
PR: 84779 Submitted by: Lars Erik Gullerud <lerik@nolink.net> Approved by: perky (mentor)
This commit is contained in:
parent
7ae374d8e6
commit
c230a2a0b9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=141312
4 changed files with 32 additions and 0 deletions
|
@ -665,6 +665,7 @@
|
|||
SUBDIR += py-msnp
|
||||
SUBDIR += py-pcap
|
||||
SUBDIR += py-pyxmpp
|
||||
SUBDIR += py-radix
|
||||
SUBDIR += py-rrdpipe
|
||||
SUBDIR += py-rrdtool_lgpl
|
||||
SUBDIR += py-rt
|
||||
|
|
22
net/py-radix/Makefile
Normal file
22
net/py-radix/Makefile
Normal file
|
@ -0,0 +1,22 @@
|
|||
# Ports collection makefile for: py-radix
|
||||
# Date created: 10. August, 2005
|
||||
# Whom: Lars Erik Gullerud <lerik@nolink.net>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= radix
|
||||
PORTVERSION= 0.4
|
||||
CATEGORIES= net python
|
||||
MASTER_SITES= http://www2.mindrot.org/files/py-radix/
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
DISTNAME= py-${PORTNAME}-${PORTVERSION}
|
||||
|
||||
MAINTAINER= lerik@nolink.net
|
||||
COMMENT= A Python radix-tree implementation
|
||||
|
||||
USE_PYTHON= yes
|
||||
USE_PYDISTUTILS= yes
|
||||
PLIST_FILES= %%PYTHON_SITELIBDIR%%/radix.so
|
||||
|
||||
.include <bsd.port.mk>
|
2
net/py-radix/distinfo
Normal file
2
net/py-radix/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (py-radix-0.4.tar.gz) = a3e7a2cb078c009e39633aa4034ad523
|
||||
SIZE (py-radix-0.4.tar.gz) = 15712
|
7
net/py-radix/pkg-descr
Normal file
7
net/py-radix/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
|||
py-radix is an implementation of a radix tree data structure
|
||||
for the storage and retrieval of IPv4 and IPv6 network prefixes.
|
||||
The radix tree is the data structure most commonly used for
|
||||
routing table lookups. It efficiently stores network prefixes of
|
||||
varying lengths and allows fast lookups of containing networks.
|
||||
|
||||
WWW: http://www.mindrot.org/py-radix.html
|
Loading…
Add table
Reference in a new issue