misc/py-alive-progress: Update to 3.3.0

Changes:	https://github.com/rsalmei/alive-progress/blob/main/CHANGELOG.md
This commit is contained in:
Po-Chuan Hsieh
2025-07-24 19:19:04 +08:00
parent 8263a143dc
commit a0f77346ed
3 changed files with 11 additions and 12 deletions
+3 -4
View File
@@ -1,6 +1,5 @@
PORTNAME= alive-progress
PORTVERSION= 3.2.0
PORTREVISION= 1
PORTVERSION= 3.3.0
CATEGORIES= misc
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -15,9 +14,9 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}about-time>=4.2.1:devel/py-about-time@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}graphemeu>=0:textproc/py-graphemeu@${PY_FLAVOR}
${PYTHON_PKGNAMEPREFIX}graphemeu>=0.7.2:textproc/py-graphemeu@${PY_FLAVOR}
USES= python:3.9+
USES= python
USE_PYTHON= autoplist concurrent pep517
NO_ARCH= yes
+3 -3
View File
@@ -1,3 +1,3 @@
TIMESTAMP = 1729994336
SHA256 (alive-progress-3.2.0.tar.gz) = ede29d046ff454fe56b941f686f89dd9389430c4a5b7658e445cb0b80e0e4deb
SIZE (alive-progress-3.2.0.tar.gz) = 113231
TIMESTAMP = 1753265782
SHA256 (alive-progress-3.3.0.tar.gz) = 457dd2428b48dacd49854022a46448d236a48f1b7277874071c39395307e830c
SIZE (alive-progress-3.3.0.tar.gz) = 116281
+5 -5
View File
@@ -1,11 +1,11 @@
--- setup.py.orig 2024-10-26 04:20:04 UTC
--- setup.py.orig 2025-07-19 21:36:46 UTC
+++ setup.py
@@ -57,7 +57,6 @@ setup(
'multi-threaded REPL alive animated visual feedback simple live efficient monitor '
'stats elapsed time throughput'.split(),
' stats elapsed time throughput'.split(),
packages=find_packages(exclude=['tests*']),
package_data={'alive_progress': ['py.typed']},
- data_files=[('', ['LICENSE'])],
python_requires='>=3.9, <4',
- install_requires=['about_time==4.2.1', 'grapheme==0.6.0'],
+ install_requires=['about_time==4.2.1', 'graphemeu'],
- install_requires=['about_time==4.2.1', 'graphemeu==0.7.2'],
+ install_requires=['about_time>=4.2.1', 'graphemeu>=0.7.2'],
)