unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add telepathy-mission-control.
@ 2016-08-30 21:43 Kei Kebreau
  2016-08-31 20:27 ` Leo Famulari
  0 siblings, 1 reply; 3+ messages in thread
From: Kei Kebreau @ 2016-08-30 21:43 UTC (permalink / raw)
  To: guix-devel


[-- Attachment #1.1: Type: text/plain, Size: 38 bytes --]

Next package in the quest for Polari.

[-- Attachment #1.2: 0001-gnu-Add-telepathy-mission-control.patch --]
[-- Type: text/plain, Size: 2222 bytes --]

From de2bb9e63d26ec539f8425c7d1b39ba91f987dfa Mon Sep 17 00:00:00 2001
From: Kei Kebreau <kei@openmailbox.org>
Date: Tue, 30 Aug 2016 17:40:17 -0400
Subject: [PATCH] gnu: Add telepathy-mission-control.

* gnu/packages/freedesktop.scm (telepathy-mission-control): New variable.
---
 gnu/packages/freedesktop.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index ac98769..2032dce 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -647,6 +647,37 @@ package enables usage of IRC channels and private messages in Telepathy instant
 messaging clients such as Empathy, GNOME Shell or KDE Telepathy.")
     (license (list license:lgpl2.1 license:lgpl2.1+))))
 
+(define-public telepathy-mission-control
+  (package
+    (name "telepathy-mission-control")
+    (version "5.16.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://telepathy.freedesktop.org/releases/"
+                                  name "/" name "-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "0zcbx69k0d3p2pjh3g7sa3q2zkd5xchxkqsmlfn3fwxaz0pmsmvi"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("glib:bin" ,glib "bin") ; for glib-compile-schemas, etc.
+       ("pkg-config" ,pkg-config)))
+    (inputs
+     `(("dconf" ,dconf)
+       ("gtk-doc" ,gtk-doc)
+       ("libgnome-keyring" ,libgnome-keyring)
+       ("python" ,python-2)
+       ("xsltproc" ,libxslt)))
+    (propagated-inputs
+     `(("telepathy-glib" ,telepathy-glib)))
+    (home-page "https://telepathy.freedesktop.org/wiki/Components/Mission_Control/")
+    (synopsis "Telepathy real-time communication framework management daemon")
+    (description
+     "Telepathy Mission Control 5 is an account manager and channel dispatcher
+for the Telepathy framework, allowing user interfaces and other clients to
+share connections to real-time communication services without conflicting.")
+    (license license:lgpl2.1)))
+
 (define-public colord-gtk
   (package
     (name "colord-gtk")
-- 
2.9.3


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] gnu: Add telepathy-mission-control.
  2016-08-30 21:43 [PATCH] gnu: Add telepathy-mission-control Kei Kebreau
@ 2016-08-31 20:27 ` Leo Famulari
  2016-09-01 15:29   ` Kei Kebreau
  0 siblings, 1 reply; 3+ messages in thread
From: Leo Famulari @ 2016-08-31 20:27 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 448 bytes --]

On Tue, Aug 30, 2016 at 05:43:40PM -0400, Kei Kebreau wrote:
> Next package in the quest for Polari.

> From de2bb9e63d26ec539f8425c7d1b39ba91f987dfa Mon Sep 17 00:00:00 2001
> From: Kei Kebreau <kei@openmailbox.org>
> Date: Tue, 30 Aug 2016 17:40:17 -0400
> Subject: [PATCH] gnu: Add telepathy-mission-control.
> 
> * gnu/packages/freedesktop.scm (telepathy-mission-control): New variable.

I didn't try building it, but it looks good.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] gnu: Add telepathy-mission-control.
  2016-08-31 20:27 ` Leo Famulari
@ 2016-09-01 15:29   ` Kei Kebreau
  0 siblings, 0 replies; 3+ messages in thread
From: Kei Kebreau @ 2016-09-01 15:29 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 536 bytes --]

Leo Famulari <leo@famulari.name> writes:

> On Tue, Aug 30, 2016 at 05:43:40PM -0400, Kei Kebreau wrote:
>> Next package in the quest for Polari.
>
>> From de2bb9e63d26ec539f8425c7d1b39ba91f987dfa Mon Sep 17 00:00:00 2001
>> From: Kei Kebreau <kei@openmailbox.org>
>> Date: Tue, 30 Aug 2016 17:40:17 -0400
>> Subject: [PATCH] gnu: Add telepathy-mission-control.
>> 
>> * gnu/packages/freedesktop.scm (telepathy-mission-control): New variable.
>
> I didn't try building it, but it looks good.

Alright, pushed as 261b3da.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-09-01 15:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-30 21:43 [PATCH] gnu: Add telepathy-mission-control Kei Kebreau
2016-08-31 20:27 ` Leo Famulari
2016-09-01 15:29   ` Kei Kebreau

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).