git: 5042956ee0c5 - main - devel/py-aiobotocore: Add py-aiobotocore 2.6.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 22 Sep 2023 23:34:46 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=5042956ee0c5ba59f33ebc7173e6d265830abc66
commit 5042956ee0c5ba59f33ebc7173e6d265830abc66
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2023-09-22 23:22:20 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2023-09-22 23:22:20 +0000
devel/py-aiobotocore: Add py-aiobotocore 2.6.0
Async client for amazon services using botocore and aiohttp/asyncio.
This library is a mostly full featured asynchronous version of botocore.
---
devel/Makefile | 1 +
devel/py-aiobotocore/Makefile | 25 +++++++++++++++++++++++++
devel/py-aiobotocore/distinfo | 3 +++
devel/py-aiobotocore/pkg-descr | 3 +++
4 files changed, 32 insertions(+)
diff --git a/devel/Makefile b/devel/Makefile
index 0a53ca9e085f..5f382ad64d3b 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4215,6 +4215,7 @@
SUBDIR += py-addict
SUBDIR += py-aenum
SUBDIR += py-aioapns
+ SUBDIR += py-aiobotocore
SUBDIR += py-aiocontextvars
SUBDIR += py-aiofiles
SUBDIR += py-aiohttp-apispec
diff --git a/devel/py-aiobotocore/Makefile b/devel/py-aiobotocore/Makefile
new file mode 100644
index 000000000000..b4fa88419dbd
--- /dev/null
+++ b/devel/py-aiobotocore/Makefile
@@ -0,0 +1,25 @@
+PORTNAME= aiobotocore
+PORTVERSION= 2.6.0
+CATEGORIES= devel python
+MASTER_SITES= PYPI
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= Async client for aws services using botocore and aiohttp
+WWW= https://aiobotocore.readthedocs.io/en/latest/ \
+ https://github.com/aio-libs/aiobotocore
+
+LICENSE= APACHE20
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiohttp>=3.7.4<4.0.0:www/py-aiohttp@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}aioitertools>=0.5.1<1.0.0:devel/py-aioitertools@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}botocore>=1.31.17:devel/py-botocore@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}wrapt>=1.10.10<2.0.0:devel/py-wrapt@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist concurrent distutils
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-aiobotocore/distinfo b/devel/py-aiobotocore/distinfo
new file mode 100644
index 000000000000..030437ff1cf8
--- /dev/null
+++ b/devel/py-aiobotocore/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1695357777
+SHA256 (aiobotocore-2.6.0.tar.gz) = 4805d0140bdfa17bfc2d0ba1243c8cc4273e927201fca5cf2e497c0004a9fab7
+SIZE (aiobotocore-2.6.0.tar.gz) = 98843
diff --git a/devel/py-aiobotocore/pkg-descr b/devel/py-aiobotocore/pkg-descr
new file mode 100644
index 000000000000..3afda465ad6e
--- /dev/null
+++ b/devel/py-aiobotocore/pkg-descr
@@ -0,0 +1,3 @@
+Async client for amazon services using botocore and aiohttp/asyncio.
+
+This library is a mostly full featured asynchronous version of botocore.