New port devel/py-pybloomfiltermmap: Fast Python Bloom Filter using Mmap

The goal of pybloomfiltermmap is simple: to provide a fast, simple,
scalable, correct library for Bloom Filters in Python.

WWW: https://github.com/axiak/pybloomfiltermmap
This commit is contained in:
Danilo G. Baio 2017-11-04 13:35:45 +00:00
parent 0f60aa9c67
commit 35c921ea90
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=453462
4 changed files with 32 additions and 0 deletions

View file

@ -4670,6 +4670,7 @@
SUBDIR += py-pyasn1
SUBDIR += py-pyasn1-modules
SUBDIR += py-pybind11
SUBDIR += py-pybloomfiltermmap
SUBDIR += py-pycadf
SUBDIR += py-pycalendar
SUBDIR += py-pycallgraph

View file

@ -0,0 +1,24 @@
# $FreeBSD$
PORTNAME= pybloomfiltermmap
DISTVERSION= 0.3.15
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= dbaio@FreeBSD.org
COMMENT= Fast Python Bloom Filter using Mmap
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= python:2.7 ssl
USE_PYTHON= autoplist distutils
do-test:
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
post-install:
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pybloomfilter.so
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1509742290
SHA256 (pybloomfiltermmap-0.3.15.tar.gz) = efcec29a2cc511dd4e631e4415f68fc450f1e10864db215db21bd8bea7d7bc62
SIZE (pybloomfiltermmap-0.3.15.tar.gz) = 448288

View file

@ -0,0 +1,4 @@
The goal of pybloomfiltermmap is simple: to provide a fast, simple,
scalable, correct library for Bloom Filters in Python.
WWW: https://github.com/axiak/pybloomfiltermmap