Age | Commit message (Collapse) | Author |
|
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.174.
(linux-libre-5.4-pristine-source, deblob-scripts-5.4): Update hashes.
|
|
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.94.
(linux-libre-5.10-pristine-source, deblob-scripts-5.10): Update hashes.
|
|
* gnu/packages/linux.scm (linux-libre-5.15-version): Update to 5.15.17.
(linux-libre-5.15-pristine-source, deblob-scripts-5.15): Update hashes.
|
|
* gnu/packages/linux.scm (linux-libre-5.16-version): Update to 5.16.3.
(linux-libre-5.16-pristine-source, deblob-scripts-5.16): Update hashes.
|
|
* gnu/packages/radio.scm (kockmorse): Rename this variable…
(kochmorse): …to this less bad variable.
|
|
The build system expects all Python modules to be on PYTHONPATH.
* gnu/packages/bioinformatics.scm (pigx-sars-cov2-ww)[arguments]: Set
PYTHONPATH variable in new build phase.
|
|
The build system expects all Python modules to be on PYTHONPATH.
* gnu/packages/bioinformatics.scm (pigx-scrnaseq)[arguments]: Set PYTHONPATH
variable in new build phase.
|
|
The build system expects all Python modules to be on PYTHONPATH.
* gnu/packages/bioinformatics.scm (pigx-bsseq)[arguments]: Set PYTHONPATH
variable in new build phase.
|
|
The build system expects all Python modules to be on PYTHONPATH.
* gnu/packages/bioinformatics.scm (pigx-chipseq)[arguments]: Set PYTHONPATH
variable in new build phase.
|
|
The build system expects all Python modules to be on PYTHONPATH.
* gnu/packages/bioinformatics.scm (pigx-rnaseq)[arguments]: Set PYTHONPATH
variable in new build phase.
|
|
* gnu/packages/icu4c.scm (icu4c)[arguments]: Add phase to skip failing
test on riscv64-linux.
|
|
* gnu/packages/radio.scm (kockmorse): New variable.
|
|
* gnu/packages/radio.scm (xnec2c)[inputs]: Add openblas.
[arguments]: Add 'configure-flags'. Update 'fix-paths' phase.
|
|
* gnu/packages/patches/jami-libclient-audio-managers.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/jami.scm (jami)[source]: Move all patches to...
(%jami-sources): here and add the newly added patch.
|
|
This fixes <https://git.jami.net/savoirfairelinux/jami-client-qt/-/issues/649>.
* gnu/packages/patches/jami-images-loading.patch: New patch.
* gnu/packages/patches/jami-memory-usage.patch: Likewise.
* gnu/local.mk (dist_patch_DATA): Register them.
* gnu/packages/jami.scm (jami)[source]: Apply them.
|
|
* gnu/packages/radio.scm (sdrangel): Update to 6.18.1.
|
|
* gnu/packages/radio.scm (dump1090): Update to 7.1.
|
|
* gnu/packages/radio.scm (xnec2c): Update to 4.4.5.
[source, home-page]: Update URL.
[native-inputs]: Add autoconf, automake, gettext-minimal, glib:bin and
libtool.
[arguments]: Add 'fix-paths' phase.
|
|
* gnu/packages/radio.scm (wsjtx): Update to 2.5.4.
|
|
* gnu/packages/radio.scm (hamlib): Update to 4.4.
|
|
* gnu/packages/radio.scm (gqrx): Update to 2.15.8.
|
|
* gnu/packages/radio.scm (redsea): Update to 0.20.
|
|
* gnu/packages/radio.scm (aptdec): Update to 1.7-2.5140597.
|
|
* gnu/packages/radio.scm (chirp): Update to 20220118.
|
|
* gnu/packages/radio.scm (soapyhackrf): Update to 0.3.4.
|
|
* gnu/packages/radio.scm (soapysdr): Update to 0.8.1.
|
|
* gnu/packages/radio.scm (flrig): Update to 1.4.04.
[inputs]: Add eudev.
|
|
* gnu/packages/radio.scm (flmsg): New variable.
|
|
* gnu/packages/elf.scm (elfutils)[arguments]: On riscv64-linux add a
phase to skip failing test.
|
|
* gnu/packages/pcre.scm (pcre2)[arguments]: Adjust configure-flags to not
build with JIT when building for riscv64-linux.
|
|
* gnu/packages/pcre.scm (pcre)[arguments]: Adjust configure-flags to not
build with JIT when building for riscv64-linux.
|
|
* guix/inferior.scm (port->inferior): In the inferior, define
'cached-store-connection', 'store-protocol-error?', and
'store-protocol-error-message'.
(inferior-eval-with-store): Use them.
|
|
Fixes <https://issues.guix.gnu.org/48007>.
Reported by Ricardo Wurmus <rekado@elephly.net>.
Previously, at each 'inferior-eval-with-store' call, the inferior would
create a new <store-connection> object with empty caches. Consequently,
when repeatedly calling 'inferior-package-derivation', we would not
benefit from any caching and instead recompute all the derivations for
every package. This patch fixes it by caching <store-connection>
objects in the inferior.
* guix/inferior.scm (port->inferior): Define '%store-table' in the inferior.
(inferior-eval-with-store): Cache store connections in %STORE-TABLE.
Remove now unneeded 'dynamic-wind' with 'close-port' call.
|
|
Previously, each 'inferior-eval-with-store' would lead the inferior to
connect to the named socket the parent is listening to. With this
change, the connection is established once for all and reused
afterwards.
* guix/inferior.scm (<inferior>)[bridge-file-name]: Remove.
(open-bidirectional-pipe): New procedure.
(inferior-pipe): Use it instead of 'open-pipe*' and return two values.
(port->inferior): Adjust call to 'inferior'.
(open-inferior): Adjust to 'inferior-pipe' changes.
(close-inferior): Remove 'inferior-bridge-file-name' handling.
(open-store-bridge!): Switch back to 'call-with-temporary-directory'.
Define '%bridge-socket' in the inferior, connected to the caller.
(proxy): Change first argument to be an inferior. Add 'reponse-port'
and call to 'drain-input'. Pass 'reponse-port' to 'select' and use it
as a loop termination clause.
(inferior-eval-with-store): Remove 'socket' and 'connect' calls from the
inferior code, and use '%bridge-socket' instead.
|
|
Previously, each 'inferior-eval-with-store' call would have the calling
process create a temporary directory with a listening socket in there.
Now that listening socket is created once and reused in subsequent
calls.
* guix/inferior.scm (<inferior>)[bridge-file-name, bridge-socket]: New
fields.
(port->inferior): Adjust accordingly.
(close-inferior): Close 'inferior-bridge-socket' and delete
'inferior-bridge-file-name' if set.
(open-store-bridge!, ensure-store-bridge!): New procedures.
(inferior-eval-with-store): Use them.
|
|
* gnu/packages/photo.scm (darktable)[properties]: New field.
|
|
* gnu/packages/guile-xyz.scm (guile-drmaa): Update to 0.1.1.
|
|
* gnu/packages/web.scm (gnome-mines)[native-inputs]: Add python-wrapper.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
|
|
* gnu/packages/web.scm (libzim)[inputs]: Add python-wrapper.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
|
|
* gnu/packages/web.scm (uriparser): Update to 0.9.6.
|
|
* gnu/packages/commencement.scm (%final-inputs-riscv64): New variable.
* guix/build-system/gnu.scm (standard-inputs): Use %final-inputs-riscv64
when targeting riscv64-linux.
|
|
This partially reverts commit f15ca337bec89f238b9b9ced08c2e02c35629a33. What
mattered was the addition of guile-bytestructures.
* gnu/packages/mes.scm (nyacc)[arguments]: Remove phase
'install-system-module.
|
|
Attic... Now that's a name I've not heard in a long time.
* gnu/packages/backup.scm (borg)[description]: Improve it.
|
|
* gnu/packages/backup.scm (vorta): New variable.
|
|
* gnu/packages/aux-files/linux-libre/5.16-arm.conf,
gnu/packages/aux-files/linux-libre/5.16-arm64.conf,
gnu/packages/aux-files/linux-libre/5.16-i686.conf,
gnu/packages/aux-files/linux-libre/5.16-x86_64.conf : New files.
* Makefile.am (AUX_FILES): Add them.
* gnu/packages/linux.scm (linux-libre-5.16-version,
linux-libre-5.16-gnu-revision, deblob-scripts-5.16,
linux-libre-5.16-pristine-source, linux-libre-5.16-source,
linux-libre-headers-5.16, linux-libre-5.16): New variables.
|
|
* gnu/packages/patches/util-linux-CVE-2021-3995.patch,
gnu/packages/patches/util-linux-CVE-2021-3996.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/linux.scm (util-linux)[replacement]: New field.
(util-linux/fixed): New variable.
|
|
* gnu/packages/algebra.scm (giac): Update to 1.7.0-47.
|
|
* gnu/packages/patches/polkit-CVE-2021-4034.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/polkit.scm (polkit-mozjs)[replacement]: New field.
* gnu/packages/polkit.scm (polkit-mozjs/fixed): New variable.
|
|
* gnu/packages/lua.scm (fennel): Update to 03c1c95.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
|
|
* gnu/packages/lua.scm (fnlfmt): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
|