From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: [PATCH 1/5] gnu: Add efl. Date: Thu, 26 Feb 2015 22:05:14 +0100 Message-ID: <20150226210514.GD12643@debian> References: <1424910673-17665-1-git-send-email-sleep_walker@suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36917) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YR5cb-0002bK-7b for guix-devel@gnu.org; Thu, 26 Feb 2015 16:05:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YR5cW-0000jS-2n for guix-devel@gnu.org; Thu, 26 Feb 2015 16:05:25 -0500 Received: from mout.kundenserver.de ([212.227.17.24]:55372) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YR5cV-0000jM-Pt for guix-devel@gnu.org; Thu, 26 Feb 2015 16:05:20 -0500 Content-Disposition: inline In-Reply-To: <1424910673-17665-1-git-send-email-sleep_walker@suse.cz> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: =?utf-8?B?VG9tw6HFoSDEjGVjaA==?= Cc: guix-devel@gnu.org Hello, a few more comments: On Thu, Feb 26, 2015 at 01:31:09AM +0100, Tomáš Čech wrote: > + (propagated-inputs > + `(("bullet" ,bullet) > + ("dbus" ,dbus) > + ("eudev" ,eudev) > + ("fontconfig" ,fontconfig) > + ("freetype" ,freetype) > + ("fribidi" ,fribidi) > + ("glib" ,glib) > + ("libpng" ,libpng) > + ("libsndfile" ,libsndfile) > + ("luajit" ,luajit) > + ("openssl" ,openssl) > + ("pulseaudio" ,pulseaudio) > + ("util-linux" ,util-linux))) Why do all these need to be propagated? Are the all dlopenend? If they are linked normally into executables and libraries, are ld-wrapper should take care of them. If all or some of them need to be propagated, it would be good to add a comment. > * gnu/packages/efl (elementary): New variable. This one looks safe (except for the line length of 80 characters already mentioned by 宋文武). > * gnu/packages/efl.scm (evas-generic-loaders): New variable. > + ("poppler" ,poppler) > + )) The "))" should be at the end of the previous line. Apart from that, it looks good. > * gnu/packages/efl.scm (emotion-generic-players): New variable. Looks good. > * gnu/packages/efl.scm (terminology): New variable. Looks good, too! Andreas