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

(-)Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	mypy
4
PORTNAME=	mypy
5
PORTVERSION=	0.471
5
PORTVERSION=	0.501
6
CATEGORIES=	devel python
6
CATEGORIES=	devel python
7
MASTER_SITES=	CHEESESHOP
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1487173104
1
TIMESTAMP = 1490943629
2
SHA256 (mypy-0.471.tar.gz) = 552821e4ae601e9058797cfc7d251ff6a2789b5b5aeb00df017f76271d726e9f
2
SHA256 (mypy-0.501.tar.gz) = 1098ba0bc55b4f6cebdf35f1303be31107f2ae5a753f9aec28aaff2d701b8f98
3
SIZE (mypy-0.471.tar.gz) = 660228
3
SIZE (mypy-0.501.tar.gz) = 679701
(-)files/patch-mypy_fastparse.py (-11 lines)
Lines 1-11 Link Here
1
--- mypy/fastparse.py.orig	2017-02-15 15:30:38 UTC
2
+++ mypy/fastparse.py
3
@@ -26,7 +26,7 @@ from mypy import experiments
4
 from mypy.errors import Errors
5
 
6
 try:
7
-    from typed_ast import ast35
8
+    from typed_ast import ast3 as ast35
9
 except ImportError:
10
     if sys.version_info.minor > 2:
11
         print('You must install the typed_ast package before you can run mypy'
(-)files/patch-mypy_fastparse2.py (-11 lines)
Lines 1-11 Link Here
1
--- mypy/fastparse2.py.orig	2017-02-15 15:30:42 UTC
2
+++ mypy/fastparse2.py
3
@@ -43,7 +43,7 @@ from mypy.fastparse import TypeConverter
4
 
5
 try:
6
     from typed_ast import ast27
7
-    from typed_ast import ast35
8
+    from typed_ast import ast3 as ast35
9
 except ImportError:
10
     if sys.version_info.minor > 2:
11
         print('You must install the typed_ast package before you can run mypy'

Return to bug 218303