1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-05 01:55:52 +00:00
freebsd-ports/devel/py-pyflakes/Makefile
Kubilay Kocak f43b7b2647 devel/py-pyflakes: Update to 0.7.3, Remove TESTS option
- 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)
2013-07-07 08:03:20 +00:00

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>