[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
167/334: gnu: Add zeitgeist.
From: |
guix-commits |
Subject: |
167/334: gnu: Add zeitgeist. |
Date: |
Sat, 15 Aug 2020 16:26:55 -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")
- 136/334: gnu: woff2: Update package definition., (continued)
- 136/334: gnu: woff2: Update package definition., guix-commits, 2020/08/15
- 138/334: gnu: Add libcamera., guix-commits, 2020/08/15
- 144/334: gnu: yelp: Update package definition., guix-commits, 2020/08/15
- 145/334: gnu: zenity: Update package definition., guix-commits, 2020/08/15
- 152/334: gnu: glibmm: Update package definition., guix-commits, 2020/08/15
- 156/334: gnu: Add pangomm-2.42., guix-commits, 2020/08/15
- 158/334: gnu: gtkmm: Update package definition., guix-commits, 2020/08/15
- 159/334: gnu: gtkmm-2: Update package definition., guix-commits, 2020/08/15
- 160/334: gnu: gtksourceviewmm: Update package definition., guix-commits, 2020/08/15
- 165/334: gnu: Add gtx., guix-commits, 2020/08/15
- 167/334: gnu: Add zeitgeist.,
guix-commits <=
- 170/334: gnu: Add mmm., guix-commits, 2020/08/15
- 171/334: gnu: Add mrg., guix-commits, 2020/08/15
- 172/334: gnu: gegl: Update package definition., guix-commits, 2020/08/15
- 174/334: gnu: gexiv2: Update package definition., guix-commits, 2020/08/15
- 179/334: gnu: gnome-online-miners: Update package definition., guix-commits, 2020/08/15
- 177/334: gnu: gnome-online-accounts: Update package definition., guix-commits, 2020/08/15
- 178/334: gnu: gfbgraph: Update package definition., guix-commits, 2020/08/15
- 175/334: gnu: gmime: Update package definition., guix-commits, 2020/08/15
- 180/334: gnu: gnome-video-effects: Update package definition., guix-commits, 2020/08/15
- 182/334: gnu: gdk-pixbuf: Disable failing tests., guix-commits, 2020/08/15