summaryrefslogtreecommitdiff
path: root/textproc/py-Levenshtein/patches/patch-setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/py-Levenshtein/patches/patch-setup.py')
-rw-r--r--textproc/py-Levenshtein/patches/patch-setup.py15
1 files changed, 11 insertions, 4 deletions
diff --git a/textproc/py-Levenshtein/patches/patch-setup.py b/textproc/py-Levenshtein/patches/patch-setup.py
index e5b17d3f415..bf49840aec9 100644
--- a/textproc/py-Levenshtein/patches/patch-setup.py
+++ b/textproc/py-Levenshtein/patches/patch-setup.py
@@ -1,15 +1,22 @@
-$NetBSD: patch-setup.py,v 1.1 2022/01/05 10:01:08 wiz Exp $
+$NetBSD: patch-setup.py,v 1.2 2022/03/02 22:10:48 gutteridge Exp $
+
+setuptools not needed.
+
+Also remove the empty entry_points definition, as it causes different
+behaviour between old and most recent py-setuptools, resulting in
+unnecessary variation of PLIST entries.
-setuptools not needed
https://github.com/ztane/python-Levenshtein/issues/79
--- setup.py.orig 2021-02-01 12:03:07.000000000 +0000
+++ setup.py
-@@ -39,7 +39,6 @@ setup(name='python-Levenshtein',
+@@ -39,9 +39,6 @@ setup(name='python-Levenshtein',
zip_safe=False,
ext_modules = [extLevensthein],
install_requires=[
- 'setuptools',
# -*- Extra requirements: -*-
],
- entry_points="""
+- entry_points="""
+- """,
+ )