* [bug#41851] [PATCH 0/2] Update qTox to fix build issues
@ 2020-06-14 13:18 Reza Alizadeh Majd
2020-06-14 13:21 ` [bug#41851] [PATCH 1/2] gnu: c-toxcore: Update to 0.2.12 Reza Alizadeh Majd
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Reza Alizadeh Majd @ 2020-06-14 13:18 UTC (permalink / raw)
To: 41851
Hello,
Referring to following thread, following patches are submitted to
update `qTox` pacakge version and fix package build issue:
https://debbugs.gnu.org/cgi/bugreport.cgi?bug=41847
--
Reza Alizadeh Majd
PantherX Team
https://www.pantherx.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#41851] [PATCH 1/2] gnu: c-toxcore: Update to 0.2.12.
2020-06-14 13:18 [bug#41851] [PATCH 0/2] Update qTox to fix build issues Reza Alizadeh Majd
@ 2020-06-14 13:21 ` Reza Alizadeh Majd
2020-06-14 13:22 ` [bug#41851] [PATCH 2/2] gnu: qtox: Update to 1.17.2 Reza Alizadeh Majd
2020-06-14 14:15 ` bug#41851: [PATCH 0/2] Update qTox to fix build issues Efraim Flashner
2 siblings, 0 replies; 4+ messages in thread
From: Reza Alizadeh Majd @ 2020-06-14 13:21 UTC (permalink / raw)
To: 41851; +Cc: Reza Alizadeh Majd
* gnu/packages/messaging.scm (c-toxcore): Update to 0.2.12.
---
gnu/packages/messaging.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 3216f0d88d..c84a1b95c3 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1,4 +1,4 @@
-;;; GNU Guix --- Functional package management for GNU
+/;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2014, 2017 Julien Lepiller <julien@lepiller.eu>
;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
@@ -1031,7 +1031,7 @@ and prevent message loss.")
(define-public c-toxcore
(package
(name "c-toxcore")
- (version "0.2.9")
+ (version "0.2.12")
(source
(origin
(method git-fetch)
@@ -1041,7 +1041,7 @@ and prevent message loss.")
(file-name (git-file-name name version))
(sha256
(base32
- "0aljr9hqybla6p61af6fdkv0x8gph7c2wacqqa9hq2z9w0p4fs5j"))))
+ "0a6sqpm00d2rn0nviqfz4gh9ck1wzci6rxgmqmcyryl5ca19ffvp"))))
(arguments
`(#:tests? #f)) ; FIXME: Testsuite seems to stay stuck on test 3. Disable
; for now.
--
2.26.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#41851] [PATCH 2/2] gnu: qtox: Update to 1.17.2.
2020-06-14 13:18 [bug#41851] [PATCH 0/2] Update qTox to fix build issues Reza Alizadeh Majd
2020-06-14 13:21 ` [bug#41851] [PATCH 1/2] gnu: c-toxcore: Update to 0.2.12 Reza Alizadeh Majd
@ 2020-06-14 13:22 ` Reza Alizadeh Majd
2020-06-14 14:15 ` bug#41851: [PATCH 0/2] Update qTox to fix build issues Efraim Flashner
2 siblings, 0 replies; 4+ messages in thread
From: Reza Alizadeh Majd @ 2020-06-14 13:22 UTC (permalink / raw)
To: 41851; +Cc: Reza Alizadeh Majd
* gnu/packages/messaging.scm (qtox): Update to 1.17.2.
---
gnu/packages/messaging.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index c84a1b95c3..a0846ba1f2 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -1120,14 +1120,14 @@ instant messenger with audio and video chat capabilities.")
(define-public qtox
(package
(name "qtox")
- (version "1.16.3")
+ (version "1.17.2")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/qTox/qTox/archive/v"
version ".tar.gz"))
(sha256
(base32
- "10n3cgw9xaqin9la8wpd8v83bkjmimicgbyp5ninsdgsrgky4hmq"))
+ "1b3a6d0k4780fwimi8l7mdbk280nilhhdmls17klapnfsp30zdi3"))
(file-name (string-append name "-" version ".tar.gz"))))
(build-system cmake-build-system)
(arguments
@@ -1139,6 +1139,9 @@ instant messenger with audio and video chat capabilities.")
(("__DATE__") "\"\"")
(("__TIME__") "\"\"")
(("TIMESTAMP") "\"\""))
+ (substitute* "cmake/Testing.cmake"
+ (("auto_test\\(core core\\)") "# auto_test(core core)")
+ (("auto_test\\(net bsu\\)") "# auto_test(net bsu)"))
#t))
;; Ensure that icons are found at runtime.
(add-after 'install 'wrap-executable
--
2.26.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#41851: [PATCH 0/2] Update qTox to fix build issues
2020-06-14 13:18 [bug#41851] [PATCH 0/2] Update qTox to fix build issues Reza Alizadeh Majd
2020-06-14 13:21 ` [bug#41851] [PATCH 1/2] gnu: c-toxcore: Update to 0.2.12 Reza Alizadeh Majd
2020-06-14 13:22 ` [bug#41851] [PATCH 2/2] gnu: qtox: Update to 1.17.2 Reza Alizadeh Majd
@ 2020-06-14 14:15 ` Efraim Flashner
2 siblings, 0 replies; 4+ messages in thread
From: Efraim Flashner @ 2020-06-14 14:15 UTC (permalink / raw)
To: Reza Alizadeh Majd; +Cc: 41851-done
[-- Attachment #1: Type: text/plain, Size: 396 bytes --]
I adjusted the commit message for qtox to add the changes to skip the
network tests and split that out into a separate phase. I also added a
copyright header for you.
Thanks!
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-06-14 14:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-14 13:18 [bug#41851] [PATCH 0/2] Update qTox to fix build issues Reza Alizadeh Majd
2020-06-14 13:21 ` [bug#41851] [PATCH 1/2] gnu: c-toxcore: Update to 0.2.12 Reza Alizadeh Majd
2020-06-14 13:22 ` [bug#41851] [PATCH 2/2] gnu: qtox: Update to 1.17.2 Reza Alizadeh Majd
2020-06-14 14:15 ` bug#41851: [PATCH 0/2] Update qTox to fix build issues Efraim Flashner
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).