From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42175) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jO2qa-0005rG-DG for guix-patches@gnu.org; Mon, 13 Apr 2020 13:26:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jO2qQ-0007K1-OB for guix-patches@gnu.org; Mon, 13 Apr 2020 13:26:11 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49138) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jO2qQ-0007Jp-KD for guix-patches@gnu.org; Mon, 13 Apr 2020 13:26:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jO2qQ-0006gO-GW for guix-patches@gnu.org; Mon, 13 Apr 2020 13:26:02 -0400 Subject: [bug#39312] [PATCH 1/3] gnu: Add feedbackd. Resent-Message-ID: From: Jonathan Brielmaier Date: Mon, 13 Apr 2020 19:25:06 +0200 Message-Id: <20200413172508.13532-2-jonathan.brielmaier@web.de> In-Reply-To: <20200413172508.13532-1-jonathan.brielmaier@web.de> References: <20200413172508.13532-1-jonathan.brielmaier@web.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39312@debbugs.gnu.org Cc: Jonathan Brielmaier * gnu/packages/gnome.scm (feedbackd): New variable. =2D-- gnu/packages/gnome.scm | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 820811f8fa..a2d77700e7 100644 =2D-- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -43,7 +43,7 @@ ;;; Copyright =C2=A9 2019, 2020 Martin Becze ;;; Copyright =C2=A9 2019 David Wilson ;;; Copyright =C2=A9 2019, 2020 Raghav Gururajan -;;; Copyright =C2=A9 2019 Jonathan Brielmaier +;;; Copyright =C2=A9 2019, 2020 Jonathan Brielmaier ;;; Copyright =C2=A9 2019, 2020 Leo Prikler ;;; Copyright =C2=A9 2020 Oleg Pykhalov ;;; Copyright =C2=A9 2020 Pierre Neidhardt @@ -10042,3 +10042,37 @@ communicating using the GVariant serialization fo= rmat instead of JSON when both peers support it. You might want that when communicating on a singl= e host to avoid parser overhead and memory-allocator fragmentation.") (license license:lgpl2.1+))) + +(define-public feedbackd + (package + (name "feedbackd") + (version "0.0.0+git20200304") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://source.puri.sm/Librem5/feedbackd.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0a1pg3gckcdfd0scpv7pi4pp8i4fcikdy2nqj5fv1nfmhnzlhq3q")))= ) + (build-system meson-build-system) + (native-inputs + `(("glib:bin" ,glib "bin") + ("gobject-introspection" ,gobject-introspection) + ("pkg-config" ,pkg-config) + ("vala" ,vala))) + (inputs + `(("dbus" ,dbus) + ("gsound" ,gsound) + ("json-glib" ,json-glib) + ("libgudev" ,libgudev))) + (propagated-inputs + `(("glib" ,glib))) ; in Requires of libfeedback-0.0.pc + (synopsis "Haptic/visual/audio feedback via DBus") + (description "Feedbackd provides a DBus daemon to act on events to pr= ovide +haptic, visual and audio feedback. It offers the libfeedbackd library an= d +GObject introspection bindings.") + (home-page "https://source.puri.sm/Librem5/feedbackd") + (license (list license:lgpl2.1+ ; libfeedbackd + license:lgpl3+)))) ; the rest =2D- 2.26.0