From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: Re: [PATCH] gnu: Move gtkglext from gnome to gtk. Date: Tue, 16 Aug 2016 22:40:00 +0200 Message-ID: <20160816224000.6bfbbbd5@scratchpost.org> References: <20160816180104.20832-1-dannym@scratchpost.org> <20160816200303.GC20269@jasmine> <20160816220916.6ecaf4ed@scratchpost.org> <20160816201407.GD20269@jasmine> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51939) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZl9f-0007Q3-6Q for guix-devel@gnu.org; Tue, 16 Aug 2016 16:40:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bZl9c-0007qC-0b for guix-devel@gnu.org; Tue, 16 Aug 2016 16:40:11 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:50553) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZl9b-0007oj-Pa for guix-devel@gnu.org; Tue, 16 Aug 2016 16:40:07 -0400 In-Reply-To: <20160816201407.GD20269@jasmine> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Leo Famulari Cc: guix-devel@gnu.org > Okay. Do the games and engineering modules still need to import the > gnome module if we make this move? Yes. The reasons that they still need gnome.scm are: - engineering.scm references desktop-file-utils and shared-mime-info which are freedesktop things (i.e. common to all desktop environments) but are inside gnome.scm . - games.scm references librsvg which is inside gnome.scm for some reason. But I wanted to avoid the dependency in education.scm for celestia. Right now, gnome.scm includes gtk.scm and gtk.scm includes gnome.scm because of the above, among other things. Disentangling all that seems to be a lot of work for little gain - however, I don't understand why there's gtk.scm and gnome.scm in the first place if we don't distinguish between them. It makes sense to distinguish since lxde, xfce, gnome etcetc all use gtk and freedesktop stuff.