* [bug#44971] [PATCH 1/2] gnu: utox: Update to 0.18.0.
@ 2020-11-30 21:18 Robert Karszniewicz
2020-11-30 21:18 ` [bug#44972] [PATCH 2/2] gnu: utox: Update home-page and description Robert Karszniewicz
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Robert Karszniewicz @ 2020-11-30 21:18 UTC (permalink / raw)
To: 44971; +Cc: Robert Karszniewicz
* gnu/packages/messaging.scm (utox): Update to 0.18.0.
---
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 14172a13f5..20e1b1f0cb 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -26,6 +26,7 @@
;;; Copyright © 2020 Mason Hock <chaosmonk@riseup.net>
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
+;;; Copyright © 2020 Robert Karszniewicz <avoidr@posteo.de>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1202,7 +1203,7 @@ messenger protocol.")
(define-public utox
(package
(name "utox")
- (version "0.17.1")
+ (version "0.18.0")
(source
(origin
(method git-fetch)
@@ -1213,7 +1214,7 @@ messenger protocol.")
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
- "17kwqw24iqljp2icih9k6ikx12gzr8zzqr8y5h35bg8m5s8pasq5"))))
+ "0d0mwgxffg4nhai62irf8lyhd1whp9s4k892rsmqz1sra3pbjcg9"))))
(build-system cmake-build-system)
(arguments
`(#:configure-flags '("-DENABLE_TESTS=on")
--
2.29.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#44972] [PATCH 2/2] gnu: utox: Update home-page and description.
2020-11-30 21:18 [bug#44971] [PATCH 1/2] gnu: utox: Update to 0.18.0 Robert Karszniewicz
@ 2020-11-30 21:18 ` Robert Karszniewicz
2020-12-03 22:15 ` bug#44972: " Ludovic Courtès
2020-11-30 22:50 ` [bug#44971] uTox update fixes bug #43750 Robert Karszniewicz
2020-12-03 22:15 ` bug#44971: [PATCH 1/2] gnu: utox: Update to 0.18.0 Ludovic Courtès
2 siblings, 1 reply; 5+ messages in thread
From: Robert Karszniewicz @ 2020-11-30 21:18 UTC (permalink / raw)
To: 44972; +Cc: Robert Karszniewicz
* gnu/packages/messaging.scm (utox): Update home-page and description.
[home-page]: Change to GitHub URL.
[description]: Fix uTox naming style.
---
The previous domain does not belong to uTox. Currently, uTox has no
website.
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 20e1b1f0cb..b95faf3acf 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1253,9 +1253,9 @@ messenger protocol.")
("pkg-config" ,pkg-config)))
(synopsis "Lightweight Tox client")
(description
- "Utox is a lightweight Tox client. Tox is a distributed and secure
+ "uTox is a lightweight Tox client. Tox is a distributed and secure
instant messenger with audio and video chat capabilities.")
- (home-page "http://utox.org/")
+ (home-page "https://github.com/uTox/uTox")
(license license:gpl3)))
(define-public qtox
--
2.29.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#44971] uTox update fixes bug #43750
2020-11-30 21:18 [bug#44971] [PATCH 1/2] gnu: utox: Update to 0.18.0 Robert Karszniewicz
2020-11-30 21:18 ` [bug#44972] [PATCH 2/2] gnu: utox: Update home-page and description Robert Karszniewicz
@ 2020-11-30 22:50 ` Robert Karszniewicz
2020-12-03 22:15 ` bug#44971: [PATCH 1/2] gnu: utox: Update to 0.18.0 Ludovic Courtès
2 siblings, 0 replies; 5+ messages in thread
From: Robert Karszniewicz @ 2020-11-30 22:50 UTC (permalink / raw)
To: 44971
Hello, I wanted to add, that my uTox package update fixes bug #43750.
http://issues.guix.gnu.org/43750
The bug was fixed upstream in version 0.17.2:
commit b608d584d9b6aeae916dec48c2cadf2e631f91b8
Author: Tobias Kortkamp <t@tobik.me>
Date: Sat Nov 30 17:10:58 2019 +0100
Unbreak build with OpenAL 1.20.0
In file included from /home/tobias/src/github.com/uTox/uTox/src/av/audio.c:33:
/usr/local/include/AL/alc.h:34:26: error: typedef redefinition with different types
('struct ALCdevice' vs 'struct ALCdevice_struct')
typedef struct ALCdevice ALCdevice;
^
/home/tobias/src/github.com/uTox/uTox/src/av/audio.h:8:33: note: previous definition is here
typedef struct ALCdevice_struct ALCdevice;
^
1 error generated.
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#44971: [PATCH 1/2] gnu: utox: Update to 0.18.0.
2020-11-30 21:18 [bug#44971] [PATCH 1/2] gnu: utox: Update to 0.18.0 Robert Karszniewicz
2020-11-30 21:18 ` [bug#44972] [PATCH 2/2] gnu: utox: Update home-page and description Robert Karszniewicz
2020-11-30 22:50 ` [bug#44971] uTox update fixes bug #43750 Robert Karszniewicz
@ 2020-12-03 22:15 ` Ludovic Courtès
2 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2020-12-03 22:15 UTC (permalink / raw)
To: Robert Karszniewicz; +Cc: 44971-done, 43750-done
Hi,
Robert Karszniewicz <avoidr@posteo.de> skribis:
> * gnu/packages/messaging.scm (utox): Update to 0.18.0.
Applied!
> Hello, I wanted to add, that my uTox package update fixes bug #43750.
> http://issues.guix.gnu.org/43750
Nice. I added a “Fixes” line to the commit log.
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#44972: [PATCH 2/2] gnu: utox: Update home-page and description.
2020-11-30 21:18 ` [bug#44972] [PATCH 2/2] gnu: utox: Update home-page and description Robert Karszniewicz
@ 2020-12-03 22:15 ` Ludovic Courtès
0 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2020-12-03 22:15 UTC (permalink / raw)
To: Robert Karszniewicz; +Cc: 44972-done
Robert Karszniewicz <avoidr@posteo.de> skribis:
> * gnu/packages/messaging.scm (utox): Update home-page and description.
> [home-page]: Change to GitHub URL.
> [description]: Fix uTox naming style.
Applied, thanks!
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-12-03 22:16 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-30 21:18 [bug#44971] [PATCH 1/2] gnu: utox: Update to 0.18.0 Robert Karszniewicz
2020-11-30 21:18 ` [bug#44972] [PATCH 2/2] gnu: utox: Update home-page and description Robert Karszniewicz
2020-12-03 22:15 ` bug#44972: " Ludovic Courtès
2020-11-30 22:50 ` [bug#44971] uTox update fixes bug #43750 Robert Karszniewicz
2020-12-03 22:15 ` bug#44971: [PATCH 1/2] gnu: utox: Update to 0.18.0 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).