summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2022-06-05gnu: ndctl: Update to 73....* gnu/packages/disk.scm (ndctl): Update to 73. [build-system]: Switch to Meson. [arguments]: Adjust #:configure-flags accordingly. Remove #:make-flags. [native-inputs]: Remove automake, autoconf, and libtool. Tobias Geerinckx-Rice
2022-06-05gnu: memkind: Update to 1.13.0....* gnu/packages/disk.scm (memkind): Update to 1.13.0. Tobias Geerinckx-Rice
2022-06-05gnu: diffoscope: Update to 216....* gnu/packages/diffoscope.scm (diffoscope): Update to 216. Tobias Geerinckx-Rice
2022-06-05gnu: python-pyodbc-c: Fix comment....* gnu/packages/databases.scm (python-pyodbc-c): Fix comment about tests. Tobias Geerinckx-Rice
2022-06-05gnu: irssi: Edit description....* gnu/packages/irc.scm (irssi)[synopsis, description]: Expound. Tobias Geerinckx-Rice
2022-06-11gnu: offlate: Update to 0.6.1....* gnu/packages/python-xyz.scm (offlate): Update to 0.6.1. Julien Lepiller
2022-06-05gnu: irssi: Update to 1.4.1....* gnu/packages/irc.scm (irssi): Update to 1.4.1. [arguments]: Remove unmaintained "--with-bot". Tobias Geerinckx-Rice
2022-06-05gnu: python-pyodbc-c: Fix metadata....It appears to have been copied from python-pyodbc, a different project. * gnu/packages/databases.scm (python-pyodbc-c)[synopsis, description]: Describe this project instead, and how it differs. [home-page]: Point elsewhere. Tobias Geerinckx-Rice
2022-06-05gnu: python-pyodbc-c: Update to 3.1.5....* gnu/packages/databases.scm (python-pyodbc-c): Update to 3.1.5. Tobias Geerinckx-Rice
2022-06-05gnu: python-pyodbc-c: Don't use unstable tarball....* gnu/packages/databases.scm (python-pyodbc-c)[source]: Use GIT-FETCH and GIT-FILE-NAME. Tobias Geerinckx-Rice
2022-06-05gnu: python-pyodbc: Update to 4.0.32....* gnu/packages/databases.scm (python-pyodbc): Update to 4.0.32. Tobias Geerinckx-Rice
2022-06-05gnu: python-pyodbc: Document the test situation....* gnu/packages/databases.scm (python-pyodbc)[arguments]: Replace counterfactual comment with one that isn't. Add a custom 'check phase, which doesn't run. Tobias Geerinckx-Rice
2022-06-05gnu: python-pyodbc: Remove precompiled .pyc files from source....* gnu/packages/databases.scm (python-pyodbc)[source]: Add a snippet. Remove no-op file-name. Tobias Geerinckx-Rice
2022-06-11gnu: Add emacs-org-auto-tangle....* gnu/packages/emacs-xyz.scm (emacs-org-auto-tangle): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Haider Mirza
2022-06-11system: Align zram priority with swap-space spec to clarify....Fixes <https://issues.guix.gnu.org/54783>. * gnu/services/linux.scm (zram-device-configuration) [priority]: Adapt to use #f or an integer from 0 to 32767. Add sanitizer to warn for the change and delay the field. (zram-device-configuration->udev-string): Adapt as above. * doc/guix.texi (Zram Device Service): Remove double copyright line. Change priority description to refer to the Swap Space one, and suggest not leaving the default #f on to properly use zram. Reported-by: Stefan Baums <baums@stefanbaums.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Josselin Poiret
2022-06-10services: jami-configuration: Rename 'jamid' field to 'libjami'....* gnu/services/telephony.scm (gnu): (jami-configuration)[jamid]: Rename field to... [libjami]: ... this. (jami-configuration->command-line-arguments): Adjust accordingly. (jami-shepherd-services): Likewise. Maxim Cournoyer
2022-06-10least-authority: Fix typo....* guix/least-authority.scm (least-authority-wrapper): Fix typo in doc. Maxim Cournoyer
2022-06-10services: jami: Modernize to adjust to Shepherd 0.9+ changes....This partially fixes <https://issues.guix.gnu.org/54786>, allowing the 'jami' and 'jami-provisioning' system tests to pass again. In version 0.9.0, Shepherd constructors are now run concurrently, via cooperative scheduling (Guile Fibers). The Jami service previously relied on blocking sleeps while polling for D-Bus services to become ready after forking a process; this wouldn't work anymore since while blocking the service process wouldn't be given the chance to finish starting. The new reliance on Fibers in Shepherd's fork+exec-command in the helper 'send-dbus' procedure also meant that it wouldn't work outside of Shepherd anymore. Finally, the 'start-service' Shepherd procedure used in the test suite would cause the Jami daemon to be spawned multiple times (a bug introduced in Shepherd 0.9.0). To fix/simplify these problems, this change does the following: 1. Use the Guile AC/D-Bus library for D-Bus communication, which simplify things, such as avoiding the need to fork 'dbus-send' processes. 2. The non-blocking 'sleep' version of Fiber is used for the 'with-retries' waiting syntax. 3. A 'dbus' package variant is used to adjust the session bus configuration, tailoring it for the use case at hand. 4. Avoid start-service in the tests, preferring 'jami-service-available?' for now. * gnu/build/jami-service.scm (parse-dbus-reply, strip-quotes) (deserialize-item, serialize-boolean, dbus-dict->alist) (dbus-array->list, parse-account-ids, parse-account-details) (parse-contacts): Delete procedures. (%send-dbus-binary, %send-dbus-bus, %send-dbus-user, %send-dbus-group) (%send-dbus-debug): Delete parameters. (jami-service-running?): New procedure. (send-dbus/configuration-manager): Rename to... (call-configuration-manager-method): ... this. Turn METHOD into a positional argument. Turn ARGUMENTS into an optional argument. Invoke `call-dbus-method' instead of `send-dbus', adjusting callers accordingly. (get-account-ids, id->account-details, id->account-details) (id->volatile-account-details, username->id, add-account remove-account) (username->contacts, remove-contact, add-contact, set-account-details) (set-all-moderators, username->all-moderators?, username->moderators) (set-moderator): Adjust accordingly. (with-retries, send-dbus, dbus-available-services) (dbus-service-available?): Move to ... * gnu/build/dbus-service.scm: ... this new module. (send-dbus): Rewrite to use the Guile AC/D-Bus library. (%dbus-query-timeout, sleep*): New variables. (%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
2022-06-05gnu: qtox: Update to 1.17.6....* gnu/packages/messaging.scm (qtox): Update to 1.17.6. Tobias Geerinckx-Rice
2022-06-05gnu: galera: Update to 26.4.12....* gnu/packages/databases.scm (galera): Update to 26.4.12. Tobias Geerinckx-Rice
2022-06-05gnu: Add nmon....* gnu/packages/admin.scm (nmon): New public variable. Tobias Geerinckx-Rice
2022-06-05gnu: oneko: Edit description....* gnu/packages/toys.scm (oneko)[description]: Use full sentences. Name the only two species of animated character actually available. Add an unfortunate note about Wayland. Tobias Geerinckx-Rice
2022-06-05gnu: oneko: Remove trailing #t from phases....* gnu/packages/toys.scm (oneko)[source]: Don't explicitly return #t from snippet… [arguments]: …nor from phases. Tobias Geerinckx-Rice
2022-06-05pull: Fail if cache directory ownership is suspect....New users frequently run ‘sudo guix pull’ which breaks subsequent unprivileged ‘guix pull’s until manually fixed with chmod -R. * guix/scripts/pull.scm (guix-pull): Fail if the cache directory (or its innermost extant parent) is not owned by the user pulling the Guix, with a hint about ‘sudo -i’. Tobias Geerinckx-Rice
2022-06-05gnu: c-blosc: Remove input labels....* gnu/packages/compression.scm (c-blosc)[inputs]: Remove input labels. Tobias Geerinckx-Rice
2022-06-05gnu: c-blosc: Remove bundled libraries from source....* gnu/packages/compression.scm (c-blosc)[source]: Add snippet. Tobias Geerinckx-Rice
2022-06-05gnu: c-blosc: Omit static library....* gnu/packages/compression.scm (c-blosc)[arguments]: Add "-DBUILD_STATIC=OFF" to #:configure-flags. Tobias Geerinckx-Rice
2022-06-05gnu: c-blosc: Update to 1.21.1....* gnu/packages/compression.scm (c-blosc): Update to 1.21.1. [arguments]: Remove obsolete PREFER_EXTERNAL_SNAPPY from #:configure-flags. Tobias Geerinckx-Rice
2022-06-10gnu: tch-ipv6: Build reproducibly....* gnu/packages/networking.scm (thc-ipv6)[arguments]: Add 'use-source-date-epoch-in-manpages phase. Vagrant Cascadian
2022-06-10gnu: emacs-dimmer: Update to 0.4.2-1-2f915b1....To build with Emacs28. * gnu/packages/emacs-xyz.scm (emacs-dimmer): Update to 0.4.2-1-2f915b1. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Michael Rohleder
2022-06-10gnu: meshlab: Update to 2022.02....Note that the previous version no longer compiled (this one does). * gnu/packages/engineering.scm (meshlab): Update to 2022.02. [inputs]: Remove the no longer required qtscript and qtxmlpatterns. Add (uncomment) qhull. [arguments]: Use G-expressions. <#:configure-flags>: Set the rpath to fix missing libraries (presumably new since the previous version) detected during the 'validate-runpath' phase. <#:phases>: Remove trailing boolean from 'go-to-source-dir' phase. Remove the 'move-files' phase, which was made redundant by the manually provided rpath. [description]: Move a word and add some commas to improve the readability. Typeset a program name in @samp{}. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Paul A. Patience
2022-06-10gnu: direnv: Update to 2.31.0....* gnu/packages/shellutils.scm (direnv): Update to 2.31.0. [arguments]: Remove trailing boolean in lambda block. Signed-off-by: Ludovic Courtès <ludo@gnu.org> jgart
2022-06-10gnu: Add go-github-com-google-go-jsonnet....* gnu/packages/golang.scm (go-github-com-google-go-jsonnet): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org> JOULAUD François
2022-06-10gnu: Add go-sigs-k8s-io-yaml....* gnu/packages/golang.scm (go-sigs-k8s-io-yaml): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org> JOULAUD François
2022-06-10doc: Update example of a minimalistic home environment....* doc/he-config-bare-bones.scm: Adujst example according to changes in bash-service-type and home-files-service-type. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Andrew Tropin
2022-06-10gnu: linux-libre 5.10: Update to 5.10.121....* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.121. (linux-libre-5.10-pristine-source, deblob-scripts-5.10): Update hashes. Leo Famulari
2022-06-10gnu: linux-libre 5.15: Update to 5.15.46....* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.46. (linux-libre-5.15-pristine-source, deblob-scripts-5.15): Update hashes. Leo Famulari
2022-06-10gnu: linux-libre: Update to 5.17.14....* gnu/packages/linux.scm (linux-libre-5.17-version): Update to 5.17.14. (linux-libre-5.17-pristine-source, deblob-scripts-5.17): Update hashes. Leo Famulari
2022-06-10gnu: slurm-drmaa: Update to 1.1.3....* gnu/packages/parallel.scm (slurm-drmaa): Update to 1.1.3. Ricardo Wurmus
2022-06-10gnu: r-prereg: Add TeXLive dependencies....* gnu/packages/cran.scm (r-prereg)[propagated-inputs]: Add texlive-amsfonts, texlive-amsmath, texlive-booktabs, texlive-etoolbox, texlive-generic-iftex, texlive-latex-fancyhdr, texlive-latex-fancyvrb, texlive-latex-geometry, texlive-latex-graphics, texlive-latex-threeparttable, texlive-latex-titlesec, texlive-latex-upquote, texlive-listings, texlive-lm, texlive-polyglossia, texlive-titling, texlive-tools, texlive-ulem. Lars-Dominik Braun
2022-06-05gnu: foot: Update to 1.12.1....* gnu/packages/terminals.scm (foot): Update to 1.12.1. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr> Timotej Lazar
2022-06-05gnu: claws-mail: Update to 4.1.0....* gnu/packages/mail.scm (claws-mail): Update to 4.1.0. Tobias Geerinckx-Rice
2022-06-05gnu: alpine: Update to 2.26....* gnu/packages/mail.scm (alpine): Update to 2.26. [source]: Remove patch. * gnu/packages/patches/alpine-fix-privacy-policy-crash.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it. Tobias Geerinckx-Rice
2022-06-05gnu: python-notmuch: Remove trailing #t from phase....* gnu/packages/mail.scm (python-notmuch): [arguments]: Don't explicitly return #t from phase. Tobias Geerinckx-Rice
2022-06-05gnu: notmuch: Update to 0.36....* gnu/packages/mail.scm (notmuch): Update to 0.36. Tobias Geerinckx-Rice
2022-06-05gnu: python-igraph: Update to 0.9.11....* gnu/packages/graph.scm (python-igraph): Update to 0.9.11. Tobias Geerinckx-Rice
2022-06-05gnu: multitail: Update to 6.5.2....* gnu/packages/logging.scm (multitail): Update to 6.5.2. [arguments]: Don't explicitly return #t from phases. [source]: Use GIT-FETCH and GIT-FILE-NAME. [arguments]: Add SYSCONFDIR to #:make-flags. Add a new 'fix-broken-build phase. Sanitise the old 'patch-curses-lib phase to 'patch-curses-headers. Tobias Geerinckx-Rice
2022-06-05gnu: inotify-tools: Update to 3.22.6.0....* gnu/packages/linux.scm (inotify-tools): Update to 3.22.6.0. Tobias Geerinckx-Rice
2022-06-05gnu: reproc: Update to 14.2.4....* gnu/packages/cpp.scm (reproc): Update to 14.2.4. Tobias Geerinckx-Rice
2022-06-05gnu: python-pkginfo: Update to 1.8.3....* gnu/packages/python-xyz.scm (python-pkginfo): Update to 1.8.3. [arguments]: Remove 'patch-tests phase. Tobias Geerinckx-Rice