Fixes <https://issues.guix.gnu.org/64358>.
* guix/scripts/refresh.scm (guix-refresh): Sort update specs by location from
bottom to top before updating packages.
* gnu/packages/package-management.scm (nix): Update to 2.16.1.
[source]: Use HTTPS for package source.
[inputs]: Add nlohmann-json.
[native-inputs]: Add rapidcheck.
[arguments]<#:phases>: In phase "check", change the value of environment
variable "NIX_STORE" to "/nix/store" temporarily.
* gnu/packages/patches/nix-dont-build-html-doc.diff: Update.
Co-authored-by: jgart <jgart@dismail.de>
Update all of the ROCm packages at the same time as they share a version
number and should be upgraded together, including llvm-for-rocm.
* gnu/packages/llvm.scm (llvm-for-rocm): Update to 5.6.0.
[source]{patches}: Remove unneeded patches (linkdl and remove-isystem-usr-include).
* gnu/packages/rocm.scm (rocm-cmake, roct-thunk-interface): Update
to 5.6.0.
(rocclr-src): Update to 5.6.0.
[source]{patches}: Add enable-gfx800 patch.
(rocm-device-libs): Update to 5.6.0.
[inputs]: Update style.
(rocm-comgr): Update to 5.6.0.
[inputs]: Remove lld. Update style.
(rocr-runtime): Update to 5.6.0.
[arguments]: Use gexps. Remove configure-flags. Add add-rocm-device-lib-path
phase.
[inputs]: Add libdrm. Update style.
[native-inputs]: Add pkg-config. Update style.
(rocm-opencl-runtime): Update to 5.6.0.
[source]{patches}: Remove noopencl patch.
[arguments]{configure-flags}: Add BUILD_ICD=OFF and
FILE_REORG_BACKWARD_COMPATIBILITY=OFF flags.
[inputs]: Add opencl-headers.
(rocminfo): Update to 5.6.0.
[arguments]: Use gexps. Use search-input-file instead of assoc-ref and which.
(rocm-bandwidth-test): Update to 5.6.0.
[source]{patches}: Add fix-includes patch.
* gnu/packages/patches/rocm-comgr-3.1.0-dependencies.patch,
gnu/packages/patches/rocm-opencl-runtime-4.3-noclinfo.patch: Update patches.
* gnu/packages/patches/llvm-roc-4.0.0-remove-isystem-usr-include.patch,
gnu/packages/patches/llvm-roc-5.0.0-linkdl.patch,
gnu/packages/patches/rocm-opencl-runtime-4.3-noopencl.patch: Delete files.
* gnu/packages/patches/rocm-bandwidth-test-5.5.0-fix-includes.patch,
gnu/packages/patches/rocclr-5.6.0-enable-gfx800.patch: New files.
* gnu/local.mk (dist_patch_DATA): Update patches.
* gnu/packages/emacs-xyz.scm (emacs-dumbparens): Update to 0-1.59bb5ae.
[source]: Download from new upstream URL.
[home-page]: Use new home-page.
Signed-off-by: Andrew Tropin <andrew@trop.in>
* gnu/packages/emacs-xyz.scm (emacs-scroll-on-drag): Update to 0.1-2.179c2ac.
[source]: Download from new upstream URL.
[home-page]: Use new home-page.
Signed-off-by: Andrew Tropin <andrew@trop.in>
* gnu/packages/emacs-xyz.scm (emacs-mode-line-idle): Update to 0.2-0.1dc0115.
[source]: Download from new upstream URL.
[home-page]: Use new home-page.
Signed-off-by: Andrew Tropin <andrew@trop.in>
* gnu/packages/emacs-xyz.scm (emacs-undo-fu-session): Update to 0.6-0.a6c4f73.
[source]: Download from new upstream URL.
[arguments]: Update #:test-command. Fix tests by adding
'--eval (setq undo-fu-session-ignore-temp-files nil)' to #:test-command.
[home-page]: Use new home-page.
Signed-off-by: Andrew Tropin <andrew@trop.in>
* gnu/packages/emacs-xyz.scm (emacs-undo-fu): Update to 0.5-0.0e22308.
[source]: Download from new upstream URL.
[home-page]: Use new home-page.
Signed-off-by: Andrew Tropin <andrew@trop.in>
* gnu/packages/emacs-xyz.scm (emacs-spell-fu): Update to 0.3-1.67a26b7.
[source]: Download from new upstream URL.
[home-page]: Use new home-page.
Signed-off-by: Andrew Tropin <andrew@trop.in>
CMake is now upstream’s preferred build system.
* gnu/packages/bittorrent.scm (qbittorrent)[build-system]: Use qt-build-system.
[arguments]: Drop custom wrap phase. (Re-)enable tests.
[inputs]: Remove input labels. Drop qtbase-5.
[native-inputs]: Drop pkg-config.
(qbittorrent-nox)[arguments]: Adjust configure-flags. Keep the wrap-qt phase
since the non-GUI version is also a QT program.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* guix/avahi.scm (avahi-publish-service-thread): Fixes crash when timeout is
#f, which is the default for "guix publish --advertise"
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Fixes <https://issues.guix.gnu.org/63048>.
Reported by Ekaitz Zarraga <ekaitz@elenq.tech>.
* gnu/home/services.scm (with-shell-quotation-bindings): New procedure.
(environment-variable-shell-definitions): Use it instead of inline copy.
* gnu/home/services/shells.scm (bash-serialize-aliases): Use it. Add
clause for 'literal-string?'.
* tests/guix-home.sh: Add 'aliases' to 'home-bash-extension' and test it.
Fixes a bug whereby 'cached-channel-instance' would potentially consider
cache entries obsolete too early because they refer to items in the
store, which is mounted as 'noatime' on Guix System.
* guix/cache.scm (file-expiration-time): Use 'lstat' and
'false-if-exception' rather than 'stat'. This matches what (guix
scripts shell) does.
Fixes the build of python-curtsies.
The python-six dependency was accidentally removed in commit
9e1cbc62e5.
* gnu/packages/python-xyz.scm (python-blessed)[propagated-inputs]: Add
python-six.
Signed-off-by: Christopher Baines <mail@cbaines.net>