diff options
author | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2018-07-30 20:16:55 +0800 |
---|---|---|
committer | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2018-07-30 20:16:55 +0800 |
commit | 20c05e68845cec07a10ab99f5435c530114e63aa (patch) | |
tree | f907f7e4cc1839d91746e8e8ea1e99f147d46b96 /misc | |
parent | 15c4862331f1d553f986ddcdc9a0e232182c499d (diff) | |
download | freebsd-ports-gnome-20c05e68845cec07a10ab99f5435c530114e63aa.tar.gz freebsd-ports-gnome-20c05e68845cec07a10ab99f5435c530114e63aa.tar.zst freebsd-ports-gnome-20c05e68845cec07a10ab99f5435c530114e63aa.zip |
misc/py-pexpect: update to 4.6.0
async is the registered keyword since python 3.7, so current version of pexpect
fails to work with py37:
File "/usr/local/lib/python3.7/site-packages/pexpect/spawnbase.py", line 224
def expect(self, pattern, timeout=-1, searchwindowsize=-1, async=False):
^
SyntaxError: invalid syntax
*** Error code 1
Update to latest version solves the issue.
Also pass maintainership to python@ at maintainer's request
PR: 230188
Approved by: wg (maintainer)
Diffstat (limited to 'misc')
-rw-r--r-- | misc/py-pexpect/Makefile | 4 | ||||
-rw-r--r-- | misc/py-pexpect/distinfo | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/misc/py-pexpect/Makefile b/misc/py-pexpect/Makefile index 1f19c20815ba..1265fe82217c 100644 --- a/misc/py-pexpect/Makefile +++ b/misc/py-pexpect/Makefile @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= pexpect -PORTVERSION= 4.2.1 +PORTVERSION= 4.6.0 CATEGORIES= misc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= wg@FreeBSD.org +MAINTAINER= python@FreeBSD.org COMMENT= Pure Python Expect-like module LICENSE= ISCL diff --git a/misc/py-pexpect/distinfo b/misc/py-pexpect/distinfo index 44ffc735325f..5d0ed0e6dea3 100644 --- a/misc/py-pexpect/distinfo +++ b/misc/py-pexpect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1487042189 -SHA256 (pexpect-4.2.1.tar.gz) = 3d132465a75b57aa818341c6521392a06cc660feb3988d7f1074f39bd23c9a92 -SIZE (pexpect-4.2.1.tar.gz) = 143980 +TIMESTAMP = 1532948225 +SHA256 (pexpect-4.6.0.tar.gz) = 2a8e88259839571d1251d278476f3eec5db26deb73a70be5ed5dc5435e418aba +SIZE (pexpect-4.6.0.tar.gz) = 148966 |