gnu: gajim: Update to 0.16.6.
* gnu/packages/messaging.scm (gajim): Update to 0.16.6. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
d6465efaa9
commit
0f6b6cb996
|
@ -452,7 +452,7 @@ was initially a fork of xmpppy, but is using non-blocking sockets.")
|
||||||
(define-public gajim
|
(define-public gajim
|
||||||
(package
|
(package
|
||||||
(name "gajim")
|
(name "gajim")
|
||||||
(version "0.16.5")
|
(version "0.16.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://gajim.org/downloads/"
|
(uri (string-append "https://gajim.org/downloads/"
|
||||||
|
@ -460,34 +460,27 @@ was initially a fork of xmpppy, but is using non-blocking sockets.")
|
||||||
"/gajim-" version ".tar.bz2"))
|
"/gajim-" version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"14fhcqnkqygh91132dnf1idayj4r3iqbwb44sd3mxv20n6ribh55"))))
|
"1p3qwzy07f0wkika9yigyiq167l2k6wn12flqa7x55z4ihbysmqk"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(;; The only check done by gajim-0.16.x is to check that the
|
`(#:phases
|
||||||
;; translations are up-to-date, and in 0.16.5 they are not, so
|
|
||||||
;; "make check" fails. Therefore, we disable tests for now.
|
|
||||||
;;
|
|
||||||
;; XXX TODO Try re-enabling tests in gajim-0.16.6 or later.
|
|
||||||
;;
|
|
||||||
#:tests? #f
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'install 'wrap-program
|
(add-after 'install 'wrap-program
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
;; Make sure all Python scripts run with the correct PYTHONPATH.
|
;; Make sure all Python scripts run with the correct PYTHONPATH.
|
||||||
(let ((out (assoc-ref outputs "out"))
|
(let ((out (assoc-ref outputs "out"))
|
||||||
(path (getenv "PYTHONPATH")))
|
(path (getenv "PYTHONPATH")))
|
||||||
(for-each (lambda (name)
|
(for-each (lambda (name)
|
||||||
(let ((file (string-append out "/bin/" name)))
|
(let ((file (string-append out "/bin/" name)))
|
||||||
;; Wrapping destroys identification of intended
|
;; Wrapping destroys identification of intended
|
||||||
;; application, so we need to override "APP".
|
;; application, so we need to override "APP".
|
||||||
(substitute* file
|
(substitute* file
|
||||||
(("APP=`basename \\$0`")
|
(("APP=`basename \\$0`")
|
||||||
(string-append "APP=" name)))
|
(string-append "APP=" name)))
|
||||||
(wrap-program file
|
(wrap-program file
|
||||||
`("PYTHONPATH" ":" prefix (,path)))))
|
`("PYTHONPATH" ":" prefix (,path)))))
|
||||||
'("gajim" "gajim-remote" "gajim-history-manager")))
|
'("gajim" "gajim-remote" "gajim-history-manager")))
|
||||||
#t)))))
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("intltool" ,intltool)))
|
`(("intltool" ,intltool)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
|
Loading…
Reference in New Issue