summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* gnu: xnec2c: Add openblas support.base-for-series-11160base-for-series-11159base-for-series-11158base-for-series-11157base-for-series-11156Guillaume Le Vaillant2022-01-27
| | | | | * gnu/packages/radio.scm (xnec2c)[inputs]: Add openblas. [arguments]: Add 'configure-flags'. Update 'fix-paths' phase.
* gnu: jami-libclient: Properly return the list of audio managers.Maxim Cournoyer2022-01-27
| | | | | | | * 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.
* gnu: jami: Reduce memory consumption in conversation view.Maxim Cournoyer2022-01-27
| | | | | | | | | 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: sdrangel: Update to 6.18.1.Guillaume Le Vaillant2022-01-27
| | | | * gnu/packages/radio.scm (sdrangel): Update to 6.18.1.
* gnu: dump1090: Update to 7.1.Guillaume Le Vaillant2022-01-27
| | | | * gnu/packages/radio.scm (dump1090): Update to 7.1.
* gnu: xnec2c: Update to 4.4.5.Guillaume Le Vaillant2022-01-27
| | | | | | | | * 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: wsjtx: Update to 2.5.4.Guillaume Le Vaillant2022-01-27
| | | | * gnu/packages/radio.scm (wsjtx): Update to 2.5.4.
* gnu: hamlib: Update to 4.4.Guillaume Le Vaillant2022-01-27
| | | | * gnu/packages/radio.scm (hamlib): Update to 4.4.
* gnu: gqrx: Update to 2.15.8.Guillaume Le Vaillant2022-01-27
| | | | * gnu/packages/radio.scm (gqrx): Update to 2.15.8.
* gnu: redsea: Update to 0.20.Guillaume Le Vaillant2022-01-27
| | | | * gnu/packages/radio.scm (redsea): Update to 0.20.
* gnu: aptdec: Update to 1.7-2.5140597.Guillaume Le Vaillant2022-01-27
| | | | * gnu/packages/radio.scm (aptdec): Update to 1.7-2.5140597.
* gnu: chirp: Update to 20220118.Guillaume Le Vaillant2022-01-27
| | | | * gnu/packages/radio.scm (chirp): Update to 20220118.
* gnu: soapyhackrf: Update to 0.3.4.Guillaume Le Vaillant2022-01-27
| | | | * gnu/packages/radio.scm (soapyhackrf): Update to 0.3.4.
* gnu: soapysdr: Update to 0.8.1.Guillaume Le Vaillant2022-01-27
| | | | * gnu/packages/radio.scm (soapysdr): Update to 0.8.1.
* gnu: flrig: Update to 1.4.04.Guillaume Le Vaillant2022-01-27
| | | | | * gnu/packages/radio.scm (flrig): Update to 1.4.04. [inputs]: Add eudev.
* gnu: Add flmsg.Guillaume Le Vaillant2022-01-27
| | | | * gnu/packages/radio.scm (flmsg): New variable.
* gnu: elfutils: Fix building on riscv64-linux.Efraim Flashner2022-01-27
| | | | | * gnu/packages/elf.scm (elfutils)[arguments]: On riscv64-linux add a phase to skip failing test.
* gnu: pcre2: Fix building on riscv64-linux.Efraim Flashner2022-01-27
| | | | | * gnu/packages/pcre.scm (pcre2)[arguments]: Adjust configure-flags to not build with JIT when building for riscv64-linux.
* gnu: pcre: Fix building on riscv64-linux.Efraim Flashner2022-01-27
| | | | | * gnu/packages/pcre.scm (pcre)[arguments]: Adjust configure-flags to not build with JIT when building for riscv64-linux.
* inferior: Move initialization bits away from 'inferior-eval-with-store'.Ludovic Courtès2022-01-27
| | | | | | | * 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.
* inferior: Inferior caches store connections.Ludovic Courtès2022-01-27
| | | | | | | | | | | | | | | | 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.
* inferior: Keep the store bridge connected.Ludovic Courtès2022-01-27
| | | | | | | | | | | | | | | | | | | | | 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.
* inferior: Create the store proxy listening socket only once.Ludovic Courtès2022-01-27
| | | | | | | | | | | | | | | 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: darktable: Add release-monitoring-url.base-for-series-11153base-for-series-11152base-for-series-11151base-for-series-11150base-for-series-11149base-for-series-11147Vinicius Monego2022-01-27
| | | | * gnu/packages/photo.scm (darktable)[properties]: New field.
* gnu: guile-drmaa: Update to 0.1.1.Ricardo Wurmus2022-01-27
| | | | * gnu/packages/guile-xyz.scm (guile-drmaa): Update to 0.1.1.
* gnu: gnome-mines: Fix build.Michael Rohleder2022-01-27
| | | | | | * gnu/packages/web.scm (gnome-mines)[native-inputs]: Add python-wrapper. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
* gnu: libzim: Fix build.Michael Rohleder2022-01-27
| | | | | | * gnu/packages/web.scm (libzim)[inputs]: Add python-wrapper. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
* gnu: uriparser: Update to 0.9.6.Efraim Flashner2022-01-27
| | | | * gnu/packages/web.scm (uriparser): Update to 0.9.6.
* gnu: Add %final-inputs-riscv64.Efraim Flashner2022-01-27
| | | | | | * gnu/packages/commencement.scm (%final-inputs-riscv64): New variable. * guix/build-system/gnu.scm (standard-inputs): Use %final-inputs-riscv64 when targeting riscv64-linux.
* gnu: nyacc: Remove unnecessary phase.base-for-series-11146base-for-series-11145base-for-series-11144base-for-series-11143base-for-series-11142Ricardo Wurmus2022-01-26
| | | | | | | | This partially reverts commit f15ca337bec89f238b9b9ced08c2e02c35629a33. What mattered was the addition of guile-bytestructures. * gnu/packages/mes.scm (nyacc)[arguments]: Remove phase 'install-system-module.
* gnu: Borg: Improve the description.Leo Famulari2022-01-26
| | | | | | Attic... Now that's a name I've not heard in a long time. * gnu/packages/backup.scm (borg)[description]: Improve it.
* gnu: Add Vorta.Leo Famulari2022-01-26
| | | | * gnu/packages/backup.scm (vorta): New variable.
* gnu: Add linux-libre 5.16.2.Leo Famulari2022-01-26
| | | | | | | | | | | | * 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: util-linux: Fix CVE-2021-3995 and CVE-2021-3996.Leo Famulari2022-01-26
| | | | | | | | * 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: giac: Update to 1.7.0-47.base-for-series-11140base-for-series-11138Nicolas Goaziou2022-01-26
| | | | * gnu/packages/algebra.scm (giac): Update to 1.7.0-47.
* gnu: polkit: Fix CVE-2021-4034.Ludovic Courtès2022-01-26
| | | | | | | * 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: fennel: Update to 03c1c95.Brandon Lucas2022-01-26
| | | | | | * gnu/packages/lua.scm (fennel): Update to 03c1c95. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: Add fnlfmt.Brandon Lucas2022-01-26
| | | | | | * gnu/packages/lua.scm (fnlfmt): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* import: pypi: Convert hyphens to underscores in PyPI URLs if needed.Vivien Kraus2022-01-26
| | | | | | | | | | | | * guix/import/pypi.scm (find-project-url): New function. (make-pypi-sexp): Use find-project-url. * tests/pypi.scm (foo-json): New procedure. (test-json-1, test-json-2): Define in terms of it. ("find-project-url, with numpy", "find-project-url, uWSGI"): ("find-project-url, flake8-array-spacing") ("find-project-url, foo/goo"): New tests. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
* gnu: utf-8-lineseparator: Update to 7.jgart2022-01-26
| | | | | | | * gnu/packages/textutils.scm (utf-8-lineseparator): Update to 7. Adjust 'commit' field accordingly. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* utils: 'edit-expression' reads and conses less when not modifying.Ludovic Courtès2022-01-26
| | | | | * guix/utils.scm (edit-expression): Delay call to 'get-bytevector-all' until after (string=? str* str).
* gnu: emacs-emms: Update to 9.Nicolas Goaziou2022-01-26
| | | | * gnu/packages/emacs-xyz.scm (emacs-emms): Update to 9.
* gnu: emacs-ebdb: Update to 0.8.9.Nicolas Goaziou2022-01-26
| | | | * gnu/packages/emacs-xyz.scm (emacs-ebdb): Update to 0.8.9.
* gnu: Add go-go-etcd-io-bbolt.Efraim Flashner2022-01-26
| | | | * gnu/packages/databases.scm (go-go-etcd-io-bbolt): New variable.
* gnu: Add go-gopkg-in-mgo-v2.Efraim Flashner2022-01-26
| | | | * gnu/packages/databases.scm (go-gopkg-in-mgo-v2): New variable.
* gnu: Add go-github-com-gomodule-redigo.Efraim Flashner2022-01-26
| | | | * gnu/packages/databases.scm (go-github-com-gomodule-redigo): New variable.
* gnu: Add go-github-com-cupcake-rdb.Efraim Flashner2022-01-26
| | | | * gnu/packages/databases.scm (go-github-com-cupcake-rdb): New variable.
* gnu: Add go-github-com-couchbase-gomemcached.Efraim Flashner2022-01-26
| | | | * gnu/packages/databases.scm (go-github-com-couchbase-gomemcached): New variable.
* gnu: Add go-github-com-bradfitz-gomemcache.Efraim Flashner2022-01-26
| | | | * gnu/packages/databases.scm (go-github-com-bradfitz-gomemcache): New variable.
* gnu: sqlitebrowser: Enable tests.Efraim Flashner2022-01-26
| | | | | * gnu/packages/databases.scm (sqlitebrowser)[arguments]: Don't skip tests. Add configure-flag to enable tests.