git: f38c4c3eee5f - main - devel/py-about-time: Update to 4.2.2
Po-Chuan Hsieh <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.ports |
|---|---|
| Message-ID | <[email protected]> |
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=f38c4c3eee5f8adebaa9536d194b31637731cba7 commit f38c4c3eee5f8adebaa9536d194b31637731cba7 Author: Po-Chuan Hsieh <[email protected]> AuthorDate: 2026-08-19 12:25:09 +0000 Commit: Po-Chuan Hsieh <[email protected]> CommitDate: 2026-08-19 12:55:26 +0000 devel/py-about-time: Update to 4.2.2 Changes: https://github.com/rsalmei/about-time/commits/main --- devel/py-about-time/Makefile | 4 ++-- devel/py-about-time/distinfo | 6 +++--- devel/py-about-time/files/patch-pyproject.toml | 9 +++++++++ devel/py-about-time/files/patch-setup.py | 10 ---------- 4 files changed, 14 insertions(+), 15 deletions(-) diff --git a/devel/py-about-time/Makefile b/devel/py-about-time/Makefile index 4adab41b2bb1..633dc01e804e 100644 --- a/devel/py-about-time/Makefile +++ b/devel/py-about-time/Makefile @@ -1,9 +1,9 @@ PORTNAME= about-time -PORTVERSION= 4.2.1 -PORTREVISION= 1 +PORTVERSION= 4.2.2 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= about_time-${PORTVERSION} MAINTAINER= [email protected] COMMENT= Easily measure timing and throughput of code blocks diff --git a/devel/py-about-time/distinfo b/devel/py-about-time/distinfo index 40829d1322a0..91de0d2c0890 100644 --- a/devel/py-about-time/distinfo +++ b/devel/py-about-time/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1674588042 -SHA256 (about-time-4.2.1.tar.gz) = 6a538862d33ce67d997429d14998310e1dbfda6cb7d9bbfbf799c4709847fece -SIZE (about-time-4.2.1.tar.gz) = 15380 +TIMESTAMP = 1784005078 +SHA256 (about_time-4.2.2.tar.gz) = 3562885d528d66a40e02be0bc0e893920e2396a9f4b632eb9148e0c8ff47078f +SIZE (about_time-4.2.2.tar.gz) = 18351 diff --git a/devel/py-about-time/files/patch-pyproject.toml b/devel/py-about-time/files/patch-pyproject.toml new file mode 100644 index 000000000000..8828f03701c9 --- /dev/null +++ b/devel/py-about-time/files/patch-pyproject.toml @@ -0,0 +1,9 @@ +--- pyproject.toml.orig 2025-07-23 01:47:24 UTC ++++ pyproject.toml +@@ -1,5 +1,5 @@ + [build-system] +-requires = ["setuptools~=75.3"] # github actions stops at 75.3; the latest 88 yells locally about deprecated license format. ++requires = ["setuptools>=61"] # github actions stops at 75.3; the latest 88 yells locally about deprecated license format. + build-backend = "setuptools.build_meta" + + [project] diff --git a/devel/py-about-time/files/patch-setup.py b/devel/py-about-time/files/patch-setup.py deleted file mode 100644 index f86b637ac3dc..000000000000 --- a/devel/py-about-time/files/patch-setup.py +++ /dev/null @@ -1,10 +0,0 @@ ---- setup.py.orig 2022-12-21 04:14:53 UTC -+++ setup.py -@@ -53,7 +53,6 @@ setup( - ], - keywords='python track tracker time code blocks monitor statistics analytics'.split(), - packages=find_packages(), -- data_files=[('', ['LICENSE'])], - python_requires='>=3.7, <4', - install_requires=[], - )