aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2024-02-14 15:08:54 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2024-02-14 15:08:54 +0000
commit33d651ab5f300e6dfb54fd0f902ba757b0467897 (patch)
treed6d0b8fff1ef7684151653866b7e79509c1b55da
parentb049ad01adf72b44eb8581f1af18787f82069459 (diff)
downloadports-33d651ab5f300e6dfb54fd0f902ba757b0467897.tar.gz
ports-33d651ab5f300e6dfb54fd0f902ba757b0467897.zip
textproc/py-flor: new port
Flor implements a Bloom filter class.
-rw-r--r--textproc/Makefile1
-rw-r--r--textproc/py-flor/Makefile17
-rw-r--r--textproc/py-flor/distinfo3
-rw-r--r--textproc/py-flor/pkg-descr1
4 files changed, 22 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile
index 8cabafff97f3..1c3cf6842b72 100644
--- a/textproc/Makefile
+++ b/textproc/Makefile
@@ -1364,6 +1364,7 @@
SUBDIR += py-faust-cchardet
SUBDIR += py-feedparser
SUBDIR += py-fingerprints
+ SUBDIR += py-flor
SUBDIR += py-fluent.syntax
SUBDIR += py-ftfy
SUBDIR += py-furo
diff --git a/textproc/py-flor/Makefile b/textproc/py-flor/Makefile
new file mode 100644
index 000000000000..24468d9211d3
--- /dev/null
+++ b/textproc/py-flor/Makefile
@@ -0,0 +1,17 @@
+PORTNAME= Flor
+PORTVERSION= 1.1.3
+CATEGORIES= textproc python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= antoine@FreeBSD.org
+COMMENT= Bloom filter implementation
+WWW= https://github.com/DCSO/flor
+
+LICENSE= BSD3CLAUSE
+
+NO_ARCH= yes
+USES= python
+USE_PYTHON= distutils autoplist
+
+.include <bsd.port.mk>
diff --git a/textproc/py-flor/distinfo b/textproc/py-flor/distinfo
new file mode 100644
index 000000000000..54670c1dd65c
--- /dev/null
+++ b/textproc/py-flor/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1676978088
+SHA256 (Flor-1.1.3.tar.gz) = 1fac101e161446dbb2ee5379d5b950bb015fe6d90568385a549b538ca12fe942
+SIZE (Flor-1.1.3.tar.gz) = 2660
diff --git a/textproc/py-flor/pkg-descr b/textproc/py-flor/pkg-descr
new file mode 100644
index 000000000000..00fe4a4bb2fe
--- /dev/null
+++ b/textproc/py-flor/pkg-descr
@@ -0,0 +1 @@
+Flor implements a Bloom filter class.