From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: bug#20889: python Tkinter Date: Sat, 04 Jul 2015 02:34:17 +0200 Message-ID: <55972A09.9020508@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49777) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZBBQD-0002RI-8i for bug-guix@gnu.org; Fri, 03 Jul 2015 20:35:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZBBQ8-00029e-5J for bug-guix@gnu.org; Fri, 03 Jul 2015 20:35:09 -0400 Received: from debbugs.gnu.org ([140.186.70.43]:37619) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZBBQ8-00028s-1I for bug-guix@gnu.org; Fri, 03 Jul 2015 20:35:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1ZBBQ7-0005Nl-Ih for bug-guix@gnu.org; Fri, 03 Jul 2015 20:35:03 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Federico Beffa , 20889@debbugs.gnu.org On 06/24/2015 09:14 AM, Federico Beffa wrote: > The python package does not provide Tkinter which is part of the > Python Standard Library > https://docs.python.org/3/library/tkinter.html?highlight=tkinter#module-tkinter > I think we need to add tcl and tk to the inputs, and add the corresponding "-I" and "-L" flags to the configure flags. The issue is that tk depends on Python (through libx11, which depends on libxcb, which depends on Python), so we end up with a circular dependency leading to what I reported in http://debbugs.gnu.org/cgi/bugreport.cgi?bug=20967 . I think we should: - rename the Python package to "python-without-tkinter" or "python-minimal" and use that as a dependency in xorg.scm; - define a "python" package that would inherit the "minimal Python" package and add the dependency on tcl/tk to it. WDYT ?