From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sree Harsha Totakura Subject: Re: Gnunet-0.10.0 recipe Date: Thu, 30 Jan 2014 23:56:11 +0100 Message-ID: <52EAD88B.70409@totakura.in> References: <52EA7F73.9010302@totakura.in> <20140130223912.GA12116@debian> 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]:39115) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W90Wy-0003Tb-E8 for guix-devel@gnu.org; Thu, 30 Jan 2014 17:56:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W90Ws-0004ug-7h for guix-devel@gnu.org; Thu, 30 Jan 2014 17:56:20 -0500 Received: from mail-out1.informatik.tu-muenchen.de ([131.159.0.8]:34513 helo=smtp1.informatik.tu-muenchen.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W90Ws-0004uY-1V for guix-devel@gnu.org; Thu, 30 Jan 2014 17:56:14 -0500 In-Reply-To: <20140130223912.GA12116@debian> 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: Andreas Enge Cc: guix-devel@gnu.org On 01/30/2014 11:39 PM, Andreas Enge wrote: > On Thu, Jan 30, 2014 at 05:36:03PM +0100, Sree Harsha Totakura wrote: >> > Here is the much awaited recipe for GNUnet. The patches follow this email. > excellent! I also worked on gnunet and think my handling of phases is > a bit simpler and clearer: > > (arguments > `(#:phases > ;; swap check and install phases and set paths to installed binaries > (alist-cons-before > 'check 'set-path-for-check > (lambda* (#:key outputs #:allow-other-keys) > (let ((out (assoc-ref outputs "out"))) > (setenv "GNUNET_PREFIX" out) > (setenv "PATH" (string-append (getenv "PATH") ":" out "/bin")))) > (alist-cons-after > 'install 'check > (assoc-ref %standard-phases 'check) > (alist-delete > 'check > %standard-phases))))) > Yes, this looks better, perhaps Ludo can replace the relevant part with this. > (where the 'set-path-for-check phase will be made obsolete by the recent > gnunet modification I suggested in its bug tracker). Yes, this will be made obsolete. > > We have slightly different inputs; what is opus needed for? Apart from that, We now have a new voice-chat service called conversation. Opus is the audio codec it requires, hence the new dependency. > I have additional inputs: > ("libmicrohttpd" ,libmicrohttpd) > ("openssl" ,openssl) ; needed for some tests creating TLS certificates > > Maybe openssl is a remainder from an earlier gnunet version and not needed/ > used anymore? The README mentions openssl as a requirement; I forgot to add it. Perhaps the build didn't build relevant parts or testcases. I shall try adding the openssl dependency and see how it goes. Sree