git: 33d651ab5f30 - main - textproc/py-flor: new port

From: Antoine Brodin <antoine_at_FreeBSD.org>
Date: Wed, 14 Feb 2024 15:09:20 UTC
The branch main has been updated by antoine:

URL: https://cgit.FreeBSD.org/ports/commit/?id=33d651ab5f300e6dfb54fd0f902ba757b0467897

commit 33d651ab5f300e6dfb54fd0f902ba757b0467897
Author:     Antoine Brodin <antoine@FreeBSD.org>
AuthorDate: 2024-02-14 15:08:54 +0000
Commit:     Antoine Brodin <antoine@FreeBSD.org>
CommitDate: 2024-02-14 15:08:54 +0000

    textproc/py-flor: new port
    
    Flor implements a Bloom filter class.
---
 textproc/Makefile          |  1 +
 textproc/py-flor/Makefile  | 17 +++++++++++++++++
 textproc/py-flor/distinfo  |  3 +++
 textproc/py-flor/pkg-descr |  1 +
 4 files changed, 22 insertions(+)

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.