From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41415) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1da4vB-0006vq-CZ for guix-patches@gnu.org; Tue, 25 Jul 2017 14:51:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1da4v8-00035B-AA for guix-patches@gnu.org; Tue, 25 Jul 2017 14:51:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:53607) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1da4v8-00034r-6M for guix-patches@gnu.org; Tue, 25 Jul 2017 14:51:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1da4v7-0005qu-W9 for guix-patches@gnu.org; Tue, 25 Jul 2017 14:51:02 -0400 Subject: [bug#27827] [PATCH] gnu: python2-urwid: Actually build urwid for Python 2. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41292) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1da4ud-0006oQ-MC for guix-patches@gnu.org; Tue, 25 Jul 2017 14:50:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1da4ua-0002YY-HT for guix-patches@gnu.org; Tue, 25 Jul 2017 14:50:31 -0400 Received: from lb1.openmailbox.org ([5.79.108.160]:53198 helo=mail.openmailbox.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1da4ua-0002VV-A0 for guix-patches@gnu.org; Tue, 25 Jul 2017 14:50:28 -0400 From: Kei Kebreau Date: Tue, 25 Jul 2017 14:50:16 -0400 Message-Id: <20170725185016.21695-1-kei@openmailbox.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 27827@debbugs.gnu.org Cc: Kei Kebreau * gnu/packages/python.scm (python2-urwid)[arguments]: Add #:python. --- gnu/packages/python.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 89c2de63b..03f813411 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5871,7 +5871,11 @@ features useful for text console applications.") (inherit python2-urwid) (arguments (append - '(#:phases + `(;; Explicitly using Python 2 is necessary due the argument list being + ;; built from only the 'delete-test_vterm.py' phase and python-urwid's + ;; package arguments, which by default assumes the use of Python 3. + #:python ,python-2 + #:phases (modify-phases %standard-phases ;; Disable the vterm tests because of non-deterministic failures ;; with Python 2. See https://github.com/urwid/urwid/issues/230. -- 2.13.3