git: 6963c4bde5f3 - main - devel/py-hypothesis: Update to 6.82.2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 21 Aug 2023 17:14:10 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=6963c4bde5f307f90b4ddd51dddd818f291cc42e commit 6963c4bde5f307f90b4ddd51dddd818f291cc42e Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2023-08-21 17:03:54 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2023-08-21 17:03:54 +0000 devel/py-hypothesis: Update to 6.82.2 Changes: https://github.com/HypothesisWorks/hypothesis/releases https://hypothesis.readthedocs.io/en/latest/changes.html --- devel/py-hypothesis/Makefile | 2 +- devel/py-hypothesis/distinfo | 6 +++--- devel/py-hypothesis/files/patch-setup.py | 23 ----------------------- 3 files changed, 4 insertions(+), 27 deletions(-) diff --git a/devel/py-hypothesis/Makefile b/devel/py-hypothesis/Makefile index c51fcd5e57f9..2ab417d2c42f 100644 --- a/devel/py-hypothesis/Makefile +++ b/devel/py-hypothesis/Makefile @@ -1,5 +1,5 @@ PORTNAME= hypothesis -PORTVERSION= 6.82.0 +PORTVERSION= 6.82.2 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-hypothesis/distinfo b/devel/py-hypothesis/distinfo index 3f5187829df2..5b6f8237269e 100644 --- a/devel/py-hypothesis/distinfo +++ b/devel/py-hypothesis/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1691070054 -SHA256 (hypothesis-6.82.0.tar.gz) = ffece8e40a34329e7112f7408f2c45fe587761978fdbc6f4f91bf0d683a7d4d9 -SIZE (hypothesis-6.82.0.tar.gz) = 352906 +TIMESTAMP = 1692211729 +SHA256 (hypothesis-6.82.2.tar.gz) = 0b11df224102bef9441ebd91537b61f416d21ee0c7bdb1da49d903d6d4bfc063 +SIZE (hypothesis-6.82.2.tar.gz) = 353212 diff --git a/devel/py-hypothesis/files/patch-setup.py b/devel/py-hypothesis/files/patch-setup.py deleted file mode 100644 index 3cf2c612e0f3..000000000000 --- a/devel/py-hypothesis/files/patch-setup.py +++ /dev/null @@ -1,23 +0,0 @@ -===> Configuring for py39-hypothesis-6.80.1 -Traceback (most recent call last): - File "<string>", line 1, in <module> - File "setup.py", line 31, in <module> - SOURCE = str(local_file("src")) - File "setup.py", line 28, in local_file - return Path(__file__).parent.joinpath(name).relative_to(Path.cwd()) - File "/usr/local/lib/python3.9/pathlib.py", line 939, in relative_to - raise ValueError("{!r} is not in the subpath of {!r}" -ValueError: 'src' is not in the subpath of '/wrkdirs/usr/ports/devel/py-hypothesis/work-py39/hypothesis-6.80.1' OR one path is relative and the other is absolute. -*** Error code 1 - ---- setup.py.orig 2023-07-06 16:35:06 UTC -+++ setup.py -@@ -25,7 +25,7 @@ if sys.version_info[:2] < (3, 8): - - - def local_file(name): -- return Path(__file__).parent.joinpath(name).relative_to(Path.cwd()) -+ return Path(__file__).resolve().parent.joinpath(name).relative_to(Path.cwd()) - - - SOURCE = str(local_file("src"))