aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2022-03-25 12:47:28 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2022-03-25 13:36:49 +0000
commit96b2fab2572eabef7f6e5d2f480ee75d31c7f7c7 (patch)
tree7a7729b24da7813a17d02ff1e8893355abcf8471
parentb1e9b946072bfa2f8c759207c9e4b2540b0edd30 (diff)
downloadports-96b2fab2572eabef7f6e5d2f480ee75d31c7f7c7.tar.gz
ports-96b2fab2572eabef7f6e5d2f480ee75d31c7f7c7.zip
databases/py-mycli: Do not install test module
- Bump PORTREVISION for package change PR: 262759 Reported by: se
-rw-r--r--databases/py-mycli/Makefile1
-rw-r--r--databases/py-mycli/files/patch-setup.py9
2 files changed, 10 insertions, 0 deletions
diff --git a/databases/py-mycli/Makefile b/databases/py-mycli/Makefile
index c101a27dc1e6..21a9e9b723c4 100644
--- a/databases/py-mycli/Makefile
+++ b/databases/py-mycli/Makefile
@@ -2,6 +2,7 @@
PORTNAME= mycli
PORTVERSION= 1.24.3
+PORTREVISION= 1
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/databases/py-mycli/files/patch-setup.py b/databases/py-mycli/files/patch-setup.py
index 69cbfbde055b..aeb5be3e4e14 100644
--- a/databases/py-mycli/files/patch-setup.py
+++ b/databases/py-mycli/files/patch-setup.py
@@ -9,3 +9,12 @@
'pyaes >= 1.6.1'
]
+@@ -92,7 +92,7 @@ setup(
+ author_email='mycli-dev@googlegroups.com',
+ version=version,
+ url='http://mycli.net',
+- packages=find_packages(),
++ packages=find_packages(exclude=['test*']),
+ package_data={'mycli': ['myclirc', 'AUTHORS', 'SPONSORS']},
+ description=description,
+ long_description=description,