mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: gajim: Update to 1.3.0.
* gnu/packages/messaging.scm (gajim): Update to 1.3.0. [arguments]<#:phases>['disable-failing-tests]: New phase. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
0da9dd4ca9
commit
be450b19ce
1 changed files with 7 additions and 2 deletions
|
@ -963,7 +963,7 @@ (define-public python2-nbxmpp
|
||||||
(define-public gajim
|
(define-public gajim
|
||||||
(package
|
(package
|
||||||
(name "gajim")
|
(name "gajim")
|
||||||
(version "1.2.2")
|
(version "1.3.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -972,7 +972,7 @@ (define-public gajim
|
||||||
(version-major+minor version)
|
(version-major+minor version)
|
||||||
"/gajim-" version ".tar.gz"))
|
"/gajim-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1gfcp3b5nq43xxz5my8vfhfxnnli726j3hzcgwh9fzrzzd9ic3gx"))
|
(base32 "1v0cx8r1zr9aj17ik5apxxfpr9rv5w8p1i7hfys6wp9292gc7s25"))
|
||||||
(patches (search-patches "gajim-honour-GAJIM_PLUGIN_PATH.patch"))))
|
(patches (search-patches "gajim-honour-GAJIM_PLUGIN_PATH.patch"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -986,6 +986,11 @@ (define-public gajim
|
||||||
(guix build utils))
|
(guix build utils))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'disable-failing-tests
|
||||||
|
(lambda _
|
||||||
|
;; https://dev.gajim.org/gajim/gajim/-/issues/10427
|
||||||
|
(delete-file "test/unit/test_gui_interface.py")
|
||||||
|
#t))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Tests require a running X server.
|
;; Tests require a running X server.
|
||||||
|
|
Loading…
Reference in a new issue