From owner-svn-ports-head@FreeBSD.ORG Sat May 24 12:47:06 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90CC12E2; Sat, 24 May 2014 12:47:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E59D28E4; Sat, 24 May 2014 12:47:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4OCl6aD077681; Sat, 24 May 2014 12:47:06 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4OCl51V077674; Sat, 24 May 2014 12:47:05 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201405241247.s4OCl51V077674@svn.freebsd.org> From: William Grzybowski Date: Sat, 24 May 2014 12:47:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355016 - in head/misc/py-pexpect: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 May 2014 12:47:06 -0000 Author: wg Date: Sat May 24 12:47:05 2014 New Revision: 355016 URL: http://svnweb.freebsd.org/changeset/ports/355016 QAT: https://qat.redports.org/buildarchive/r355016/ Log: misc/py-pexpect: update to 3.2 PR: ports/189708 Submitted by: Bartek Rutkowski Modified: head/misc/py-pexpect/Makefile head/misc/py-pexpect/distinfo head/misc/py-pexpect/files/patch-pexpect-__init__.py head/misc/py-pexpect/pkg-descr Modified: head/misc/py-pexpect/Makefile ============================================================================== --- head/misc/py-pexpect/Makefile Sat May 24 12:45:02 2014 (r355015) +++ head/misc/py-pexpect/Makefile Sat May 24 12:47:05 2014 (r355016) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pexpect -PORTVERSION= 3.1 +PORTVERSION= 3.2 CATEGORIES= misc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/misc/py-pexpect/distinfo ============================================================================== --- head/misc/py-pexpect/distinfo Sat May 24 12:45:02 2014 (r355015) +++ head/misc/py-pexpect/distinfo Sat May 24 12:47:05 2014 (r355016) @@ -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 Modified: head/misc/py-pexpect/files/patch-pexpect-__init__.py ============================================================================== --- head/misc/py-pexpect/files/patch-pexpect-__init__.py Sat May 24 12:45:02 2014 (r355015) +++ head/misc/py-pexpect/files/patch-pexpect-__init__.py Sat May 24 12:47:05 2014 (r355016) @@ -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) Modified: head/misc/py-pexpect/pkg-descr ============================================================================== --- head/misc/py-pexpect/pkg-descr Sat May 24 12:45:02 2014 (r355015) +++ head/misc/py-pexpect/pkg-descr Sat May 24 12:47:05 2014 (r355016) @@ -11,4 +11,4 @@ software package installations on differ 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