Age | Commit message (Collapse) | Author |
|
The forthcoming 1.3.0 release will be signed with my personal GnuPG key; the
installation script needs to tell users how to fetch it.
* etc/guix-install.sh (OPENPGP_SIGNING_KEY_ID): Remove variable.
(GPG_SIGNING_KEYS): New associative array.
(chk_gpg_keyring): Process all the keys contained in the above array.
(main) <GUIX_BINARY_FILE_NAME>: Double quote variable.
|
|
This is necessary as the directory context is changed in the script, breaking
the use of a relative path.
* etc/guix-install.sh (main) <GUIX_BINARY_FILE_NAME>: Resolve its absolute
path via the 'realpath' command.
|
|
This is useful for example for testing release candidates not yet uploaded to
the FTP, or for testing manually downloaded images from the CI.
* etc/guix-install.sh (main)[GUIX_BINARY_FILE_NAME]: When this variable is
defined, use it as the file name of a Guix binary, instead of automatically
retrieving the latest archive from the FTP.
|
|
* gnu/packages/emacs-xyz.scm (emacs-marginalia): Update to 0.5.
|
|
* gnu/packages/emacs-xyz.scm (emacs-consult): Update to 0.7.
|
|
* gnu/packages/emacs-xyz.scm (emacs-which-key): Update to 3.5.2.
|
|
* gnu/packages/bioinformatics.scm (pbgzip): New variable.
|
|
|
|
* gnu/packages/xfce.scm (xfce4-settings):[propagated-inputs]: Add
gsettings-desktop-schemas. This makes it appear in the system profile
via the xfce service. This fixes a bug where changing icon theme causes
xfce4-appearance-settings to crash with the error:
GLib-GIO-ERROR **: 15:41:45.828: Settings schema 'org.gnome.desktop.interface' is not installed
Trace/breakpoint trap
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
|
|
* gnu/packages/emacs-xyz.scm (emacs-xref)[source]: Use “.tar” instead of “.el”
in the URL.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
|
* gnu/packages/gnome.scm (libsoup)[home-page]: Modify.
Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>
|
|
* gnu/packages/gnome.scm (libsoup)[inputs]: Add samba and
move glib-networking to ...
[propagated-inputs]: ... here.
Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>
|
|
* gnu/packages/emacs-xyz.scm (emacs-xref): Update to 1.1.0.
|
|
* gnu/packages/emacs-xyz.scm (emacs-tramp): Update to 2.5.0.4.
|
|
* gnu/packages/emacs-xyz.scm (emacs-auctex): Update to 13.0.11.
|
|
* gnu/packages/emacs-xyz.scm (emacs-project): Update to 0.6.0.
|
|
* gnu/packages/aspell.scm (aspell-dict-ro): New variable.
Signed-off-by: Julien Lepiller <julien@lepiller.eu>
|
|
* gnu/packages/lisp-xyz.scm (cl-bknr-datastore, sbcl-bknr-datastore): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
* gnu/packages/lisp-xyz.scm (cl-unit-test, ecl-unit-test, sbcl-unit-test): New
variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
|
|
* gnu/packages/vim.scm (vim-fugitive): Update to 3.3.
|
|
* gnu/packages/vim.scm (vim-asyncrun): Update to 2.8.6.
|
|
* gnu/packages/emacs-xyz.scm (emacs-elfeed): Update to 3.4.1.
|
|
* gnu/packages/nano.scm (nano): Update to 5.7.
|
|
This is a fixed version of 66b14dccdd0d83c875ce3a8d50ceab8b6f0a3ce2,
which was reverted in e74250c3c535b75dd2225a26df51febb7ed94654.
* guix/download.scm (%disarchive-mirrors): New variable.
(%disarchive-mirror-file): New variable.
(built-in-download): Add 'disarchive-mirrors' keyword argument and
pass its value along to the 'builtin:download' derivation.
(url-fetch): Pass '%disarchive-mirror-file' to 'built-in-download'.
* guix/scripts/perform-download.scm (perform-download): Read
Disarchive mirrors from the environment and pass them to
'url-fetch'.
* guix/build/download.scm (disarchive-fetch/any): New procedure.
(url-fetch): Add 'disarchive-mirrors' keyword argument, use it to
make a list of URIs, and use the new procedure to fetch the file if
all other methods fail.
* build-aux/build-self.scm (build-program)[select?]: Exclude '(guix
build download)'.
* guix/self.scm (compiled-guix)[*core-modules*]: Add 'guile-json' to
the list of extensions.
|
|
* gnu/packages/algebra.scm (mpfrcx): Update to 0.6.1.
|
|
|
|
* gnu/packages/scheme.scm (bigloo): Update to 4.3g.
[source]: Remove bundled libunistring and pcre.
[arguments]: Add 'fix-gmp-detection' phase. Add options to 'configure' phase
to throw an error when gmp is not found.
|
|
* gnu/packages/bioinformatics.scm (bedtools): Update to 2.30.0,
[inputs]: Use latest samtools.
|
|
* gnu/packages/bioinformatics.scm (samtools): Update to 1.12.
|
|
* gnu/packages/bioinformatics.scm (bcftools): Update to 1.12.
|
|
* gnu/packages/bioinformatics.scm (htslib): Update to 1.12.
|
|
Kmscon may discover multiple inputs, corresponding to multiple devices. This
means that the uxkb_dev_keymap_update function may be called multiple times,
and the FIFO is registered on each input poll loop.
When a new layout is written on the FIFO by the installer, the first input
picking up the message, will apply the new layout. However, that input may not
be the input that the user is currently using.
To fix it, register the FIFO on the first input poll loop, but apply the new
layout on all the inputs in the uxkb_keymap_update_handler function.
* gnu/packages/patches/kmscon-runtime-keymap-switch.patch
(uxkb_keymap_update_handler): Apply the new layout to all the inputs.
(input_new_dev): Register the FIFO fd only on the first input poll loop.
|
|
* gnu/packages/cran.scm (r-qpcr): New variable.
|
|
* gnu/packages/haskell-apps.scm (git-annex): Update to 8.20210428.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
|
|
* gnu/packages/shells.scm (oil): Update to 0.8.10.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
|
|
* gnu/packages/python-xyz.scm (python-hissp): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
|
|
* gnu/packages/maths.scm (xaos): Update to 4.2.1.
[arguments]: Patch call to "lrelease" in XaoS.pro.
|
|
support for Pinebook Pro.
* gnu/packages/linux.scm (linux-libre-5.10-source): Add pinebook pro lcd patch.
(linux-libre-arm64-generic-5.10): Add audio and battery modules.
|
|
support for Pinebook Pro.
* gnu/packages/linux.scm (linux-libre-5.11-source): Add Pinebook Pro
lcd patch.
(linux-libre-arm64-generic): Enable audio and battery modules for
Pinebook Pro.
* gnu/packages/patches/linux-libre-arm64-generic-pinebook-lcd.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add patch.
|
|
* tests/inferior.scm ("inferior-package-inputs"): Compare with
GUILE-3.0-LATEST since that's what 'lookup-inferior-packages' returns.
|
|
* guix/diagnostics.scm (source-properties->location): Add clause for
vectors.
* guix/ui.scm (report-load-error): Tweak 'read-error' handling for 3.0.6.
* tests/guix-package.sh: Relax regexp for the "unbound variable"
diagnostic check.
* tests/guix-system.sh: Adjust "missing closing paren" check for 3.0.6.
* tests/records.scm (location-alist): New procedure.
("define-record-type* & wrong field specifier")
("define-record-type* & wrong field specifier, identifier")
("define-record-type* & duplicate initializers"): Use it.
|
|
* guix/packages.scm (package-with-patches): Preserve the 'location'
field of ORIGINAL.
|
|
* gnu/packages/emacs-xyz.scm (emacs-hyperbole)[arguments]: Include help file
and install images for the manual.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
|
* gnu/packages/emacs-xyz.scm (emacs-corfu): Update to 0.4.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
|
Fixes CVE-2021-{25214,25215,25216].
* gnu/packages/admin.scm (isc-dhcp)[inputs]: Update bundled BIND to 9.11.31.
|
|
CVE-2021-25216].
* gnu/packages/dns.scm (isc-bind): Update to 9.16.15.
|
|
* gnu/packages/linux.scm (linux-libre-4.4-version): Update to 4.4.268.
(linux-libre-4.4-pristine-source): Update hash.
|
|
* gnu/packages/linux.scm (linux-libre-4.9-version): Update to 4.9.268.
(linux-libre-4.9-pristine-source): Update hash.
|
|
* gnu/packages/linux.scm (linux-libre-4.14-version): Update to 4.14.232.
(linux-libre-4.14-pristine-source): Update hash.
|
|
* gnu/packages/linux.scm (linux-libre-4.19-version): Update to 4.19.189.
(linux-libre-4.19-pristine-source): Update hash.
|