From: rennes@openmailbox.org
To: guix-devel@gnu.org
Subject: [PATCH] gnu: Add tracker.
Date: Sat, 06 Feb 2016 21:47:22 +0100 [thread overview]
Message-ID: <841c96ec184a9d17c5f4f9d662c018b4@openmailbox.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 381 bytes --]
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.'
d) git format-patch -1
i wait your comments. Regards.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-tracker.patch --]
[-- Type: text/x-diff; name=0001-gnu-Add-tracker.patch, Size: 2603 bytes --]
From 5f12e06b8ab0861644a07ea070ed276ad34f4701 Mon Sep 17 00:00:00 2001
From: Rene Saavedra <rennes@openmailbox.org>
Date: Sat, 6 Feb 2016 21:31:09 +0100
Subject: [PATCH] gnu: Add tracker.
* gnu/packages/gnome.scm (tracker): New variable.
---
gnu/packages/gnome.scm | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 2230dcc..a8f2b5b 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -68,6 +68,7 @@
#:use-module (gnu packages ibus)
#:use-module (gnu packages iso-codes)
#:use-module (gnu packages libcanberra)
+ #:use-module (gnu packages libunistring)
#:use-module (gnu packages linux)
#:use-module (gnu packages libusb)
#:use-module (gnu packages lirc)
@@ -4602,3 +4603,43 @@ applications, for instance the Vinagre client, GNOME Boxes and virt-viewer.
GTK-VNC implements client side RFB protocol and authentication extensions such
as SASL, TLS and VeNCrypt. Additionally it supports encoding extensions.")
(license license:lgpl2.1+)))
+
+(define-public tracker
+ (package
+ (name "tracker")
+ (version "1.7.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnome/sources/" name "/"
+ (version-major+minor version) "/"
+ name "-" version ".tar.xz"))
+ (sha256
+ (base32
+ "1m6hys71n6faf6qx719vh8n4y2y63x7cygzh1rq56flvwa0fnxxx"))))
+ (build-system glib-or-gtk-build-system)
+ (arguments
+ ;; Testsuite finishes with errors.
+ `(#:configure-flags '("--enable-unit-tests=no")))
+ (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
next reply other threads:[~2016-02-06 20:47 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-06 20:47 rennes [this message]
2016-02-06 22:28 ` [PATCH] gnu: Add tracker Leo Famulari
2016-02-07 0:55 ` rennes
2016-02-07 2:19 ` 宋文武
-- strict thread matches above, loose matches on Subject: below --
2016-02-10 1:35 rennes
2016-03-08 9:38 ` Ludovic Courtès
2016-03-14 0:19 ` rennes
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=841c96ec184a9d17c5f4f9d662c018b4@openmailbox.org \
--to=rennes@openmailbox.org \
--cc=guix-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.