fbcabd09bf
Upstream changes: 0.9.2 (2015-06-17): - Fix a traceback when a global is defined in one scope, and used in another. 0.9.1 (2015-06-09): - Update NEWS.txt to include 0.9.0, which had been forgotten. 0.9.0 (2015-05-31): - Exit gracefully, not with a traceback, on SIGINT and SIGPIPE. - Fix incorrect report of undefined name when using lambda expressions in generator expressions. - Don't crash on DOS line endings on Windows and Python 2.6. - Don't report an undefined name if the 'del' which caused a name to become undefined is only conditionally executed. - Properly handle differences in list comprehension scope in Python 3. - Improve handling of edge cases around 'global' defined variables. - Report an error for 'return' outside a function.
22 lines
611 B
Makefile
22 lines
611 B
Makefile
# $NetBSD: Makefile,v 1.5 2015/08/23 07:50:41 wen Exp $
|
|
|
|
DISTNAME= pyflakes-0.9.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/^py//}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://pypi.python.org/packages/source/p/pyflakes/
|
|
|
|
MAINTAINER= kamel.derouiche@gmail.com
|
|
HOMEPAGE= https://launchpad.net/pyflakes
|
|
COMMENT= Passive checker of Python programs
|
|
LICENSE= mit
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYDISTUTILSPKG= yes
|
|
PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX}
|
|
|
|
post-install:
|
|
${MV} ${DESTDIR}${PREFIX}/bin/pyflakes ${DESTDIR}${PREFIX}/bin/pyflakes${PYVERSSUFFIX}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|