unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#29295] [PATCH] Few small patches for messaging.
@ 2017-11-14 14:26 Rutger Helling
  2017-11-14 15:52 ` ng0
  0 siblings, 1 reply; 14+ messages in thread
From: Rutger Helling @ 2017-11-14 14:26 UTC (permalink / raw)
  To: 29295


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

Hey Guix, 

here's a few small patches for messaging.scm: 

#1 - A copyright notice.
#2 - An update for c-toxcore to 0.1.10.
#3 - Add filteraudio to qtox inputs.
#4 - Add python2-axolotl to gajim inputs (needed for the OMEMO plugin).
#5 - An update for prosody to 0.10.0.

[-- Attachment #1.2: Type: text/html, Size: 490 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-messaging-Add-copyright-notice.patch --]
[-- Type: text/x-diff; name=0001-gnu-messaging-Add-copyright-notice.patch, Size: 826 bytes --]

From 5a868eb614f9d1fbd607b9239153be2fe0327154 Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Tue, 14 Nov 2017 15:16:34 +0100
Subject: [PATCH] gnu: messaging: Add copyright notice.

* gnu/packages/messaging.scm: Add copyright notice.
---
 gnu/packages/messaging.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 72dbbcd1e..28ff42825 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -12,6 +12,7 @@
 ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2017 Theodoros Foradis <theodoros@foradis.org>
+;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
-- 
2.15.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0002-gnu-c-toxcore-Update-to-0.1.10.patch --]
[-- Type: text/x-diff; name=0002-gnu-c-toxcore-Update-to-0.1.10.patch, Size: 1096 bytes --]

From 1e82e72392aeef94a7c182b9d35d99a595440afb Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Mon, 13 Nov 2017 22:39:38 +0100
Subject: [PATCH] gnu: c-toxcore: Update to 0.1.10.

* gnu/packages/messaging.scm (c-toxcore): Update to 0.1.10.
---
 gnu/packages/messaging.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 9af00dce2..16ed2380b 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -761,7 +761,7 @@ protocols.")
 (define-public c-toxcore
   (package
     (name "c-toxcore")
-    (version "0.1.9")
+    (version "0.1.10")
     (source
      (origin
        (method url-fetch)
@@ -770,7 +770,7 @@ protocols.")
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "1y30xc1dzq9knww274d4y0m8gridcf5j851rxdri8j2s64p3qqgk"))))
+         "1lbvq9pp1ganjk5lql5lzcn8bcmgfi8y026pb2j2nq8yldqrrjby"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.15.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #4: 0003-gnu-qtox-Add-filteraudio-to-inputs.patch --]
[-- Type: text/x-diff; name=0003-gnu-qtox-Add-filteraudio-to-inputs.patch, Size: 787 bytes --]

From e88182c79be5b7792c4c5a19c2226813297b5e2d Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Tue, 14 Nov 2017 09:00:17 +0100
Subject: [PATCH] gnu: qtox: Add filteraudio to inputs.

* gnu/packages/messaging.scm (qtox)[inputs]: Add filteraudio.
---
 gnu/packages/messaging.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 16ed2380b..d384d8ee0 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -860,6 +860,7 @@ instant messenger with audio and video chat capabilities.")
              #t)))))
     (inputs
      `(("ffmpeg" ,ffmpeg-3.3)
+       ("filteraudio", filteraudio)
        ("glib" ,glib)
        ("gtk+" ,gtk+-2)
        ("libsodium" ,libsodium)
-- 
2.15.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #5: 0004-gnu-gajim-Add-python2-axolotl-to-inputs.patch --]
[-- Type: text/x-diff; name=0004-gnu-gajim-Add-python2-axolotl-to-inputs.patch, Size: 963 bytes --]

From 4de4398248c91b335c7ae1003d7dbcd5e0262bee Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Thu, 9 Nov 2017 10:02:32 +0100
Subject: [PATCH] gnu: gajim: Add python2-axolotl to inputs.

* gnu/packages/messaging.scm (gajim)[inputs]: Add python2-axolotl.
---
 gnu/packages/messaging.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 72dbbcd1e..9f1d67bbe 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -519,7 +519,8 @@ was initially a fork of xmpppy, but uses non-blocking sockets.")
     (native-inputs
      `(("intltool" ,intltool)))
     (inputs
-     `(("python2-nbxmpp" ,python2-nbxmpp)
+     `(("python2-axolotl" ,python2-axolotl)
+       ("python2-nbxmpp" ,python2-nbxmpp)
        ("python2-pyopenssl" ,python2-pyopenssl)
        ("python2-gnupg" ,python2-gnupg)
        ("python2-pygtk" ,python2-pygtk)
-- 
2.15.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #6: 0005-gnu-prosody-Update-to-0.10.0.patch --]
[-- Type: text/x-diff; name=0005-gnu-prosody-Update-to-0.10.0.patch, Size: 1134 bytes --]

From f6ce3f9ac880905349f1a5ef6251b94ccdb490fa Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Thu, 9 Nov 2017 14:02:29 +0100
Subject: [PATCH] gnu: prosody: Update to 0.10.0

---
 gnu/packages/messaging.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 95074ef4c..9af00dce2 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -627,14 +627,14 @@ a graphical desktop environment like GNOME.")
 (define-public prosody
   (package
     (name "prosody")
-    (version "0.9.12")
+    (version "0.10.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://prosody.im/downloads/source/"
                                   "prosody-" version ".tar.gz"))
               (sha256
                (base32
-                "139yxqpinajl32ryrybvilh54ddb1q6s0ajjhlcs4a0rnwia6n8s"))))
+                "1644jy5dk46vahmh6nna36s79k8k668sbi3qamjb4q3c4m3y853l"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f ; no "check" target
-- 
2.15.0


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

* [bug#29295] [PATCH] Few small patches for messaging.
  2017-11-14 14:26 [bug#29295] [PATCH] Few small patches for messaging Rutger Helling
@ 2017-11-14 15:52 ` ng0
  2017-11-14 17:55   ` Rutger Helling
  2017-11-16 10:10   ` Rutger Helling
  0 siblings, 2 replies; 14+ messages in thread
From: ng0 @ 2017-11-14 15:52 UTC (permalink / raw)
  To: Rutger Helling; +Cc: 29295

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

Rutger Helling transcribed 8.8K bytes:
> Hey Guix, 
> 
> here's a few small patches for messaging.scm: 
> 
> #1 - A copyright notice.

Can you combine patch 1 and patch 2? This
way your copyright line is attached to code
it was added for.

> #2 - An update for c-toxcore to 0.1.10.
> #3 - Add filteraudio to qtox inputs.
> #4 - Add python2-axolotl to gajim inputs (needed for the OMEMO plugin).
> #5 - An update for prosody to 0.10.0.

> From 5a868eb614f9d1fbd607b9239153be2fe0327154 Mon Sep 17 00:00:00 2001
> From: Rutger Helling <rhelling@mykolab.com>
> Date: Tue, 14 Nov 2017 15:16:34 +0100
> Subject: [PATCH] gnu: messaging: Add copyright notice.
> 
> * gnu/packages/messaging.scm: Add copyright notice.
> ---
>  gnu/packages/messaging.scm | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
> index 72dbbcd1e..28ff42825 100644
> --- a/gnu/packages/messaging.scm
> +++ b/gnu/packages/messaging.scm
> @@ -12,6 +12,7 @@
>  ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
>  ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
>  ;;; Copyright © 2017 Theodoros Foradis <theodoros@foradis.org>
> +;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> -- 
> 2.15.0
> 

> From 1e82e72392aeef94a7c182b9d35d99a595440afb Mon Sep 17 00:00:00 2001
> From: Rutger Helling <rhelling@mykolab.com>
> Date: Mon, 13 Nov 2017 22:39:38 +0100
> Subject: [PATCH] gnu: c-toxcore: Update to 0.1.10.
> 
> * gnu/packages/messaging.scm (c-toxcore): Update to 0.1.10.
> ---
>  gnu/packages/messaging.scm | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
> index 9af00dce2..16ed2380b 100644
> --- a/gnu/packages/messaging.scm
> +++ b/gnu/packages/messaging.scm
> @@ -761,7 +761,7 @@ protocols.")
>  (define-public c-toxcore
>    (package
>      (name "c-toxcore")
> -    (version "0.1.9")
> +    (version "0.1.10")
>      (source
>       (origin
>         (method url-fetch)
> @@ -770,7 +770,7 @@ protocols.")
>         (file-name (string-append name "-" version ".tar.gz"))
>         (sha256
>          (base32
> -         "1y30xc1dzq9knww274d4y0m8gridcf5j851rxdri8j2s64p3qqgk"))))
> +         "1lbvq9pp1ganjk5lql5lzcn8bcmgfi8y026pb2j2nq8yldqrrjby"))))
>      (build-system cmake-build-system)
>      (native-inputs
>       `(("pkg-config" ,pkg-config)))
> -- 
> 2.15.0
> 

> From e88182c79be5b7792c4c5a19c2226813297b5e2d Mon Sep 17 00:00:00 2001
> From: Rutger Helling <rhelling@mykolab.com>
> Date: Tue, 14 Nov 2017 09:00:17 +0100
> Subject: [PATCH] gnu: qtox: Add filteraudio to inputs.
> 
> * gnu/packages/messaging.scm (qtox)[inputs]: Add filteraudio.
> ---
>  gnu/packages/messaging.scm | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
> index 16ed2380b..d384d8ee0 100644
> --- a/gnu/packages/messaging.scm
> +++ b/gnu/packages/messaging.scm
> @@ -860,6 +860,7 @@ instant messenger with audio and video chat capabilities.")
>               #t)))))
>      (inputs
>       `(("ffmpeg" ,ffmpeg-3.3)
> +       ("filteraudio", filteraudio)
>         ("glib" ,glib)
>         ("gtk+" ,gtk+-2)
>         ("libsodium" ,libsodium)
> -- 
> 2.15.0
> 

> From 4de4398248c91b335c7ae1003d7dbcd5e0262bee Mon Sep 17 00:00:00 2001
> From: Rutger Helling <rhelling@mykolab.com>
> Date: Thu, 9 Nov 2017 10:02:32 +0100
> Subject: [PATCH] gnu: gajim: Add python2-axolotl to inputs.
> 
> * gnu/packages/messaging.scm (gajim)[inputs]: Add python2-axolotl.
> ---
>  gnu/packages/messaging.scm | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
> index 72dbbcd1e..9f1d67bbe 100644
> --- a/gnu/packages/messaging.scm
> +++ b/gnu/packages/messaging.scm
> @@ -519,7 +519,8 @@ was initially a fork of xmpppy, but uses non-blocking sockets.")
>      (native-inputs
>       `(("intltool" ,intltool)))
>      (inputs
> -     `(("python2-nbxmpp" ,python2-nbxmpp)
> +     `(("python2-axolotl" ,python2-axolotl)
> +       ("python2-nbxmpp" ,python2-nbxmpp)
>         ("python2-pyopenssl" ,python2-pyopenssl)
>         ("python2-gnupg" ,python2-gnupg)
>         ("python2-pygtk" ,python2-pygtk)
> -- 
> 2.15.0
> 

> From f6ce3f9ac880905349f1a5ef6251b94ccdb490fa Mon Sep 17 00:00:00 2001
> From: Rutger Helling <rhelling@mykolab.com>
> Date: Thu, 9 Nov 2017 14:02:29 +0100
> Subject: [PATCH] gnu: prosody: Update to 0.10.0
> 
> ---
>  gnu/packages/messaging.scm | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
> index 95074ef4c..9af00dce2 100644
> --- a/gnu/packages/messaging.scm
> +++ b/gnu/packages/messaging.scm
> @@ -627,14 +627,14 @@ a graphical desktop environment like GNOME.")
>  (define-public prosody
>    (package
>      (name "prosody")
> -    (version "0.9.12")
> +    (version "0.10.0")
>      (source (origin
>                (method url-fetch)
>                (uri (string-append "https://prosody.im/downloads/source/"
>                                    "prosody-" version ".tar.gz"))
>                (sha256
>                 (base32
> -                "139yxqpinajl32ryrybvilh54ddb1q6s0ajjhlcs4a0rnwia6n8s"))))
> +                "1644jy5dk46vahmh6nna36s79k8k668sbi3qamjb4q3c4m3y853l"))))
>      (build-system gnu-build-system)
>      (arguments
>       `(#:tests? #f ; no "check" target
> -- 
> 2.15.0
> 


-- 
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://dl.n0.is/dist/keys/
  WWW: https://we.make.ritual.n0.is

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

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

* [bug#29295] [PATCH] Few small patches for messaging.
  2017-11-14 15:52 ` ng0
@ 2017-11-14 17:55   ` Rutger Helling
  2017-11-16 10:10   ` Rutger Helling
  1 sibling, 0 replies; 14+ messages in thread
From: Rutger Helling @ 2017-11-14 17:55 UTC (permalink / raw)
  To: ng0; +Cc: 29295


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

Hi ng0, 

of course. Here's an updated patch that combines 1 and 2, along with the
other ones re-numbered. 

On 2017-11-14 16:52, ng0 wrote:

> Rutger Helling transcribed 8.8K bytes: 
> 
>> Hey Guix, 
>> 
>> here's a few small patches for messaging.scm: 
>> 
>> #1 - A copyright notice.
> 
> Can you combine patch 1 and patch 2? This
> way your copyright line is attached to code
> it was added for.
> 
>> #2 - An update for c-toxcore to 0.1.10.
>> #3 - Add filteraudio to qtox inputs.
>> #4 - Add python2-axolotl to gajim inputs (needed for the OMEMO plugin).
>> #5 - An update for prosody to 0.10.0.
> 
>> From 5a868eb614f9d1fbd607b9239153be2fe0327154 Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Tue, 14 Nov 2017 15:16:34 +0100
>> Subject: [PATCH] gnu: messaging: Add copyright notice.
>> 
>> * gnu/packages/messaging.scm: Add copyright notice.
>> ---
>> gnu/packages/messaging.scm | 1 +
>> 1 file changed, 1 insertion(+)
>> 
>> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
>> index 72dbbcd1e..28ff42825 100644
>> --- a/gnu/packages/messaging.scm
>> +++ b/gnu/packages/messaging.scm
>> @@ -12,6 +12,7 @@
>> ;;; Copyright (c) 2017 Arun Isaac <arunisaac@systemreboot.net>
>> ;;; Copyright (c) 2017 Tobias Geerinckx-Rice <me@tobias.gr>
>> ;;; Copyright (c) 2017 Theodoros Foradis <theodoros@foradis.org>
>> +;;; Copyright (c) 2017 Rutger Helling <rhelling@mykolab.com>
>> ;;;
>> ;;; This file is part of GNU Guix.
>> ;;;
>> -- 
>> 2.15.0
> 
>> From 1e82e72392aeef94a7c182b9d35d99a595440afb Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Mon, 13 Nov 2017 22:39:38 +0100
>> Subject: [PATCH] gnu: c-toxcore: Update to 0.1.10.
>> 
>> * gnu/packages/messaging.scm (c-toxcore): Update to 0.1.10.
>> ---
>> gnu/packages/messaging.scm | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>> 
>> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
>> index 9af00dce2..16ed2380b 100644
>> --- a/gnu/packages/messaging.scm
>> +++ b/gnu/packages/messaging.scm
>> @@ -761,7 +761,7 @@ protocols.")
>> (define-public c-toxcore
>> (package
>> (name "c-toxcore")
>> -    (version "0.1.9")
>> +    (version "0.1.10")
>> (source
>> (origin
>> (method url-fetch)
>> @@ -770,7 +770,7 @@ protocols.")
>> (file-name (string-append name "-" version ".tar.gz"))
>> (sha256
>> (base32
>> -         "1y30xc1dzq9knww274d4y0m8gridcf5j851rxdri8j2s64p3qqgk"))))
>> +         "1lbvq9pp1ganjk5lql5lzcn8bcmgfi8y026pb2j2nq8yldqrrjby"))))
>> (build-system cmake-build-system)
>> (native-inputs
>> `(("pkg-config" ,pkg-config)))
>> -- 
>> 2.15.0
> 
>> From e88182c79be5b7792c4c5a19c2226813297b5e2d Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Tue, 14 Nov 2017 09:00:17 +0100
>> Subject: [PATCH] gnu: qtox: Add filteraudio to inputs.
>> 
>> * gnu/packages/messaging.scm (qtox)[inputs]: Add filteraudio.
>> ---
>> gnu/packages/messaging.scm | 1 +
>> 1 file changed, 1 insertion(+)
>> 
>> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
>> index 16ed2380b..d384d8ee0 100644
>> --- a/gnu/packages/messaging.scm
>> +++ b/gnu/packages/messaging.scm
>> @@ -860,6 +860,7 @@ instant messenger with audio and video chat capabilities.")
>> #t)))))
>> (inputs
>> `(("ffmpeg" ,ffmpeg-3.3)
>> +       ("filteraudio", filteraudio)
>> ("glib" ,glib)
>> ("gtk+" ,gtk+-2)
>> ("libsodium" ,libsodium)
>> -- 
>> 2.15.0
> 
>> From 4de4398248c91b335c7ae1003d7dbcd5e0262bee Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Thu, 9 Nov 2017 10:02:32 +0100
>> Subject: [PATCH] gnu: gajim: Add python2-axolotl to inputs.
>> 
>> * gnu/packages/messaging.scm (gajim)[inputs]: Add python2-axolotl.
>> ---
>> gnu/packages/messaging.scm | 3 ++-
>> 1 file changed, 2 insertions(+), 1 deletion(-)
>> 
>> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
>> index 72dbbcd1e..9f1d67bbe 100644
>> --- a/gnu/packages/messaging.scm
>> +++ b/gnu/packages/messaging.scm
>> @@ -519,7 +519,8 @@ was initially a fork of xmpppy, but uses non-blocking sockets.")
>> (native-inputs
>> `(("intltool" ,intltool)))
>> (inputs
>> -     `(("python2-nbxmpp" ,python2-nbxmpp)
>> +     `(("python2-axolotl" ,python2-axolotl)
>> +       ("python2-nbxmpp" ,python2-nbxmpp)
>> ("python2-pyopenssl" ,python2-pyopenssl)
>> ("python2-gnupg" ,python2-gnupg)
>> ("python2-pygtk" ,python2-pygtk)
>> -- 
>> 2.15.0
> 
>> From f6ce3f9ac880905349f1a5ef6251b94ccdb490fa Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Thu, 9 Nov 2017 14:02:29 +0100
>> Subject: [PATCH] gnu: prosody: Update to 0.10.0
>> 
>> ---
>> gnu/packages/messaging.scm | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>> 
>> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
>> index 95074ef4c..9af00dce2 100644
>> --- a/gnu/packages/messaging.scm
>> +++ b/gnu/packages/messaging.scm
>> @@ -627,14 +627,14 @@ a graphical desktop environment like GNOME.")
>> (define-public prosody
>> (package
>> (name "prosody")
>> -    (version "0.9.12")
>> +    (version "0.10.0")
>> (source (origin
>> (method url-fetch)
>> (uri (string-append "https://prosody.im/downloads/source/"
>> "prosody-" version ".tar.gz"))
>> (sha256
>> (base32
>> -                "139yxqpinajl32ryrybvilh54ddb1q6s0ajjhlcs4a0rnwia6n8s"))))
>> +                "1644jy5dk46vahmh6nna36s79k8k668sbi3qamjb4q3c4m3y853l"))))
>> (build-system gnu-build-system)
>> (arguments
>> `(#:tests? #f ; no "check" target
>> -- 
>> 2.15.0

[-- Attachment #1.2: Type: text/html, Size: 10011 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-c-toxcore-Update-to-0.1.10.patch --]
[-- Type: text/x-diff; name=0001-gnu-c-toxcore-Update-to-0.1.10.patch, Size: 1410 bytes --]

From 4d9bc3176fa99bf846dada34eebb3392f9062b7c Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Tue, 14 Nov 2017 18:49:38 +0100
Subject: [PATCH] gnu: c-toxcore: Update to 0.1.10.

* gnu/packages/messaging.scm (c-toxcore): Update to 0.1.10.
---
 gnu/packages/messaging.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 72dbbcd1e..0232c7967 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -12,6 +12,7 @@
 ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
 ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2017 Theodoros Foradis <theodoros@foradis.org>
+;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -724,7 +725,7 @@ protocols.")
 (define-public c-toxcore
   (package
     (name "c-toxcore")
-    (version "0.1.9")
+    (version "0.1.10")
     (source
      (origin
        (method url-fetch)
@@ -733,7 +734,7 @@ protocols.")
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "1y30xc1dzq9knww274d4y0m8gridcf5j851rxdri8j2s64p3qqgk"))))
+         "1lbvq9pp1ganjk5lql5lzcn8bcmgfi8y026pb2j2nq8yldqrrjby"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.15.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0002-gnu-qtox-Add-filteraudio-to-inputs-v2.patch --]
[-- Type: text/x-diff; name=0002-gnu-qtox-Add-filteraudio-to-inputs-v2.patch, Size: 787 bytes --]

From e88182c79be5b7792c4c5a19c2226813297b5e2d Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Tue, 14 Nov 2017 09:00:17 +0100
Subject: [PATCH] gnu: qtox: Add filteraudio to inputs.

* gnu/packages/messaging.scm (qtox)[inputs]: Add filteraudio.
---
 gnu/packages/messaging.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 16ed2380b..d384d8ee0 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -860,6 +860,7 @@ instant messenger with audio and video chat capabilities.")
              #t)))))
     (inputs
      `(("ffmpeg" ,ffmpeg-3.3)
+       ("filteraudio", filteraudio)
        ("glib" ,glib)
        ("gtk+" ,gtk+-2)
        ("libsodium" ,libsodium)
-- 
2.15.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #4: 0003-gnu-gajim-Add-python2-axolotl-to-inputs-v2.patch --]
[-- Type: text/x-diff; name=0003-gnu-gajim-Add-python2-axolotl-to-inputs-v2.patch, Size: 963 bytes --]

From 4de4398248c91b335c7ae1003d7dbcd5e0262bee Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Thu, 9 Nov 2017 10:02:32 +0100
Subject: [PATCH] gnu: gajim: Add python2-axolotl to inputs.

* gnu/packages/messaging.scm (gajim)[inputs]: Add python2-axolotl.
---
 gnu/packages/messaging.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 72dbbcd1e..9f1d67bbe 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -519,7 +519,8 @@ was initially a fork of xmpppy, but uses non-blocking sockets.")
     (native-inputs
      `(("intltool" ,intltool)))
     (inputs
-     `(("python2-nbxmpp" ,python2-nbxmpp)
+     `(("python2-axolotl" ,python2-axolotl)
+       ("python2-nbxmpp" ,python2-nbxmpp)
        ("python2-pyopenssl" ,python2-pyopenssl)
        ("python2-gnupg" ,python2-gnupg)
        ("python2-pygtk" ,python2-pygtk)
-- 
2.15.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #5: 0004-gnu-prosody-Update-to-0.10.0-v2.patch --]
[-- Type: text/x-diff; name=0004-gnu-prosody-Update-to-0.10.0-v2.patch, Size: 1134 bytes --]

From f6ce3f9ac880905349f1a5ef6251b94ccdb490fa Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Thu, 9 Nov 2017 14:02:29 +0100
Subject: [PATCH] gnu: prosody: Update to 0.10.0

---
 gnu/packages/messaging.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 95074ef4c..9af00dce2 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -627,14 +627,14 @@ a graphical desktop environment like GNOME.")
 (define-public prosody
   (package
     (name "prosody")
-    (version "0.9.12")
+    (version "0.10.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://prosody.im/downloads/source/"
                                   "prosody-" version ".tar.gz"))
               (sha256
                (base32
-                "139yxqpinajl32ryrybvilh54ddb1q6s0ajjhlcs4a0rnwia6n8s"))))
+                "1644jy5dk46vahmh6nna36s79k8k668sbi3qamjb4q3c4m3y853l"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f ; no "check" target
-- 
2.15.0


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

* [bug#29295] [PATCH] Few small patches for messaging.
  2017-11-14 15:52 ` ng0
  2017-11-14 17:55   ` Rutger Helling
@ 2017-11-16 10:10   ` Rutger Helling
  2017-11-19 22:42     ` Ludovic Courtès
  1 sibling, 1 reply; 14+ messages in thread
From: Rutger Helling @ 2017-11-16 10:10 UTC (permalink / raw)
  To: 29295


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

I'm re-sending these patches just in case since the copyright notice
already got merged in a different patch just now. 

On 2017-11-14 16:52, ng0 wrote:

> Rutger Helling transcribed 8.8K bytes: 
> 
>> Hey Guix, 
>> 
>> here's a few small patches for messaging.scm: 
>> 
>> #1 - A copyright notice.
> 
> Can you combine patch 1 and patch 2? This
> way your copyright line is attached to code
> it was added for.
> 
>> #2 - An update for c-toxcore to 0.1.10.
>> #3 - Add filteraudio to qtox inputs.
>> #4 - Add python2-axolotl to gajim inputs (needed for the OMEMO plugin).
>> #5 - An update for prosody to 0.10.0.
> 
>> From 5a868eb614f9d1fbd607b9239153be2fe0327154 Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Tue, 14 Nov 2017 15:16:34 +0100
>> Subject: [PATCH] gnu: messaging: Add copyright notice.
>> 
>> * gnu/packages/messaging.scm: Add copyright notice.
>> ---
>> gnu/packages/messaging.scm | 1 +
>> 1 file changed, 1 insertion(+)
>> 
>> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
>> index 72dbbcd1e..28ff42825 100644
>> --- a/gnu/packages/messaging.scm
>> +++ b/gnu/packages/messaging.scm
>> @@ -12,6 +12,7 @@
>> ;;; Copyright (c) 2017 Arun Isaac <arunisaac@systemreboot.net>
>> ;;; Copyright (c) 2017 Tobias Geerinckx-Rice <me@tobias.gr>
>> ;;; Copyright (c) 2017 Theodoros Foradis <theodoros@foradis.org>
>> +;;; Copyright (c) 2017 Rutger Helling <rhelling@mykolab.com>
>> ;;;
>> ;;; This file is part of GNU Guix.
>> ;;;
>> -- 
>> 2.15.0
> 
>> From 1e82e72392aeef94a7c182b9d35d99a595440afb Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Mon, 13 Nov 2017 22:39:38 +0100
>> Subject: [PATCH] gnu: c-toxcore: Update to 0.1.10.
>> 
>> * gnu/packages/messaging.scm (c-toxcore): Update to 0.1.10.
>> ---
>> gnu/packages/messaging.scm | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>> 
>> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
>> index 9af00dce2..16ed2380b 100644
>> --- a/gnu/packages/messaging.scm
>> +++ b/gnu/packages/messaging.scm
>> @@ -761,7 +761,7 @@ protocols.")
>> (define-public c-toxcore
>> (package
>> (name "c-toxcore")
>> -    (version "0.1.9")
>> +    (version "0.1.10")
>> (source
>> (origin
>> (method url-fetch)
>> @@ -770,7 +770,7 @@ protocols.")
>> (file-name (string-append name "-" version ".tar.gz"))
>> (sha256
>> (base32
>> -         "1y30xc1dzq9knww274d4y0m8gridcf5j851rxdri8j2s64p3qqgk"))))
>> +         "1lbvq9pp1ganjk5lql5lzcn8bcmgfi8y026pb2j2nq8yldqrrjby"))))
>> (build-system cmake-build-system)
>> (native-inputs
>> `(("pkg-config" ,pkg-config)))
>> -- 
>> 2.15.0
> 
>> From e88182c79be5b7792c4c5a19c2226813297b5e2d Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Tue, 14 Nov 2017 09:00:17 +0100
>> Subject: [PATCH] gnu: qtox: Add filteraudio to inputs.
>> 
>> * gnu/packages/messaging.scm (qtox)[inputs]: Add filteraudio.
>> ---
>> gnu/packages/messaging.scm | 1 +
>> 1 file changed, 1 insertion(+)
>> 
>> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
>> index 16ed2380b..d384d8ee0 100644
>> --- a/gnu/packages/messaging.scm
>> +++ b/gnu/packages/messaging.scm
>> @@ -860,6 +860,7 @@ instant messenger with audio and video chat capabilities.")
>> #t)))))
>> (inputs
>> `(("ffmpeg" ,ffmpeg-3.3)
>> +       ("filteraudio", filteraudio)
>> ("glib" ,glib)
>> ("gtk+" ,gtk+-2)
>> ("libsodium" ,libsodium)
>> -- 
>> 2.15.0
> 
>> From 4de4398248c91b335c7ae1003d7dbcd5e0262bee Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Thu, 9 Nov 2017 10:02:32 +0100
>> Subject: [PATCH] gnu: gajim: Add python2-axolotl to inputs.
>> 
>> * gnu/packages/messaging.scm (gajim)[inputs]: Add python2-axolotl.
>> ---
>> gnu/packages/messaging.scm | 3 ++-
>> 1 file changed, 2 insertions(+), 1 deletion(-)
>> 
>> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
>> index 72dbbcd1e..9f1d67bbe 100644
>> --- a/gnu/packages/messaging.scm
>> +++ b/gnu/packages/messaging.scm
>> @@ -519,7 +519,8 @@ was initially a fork of xmpppy, but uses non-blocking sockets.")
>> (native-inputs
>> `(("intltool" ,intltool)))
>> (inputs
>> -     `(("python2-nbxmpp" ,python2-nbxmpp)
>> +     `(("python2-axolotl" ,python2-axolotl)
>> +       ("python2-nbxmpp" ,python2-nbxmpp)
>> ("python2-pyopenssl" ,python2-pyopenssl)
>> ("python2-gnupg" ,python2-gnupg)
>> ("python2-pygtk" ,python2-pygtk)
>> -- 
>> 2.15.0
> 
>> From f6ce3f9ac880905349f1a5ef6251b94ccdb490fa Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Thu, 9 Nov 2017 14:02:29 +0100
>> Subject: [PATCH] gnu: prosody: Update to 0.10.0
>> 
>> ---
>> gnu/packages/messaging.scm | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>> 
>> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
>> index 95074ef4c..9af00dce2 100644
>> --- a/gnu/packages/messaging.scm
>> +++ b/gnu/packages/messaging.scm
>> @@ -627,14 +627,14 @@ a graphical desktop environment like GNOME.")
>> (define-public prosody
>> (package
>> (name "prosody")
>> -    (version "0.9.12")
>> +    (version "0.10.0")
>> (source (origin
>> (method url-fetch)
>> (uri (string-append "https://prosody.im/downloads/source/"
>> "prosody-" version ".tar.gz"))
>> (sha256
>> (base32
>> -                "139yxqpinajl32ryrybvilh54ddb1q6s0ajjhlcs4a0rnwia6n8s"))))
>> +                "1644jy5dk46vahmh6nna36s79k8k668sbi3qamjb4q3c4m3y853l"))))
>> (build-system gnu-build-system)
>> (arguments
>> `(#:tests? #f ; no "check" target
>> -- 
>> 2.15.0

[-- Attachment #1.2: Type: text/html, Size: 10017 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-c-toxcore-Update-to-0.1.10.patch --]
[-- Type: text/x-diff; name=0001-gnu-c-toxcore-Update-to-0.1.10.patch, Size: 1096 bytes --]

From 1e82e72392aeef94a7c182b9d35d99a595440afb Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Mon, 13 Nov 2017 22:39:38 +0100
Subject: [PATCH] gnu: c-toxcore: Update to 0.1.10.

* gnu/packages/messaging.scm (c-toxcore): Update to 0.1.10.
---
 gnu/packages/messaging.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 9af00dce2..16ed2380b 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -761,7 +761,7 @@ protocols.")
 (define-public c-toxcore
   (package
     (name "c-toxcore")
-    (version "0.1.9")
+    (version "0.1.10")
     (source
      (origin
        (method url-fetch)
@@ -770,7 +770,7 @@ protocols.")
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
         (base32
-         "1y30xc1dzq9knww274d4y0m8gridcf5j851rxdri8j2s64p3qqgk"))))
+         "1lbvq9pp1ganjk5lql5lzcn8bcmgfi8y026pb2j2nq8yldqrrjby"))))
     (build-system cmake-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
-- 
2.15.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0002-gnu-qtox-Add-filteraudio-to-inputs.patch --]
[-- Type: text/x-diff; name=0002-gnu-qtox-Add-filteraudio-to-inputs.patch, Size: 787 bytes --]

From e88182c79be5b7792c4c5a19c2226813297b5e2d Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Tue, 14 Nov 2017 09:00:17 +0100
Subject: [PATCH] gnu: qtox: Add filteraudio to inputs.

* gnu/packages/messaging.scm (qtox)[inputs]: Add filteraudio.
---
 gnu/packages/messaging.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 16ed2380b..d384d8ee0 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -860,6 +860,7 @@ instant messenger with audio and video chat capabilities.")
              #t)))))
     (inputs
      `(("ffmpeg" ,ffmpeg-3.3)
+       ("filteraudio", filteraudio)
        ("glib" ,glib)
        ("gtk+" ,gtk+-2)
        ("libsodium" ,libsodium)
-- 
2.15.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #4: 0003-gnu-gajim-Add-python2-axolotl-to-inputs.patch --]
[-- Type: text/x-diff; name=0003-gnu-gajim-Add-python2-axolotl-to-inputs.patch, Size: 963 bytes --]

From 4de4398248c91b335c7ae1003d7dbcd5e0262bee Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Thu, 9 Nov 2017 10:02:32 +0100
Subject: [PATCH] gnu: gajim: Add python2-axolotl to inputs.

* gnu/packages/messaging.scm (gajim)[inputs]: Add python2-axolotl.
---
 gnu/packages/messaging.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 72dbbcd1e..9f1d67bbe 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -519,7 +519,8 @@ was initially a fork of xmpppy, but uses non-blocking sockets.")
     (native-inputs
      `(("intltool" ,intltool)))
     (inputs
-     `(("python2-nbxmpp" ,python2-nbxmpp)
+     `(("python2-axolotl" ,python2-axolotl)
+       ("python2-nbxmpp" ,python2-nbxmpp)
        ("python2-pyopenssl" ,python2-pyopenssl)
        ("python2-gnupg" ,python2-gnupg)
        ("python2-pygtk" ,python2-pygtk)
-- 
2.15.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #5: 0004-gnu-prosody-Update-to-0.10.0.patch --]
[-- Type: text/x-diff; name=0004-gnu-prosody-Update-to-0.10.0.patch, Size: 1134 bytes --]

From f6ce3f9ac880905349f1a5ef6251b94ccdb490fa Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Thu, 9 Nov 2017 14:02:29 +0100
Subject: [PATCH] gnu: prosody: Update to 0.10.0

---
 gnu/packages/messaging.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 95074ef4c..9af00dce2 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -627,14 +627,14 @@ a graphical desktop environment like GNOME.")
 (define-public prosody
   (package
     (name "prosody")
-    (version "0.9.12")
+    (version "0.10.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://prosody.im/downloads/source/"
                                   "prosody-" version ".tar.gz"))
               (sha256
                (base32
-                "139yxqpinajl32ryrybvilh54ddb1q6s0ajjhlcs4a0rnwia6n8s"))))
+                "1644jy5dk46vahmh6nna36s79k8k668sbi3qamjb4q3c4m3y853l"))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f ; no "check" target
-- 
2.15.0


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

* [bug#29295] [PATCH] Few small patches for messaging.
  2017-11-16 10:10   ` Rutger Helling
@ 2017-11-19 22:42     ` Ludovic Courtès
  2017-11-21  8:20       ` Rutger Helling
  2017-12-01 10:21       ` bug#29295: " Ludovic Courtès
  0 siblings, 2 replies; 14+ messages in thread
From: Ludovic Courtès @ 2017-11-19 22:42 UTC (permalink / raw)
  To: Rutger Helling; +Cc: 29295

Hi Rutger,

Rutger Helling <rhelling@mykolab.com> skribis:

> From 1e82e72392aeef94a7c182b9d35d99a595440afb Mon Sep 17 00:00:00 2001
> From: Rutger Helling <rhelling@mykolab.com>
> Date: Mon, 13 Nov 2017 22:39:38 +0100
> Subject: [PATCH] gnu: c-toxcore: Update to 0.1.10.
>
> * gnu/packages/messaging.scm (c-toxcore): Update to 0.1.10.

[...]

> From e88182c79be5b7792c4c5a19c2226813297b5e2d Mon Sep 17 00:00:00 2001
> From: Rutger Helling <rhelling@mykolab.com>
> Date: Tue, 14 Nov 2017 09:00:17 +0100
> Subject: [PATCH] gnu: qtox: Add filteraudio to inputs.
>
> * gnu/packages/messaging.scm (qtox)[inputs]: Add filteraudio.

[...]

> From 4de4398248c91b335c7ae1003d7dbcd5e0262bee Mon Sep 17 00:00:00 2001
> From: Rutger Helling <rhelling@mykolab.com>
> Date: Thu, 9 Nov 2017 10:02:32 +0100
> Subject: [PATCH] gnu: gajim: Add python2-axolotl to inputs.
>
> * gnu/packages/messaging.scm (gajim)[inputs]: Add python2-axolotl.

Applied these 3 patches.

> From f6ce3f9ac880905349f1a5ef6251b94ccdb490fa Mon Sep 17 00:00:00 2001
> From: Rutger Helling <rhelling@mykolab.com>
> Date: Thu, 9 Nov 2017 14:02:29 +0100
> Subject: [PATCH] gnu: prosody: Update to 0.10.0
>
> ---
>  gnu/packages/messaging.scm | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

I didn’t apply this one because it breaks our system test:

  make check-system TESTS=prosody

Namely, Freetalk (the XMPP client used by this test, see (gnu tests
messaging)) produces this output:

--8<---------------cut here---------------start------------->8---
Welcome to freetalk! Running for the first time?
Performing some one-time initializations ... 
Connecting ...
Connected.
Authenticating ...
--8<---------------cut here---------------end--------------->8---

… and sits there forever.

It could be an issue with the test or with Freetalk, but it seems better
to check.  Could you take a look at what’s going on?

TIA!

Ludo’.

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

* [bug#29295] [PATCH] Few small patches for messaging.
  2017-11-19 22:42     ` Ludovic Courtès
@ 2017-11-21  8:20       ` Rutger Helling
  2017-11-21  8:42         ` Ludovic Courtès
  2017-12-01 10:21       ` bug#29295: " Ludovic Courtès
  1 sibling, 1 reply; 14+ messages in thread
From: Rutger Helling @ 2017-11-21  8:20 UTC (permalink / raw)
  To: ludo; +Cc: 29295

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

Hi Ludo, 

I've looked into the failing test but have been unable to fix it
unfortunately. I suspect it's an issue with freetalk though. 

When I use freetalk to try to connect to my running prosody 0.10 service
I get the same problem as with the failing test. It stays stuck on the
'Authenticating' phase. 

When I use a different client such as Pidgin to connect to my prosody
service it connects immediately. 

On 2017-11-19 23:42, ludo@gnu.org wrote:

> Hi Rutger,
> 
> Rutger Helling <rhelling@mykolab.com> skribis:
> 
>> From 1e82e72392aeef94a7c182b9d35d99a595440afb Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Mon, 13 Nov 2017 22:39:38 +0100
>> Subject: [PATCH] gnu: c-toxcore: Update to 0.1.10.
>> 
>> * gnu/packages/messaging.scm (c-toxcore): Update to 0.1.10.
> 
> [...]
> 
>> From e88182c79be5b7792c4c5a19c2226813297b5e2d Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Tue, 14 Nov 2017 09:00:17 +0100
>> Subject: [PATCH] gnu: qtox: Add filteraudio to inputs.
>> 
>> * gnu/packages/messaging.scm (qtox)[inputs]: Add filteraudio.
> 
> [...]
> 
>> From 4de4398248c91b335c7ae1003d7dbcd5e0262bee Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Thu, 9 Nov 2017 10:02:32 +0100
>> Subject: [PATCH] gnu: gajim: Add python2-axolotl to inputs.
>> 
>> * gnu/packages/messaging.scm (gajim)[inputs]: Add python2-axolotl.
> 
> Applied these 3 patches.
> 
>> From f6ce3f9ac880905349f1a5ef6251b94ccdb490fa Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Thu, 9 Nov 2017 14:02:29 +0100
>> Subject: [PATCH] gnu: prosody: Update to 0.10.0
>> 
>> ---
>> gnu/packages/messaging.scm | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
> 
> I didn't apply this one because it breaks our system test:
> 
> make check-system TESTS=prosody
> 
> Namely, Freetalk (the XMPP client used by this test, see (gnu tests
> messaging)) produces this output:
> 
> --8<---------------cut here---------------start------------->8---
> Welcome to freetalk! Running for the first time?
> Performing some one-time initializations ... 
> Connecting ...
> Connected.
> Authenticating ...
> --8<---------------cut here---------------end--------------->8---
> 
> ... and sits there forever.
> 
> It could be an issue with the test or with Freetalk, but it seems better
> to check.  Could you take a look at what's going on?
> 
> TIA!
> 
> Ludo'.

[-- Attachment #2: Type: text/html, Size: 3834 bytes --]

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

* [bug#29295] [PATCH] Few small patches for messaging.
  2017-11-21  8:20       ` Rutger Helling
@ 2017-11-21  8:42         ` Ludovic Courtès
  2017-11-21  8:56           ` Rutger Helling
                             ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Ludovic Courtès @ 2017-11-21  8:42 UTC (permalink / raw)
  To: Rutger Helling; +Cc: 29295, Clément Lassieur

Hi Rutger,

(+ Cc: Clément who worked on this before.)

Rutger Helling <rhelling@mykolab.com> skribis:

> I've looked into the failing test but have been unable to fix it
> unfortunately. I suspect it's an issue with freetalk though. 
>
> When I use freetalk to try to connect to my running prosody 0.10 service
> I get the same problem as with the failing test. It stays stuck on the
> 'Authenticating' phase. 
>
> When I use a different client such as Pidgin to connect to my prosody
> service it connects immediately. 

OK, it does sound like a Freetalk issue, in which case we should just go
ahead and update Prosody, and report the issue to bug-freetalk@gnu.org.

Clément, any ideas?

Thanks,
Ludo’.

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

* [bug#29295] [PATCH] Few small patches for messaging.
  2017-11-21  8:42         ` Ludovic Courtès
@ 2017-11-21  8:56           ` Rutger Helling
  2017-11-24 18:29           ` Clément Lassieur
  2017-11-24 23:01           ` Clément Lassieur
  2 siblings, 0 replies; 14+ messages in thread
From: Rutger Helling @ 2017-11-21  8:56 UTC (permalink / raw)
  To: ludo; +Cc: 29295, Clément Lassieur

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

Hi Ludo and Clément, 

I wasn't verbose enough in my previous mail. When I connect on the
command line I do get to the freetalk prompt and the logs say the client
is connected.
However, normally it should also say "Authenticated as test@blabla.com"
in the logs which it doesn't. I'm also unable to add buddies. So while I
do get a prompt on the command line, the authenticating does seems to
fail. 

On 2017-11-21 09:42, ludo@gnu.org wrote:

> Hi Rutger,
> 
> (+ Cc: Clément who worked on this before.)
> 
> Rutger Helling <rhelling@mykolab.com> skribis:
> 
>> I've looked into the failing test but have been unable to fix it
>> unfortunately. I suspect it's an issue with freetalk though. 
>> 
>> When I use freetalk to try to connect to my running prosody 0.10 service
>> I get the same problem as with the failing test. It stays stuck on the
>> 'Authenticating' phase. 
>> 
>> When I use a different client such as Pidgin to connect to my prosody
>> service it connects immediately.
> 
> OK, it does sound like a Freetalk issue, in which case we should just go
> ahead and update Prosody, and report the issue to bug-freetalk@gnu.org.
> 
> Clément, any ideas?
> 
> Thanks,
> Ludo'.

[-- Attachment #2: Type: text/html, Size: 1984 bytes --]

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

* [bug#29295] [PATCH] Few small patches for messaging.
  2017-11-21  8:42         ` Ludovic Courtès
  2017-11-21  8:56           ` Rutger Helling
@ 2017-11-24 18:29           ` Clément Lassieur
  2017-11-24 23:01           ` Clément Lassieur
  2 siblings, 0 replies; 14+ messages in thread
From: Clément Lassieur @ 2017-11-24 18:29 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Rutger Helling, 29295

Ludovic Courtès <ludo@gnu.org> writes:

> Hi Rutger,
>
> (+ Cc: Clément who worked on this before.)
>
> Rutger Helling <rhelling@mykolab.com> skribis:
>
>> I've looked into the failing test but have been unable to fix it
>> unfortunately. I suspect it's an issue with freetalk though. 
>>
>> When I use freetalk to try to connect to my running prosody 0.10 service
>> I get the same problem as with the failing test. It stays stuck on the
>> 'Authenticating' phase. 
>>
>> When I use a different client such as Pidgin to connect to my prosody
>> service it connects immediately. 
>
> OK, it does sound like a Freetalk issue, in which case we should just go
> ahead and update Prosody, and report the issue to bug-freetalk@gnu.org.
>
> Clément, any ideas?

I'm having a look at it.  I hope there is at least a workaround, so that
the test still passes and makes sense.

> Thanks,
> Ludo’.

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

* [bug#29295] [PATCH] Few small patches for messaging.
  2017-11-21  8:42         ` Ludovic Courtès
  2017-11-21  8:56           ` Rutger Helling
  2017-11-24 18:29           ` Clément Lassieur
@ 2017-11-24 23:01           ` Clément Lassieur
  2017-11-25 16:08             ` Ludovic Courtès
  2 siblings, 1 reply; 14+ messages in thread
From: Clément Lassieur @ 2017-11-24 23:01 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Rutger Helling, 29295

Ludovic Courtès <ludo@gnu.org> writes:

> Hi Rutger,
>
> (+ Cc: Clément who worked on this before.)
>
> Rutger Helling <rhelling@mykolab.com> skribis:
>
>> I've looked into the failing test but have been unable to fix it
>> unfortunately. I suspect it's an issue with freetalk though. 
>>
>> When I use freetalk to try to connect to my running prosody 0.10 service
>> I get the same problem as with the failing test. It stays stuck on the
>> 'Authenticating' phase. 
>>
>> When I use a different client such as Pidgin to connect to my prosody
>> service it connects immediately. 
>
> OK, it does sound like a Freetalk issue, in which case we should just go
> ahead and update Prosody, and report the issue to bug-freetalk@gnu.org.
>
> Clément, any ideas?

I sent two patches that fix the issue, see
https://debbugs.gnu.org/cgi/bugreport.cgi?bug=29433.

This happened because Prosody removed DIGEST-MD5 auth mechanism since
0.10 (see https://prosody.im/doc/modules/mod_saslauth).  The other one
(SCRAM-SHA-1) seems to be unsupported by Freetalk.

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

* [bug#29295] [PATCH] Few small patches for messaging.
  2017-11-24 23:01           ` Clément Lassieur
@ 2017-11-25 16:08             ` Ludovic Courtès
  2017-11-26  9:07               ` Rutger Helling
  0 siblings, 1 reply; 14+ messages in thread
From: Ludovic Courtès @ 2017-11-25 16:08 UTC (permalink / raw)
  To: Clément Lassieur; +Cc: Rutger Helling, 29295

Clément Lassieur <clement@lassieur.org> skribis:

> Ludovic Courtès <ludo@gnu.org> writes:

[...]

>> OK, it does sound like a Freetalk issue, in which case we should just go
>> ahead and update Prosody, and report the issue to bug-freetalk@gnu.org.
>>
>> Clément, any ideas?
>
> I sent two patches that fix the issue, see
> https://debbugs.gnu.org/cgi/bugreport.cgi?bug=29433.
>
> This happened because Prosody removed DIGEST-MD5 auth mechanism since
> 0.10 (see https://prosody.im/doc/modules/mod_saslauth).  The other one
> (SCRAM-SHA-1) seems to be unsupported by Freetalk.

Oh, good catch.  Thank you!

Ludo’.

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

* [bug#29295] [PATCH] Few small patches for messaging.
  2017-11-25 16:08             ` Ludovic Courtès
@ 2017-11-26  9:07               ` Rutger Helling
  2017-11-26 14:44                 ` Clément Lassieur
  0 siblings, 1 reply; 14+ messages in thread
From: Rutger Helling @ 2017-11-26  9:07 UTC (permalink / raw)
  To: Clément Lassieur; +Cc: 29295

Thanks for all the additional work Clément!

On 2017-11-25 17:08, ludo@gnu.org wrote:

> Clément Lassieur <clement@lassieur.org> skribis:
> 
>> Ludovic Courtès <ludo@gnu.org> writes:
> 
> [...]
> 
> OK, it does sound like a Freetalk issue, in which case we should just 
> go
> ahead and update Prosody, and report the issue to bug-freetalk@gnu.org.
> 
> Clément, any ideas?
> I sent two patches that fix the issue, see
> https://debbugs.gnu.org/cgi/bugreport.cgi?bug=29433.
> 
> This happened because Prosody removed DIGEST-MD5 auth mechanism since
> 0.10 (see https://prosody.im/doc/modules/mod_saslauth).  The other one
> (SCRAM-SHA-1) seems to be unsupported by Freetalk.

Oh, good catch.  Thank you!

Ludo'.

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

* [bug#29295] [PATCH] Few small patches for messaging.
  2017-11-26  9:07               ` Rutger Helling
@ 2017-11-26 14:44                 ` Clément Lassieur
  0 siblings, 0 replies; 14+ messages in thread
From: Clément Lassieur @ 2017-11-26 14:44 UTC (permalink / raw)
  To: Rutger Helling; +Cc: 29295

Rutger Helling <rhelling@mykolab.com> writes:

> Thanks for all the additional work Clément!

You're welcome :-)

I pushed your patch with an additional comment (see
https://lists.gnu.org/archive/html/guix-patches/2017-11/msg00559.html)
and a commit message that follows our convention.

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

* bug#29295: [PATCH] Few small patches for messaging.
  2017-11-19 22:42     ` Ludovic Courtès
  2017-11-21  8:20       ` Rutger Helling
@ 2017-12-01 10:21       ` Ludovic Courtès
  1 sibling, 0 replies; 14+ messages in thread
From: Ludovic Courtès @ 2017-12-01 10:21 UTC (permalink / raw)
  To: Rutger Helling; +Cc: 29295-done

ludo@gnu.org (Ludovic Courtès) skribis:

>> From f6ce3f9ac880905349f1a5ef6251b94ccdb490fa Mon Sep 17 00:00:00 2001
>> From: Rutger Helling <rhelling@mykolab.com>
>> Date: Thu, 9 Nov 2017 14:02:29 +0100
>> Subject: [PATCH] gnu: prosody: Update to 0.10.0
>>
>> ---
>>  gnu/packages/messaging.scm | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> I didn’t apply this one because it breaks our system test:
>
>   make check-system TESTS=prosody

Clément has now fixed the problem and pushed this patch as
93bfc9693aa238a456e6a71844d1dd2ca60ce8a7.

Closing!

Ludo’.

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

end of thread, other threads:[~2017-12-01 10:22 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-14 14:26 [bug#29295] [PATCH] Few small patches for messaging Rutger Helling
2017-11-14 15:52 ` ng0
2017-11-14 17:55   ` Rutger Helling
2017-11-16 10:10   ` Rutger Helling
2017-11-19 22:42     ` Ludovic Courtès
2017-11-21  8:20       ` Rutger Helling
2017-11-21  8:42         ` Ludovic Courtès
2017-11-21  8:56           ` Rutger Helling
2017-11-24 18:29           ` Clément Lassieur
2017-11-24 23:01           ` Clément Lassieur
2017-11-25 16:08             ` Ludovic Courtès
2017-11-26  9:07               ` Rutger Helling
2017-11-26 14:44                 ` Clément Lassieur
2017-12-01 10:21       ` bug#29295: " Ludovic Courtès

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).