From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH 4] gnunet-gtk-svn (was Re: [PATCH] gnunet.scm -> various changes (description update, adds gnunet-svn, gnunet-gtk-svn, gnurl)) Date: Mon, 28 Mar 2016 12:45:35 -0400 Message-ID: <20160328164535.GD8174@jasmine> References: <874mcd2cl2.fsf@grrlz.net> <87io06r30e.fsf@grrlz.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41499) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1akaIN-0004Kl-3C for guix-devel@gnu.org; Mon, 28 Mar 2016 12:45:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1akaIJ-0007zS-SE for guix-devel@gnu.org; Mon, 28 Mar 2016 12:45:39 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:37495) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1akaIJ-0007zI-OE for guix-devel@gnu.org; Mon, 28 Mar 2016 12:45:35 -0400 Content-Disposition: inline In-Reply-To: <87io06r30e.fsf@grrlz.net> 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: Nils Gillmann Cc: guix-devel@gnu.org On Mon, Mar 28, 2016 at 06:17:05PM +0200, Nils Gillmann wrote: > From 4633dc3484390fa6e399084336e73879066b1760 Mon Sep 17 00:00:00 2001 > From: Nils Gillmann > Date: Mon, 28 Mar 2016 18:10:12 +0200 > Subject: [PATCH] gnu: Add gnunet-gtk-svn. > > * gnu/packages/gnunet.scm (gnunet-gtk-svn): New variable. > Coauthored by Jookia. > --- > gnu/packages/gnunet.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 46 insertions(+) > > diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm > index fe6ca14..fa55179 100644 > --- a/gnu/packages/gnunet.scm > +++ b/gnu/packages/gnunet.scm > @@ -419,3 +419,49 @@ development purposes and keeping up with latest changes, the SVN version > might be preferable until a new version is released.") > (license license:gpl3+) > (home-page "https://gnunet.org/"))) > + > +;; current WM related bug being traced: s/traced/tracked > +;; #22985: using gnune-gtk with ratpoison (gnunet-fs in -gtk > +;; nonfunctional) -> needs participation and input) > +(define-public gnunet-gtk-svn > + (package > + (inherit gnunet-svn) > + (name "gnunet-gtk-svn") > + (version (package-version gnunet-svn)) > + (source > + (origin > + (method svn-fetch) > + (uri (svn-reference > + (url "https://gnunet.org/svn/gnunet-gtk/") > + (revision 36926))) Same question as before about the length of the SVN identifier. > + (file-name (string-append name "-" version "-checkout")) > + (sha256 (base32 > + "0kbxgfv08kh69vcrkvm23d2vggyww48h9cvgw4gdfs3i146zkfqb")))) > + (arguments > + `(#:configure-flags > + (list "--without-libunique" Can you say why this is disabled? > + "--with-qrencode" > + (string-append "--with-gnunet=" > + (assoc-ref %build-inputs "gnunet-svn"))) > + #:phases (modify-phases %standard-phases > + (add-before 'configure 'bootstrap > + (lambda _ > + (zero? (system* "autoreconf" "-vfi"))))))) > + (inputs > + `(("gnunet-svn" ,gnunet-svn) > + ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) > + ("gnutls" ,gnutls) > + ("libgcrypt" ,libgcrypt) > + ("gtk+" ,gtk+) > + ("libextractor" ,libextractor) > + ("glade3" ,glade3) > + ("qrencode" ,qrencode))) > + (native-inputs > + `(("pkg-config" ,pkg-config) > + ("libglade" ,libglade) > + ("autoconf" ,autoconf) > + ("gettext" ,gnu-gettext) > + ("automake" ,automake) > + ("libtool" ,libtool))) > + (synopsis "Graphical front-end tools for GNUnet") > + (home-page "https://gnunet.org"))) > -- > 2.7.3 > > > -- > ng > personal contact: http://krosos.sdf.org > EDN: https://wiki.c3d2.de/EDN