git: 5d96194792aa - main - www/py-quilt3: Do not install tests module
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 25 Mar 2022 13:46:03 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=5d96194792aa1e3f1cae5ca0a71ba1c1372b71cc
commit 5d96194792aa1e3f1cae5ca0a71ba1c1372b71cc
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-03-25 13:05:47 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-03-25 13:37:21 +0000
www/py-quilt3: Do not install tests module
- Bump PORTREVISION for package change
PR: 262759
Reported by: se
---
www/py-quilt3/Makefile | 2 +-
www/py-quilt3/files/patch-setup.py | 26 +++++++++-----------------
2 files changed, 10 insertions(+), 18 deletions(-)
diff --git a/www/py-quilt3/Makefile b/www/py-quilt3/Makefile
index 6720ec318b14..55814f3d3a1b 100644
--- a/www/py-quilt3/Makefile
+++ b/www/py-quilt3/Makefile
@@ -2,7 +2,7 @@
PORTNAME= quilt3
PORTVERSION= 3.6.0
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/www/py-quilt3/files/patch-setup.py b/www/py-quilt3/files/patch-setup.py
index 8e83be53a15a..9758b87a25d7 100644
--- a/www/py-quilt3/files/patch-setup.py
+++ b/www/py-quilt3/files/patch-setup.py
@@ -1,19 +1,11 @@
--- setup.py.orig 2021-10-15 18:41:22 UTC
+++ setup.py
-@@ -64,13 +64,13 @@ setup(
- 'flask',
- 'flask_cors',
- 'flask_json',
-- 'jsonlines==1.2.0',
-+ 'jsonlines>=1.2.0',
- 'PyYAML>=5.1',
- 'requests>=2.12.4',
- 'tenacity>=5.1.1',
- 'tqdm>=4.32',
-- 'requests_futures==1.0.0',
-- 'jsonschema==3.*',
-+ 'requests_futures>=1.0.0',
-+ 'jsonschema>=3,<5',
- ],
- extras_require={
- 'pyarrow': [
+@@ -38,7 +38,7 @@ class VerifyVersionCommand(install):
+ setup(
+ name="quilt3",
+ version=VERSION,
+- packages=find_packages(),
++ packages=find_packages(exclude=['tests*']),
+ description='Quilt: where data comes together',
+ long_description=readme(),
+ python_requires='>=3.6',