View | Details | Raw Unified | Return to bug 239184
Collapse All | Expand All

(-)Makefile (+23 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	pylama
4
PORTVERSION=	7.7.1
5
CATEGORIES=	devel python
6
MASTER_SITES=	CHEESESHOP
7
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
9
MAINTAINER=	alex@xanderio.de
10
COMMENT=	Pylama -- code audit tool for python
11
12
LICENSE=	LGPL3
13
LICENSE_FILE=	${WRKSRC}/LICENSE
14
15
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}mccabe>=0.5.2:devel/py-mccabe@${PY_FLAVOR} \
16
		${PYTHON_PKGNAMEPREFIX}pycodestyle>=2.3.1:devel/py-pycodestyle@${PY_FLAVOR} \
17
		${PYTHON_PKGNAMEPREFIX}pydocstyle>=2.0.0:devel/py-pydocstyle@${PY_FLAVOR} \
18
		${PYTHON_PKGNAMEPREFIX}pyflakes>=1.5.0:devel/py-pyflakes@${PY_FLAVOR}
19
20
USES=		python
21
USE_PYTHON=	autoplist distutils
22
23
.include <bsd.port.mk>
(-)distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1563013350
2
SHA256 (pylama-7.7.1.tar.gz) = 9bae53ef9c1a431371d6a8dca406816a60d547147b60a4934721898f553b7d8f
3
SIZE (pylama-7.7.1.tar.gz) = 33278
(-)pkg-descr (+14 lines)
Line 0 Link Here
1
Code audit tool for Python and JavaScript. Pylama wraps these tools:
2
3
- pycodestyle (formerly pep8) (c) 2012-2013, Florent Xicluna;
4
- pydocstyle (formerly pep257 by Vladimir Keleshev) (c) 2014, Amir Rachum;
5
- PyFlakes (c) 2005-2013, Kevin Watters;
6
- Mccabe (c) Ned Batchelder;
7
- Pylint (c) 2013, Logilab (should be installed 'pylama_pylint' module);
8
- Radon (c) Michele Lacchia
9
- gjslint (c) The Closure Linter Authors (should be installed 'pylama_gjslint'
10
  module);
11
- eradicate (c) Steven Myint;
12
- Mypy (c) Jukka Lehtosalo and contributors;
13
14
WWW: https://github.com/klen/pylama

Return to bug 239184