[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
167/331: gnu: Add zeitgeist.
From: |
guix-commits |
Subject: |
167/331: gnu: Add zeitgeist. |
Date: |
Fri, 14 Aug 2020 11:13:30 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 9e7fd66aeabb3f7a86e6db4fec1cf1d2d57f67c3
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Mon Jul 20 01:49:43 2020 -0400
gnu: Add zeitgeist.
* gnu/packages/gnome.scm (zeitgeist): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gnome.scm | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 84 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 64819f0..6430bcb 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -162,12 +162,14 @@
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages rdesktop)
+ #:use-module (gnu packages rdf)
#:use-module (gnu packages readline)
#:use-module (gnu packages ruby)
#:use-module (gnu packages rust)
#:use-module (gnu packages samba)
#:use-module (gnu packages scanner)
#:use-module (gnu packages sdl)
+ #:use-module (gnu packages search)
#:use-module (gnu packages selinux)
#:use-module (gnu packages slang)
#:use-module (gnu packages speech)
@@ -382,6 +384,88 @@ of known objects without needing a central registrar.")
license:lgpl3+
license:gpl3+))))
+(define-public zeitgeist
+ (package
+ (name "zeitgeist")
+ (version "1.0.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://gitlab.freedesktop.org/zeitgeist/zeitgeist.git")
+ (commit
+ (string-append "v" version))))
+ (file-name
+ (git-file-name name version))
+ (sha256
+ (base32 "0ig3d3j1n0ghaxsgfww6g2hhcdwx8cljwwfmp9jk1nrvkxd6rnmv"))))
+ (build-system glib-or-gtk-build-system)
+ (arguments
+ `(#:configure-flags
+ (list
+ "--enable-explain-queries"
+ "--enable-fts"
+ "--enable-docs")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-docbook-xml
+ (lambda* (#:key inputs #:allow-other-keys)
+ (with-directory-excursion "doc/libzeitgeist"
+ (substitute* "zeitgeist-gtkdoc-index.sgml"
+ (("http://www.oasis-open.org/docbook/xml/4.3/")
+ (string-append (assoc-ref inputs "docbook-xml")
+ "/xml/dtd/docbook/"))))
+ #t))
+ (add-after 'patch-docbook-xml 'disable-failing-tests
+ (lambda _
+ (substitute* "test/direct/Makefile.am"
+ ((" log-test ")
+ ""))
+ (substitute* "test/c/Makefile.am"
+ ((" test-log ")
+ ""))
+ #t))
+ (add-before 'bootstrap 'remove-autogen-script
+ (lambda _
+ ;; To honor `autoreconf -vif` by build-system.
+ (delete-file "autogen.sh")
+ #t)))))
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("docbook-xml" ,docbook-xml-4.3)
+ ("gettext" ,gettext-minimal)
+ ("gobject-introspection" ,gobject-introspection)
+ ("gtk-doc" ,gtk-doc)
+ ("libtool" ,libtool)
+ ("pkg-config" ,pkg-config)
+ ("vala" ,vala)
+ ("xorg-server-for-tests" ,xorg-server-for-tests)))
+ (inputs
+ `(("dee-icu" ,dee)
+ ("gtk+" ,gtk+)
+ ("json-glib" ,json-glib)
+ ("sqlite" ,sqlite)
+ ("telepathy-glib" ,telepathy-glib)
+ ("python" ,python-wrapper)
+ ("python-rdflib" ,python-rdflib)
+ ("xapian-config" ,xapian)))
+ (propagated-inputs
+ `(("glib" ,glib)))
+ (synopsis "Desktop Activity Logging")
+ (description "Zeitgeist is a service which logs the users’s activities and
+events, anywhere from files opened to websites visited and conversations. It
+makes this information readily available for other applications to use. It is
+able to establish relationships between items based on similarity and usage
+patterns.")
+ (home-page "https://zeitgeist.freedesktop.org/")
+ (license
+ ;; Dual-licensed
+ (list
+ license:lgpl2.1+
+ license:gpl2+))))
+
(define-public libcloudproviders
(package
(name "libcloudproviders")
- 233/331: gnu: tracker: Update package definition., (continued)
- 233/331: gnu: tracker: Update package definition., guix-commits, 2020/08/14
- 238/331: gnu: eog: Update package definition., guix-commits, 2020/08/14
- 241/331: gnu: evince: Update package definition., guix-commits, 2020/08/14
- 242/331: gnu: file-roller: Update package definition., guix-commits, 2020/08/14
- 243/331: gnu: gedit: Update package definition., guix-commits, 2020/08/14
- 249/331: gnu: gnome-characters: Update package definition., guix-commits, 2020/08/14
- 251/331: gnu: gnome-color-manager: Update package definition., guix-commits, 2020/08/14
- 253/331: gnu: gnome-control-center: Update package definition., guix-commits, 2020/08/14
- 255/331: gnu: gnome-boxes: Fix home-page., guix-commits, 2020/08/14
- 182/331: gnu: gdk-pixbuf: Disable failing tests., guix-commits, 2020/08/14
- 167/331: gnu: Add zeitgeist.,
guix-commits <=
- 177/331: gnu: gnome-online-accounts: Update package definition., guix-commits, 2020/08/14
- 186/331: gnu: Add libdmapsharing., guix-commits, 2020/08/14
- 191/331: gnu: gupnp-dlna: Update package definition., guix-commits, 2020/08/14
- 188/331: gnu: gupnp: Update package definition., guix-commits, 2020/08/14
- 197/331: gnu: Add memphis., guix-commits, 2020/08/14
- 193/331: gnu: gspell: Update package definition., guix-commits, 2020/08/14
- 198/331: gnu: libchamplain: Update package definition., guix-commits, 2020/08/14
- 203/331: gnu: libgudev: Update package definition., guix-commits, 2020/08/14
- 205/331: gnu: libgweather: Update package definition., guix-commits, 2020/08/14
- 204/331: gnu: glade: Update package definition., guix-commits, 2020/08/14