mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: gajim: Update to 1.9.3.
* gnu/packages/messaging.scm (gajim): Update to 1.9.3. Change-Id: I302a02e6ea9c0f974055a5f44f06c61bcf2fb93e Signed-off-by: Luca Matei Pintilie <luca@lucamatei.com> Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
aa50cfe05a
commit
6f2419de32
1 changed files with 17 additions and 13 deletions
|
@ -1195,7 +1195,7 @@ of xmpppy.")
|
||||||
(define-public gajim
|
(define-public gajim
|
||||||
(package
|
(package
|
||||||
(name "gajim")
|
(name "gajim")
|
||||||
(version "1.7.3")
|
(version "1.9.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -1203,7 +1203,7 @@ of xmpppy.")
|
||||||
(version-major+minor version)
|
(version-major+minor version)
|
||||||
"/gajim-" version ".tar.gz"))
|
"/gajim-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "066kvkjw3qcdanr3nczy0wgcwihk9jc9zhzfr5bwlqvcyxcv7k5p"))
|
(base32 "10rz8pd43a9308kj6csixsmvdc6ccnqkw83adc5cggh1798b45ag"))
|
||||||
(patches
|
(patches
|
||||||
(search-patches "gajim-honour-GAJIM_PLUGIN_PATH.patch"))))
|
(search-patches "gajim-honour-GAJIM_PLUGIN_PATH.patch"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
@ -1241,14 +1241,15 @@ of xmpppy.")
|
||||||
(invoke "./pep517build/install_metadata.py" "dist/metadata"
|
(invoke "./pep517build/install_metadata.py" "dist/metadata"
|
||||||
(string-append "--prefix=" #$output))))
|
(string-append "--prefix=" #$output))))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
;; Tests require a running X server.
|
(when tests?
|
||||||
(system "Xvfb :1 +extension GLX &")
|
;; Tests require a running X server.
|
||||||
(setenv "DISPLAY" ":1")
|
(system "Xvfb :1 +extension GLX &")
|
||||||
;; For missing '/etc/machine-id'.
|
(setenv "DISPLAY" ":1")
|
||||||
(setenv "DBUS_FATAL_WARNINGS" "0")
|
;; For missing '/etc/machine-id'.
|
||||||
(invoke "dbus-launch" "python" "-m" "unittest"
|
(setenv "DBUS_FATAL_WARNINGS" "0")
|
||||||
"discover" "-s" "test")))
|
(invoke "dbus-launch" "python" "-m" "unittest"
|
||||||
|
"discover" "-s" "test"))))
|
||||||
(add-after 'install 'glib-or-gtk-compile-schemas
|
(add-after 'install 'glib-or-gtk-compile-schemas
|
||||||
(assoc-ref glib-or-gtk:%standard-phases
|
(assoc-ref glib-or-gtk:%standard-phases
|
||||||
'glib-or-gtk-compile-schemas))
|
'glib-or-gtk-compile-schemas))
|
||||||
|
@ -1288,9 +1289,7 @@ of xmpppy.")
|
||||||
"/site-packages"))))))
|
"/site-packages"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list gettext-minimal
|
(list gettext-minimal
|
||||||
`(,glib "bin")
|
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
`(,gtk+ "bin")
|
|
||||||
python-distutils-extra
|
python-distutils-extra
|
||||||
python-pypa-build
|
python-pypa-build
|
||||||
python-setuptools
|
python-setuptools
|
||||||
|
@ -1313,22 +1312,27 @@ of xmpppy.")
|
||||||
gupnp-igd
|
gupnp-igd
|
||||||
libappindicator
|
libappindicator
|
||||||
libnice
|
libnice
|
||||||
|
libomemo
|
||||||
libsecret
|
libsecret
|
||||||
libsoup
|
libsoup
|
||||||
libxscrnsaver
|
libxscrnsaver
|
||||||
network-manager
|
network-manager
|
||||||
python-css-parser
|
python-css-parser
|
||||||
python-dbus
|
python-dbus
|
||||||
|
python-emoji
|
||||||
python-gssapi
|
python-gssapi
|
||||||
python-idna
|
python-idna
|
||||||
python-keyring
|
python-keyring
|
||||||
python-nbxmpp
|
python-nbxmpp
|
||||||
|
python-omemo-dr
|
||||||
python-packaging
|
python-packaging
|
||||||
python-pillow
|
python-pillow
|
||||||
python-precis-i18n
|
python-precis-i18n
|
||||||
python-pycairo
|
python-pycairo
|
||||||
python-pygobject
|
python-pygobject
|
||||||
python-pyopenssl))
|
python-pyopenssl
|
||||||
|
python-qrcode
|
||||||
|
python-sqlalchemy-2))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list dconf))
|
(list dconf))
|
||||||
(synopsis "Fully-featured XMPP client")
|
(synopsis "Fully-featured XMPP client")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue