diff options
author | cpm <cpm@FreeBSD.org> | 2017-03-30 11:34:40 +0000 |
---|---|---|
committer | cpm <cpm@FreeBSD.org> | 2017-03-30 11:34:40 +0000 |
commit | 84de0515b4ba68df06f8b3cf6c7469a8d1104a42 (patch) | |
tree | 4199f9bb502ecf548e17728dd2f9bba35c9a671d | |
parent | 29ed437f3897557ea230634cc302db83aa33af3c (diff) | |
download | FreeBSD-ports-84de0515b4ba68df06f8b3cf6c7469a8d1104a42.zip FreeBSD-ports-84de0515b4ba68df06f8b3cf6c7469a8d1104a42.tar.gz |
- Update to 2.10.0
- While here, fix 'make test'
PR: 217523
Submitted by: Neel Chauhan <neel@neelc.org> (maintainer)
-rw-r--r-- | misc/py-pyprind/Makefile | 2 | ||||
-rw-r--r-- | misc/py-pyprind/distinfo | 6 | ||||
-rw-r--r-- | misc/py-pyprind/files/patch-pyprind_prog__class.py | 12 |
3 files changed, 16 insertions, 4 deletions
diff --git a/misc/py-pyprind/Makefile b/misc/py-pyprind/Makefile index 45e93d6..8293e6e 100644 --- a/misc/py-pyprind/Makefile +++ b/misc/py-pyprind/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pyprind -PORTVERSION= 2.9.9 +PORTVERSION= 2.10.0 CATEGORIES= misc MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/misc/py-pyprind/distinfo b/misc/py-pyprind/distinfo index feb78ea..53b2084 100644 --- a/misc/py-pyprind/distinfo +++ b/misc/py-pyprind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1473379703 -SHA256 (PyPrind-2.9.9.tar.gz) = 83fca8b860a1e6481416fbde3cd59b825867870f00939946abe6cd1c6039feb3 -SIZE (PyPrind-2.9.9.tar.gz) = 10749 +TIMESTAMP = 1488561295 +SHA256 (PyPrind-2.10.0.tar.gz) = 3ca1bd20060b9a9cccb12565bd998444f0e06318d917c4a03b429eb4a7da5514 +SIZE (PyPrind-2.10.0.tar.gz) = 10833 diff --git a/misc/py-pyprind/files/patch-pyprind_prog__class.py b/misc/py-pyprind/files/patch-pyprind_prog__class.py new file mode 100644 index 0000000..4f010b7 --- /dev/null +++ b/misc/py-pyprind/files/patch-pyprind_prog__class.py @@ -0,0 +1,12 @@ +--- pyprind/prog_class.py.orig 2017-03-18 12:03:55 UTC ++++ pyprind/prog_class.py +@@ -91,6 +91,9 @@ class Prog(): + supported = ('PYCHARM_HOSTED' in os.environ or + os.isatty(sys.stdout.fileno())) + ++ except AttributeError: ++ supported = False ++ + # a fix for IPython notebook "IOStream has no fileno." + except(UnsupportedOperation): + supported = True |