git: f958646927f5 - main - devel/py-s3fs: Add py-s3fs 2023.9.1

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Fri, 22 Sep 2023 23:34:50 UTC
The branch main has been updated by sunpoet:

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

commit f958646927f5ae4c0d17d1fd65f1e1ce0ea3d2fd
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2023-09-22 23:22:25 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2023-09-22 23:22:25 +0000

    devel/py-s3fs: Add py-s3fs 2023.9.1
    
    S3FS builds on aiobotocore to provide a convenient Python filesystem interface
    for S3.
---
 devel/Makefile          |  1 +
 devel/py-s3fs/Makefile  | 24 ++++++++++++++++++++++++
 devel/py-s3fs/distinfo  |  3 +++
 devel/py-s3fs/pkg-descr |  2 ++
 4 files changed, 30 insertions(+)

diff --git a/devel/Makefile b/devel/Makefile
index d3aeb8c89145..b49c37f49f6b 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -5554,6 +5554,7 @@
     SUBDIR += py-rush
     SUBDIR += py-rx
     SUBDIR += py-rx1
+    SUBDIR += py-s3fs
     SUBDIR += py-saneyaml
     SUBDIR += py-sarge
     SUBDIR += py-sarif-om
diff --git a/devel/py-s3fs/Makefile b/devel/py-s3fs/Makefile
new file mode 100644
index 000000000000..811e9df6d299
--- /dev/null
+++ b/devel/py-s3fs/Makefile
@@ -0,0 +1,24 @@
+PORTNAME=	s3fs
+PORTVERSION=	2023.9.1
+CATEGORIES=	devel python
+MASTER_SITES=	PYPI
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Convenient Filesystem interface over S3
+WWW=		https://s3fs.readthedocs.io/en/latest/ \
+		https://github.com/fsspec/s3fs
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}aiobotocore>=2.5.4:devel/py-aiobotocore@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}aiohttp>=0:www/py-aiohttp@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}fsspec>=2023.9.1:devel/py-fsspec@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-s3fs/distinfo b/devel/py-s3fs/distinfo
new file mode 100644
index 000000000000..a57a7f5851cd
--- /dev/null
+++ b/devel/py-s3fs/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1695357783
+SHA256 (s3fs-2023.9.1.tar.gz) = 42e1821ed94c1607c848853d1d715ebcd25c13380b6f510c2cb498c7e5b3e674
+SIZE (s3fs-2023.9.1.tar.gz) = 70713
diff --git a/devel/py-s3fs/pkg-descr b/devel/py-s3fs/pkg-descr
new file mode 100644
index 000000000000..ba62075e68c6
--- /dev/null
+++ b/devel/py-s3fs/pkg-descr
@@ -0,0 +1,2 @@
+S3FS builds on aiobotocore to provide a convenient Python filesystem interface
+for S3.