ports/devel/py-pyflakes/files/patch-setup.py
Po-Chuan Hsieh 63ad96b256
devel/py-pyflakes: Use the simpler script which does not raise StopIteration
- Bump PORTREVISION for package change

PR:		267219
Reported by:	yuri
2023-09-11 11:11:28 +08:00

14 lines
353 B
Python

--- setup.py.orig 2023-01-31 18:28:24 UTC
+++ setup.py
@@ -10,10 +10,8 @@ except ImportError:
extra = {'scripts': ["bin/pyflakes"]}
else:
extra = {
+ 'scripts': ["bin/pyflakes"],
'test_suite': 'pyflakes.test',
- 'entry_points': {
- 'console_scripts': ['pyflakes = pyflakes.api:main'],
- },
}