blob: ae4fa5941abcdd18d4b171e5aee13803ef09b6c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Created by: Sofian Brabez <sbrabez@gmail.com>
# $FreeBSD$
PORTNAME= pep8
PORTVERSION= 1.7.0
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sbz@FreeBSD.org
COMMENT= Python style guide checker
LICENSE= MIT
NO_ARCH= yes
USES= python
USE_PYTHON= autoplist concurrent distutils
do-test:
@(cd ${WRKSRC}; ${PYTHON_CMD} ${PORTNAME}.py \
--doctest --testsuite=testsuite)
.include <bsd.port.mk>
|