diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-03-25 13:03:20 +0000 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2022-03-25 13:37:11 +0000 |
commit | 31f693f418e462beba8d729dcba5998042de5d35 (patch) | |
tree | 19026c1bd9ea9747a241123b1c9e3d55d4bc700c | |
parent | a2f6567ea66acd9be7605eb41c74ab6f2ac58310 (diff) | |
download | ports-31f693f418e462beba8d729dcba5998042de5d35.tar.gz ports-31f693f418e462beba8d729dcba5998042de5d35.zip |
-rw-r--r-- | net/py-suds-jurko/Makefile | 2 | ||||
-rw-r--r-- | net/py-suds-jurko/files/patch-setup.py | 11 |
2 files changed, 11 insertions, 2 deletions
diff --git a/net/py-suds-jurko/Makefile b/net/py-suds-jurko/Makefile index 5178c657a084..de6ac3a3463f 100644 --- a/net/py-suds-jurko/Makefile +++ b/net/py-suds-jurko/Makefile @@ -2,7 +2,7 @@ PORTNAME= suds-jurko PORTVERSION= 0.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/net/py-suds-jurko/files/patch-setup.py b/net/py-suds-jurko/files/patch-setup.py index bc6ef4ccb236..f92552ec2439 100644 --- a/net/py-suds-jurko/files/patch-setup.py +++ b/net/py-suds-jurko/files/patch-setup.py @@ -1,4 +1,4 @@ ---- setup.py.orig 2021-09-20 17:08:56 UTC +--- setup.py.orig 2022-03-24 18:36:13 UTC +++ setup.py @@ -91,17 +91,6 @@ if sys.version_info >= (2, 5): # distutils.setup() 'obsoletes' parameter not introduced until Python 2.5. @@ -18,3 +18,12 @@ # Wrap long_description at 72 characters since PKG-INFO package distribution # metadata file stores this text with an 8 space indentation. long_description = """ +@@ -167,7 +156,7 @@ setup( + keywords=["SOAP", "web", "service", "client"], + url=project_url, + download_url=download_url, +- packages=find_packages(), ++ packages=find_packages(exclude=['tests*']), + + # 'maintainer' will be listed as the distribution package author. + # Warning: Due to a 'distribute' package defect when used with Python 3 |