1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00

devel/py-aiobotocore: Update to 2.9.0

Changes:	https://github.com/aio-libs/aiobotocore/releases
This commit is contained in:
Po-Chuan Hsieh 2023-12-15 04:45:07 +08:00
parent 12e1cbabbe
commit 2d8814af1f
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
3 changed files with 14 additions and 14 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= aiobotocore
PORTVERSION= 2.8.0
PORTVERSION= 2.9.0
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -14,7 +14,7 @@ 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.32.4:devel/py-botocore@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}botocore>=1.33.2:devel/py-botocore@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wrapt>=1.10.10<2.0.0:devel/py-wrapt@${PY_FLAVOR}
USES= python
@ -26,7 +26,7 @@ OPTIONS_DEFINE= AWSCLI BOTO3
AWSCLI_DESC= Use awscli
BOTO3_DESC= Use boto3
AWSCLI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}awscli>=1.29.16:devel/py-awscli@${PY_FLAVOR}
BOTO3_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boto3>=1.28.16:www/py-boto3@${PY_FLAVOR}
AWSCLI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}awscli>=1.29.81:devel/py-awscli@${PY_FLAVOR}
BOTO3_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}boto3>=1.33.2:www/py-boto3@${PY_FLAVOR}
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1701363692
SHA256 (aiobotocore-2.8.0.tar.gz) = f160497cef21cfffc1a8d4219eeb27bb7b243389c2d021a812b9c0e3fb8e2bd1
SIZE (aiobotocore-2.8.0.tar.gz) = 101441
TIMESTAMP = 1702543636
SHA256 (aiobotocore-2.9.0.tar.gz) = 4dc1e20da4561ae662219ca95b20f923328c3106764a741bec00e98eb6680f7e
SIZE (aiobotocore-2.9.0.tar.gz) = 102555

View File

@ -1,21 +1,21 @@
--- setup.py.orig 2023-11-29 01:07:34 UTC
--- setup.py.orig 2023-12-13 07:26:01 UTC
+++ setup.py
@@ -7,15 +7,15 @@ from setuptools import find_packages, setup
# NOTE: When updating botocore make sure to update awscli/boto3 versions below
install_requires = [
# pegged to also match items in `extras_require`
- 'botocore>=1.32.4,<1.33.2',
+ 'botocore>=1.32.4',
- 'botocore>=1.33.2,<1.33.14',
+ 'botocore>=1.33.2',
'aiohttp>=3.7.4.post0,<4.0.0',
'wrapt>=1.10.10, <2.0.0',
'aioitertools>=0.5.1,<1.0.0',
]
extras_require = {
- 'awscli': ['awscli>=1.30.4,<1.31.2'],
- 'boto3': ['boto3>=1.29.4,<1.33.2'],
+ 'awscli': ['awscli>=1.30.4'],
+ 'boto3': ['boto3>=1.29.4'],
- 'awscli': ['awscli>=1.31.2,<1.31.14'],
- 'boto3': ['boto3>=1.33.2,<1.33.14'],
+ 'awscli': ['awscli>=1.29.81'],
+ 'boto3': ['boto3>=1.33.2'],
}