From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH] gnu: Add tracker. Date: Sat, 6 Feb 2016 17:28:48 -0500 Message-ID: <20160206222848.GC8398@jasmine> References: <841c96ec184a9d17c5f4f9d662c018b4@openmailbox.org> 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]:38566) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aSBLc-0005dR-VF for guix-devel@gnu.org; Sat, 06 Feb 2016 17:28:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aSBLY-0007wJ-7A for guix-devel@gnu.org; Sat, 06 Feb 2016 17:28:56 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:59940) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aSBLY-0007wD-3n for guix-devel@gnu.org; Sat, 06 Feb 2016 17:28:52 -0500 Content-Disposition: inline In-Reply-To: <841c96ec184a9d17c5f4f9d662c018b4@openmailbox.org> 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: rennes@openmailbox.org Cc: guix-devel@gnu.org On Sat, Feb 06, 2016 at 09:47:22PM +0100, rennes@openmailbox.org wrote: > Hi, > > i attached patch with new variable(tracker) for gnome.scm. > > Tracker, is a search engine and metadata storage system used for > nautilus(gnome file manager). > > The steps i follow are: > > a) I edit gnu/packages/gnome.scm and added tracker variable. > b) git add gnu/packages/gnome.scm > c) git commit -m 'gnu: Add tracker.' Don't forget: c′) ./pre-inst-env guix lint tracker > d) git format-patch -1 [...] > * gnu/packages/gnome.scm (tracker): New variable. Okay. > + (arguments > + ;; Testsuite finishes with errors. > + `(#:configure-flags '("--enable-unit-tests=no"))) Are these failures important? Are they caused by the unusual Guix build environment? If so, can you disable only the specific tests that are failing? Otherwise, I wait for the input of a GNOME / GTK expert :) > + (native-inputs > + `(("glib" ,glib) ; for glib-compile-schemas, gio-2.0. > + ("intltool" ,intltool) > + ("pkg-config" ,pkg-config))) > + (inputs > + `(("gobject-introspection" ,gobject-introspection) > + ("libpng" ,libpng) > + ("libunistring" ,libunistring) > + ("libxml2" ,libxml2) > + ("sqlite" ,sqlite) > + ("uuidgen" ,util-linux) > + ("xsltproc" ,libxslt) > + ("zlib" ,zlib))) > + (home-page "https://wiki.gnome.org/Projects/Tracker") > + (synopsis "Search engine and metadata storage system") > + (description > + "Tracker is a search engine, search tool and metadata storage > +system. Tracker allows the user to find their data as fast as possible. > +Tracker organises data in categories and enable tag in the data with > +keywords which can be used to find related information.") > + ;; See COPYING for details. > + (license (list license:lgpl2.1+ license:gpl2+ license:bsd-3)))) > -- > 2.6.3 >