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

(-)Makefile (-5 / +6 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	flake8
4
PORTNAME=	flake8
5
PORTVERSION=	2.5.4
5
PORTVERSION=	3.2.1
6
PORTREVISION=	1
7
CATEGORIES=	devel python
6
CATEGORIES=	devel python
8
MASTER_SITES=	CHEESESHOP
7
MASTER_SITES=	CHEESESHOP
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
Lines 13-23 Link Here
13
12
14
LICENSE=	MIT
13
LICENSE=	MIT
15
14
16
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}mccabe>=0.2.1:devel/py-mccabe \
15
BUILD_DEPENDS?=	${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner
17
		${PYTHON_PKGNAMEPREFIX}pep8>=1.5.7:devel/pep8 \
16
RUN_DEPENDS?=	${PYTHON_PKGNAMEPREFIX}mccabe>=0.5.0:devel/py-mccabe \
17
		${PYTHON_PKGNAMEPREFIX}pycodestyle>=2.0.0:devel/py-pycodestyle \
18
		${PYTHON_PKGNAMEPREFIX}pyflakes>=0.8.1:devel/py-pyflakes
18
		${PYTHON_PKGNAMEPREFIX}pyflakes>=0.8.1:devel/py-pyflakes
19
19
20
USES=		python
20
USES?=		python
21
USE_PYTHON=	autoplist distutils
21
USE_PYTHON=	autoplist distutils
22
NO_ARCH=	yes
22
23
23
.include <bsd.port.mk>
24
.include <bsd.port.mk>
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1463831204
1
TIMESTAMP = 1484910118
2
SHA256 (flake8-2.5.4.tar.gz) = cc1e58179f6cf10524c7bfdd378f5536d0a61497688517791639a5ecc867492f
2
SHA256 (flake8-3.2.1.tar.gz) = c7c460b5aff3a2063c798a77af18ec70af3941d35a22e2e76965e3c0e0b36055
3
SIZE (flake8-2.5.4.tar.gz) = 81663
3
SIZE (flake8-3.2.1.tar.gz) = 129458
(-)files/patch-flake8.egg-info_requires.txt (-7 lines)
Lines 1-7 Link Here
1
--- flake8.egg-info/requires.txt.orig	2016-02-11 17:54:19 UTC
2
+++ flake8.egg-info/requires.txt
3
@@ -1,3 +1,3 @@
4
-pyflakes >= 0.8.1, < 1.1
5
+pyflakes >= 0.8.1
6
 pep8 >= 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2
7
 mccabe >= 0.2.1, < 0.5
(-)files/patch-setup.py (-11 lines)
Lines 1-11 Link Here
1
--- setup.py.orig	2016-02-10 22:07:13 UTC
2
+++ setup.py
3
@@ -49,7 +49,7 @@ setup(
4
     url="https://gitlab.com/pycqa/flake8",
5
     packages=["flake8", "flake8.tests"],
6
     install_requires=[
7
-        "pyflakes >= 0.8.1, < 1.1",
8
+        "pyflakes >= 0.8.1",
9
         "pep8 >= 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2",
10
         "mccabe >= 0.2.1, < 0.5",
11
     ],

Return to bug 216407