mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
f43b7b2647
- Update to 0.7.3 - unittest2 is no longer required to run tests - Remove TESTS option accordingly Changes: 0.7.3 (2013-07-02) - Do not report undefined name for generator expression and dict or set comprehension at class level. - Deprecate `Checker.pushFunctionScope` and `Checker.pushClassScope`: use `Checker.pushScope` instead. - Remove dependency on Unittest2 for the tests. portlint: OK - looks fine. porttest: OK - 9-STABLE amd64, clang testport: OK - poudriere, all versions/archs unittest: OK - Ran 547 tests in 0.595s OK (skipped=33)
22 lines
458 B
Makefile
22 lines
458 B
Makefile
# Created by: Alexander Botero-Lowry <alex@foxybanana.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pyflakes
|
|
PORTVERSION= 0.7.3
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= Program to analyze Python programs and detect various errors
|
|
|
|
LICENSE= MIT
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= easy_install
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
|
|
|
|
.include <bsd.port.mk>
|