aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/axoloti.scm
diff options
context:
space:
mode:
authorKei Kebreau <kkebreau@posteo.net>2019-12-16 23:16:11 -0500
committerKei Kebreau <kkebreau@posteo.net>2020-04-18 16:49:54 -0400
commit462d3416a871f97ae3de867e725f8c6e4f976731 (patch)
tree8373bdd7396c28763f8dfaeb85e2184c6467c437 /gnu/packages/axoloti.scm
parente8f4bf6b42a640b91d843b0dd114e77f265798eb (diff)
downloadguix-462d3416a871f97ae3de867e725f8c6e4f976731.tar.gz
guix-462d3416a871f97ae3de867e725f8c6e4f976731.zip
gnu: libgweather: Update to 3.34.0.
* gnu/packages/gnome.scm (libgweather): Update to 3.34.0. (cherry picked from commit fea74bf26d1a77129da919f2eb7473c94a947200)
Diffstat (limited to 'gnu/packages/axoloti.scm')
0 files changed, 0 insertions, 0 deletions
s. (%current-dbus-connection): New parameter. (initialize-dbus-connection!, argument->signature-type) (call-dbus-method): New procedures. (dbus-available-services): Adjust accordingly. * gnu/local.mk (GNU_SYSTEM_MODULES): Register new module. * gnu/packages/glib.scm (dbus-for-jami): New variable. * gnu/services/telephony.scm: (jami-configuration)[dbus]: Default to dbus-for-jami. (jami-dbus-session-activation): Write a D-Bus daemon configuration file at '/var/run/jami/session-local.conf'. (jami-shepherd-services): Add the closure of guile-ac-d-bus and guile-fibers as extensions. Adjust imported modules. Remove no longer used parameters. <jami-dbus-session>: Use a PID file, avoiding the need for the manual synchronization. <jami>: Set DBUS_SESSION_BUS_ADDRESS environment variable. Poll using 'jami-service-available?' instead of 'dbus-service-available?'. * gnu/tests/telephony.scm (run-jami-test): Add needed Guile extensions. Set DBUS_SESSION_BUS_ADDRESS environment variable. Adjust all tests to use 'jami-service-available?' to determine if the service is started rather than the now problematic Shepherd's 'start-service'. Maxim Cournoyer 2021-08-30build/jami-service: Fix range ends in account-fingerprint-rx....This broke compilation of Guix with guile@3.0.2 with: In procedure make-regexp: Invalid range end The fix is to replace [0-9A-f] with [0-9A-Fa-f]. * gnu/build/jami-service.scm (account-fingerprint-rx): Correct regexp. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Maxime Devos