mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
f13206cb35
similar to PyChecker in scope, but differs in that it does not execute the modules to check them. This is both safer and faster, although it does not perform as many checks. Unlike PyLint, Pyflakes checks only for logical errors in programs; it does not perform any checks on style. WWW: http://www.divmod.org/projects/pyflakes PR: ports/95679 Submitted by: Alexander Botero-Lowry <alex@foxybanana.com>
23 lines
525 B
Makefile
23 lines
525 B
Makefile
# New ports collection makefile for: py-flakes
|
|
# Date created: 13 Apr 2006
|
|
# Whom: Alexander Botero-Lowry <alex@foxybanana.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= flakes
|
|
PORTVERSION= 0.2.1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://divmod.org/static/projects/pyflakes/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= pyflakes-${PORTVERSION}
|
|
|
|
MAINTAINER= alex@foxybanana.com
|
|
COMMENT= Pyflakes is a program that analyzes Pythom programs for errors
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
NO_BUILD= yes
|
|
|
|
.include <bsd.port.mk>
|