aboutsummaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorwg <wg@FreeBSD.org>2014-05-24 20:47:05 +0800
committerwg <wg@FreeBSD.org>2014-05-24 20:47:05 +0800
commitfaa4b78a31ab46e6d7464871b47784ff2f2a8eaf (patch)
tree6378fed2c5da146fbad3930f4e2a14d52a5f73fd /misc
parent273690c7ade46db3a12f69e9aac60d275350d958 (diff)
downloadfreebsd-ports-gnome-faa4b78a31ab46e6d7464871b47784ff2f2a8eaf.tar.gz
freebsd-ports-gnome-faa4b78a31ab46e6d7464871b47784ff2f2a8eaf.tar.zst
freebsd-ports-gnome-faa4b78a31ab46e6d7464871b47784ff2f2a8eaf.zip
misc/py-pexpect: update to 3.2
PR: ports/189708 Submitted by: Bartek Rutkowski <ports at robakdesign com>
Diffstat (limited to 'misc')
-rw-r--r--misc/py-pexpect/Makefile2
-rw-r--r--misc/py-pexpect/distinfo4
-rw-r--r--misc/py-pexpect/files/patch-pexpect-__init__.py15
-rw-r--r--misc/py-pexpect/pkg-descr2
4 files changed, 10 insertions, 13 deletions
diff --git a/misc/py-pexpect/Makefile b/misc/py-pexpect/Makefile
index cbc387690207..b127050becfc 100644
--- a/misc/py-pexpect/Makefile
+++ b/misc/py-pexpect/Makefile
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= pexpect
-PORTVERSION= 3.1
+PORTVERSION= 3.2
CATEGORIES= misc python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/misc/py-pexpect/distinfo b/misc/py-pexpect/distinfo
index 47f7e97f387a..eaa0a5e6a50c 100644
--- a/misc/py-pexpect/distinfo
+++ b/misc/py-pexpect/distinfo
@@ -1,2 +1,2 @@
-SHA256 (pexpect-3.1.tar.gz) = bd0045066718fba98481032303f07565cca6b22b3b7f104efe3e077a55e9ee8d
-SIZE (pexpect-3.1.tar.gz) = 130404
+SHA256 (pexpect-3.2.tar.gz) = dbc4c9a01c118e198d1b6ca76f31eb7292f212567f253e6b36a880e5168e961f
+SIZE (pexpect-3.2.tar.gz) = 131070
diff --git a/misc/py-pexpect/files/patch-pexpect-__init__.py b/misc/py-pexpect/files/patch-pexpect-__init__.py
index 6b855a9f2430..9eaab85a9ec8 100644
--- a/misc/py-pexpect/files/patch-pexpect-__init__.py
+++ b/misc/py-pexpect/files/patch-pexpect-__init__.py
@@ -1,13 +1,10 @@
---- pexpect/__init__.py.orig 2013-11-11 17:58:03.000000000 +0000
-+++ pexpect/__init__.py 2013-12-26 08:28:18.423632870 +0000
-@@ -1558,10 +1558,7 @@
- # TIOCSWINSZ and they don't have a truncate problem.
- # Newer versions of Linux have totally different values for TIOCSWINSZ.
- # Note that this fix is a hack.
+--- pexpect/__init__.py.orig 2014-04-15 03:31:01.000000000 +0200
++++ pexpect/__init__.py 2014-05-12 14:41:21.690335992 +0200
+@@ -1562,7 +1562,7 @@
+ # termios.TIOCSWINSZ to be truncated. There was a hack here to work
+ # around this, but it caused problems with newer platforms so has been
+ # removed. For details see https://github.com/pexpect/pexpect/issues/39
- TIOCSWINSZ = getattr(termios, 'TIOCSWINSZ', -2146929561)
-- if TIOCSWINSZ == 2148037735:
-- # Same bits, but with sign.
-- TIOCSWINSZ = -2146929561
+ TIOCSWINSZ = getattr(termios, 'TIOCSWINSZ', 2148037735)
# Note, assume ws_xpixel and ws_ypixel are zero.
s = struct.pack('HHHH', rows, cols, 0, 0)
diff --git a/misc/py-pexpect/pkg-descr b/misc/py-pexpect/pkg-descr
index 338749d15efa..8ed5c3f67604 100644
--- a/misc/py-pexpect/pkg-descr
+++ b/misc/py-pexpect/pkg-descr
@@ -11,4 +11,4 @@ software package installations on different servers. It can be used for
automated software testing. Pexpect is in the spirit of Don Libes' Expect, but
Pexpect is pure Python. The Pexpect interface was designed to be easy to use.
-WWW: http://pexpect.sourceforge.net/
+WWW: http://pexpect.sourceforge.net