| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
| |
Fixes: <https://issues.guix.gnu.org/47889>.
* gnu/installer/parted.scm (esp-partition?): Remove the MSDOS check.
(auto-partition!): On MSDOS disks, check if an ESP partition is present. If
that's the case, do not remove it. Otherwise, if UEFI is supported, create
one.
|
|
|
|
|
| |
* gnu/installer/newt/partition.scm (run-label-page): Force the GPT disk label
when UEFI is supported.
|
|
|
|
|
| |
* etc/release-manifest.scm (%base-packages/armhf): New variable.
(%base-manifest): Use it.
|
|
|
|
|
| |
* etc/release-manifest.scm (%base-manifest): Special-case
"powerpc64le-linux".
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fixes <https://bugs.gnu.org/39341>.
Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com>.
Until now, as soon as you had selected the keyboard layout in the
Guix System installer, kmscon would start spinning on epoll_wait(2)
calls because of an event on the initial FIFO file
descriptor (corresponding to the fact that the client closed it.)
* gnu/packages/patches/kmscon-runtime-keymap-switch.patch: In
'uxkb_keymap_update_handler', add calls to 'ev_eloop_rm_fd', 'close',
and 'uxkb_dev_keymap_update' In 'uxkb_dev_keymap_update', add call
to 'unlink'.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fixes <https://bugs.gnu.org/47713>.
Reported by bo0od <bo0od@riseup.net>.
This ensures applications such as IceCat can properly text (numbers in
the case of IceCat).
* gnu/packages/enlightenment.scm (enlightenment)[propagated-inputs]: Add
FONT-DEJAVU.
* gnu/packages/mate.scm (mate)[propagated-inputs]: New field.
* gnu/packages/xfce.scm (xfce)[propagated-inputs]: New field.
|
|
|
|
|
| |
* gnu/packages/xfce.scm (xfdesktop)[arguments]: In
'prepare-background-image' phase, add "xfce-verticals.png".
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Partly fixes <https://bugs.gnu.org/47867>.
Reported by Florian Pelz <pelzflorian@pelzflorian.de>.
The non-tail recursive call to 'connect' could cause requests to be
processed twice, with 'p' possibly closed the second time.
Regression introduced in 205833b72c5517915a47a50dbe28e7024dc74e57 and
carried over in 45fce38fb0b6c6796906149ade145b8d3594c1c6.
* guix/http-client.scm (http-multiple-get): Remove call to 'close-port'
and recursive call to 'connect' when the 'write-request' block returns #f.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Partly fixes <https://bugs.gnu.org/47867>.
Reported by Florian Pelz <pelzflorian@pelzflorian.de>.
In GnuTLS up to 3.7.1 included, GNUTLS_E_AGAIN and GNUTLS_E_INTERRUPTED
are not handled by 'write_to_session_record_port' and could be thrown at
the caller. This patch works around that by dropping connections
altogether and restarting when this happens.
* guix/http-client.scm (false-if-networking-error): Swallow ERROR/AGAIN
and ERROR/INTERRUPTED.
* guix/scripts/substitute.scm (call-with-cached-connection): Likewise.
|
|
|
|
| |
* doc/htmlxref.cnf: Fix translated manual URL.
|
|
|
|
|
|
|
|
|
| |
Fixes <https://bugs.gnu.org/47941>.
Reported by Jack Hill <jackhill@jackhill.us>.
* guix/cve.scm (reference-data->cve-references): Gracefully handle lack
of "reference_data".
(cpe-match->cve-configuration): Gracefully handle lack of "cpe23Uri".
|
|
|
|
|
|
| |
This is a followup to d95168321f4a9bf6857b598da0a183b45a868d54.
* po/guix/POTFILES.in: Remove guix/scripts/import/nix.scm.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This importer has suffered from bitrot and no longer works with current
Nix and Nixpkgs. See <https://bugs.gnu.org/32339> and
<https://bugs.gnu.org/36255>.
* guix/import/snix.scm, guix/scripts/import/nix.scm,
tests/snix.scm: Remove.
* Makefile.am (MODULES, SCM_TESTS): Remove them.
* guix/scripts/import.scm (importers): Remove "nix".
* build-aux/test-env.in: Remove NIXPKGS variable.
* configure.ac: Remove '--with-nixpkgs' option.
* doc/guix.texi (Invoking guix import): Remove bit about "guix import
nix".
* etc/completion/fish/guix.fish: Likewise.
|
|
|
|
|
|
|
|
|
| |
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/networking.scm (wireshark): Update to 3.4.5.
|
|
|
|
|
|
|
|
|
| |
Includes fixes for CVE-2021-23961, CVE-2021-23994, CVE-2021-23995,
CVE-2021-23998, CVE-2021-23999, CVE-2021-24002, CVE-2021-29945, and
CVE-2021-29946.
* gnu/packages/gnuzilla.scm (%icecat-version, %icecat-build-id): Update.
(icecat-source): Update upstream source hash.
|
|
|
|
|
|
|
|
|
| |
Previously, (read-partition-uuid "/does/not/exist") would return #f.
With this change, a 'system-error exception is raised as expected.
* gnu/build/file-systems.scm (ENOENT-safe): Clarify docstring.
(partition-field-reader): Remove use of 'ENOENT-safe'.
(partition-predicate): Wrap READER in 'ENOENT-safe'.
|
|
|
|
|
|
|
| |
Fixes <https://bugs.gnu.org/47924>.
Reported by Carl Dong <contact@carldong.me>.
* guix/import/go.scm: Autoload (htmlprag).
|
|
|
|
|
|
|
|
|
|
| |
This avoids interference with other users of (htmlprag) and makes the
intent clearer.
* guix/import/go.scm <top level>: Remove call to '%strict-tokenizer?'.
(go-package-licenses, go-package-description)
(go-package-synopsis, fetch-module-meta-data): Pass #:strict? #t to
'html->sxml'.
|
|
|
|
|
| |
* configure.ac: Check if the Guile-Lib module is present and recent enough and
warn in case it isn't.
|
|
|
|
|
|
|
|
|
|
| |
Not ignoring these in the tree leads to the next generated version (.version)
being suffixed with '-dirty', which confuses things.
* .gitignore [/guix-*]: New pattern.
[/doc/stamp-[0-9]]: Adjust to ...
[/doc/stamp-*]: ... this.
[/release-*]: New pattern.
|
|
|
|
|
|
|
|
| |
These older system actions are deprecated and cause warnings to be emitted.
* Makefile.am (release) <guix system disk-image>
<guix system vm-image>: Replace by...
<guix system image>: ... this. Specify the type of the VM image as qcow2.
|
|
|
|
|
|
|
| |
Fixes <https://bugs.gnu.org/47808>.
Reported by Bone Baboon <bone.baboon@disroot.org>.
* gnu/packages/guile.scm (guile-git): Update to 0.5.1.
|
|
|
|
|
|
|
| |
These files are automatically-extracted templates rather than source, hence
shouldn't be checked in.
* .gitignore: Add a glob pattern to ignore .pot files.
|
|
|
|
|
|
|
|
| |
Otherwise 'make dist' would fail with the message: "No rule to make target
'po/doc/guix-manual.pot', needed by 'distdir-am'. Stop.".
* Makefile.am (dist) <doc-po-update>: Add prerequisite.
(dist-hook) <doc-po-update>: Remove prerequisite.
|
|
|
|
|
|
|
|
|
|
| |
A number of packages doesn't really make sense in the name of the section to
be substituted. This change allows using simply '*** new packages' instead of
'*** 1999 new packages', for example, and have the update-NEWS.scm script
update it.
* build-aux/update-NEWS.scm (write-packages-added) <regexp>: Do not care about
leading white space in the name of the section.
|
|\ |
|
| |
| |
| |
| |
| |
| |
| | |
* gnu/packages/tls.scm (gnutls)[source]: Add 'gnutls-CVE-2021-20231.patch' and
'gnutls-CVE-2021-20232.patch'.
[replacement]: Remove field.
(gnutls/fixed): Remove variable.
|
| |
| |
| |
| |
| |
| |
| | |
* gnu/packages/python.scm (python-3.8)[source]: Add
'python-3.8-CVE-2021-3177.patch'.
[replacement]: Remove field.
(python-3.8/fixed): Remove variable.
|
| |
| |
| |
| |
| |
| |
| | |
* gnu/packages/python.scm (python-2.7)[source]: Add
'python-2.7-CVE-2021-3177.patch'.
[replacement]: Remove field.
(python-2.7/fixed): Remove variable.
|
| |
| |
| |
| |
| |
| |
| | |
* gnu/packages/cyrus-sasl.scm (cyrus-sasl)[source]: Use
cyrus-sasl-CVE-2019-19906.patch.
[replacement]: Remove field.
(cyrus-sasl/fixed): Remove variable.
|
| |
| |
| |
| |
| |
| | |
* gnu/packages/gnome.scm (libcroco)[source]: Use libcroco-CVE-2020-12825.patch.
[replacement]: Remove field.
(libcroco/fixed): Remove variable.
|
| |
| |
| |
| |
| |
| |
| | |
* gnu/packages/gtk.scm (cairo)[source]: Use cairo-CVE-2018-19876.patch
and cairo-CVE-2020-35492.patch.
[replacement]: Remove field.
(cairo/fixed): Remove variable.
|
| |
| |
| |
| |
| |
| |
| | |
* gnu/packages/gtk.scm (gdk-pixbuf)[source]: Use
gdk-pixbuf-CVE-2020-29385.patch.
[replacement]: Remove field.
(gdk-pixbuf/fixed): Remove variable.
|
| |
| |
| |
| |
| |
| | |
* gnu/packages/tls.scm (openssl): Update to 1.1.1j.
[replacement]: Remove field.
(openssl/fixed): Remove variable.
|
| |
| |
| |
| | |
* po/doc/local.mk: zh_Hans is for the cookbook, not the manual.
|
| |
| |
| |
| |
| |
| | |
The po file is no longer available.
* po/packages/LINGUAS: Remove 'vi'.
|
| |
| |
| |
| |
| |
| | |
* gnu/packages/irc.scm (kirc): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
|
| |
| |
| |
| | |
* gnu/packages/audio.scm (libopenmpt): Update to 0.5.8.
|
| |
| |
| |
| | |
* gnu/packages/samba.scm (cifs-utils): Update to 6.13.
|
| |
| |
| |
| | |
* gnu/packages/python-build.scm (python-poetry-core): Update to 1.0.3.
|
| |
| |
| |
| | |
* gnu/packages/perl.scm (perl-pdf-api2): Update to 2.040.
|
| |
| |
| |
| | |
* gnu/packages/javascript.scm (mujs): Update to 1.1.1.
|
| |
| |
| |
| | |
* gnu/packages/messaging.scm (psi-plus): Update to 1.5.1484.
|
| |
| |
| |
| | |
* gnu/packages/python-web.scm (python-webtest): Update to 2.0.35.
|
| |
| |
| |
| | |
* gnu/packages/engineering.scm (poke): Update to 1.2.
|
| |
| |
| |
| | |
* doc/build.scm (%languages): Add 'fr' cookbook translation.
|
| |
| |
| |
| |
| |
| |
| | |
* gnu/packages/python-xyz.scm (python-lfdfiles) [source]: Remove
pre-generated C files.
[native-inputs]: Add python-cython.
[arguments]: Disable tests.
|
| | |
|
| |
| |
| |
| |
| |
| | |
* po/doc/guix-cookbook.zh_Hans.po: New file.
* doc/local.mk (info_TEXINFOS): Add it.
* po/doc/local.mk (DOC_COOKBOOK_PO_FILES): Add it.
|