From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54595) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ie4Fg-0008F9-80 for guix-patches@gnu.org; Sun, 08 Dec 2019 16:38:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ie4Fe-0002jk-RV for guix-patches@gnu.org; Sun, 08 Dec 2019 16:38:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:46355) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ie4Fe-0002hx-IW for guix-patches@gnu.org; Sun, 08 Dec 2019 16:38:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ie4Fe-0004zG-Go for guix-patches@gnu.org; Sun, 08 Dec 2019 16:38:02 -0500 Subject: [bug#38347] gnome-contacts v2 Resent-Message-ID: References: <225ae64271283846a65401032635ec60731f7277.camel@disroot.org> <87lfs677fl.fsf@nckx> From: Jonathan Brielmaier Message-ID: Date: Sun, 8 Dec 2019 22:36:49 +0100 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/mixed; boundary="------------BC03E870143CD017A66DF9B8" Content-Language: en-US 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: Raghav Gururajan , Tobias Geerinckx-Rice Cc: 38347@debbugs.gnu.org This is a multi-part message in MIME format. --------------BC03E870143CD017A66DF9B8 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hey, I took your patch and applied it with some caveats to master. I updated to 3.32. gnome-contacts launches when installed, but it's not possible to add any local contacts or remote ones. So there is still some work left. ~Jonathan On 23.11.19 21:56, Raghav Gururajan wrote: > Hello Guix! > > Please find the attached file containing revised patch for gnome- > contacts. > > Thank you! > > Regards, > RG. > --------------BC03E870143CD017A66DF9B8 Content-Type: text/x-patch; charset=UTF-8; name="0001-gnu-Add-gnome-contacts.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="0001-gnu-Add-gnome-contacts.patch" =46rom 0b63ccca6ba4f400c7dd1079ba2d28dc9f01026b Mon Sep 17 00:00:00 2001 From: Raghav Guruajan =2D-- gnu/packages/gnome.scm | 54 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 7bac1454f8..8b99fc0fb7 100644 =2D-- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -42,6 +42,8 @@ ;;; Copyright =C2=A9 2019 Maxim Cournoyer ;;; Copyright =C2=A9 2019 Martin Becze ;;; Copyright =C2=A9 2019 David Wilson +;;; Copyright =C2=A9 2019 Raghav Guruajan ;;; ;;; This file is part of GNU Guix. ;;; @@ -8892,3 +8894,55 @@ tile-matching game Mahjong. It features multiple b= oard layouts, tile themes, and a high score table.") (home-page "https://wiki.gnome.org/Apps/Mahjongg") (license license:gpl2+))) + +(define-public gnome-contacts + (package + (name "gnome-contacts") + (version "3.32.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/gnome-contacts/= " + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "17g1gh8yj58cfpdx69h2szivlbjgvv982kmhnkkh0i5bwj0zs2yy")))= ) + (build-system meson-build-system) + (arguments + `(#:glib-or-gtk? #t + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'generate-vapis ;; To generate goa's missing = .vapi file + (lambda* (#:key inputs #:allow-other-keys) + (invoke "vapigen" "--directory=3Dvapi" "--pkg=3Dgio-2.0" + "--library=3Dgoa-1.0" + (string-append (assoc-ref inputs "gnome-online-accou= nts:lib") + "/share/gir-1.0/Goa-1.0.gir")) + #t))))) + (native-inputs + `(("glib:bin" ,glib "bin") + ("gtk+:bin" ,gtk+ "bin") + ("pkg-config" ,pkg-config))) + (inputs + `(("cheese" ,cheese) + ("docbook-xml" ,docbook-xml) + ("dockbook-xsl" ,docbook-xsl) + ("evolution-data-server" ,evolution-data-server) + ("gettext" ,gettext-minimal) + ("gnome-desktop" ,gnome-desktop) + ("gnome-online-accounts:lib" ,gnome-online-accounts "lib") + ("gobject-introspection" ,gobject-introspection) + ("gst-plugins-base" ,gst-plugins-base) + ("gtk+" ,gtk+) + ("libgee" ,libgee) + ("libxslt" ,libxslt) + ("telepathy-glib" ,telepathy-glib) + ("vala" ,vala))) + (propagated-inputs + `(("folks", folks) + ("telepathy-mission-control" ,telepathy-mission-control))) + (synopsis "GNOME's integrated address book") + (description "Contacts organizes your contacts information from all y= our online +and offline sources, providing a centralized place for managing your cont= acts.") + (home-page "https://wiki.gnome.org/Apps/Contacts") + (license license:gpl2+))) =2D- 2.24.0 --------------BC03E870143CD017A66DF9B8--