unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add telepathy-idle.
@ 2016-08-29 16:45 Kei Kebreau
  2016-08-30  5:03 ` Leo Famulari
  0 siblings, 1 reply; 7+ messages in thread
From: Kei Kebreau @ 2016-08-29 16:45 UTC (permalink / raw)
  To: guix-devel


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


Seeing if Polari will build on Guix. This is a dependent package.


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

From 0cf2fce4c9b89f8258e2a2240bfecc5b3abc875c Mon Sep 17 00:00:00 2001
From: Kei Kebreau <kei@openmailbox.org>
Date: Mon, 29 Aug 2016 12:42:51 -0400
Subject: [PATCH] gnu: Add telepathy-idle.

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

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 67f1e1a..ac98769 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -6,6 +6,7 @@
 ;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
 ;;; Copyright © 2015 David Hashe <david.hashe@dhashe.com>
 ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016 Kei Kebreau <kei@openmailbox.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -618,6 +619,34 @@ received by the Telepathy framework.  It features pluggable backends to log
 different sorts of messages in different formats.")
     (license license:lgpl2.1+)))
 
+(define-public telepathy-idle
+  (package
+    (name "telepathy-idle")
+    (version "0.2.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://telepathy.freedesktop.org/releases/"
+                                  name "/" name "-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "1argdzbif1vdmwp5vqbgkadq9ancjmgdm2ncp0qfckni715ss4rh"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("xsltproc" ,libxslt)
+       ("python" ,python-2)
+       ("python-dbus" ,python2-dbus)))
+    (propagated-inputs
+     `(("telepathy-glib" ,telepathy-glib)))
+    (home-page "http://telepathy.freedesktop.org/")
+    (synopsis "Telepathy IRC connection manager")
+    (description
+     "Idle is an IRC connection manager for the Telepathy framework.  This
+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 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] 7+ messages in thread

* Re: [PATCH] gnu: Add telepathy-idle.
  2016-08-29 16:45 [PATCH] gnu: Add telepathy-idle Kei Kebreau
@ 2016-08-30  5:03 ` Leo Famulari
  2016-08-30 13:43   ` Kei Kebreau
  0 siblings, 1 reply; 7+ messages in thread
From: Leo Famulari @ 2016-08-30  5:03 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: guix-devel

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

On Mon, Aug 29, 2016 at 12:45:44PM -0400, Kei Kebreau wrote:
> Subject: [PATCH] gnu: Add telepathy-idle.
> 
> * gnu/packages/freedesktop.scm (telepathy-idle): New variable.

> +    (version "0.2.0")

Looks good, but why use this release when there appears to be a newer
version, 0.99.11?

https://telepathy.freedesktop.org/releases/telepathy-idle/

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

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

* Re: [PATCH] gnu: Add telepathy-idle.
  2016-08-30  5:03 ` Leo Famulari
@ 2016-08-30 13:43   ` Kei Kebreau
  2016-08-30 17:53     ` Leo Famulari
  0 siblings, 1 reply; 7+ messages in thread
From: Kei Kebreau @ 2016-08-30 13:43 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel

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

Leo Famulari <leo@famulari.name> writes:

> On Mon, Aug 29, 2016 at 12:45:44PM -0400, Kei Kebreau wrote:
>> Subject: [PATCH] gnu: Add telepathy-idle.
>> 
>> * gnu/packages/freedesktop.scm (telepathy-idle): New variable.
>
>> +    (version "0.2.0")
>
> Looks good, but why use this release when there appears to be a newer
> version, 0.99.11?
>
> https://telepathy.freedesktop.org/releases/telepathy-idle/

I'm under the impression that those are unstable versions, hence the
sudden jump in version number. Parabola GNU/Linux-libre packages this
version, so I thought it would be safe.

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

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

* Re: [PATCH] gnu: Add telepathy-idle.
  2016-08-30 13:43   ` Kei Kebreau
@ 2016-08-30 17:53     ` Leo Famulari
  2016-08-30 19:14       ` Kei Kebreau
  0 siblings, 1 reply; 7+ messages in thread
From: Leo Famulari @ 2016-08-30 17:53 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: guix-devel

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

On Tue, Aug 30, 2016 at 09:43:23AM -0400, Kei Kebreau wrote:
> Leo Famulari <leo@famulari.name> writes:
> 
> > On Mon, Aug 29, 2016 at 12:45:44PM -0400, Kei Kebreau wrote:
> >> Subject: [PATCH] gnu: Add telepathy-idle.
> >> 
> >> * gnu/packages/freedesktop.scm (telepathy-idle): New variable.
> >
> >> +    (version "0.2.0")
> >
> > Looks good, but why use this release when there appears to be a newer
> > version, 0.99.11?
> >
> > https://telepathy.freedesktop.org/releases/telepathy-idle/
> 
> I'm under the impression that those are unstable versions, hence the
> sudden jump in version number. Parabola GNU/Linux-libre packages this
> version, so I thought it would be safe.

Can you ask the upstream developers? Or poke around in their public
communications to find some statement about this?

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

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

* Re: [PATCH] gnu: Add telepathy-idle.
  2016-08-30 17:53     ` Leo Famulari
@ 2016-08-30 19:14       ` Kei Kebreau
  2016-08-30 19:53         ` Leo Famulari
  0 siblings, 1 reply; 7+ messages in thread
From: Kei Kebreau @ 2016-08-30 19:14 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel

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

Leo Famulari <leo@famulari.name> writes: 
 
> On Tue, Aug 30, 2016 at 09:43:23AM -0400, Kei Kebreau wrote: 
>> Leo Famulari <leo@famulari.name> writes:  
>> > On Mon, Aug 29, 2016 at 12:45:44PM -0400, Kei Kebreau wrote: 
>> >> Subject: [PATCH] gnu: Add telepathy-idle.   * 
>> >> gnu/packages/freedesktop.scm (telepathy-idle): New variable. 
>> > 
>> >> +    (version "0.2.0") 
>> > 
>> > Looks good, but why use this release when there appears to be 
>> > a newer version, 0.99.11? 
>> > 
>> > https://telepathy.freedesktop.org/releases/telepathy-idle/ 
>>  I'm under the impression that those are unstable versions, 
>> hence the sudden jump in version number. Parabola 
>> GNU/Linux-libre packages this version, so I thought it would be 
>> safe. 
> 
> Can you ask the upstream developers? Or poke around in their 
> public communications to find some statement about this? 
 
2016-08-30 15:00 <kyamashita> Hello all! Visitor from #guix here.
2016-08-30 15:01 <kyamashita> For clarity's sake, the latest 
stable 
                              version of telepathy-idle is 0.2.0, 
                              yes?
2016-08-30 15:02 <kyamashita> I would assume that the 0.99.x 
                              versions are unstable or development 
                              versions.
2016-08-30 15:10 <sjoerd> Indeed

We're in the clear! :-)

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

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

* Re: [PATCH] gnu: Add telepathy-idle.
  2016-08-30 19:14       ` Kei Kebreau
@ 2016-08-30 19:53         ` Leo Famulari
  2016-08-30 21:37           ` Kei Kebreau
  0 siblings, 1 reply; 7+ messages in thread
From: Leo Famulari @ 2016-08-30 19:53 UTC (permalink / raw)
  To: Kei Kebreau; +Cc: guix-devel

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

On Tue, Aug 30, 2016 at 03:14:35PM -0400, Kei Kebreau wrote:
> 2016-08-30 15:00 <kyamashita> Hello all! Visitor from #guix here.
> 2016-08-30 15:01 <kyamashita> For clarity's sake, the latest stable
> version of telepathy-idle is 0.2.0,                              yes?
> 2016-08-30 15:02 <kyamashita> I would assume that the 0.99.x
> versions are unstable or development                              versions.
> 2016-08-30 15:10 <sjoerd> Indeed
> 
> We're in the clear! :-)

Great, thanks for asking :)

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

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

* Re: [PATCH] gnu: Add telepathy-idle.
  2016-08-30 19:53         ` Leo Famulari
@ 2016-08-30 21:37           ` Kei Kebreau
  0 siblings, 0 replies; 7+ messages in thread
From: Kei Kebreau @ 2016-08-30 21:37 UTC (permalink / raw)
  To: Leo Famulari; +Cc: guix-devel

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

Leo Famulari <leo@famulari.name> writes:

> On Tue, Aug 30, 2016 at 03:14:35PM -0400, Kei Kebreau wrote:
>> 2016-08-30 15:00 <kyamashita> Hello all! Visitor from #guix here.
>> 2016-08-30 15:01 <kyamashita> For clarity's sake, the latest stable
>> version of telepathy-idle is 0.2.0,                              yes?
>> 2016-08-30 15:02 <kyamashita> I would assume that the 0.99.x
>> versions are unstable or development                              versions.
>> 2016-08-30 15:10 <sjoerd> Indeed
>> 
>> We're in the clear! :-)
>
> Great, thanks for asking :)

Pushed as bb8b543!

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

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

end of thread, other threads:[~2016-08-30 21:37 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-29 16:45 [PATCH] gnu: Add telepathy-idle Kei Kebreau
2016-08-30  5:03 ` Leo Famulari
2016-08-30 13:43   ` Kei Kebreau
2016-08-30 17:53     ` Leo Famulari
2016-08-30 19:14       ` Kei Kebreau
2016-08-30 19:53         ` Leo Famulari
2016-08-30 21:37           ` 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).