Commit graph

77905 commits

Author SHA1 Message Date
Tobias Geerinckx-Rice 026a16ff0d
gnu: squid: Update to 4.15.
* gnu/packages/networking.scm (squid): Update to 4.15.
2021-05-13 00:32:22 +02:00
Tobias Geerinckx-Rice 79b9131234
gnu: svt-av1: Update to 0.8.7.
* gnu/packages/video.scm (svt-av1): Update to 0.8.7.
2021-05-13 00:32:21 +02:00
Tobias Geerinckx-Rice bd1c5fe46b
gnu: snappy: Update to 1.1.9.
* gnu/packages/compression.scm (snappy): Update to 1.1.9.
[source]: Add another patch.
[arguments]: Add new #:configure-flags and an
'unpack-third_party-subprojects phase.
[native-inputs]: Add the sources for benchmark and googletests.
* gnu/packages/patches/snappy-add-inline-for-GCC.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
2021-05-13 00:32:21 +02:00
Tobias Geerinckx-Rice c9c274172b
gnu: qjackctl: Build with CMake.
It is better supported upstream.

* gnu/packages/audio.scm (qjackctl)[build-system]: Switch to
CMAKE-BUILD-SYSTEM.
2021-05-13 00:32:21 +02:00
Tobias Geerinckx-Rice fe795eeb2d
gnu: qjackctl: Update to 0.9.3.
* gnu/packages/audio.scm (qjackctl): Update to 0.9.3.
2021-05-13 00:32:21 +02:00
Tobias Geerinckx-Rice c36ef82054
gnu: ccache: Update to 4.3.
* gnu/packages/ccache.scm (ccache): Update to 4.3.
2021-05-13 00:32:20 +02:00
Tobias Geerinckx-Rice f5a0c6baba
gnu: libjcat: Update to 0.1.7.
* gnu/packages/compression.scm (libjcat): Update to 0.1.7.
2021-05-13 00:32:20 +02:00
Tobias Geerinckx-Rice 6fccdb55bd
gnu: Add xfstests.
* gnu/packages/file-systems.scm (xfstests): New public variable.
2021-05-13 00:32:20 +02:00
Vinicius Monego 7fb7384134
gnu: pre-commit: Update to 2.12.1.
* gnu/packages/version-control.scm (pre-commit): Update to 2.12.1.
[arguments]: Make source tree writable and initialize a git repository before
check phase. Simplify check phase.
[native-inputs]: Add python-covdefaults, python-coverage, python-distlib/next,
python-pytest-env, which.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-05-13 00:19:58 +02:00
Ludovic Courtès 3cde5231aa
challenge: Be defensive in the size passed to the progress reporter.
Possibly fixes <https://bugs.gnu.org/48045>.
Reported by Bone Baboon <bone.baboon@disroot.org>.

* guix/scripts/challenge.scm (call-with-nar): Rename second value
returned by 'http-fetch' to match reality.  Change second argument to
'progress-reporter/file'.
2021-05-13 00:19:58 +02:00
Ludovic Courtès 0aef94e7bc
self: Build with 'guile-3.0-latest'.
* guix/self.scm (specification->package): Use 'guile-3.0-latest' instead
of 'guile-3.0/libgc-7'.
2021-05-13 00:19:58 +02:00
Ludovic Courtès 47d48f0c43
gnu: guile: Update to 3.0.7.
* gnu/packages/guile.scm (guile-3.0-latest): Update to 3.0.7.  Remove
"guile-2.2-skip-so-test.patch".
[propagated-inputs, arguments]: New fields.
2021-05-13 00:19:58 +02:00
Ludovic Courtès 3320b70f4d
gnu: libgc: Add variant with '--disable-munmap'.
* gnu/packages/bdw-gc.scm (libgc/disable-munmap): New variable.
2021-05-13 00:19:58 +02:00
Leo Famulari d6aeebb236
gnu: linux-libre 5.4: Update to 5.4.118.
* gnu/packages/linux.scm (linux-libre-5.4-version): Update to 5.4.118.
(linux-libre-5.4-pristine-source): Update hash.
2021-05-12 15:27:38 -04:00
Leo Famulari 78922668bc
gnu: linux-libre 5.10: Update to 5.10.36.
* gnu/packages/linux.scm (linux-libre-5.10-version): Update to 5.10.36.
(linux-libre-5.10-pristine-source): Update hash.
2021-05-12 15:27:35 -04:00
Tobias Geerinckx-Rice 1f685684a0
gnu: sudo: Update to 1.9.7.
* gnu/packages/admin.scm (sudo): Update to 1.9.7.
2021-05-12 18:50:49 +02:00
Maxim Cournoyer 55aa50834f
doc: Do not instruct to decompress the VM image.
Also replace the obsolete 'guix system vm-image' command mention by the 'guix
system image'.

* doc/guix.texi (Running Guix in a VM): Remove VM image decompression
instruction.
<guix system vm-image>: Replace by 'guix system image'.
2021-05-12 10:22:38 -04:00
BonfaceKilz f8a4724c10
gnu: Add python-sqlalchemy-stubs.
* gnu/packages/databases.scm (python-sqlalchemy-stubs): New variable.

Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
2021-05-12 16:12:24 +05:30
Christopher Baines 34985fb6ae
channels: Add a #:system argument to channel-instances->manifest.
This allows computing a manifest for a specific system. Previously this was
possible, but only through changing %current-system, which caused the
derivation to be computed using that system as well (so computing a derivation
for aarch64-linux on x86_64-linux would require running aarch64-linux code).

This new argument adds the possibility of computing derivations for non-native
systems, without having to run non-native code.

I'm looking at this as it will enable the Guix Data Service to compute channel
instance derivations without relying on QEMU emulation for non-native
systems (it should be faster as well).

* guix/channels.scm (build-from-source): Add #:system argument and pass to
build.
(build-channel-instance): Add system argument and pass to build-from-source.
(channel-instance-derivations): Add #:system argument and pass to
build-channel-instance, also rename system to current-system-value.
(channel-instances->manifest): Add #:system argument and pass to
channel-instance-derivations.
2021-05-12 08:34:07 +01:00
Maxim Cournoyer b7cbca221f
Merge branch 'version-1.3.0' 2021-05-11 22:42:59 -04:00
Raghav Gururajan c80627731b
gnu: Add remmina.
* gnu/packages/vnc.scm (remmina): New variable.
2021-05-11 18:24:48 -04:00
Raghav Gururajan 8f9fdd31bd
gnu: Add giara.
* gnu/packages/syndication.scm (giara): New variable.
* gnu/packages/patches/giara-fix-login.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
2021-05-11 18:07:09 -04:00
Maxim Cournoyer fb5d04d363
gnu: guix: Update to 771b866. 2021-05-11 16:27:17 -04:00
Greg Hogan 7e863ecd3c
gnu: python-networkx: Update to 2.5.1.
* gnu/packages/python-xyz.scm (python-networkx): Update to 2.5.1.

Signed-off-by: Leo Famulari <leo@famulari.name>
2021-05-11 15:54:32 -04:00
Maxim Cournoyer 771b866c55
gnu: guix: Update to 1.3.0. 2021-05-11 14:15:04 -04:00
Z572 bb29c26572
gnu: emacs-rime: Adjust to changes in emacs-build-system.
* gnu/packages/emacs-xyz.scm (emacs-rime):[arguments]: Use #:include rather
than #:phases to add librime-emacs.so.

Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>
2021-05-11 19:30:31 +02:00
raid5atemyhomework a3df382525
gnu: Allow services to install kernel-loadable modules.
* gnu/system.scm (operating-system-directory-base-entries): Remove code
to handle generation of "kernel" for linux-libre kernels.
(operating-system-default-essential-services): Instantiate
linux-builder-service-type.
(package-for-kernel): Move ...
* gnu/services.scm: ... to here.
(linux-builder-service-type): New variable.
(linux-builder-configuration): New type.
(linux-loadable-module-service-type): New variable.
* gnu/tests/linux-modules.scm (run-loadable-kernel-modules-test): Move
code to ...
(run-loadable-kernel-modules-test-base): ... new procedure here.
(run-loadable-kernel-modules-service-test): New procedure.
(%test-loadable-kernel-modules-service-0): New variable.
(%test-loadable-kernel-modules-service-1): New variable.
(%test-loadable-kernel-modules-service-2): New variable.
* doc/guix.texi: Document linux-loadable-module-service-type.

Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
2021-05-11 16:13:48 +02:00
Maxim Cournoyer a0178d34f5
nls: Update translations. 2021-05-11 09:17:00 -04:00
Efraim Flashner bddad00bff
gnu: Add ruby-yaml-lint.
* gnu/packages/ruby.scm (ruby-yaml-lint): New variable.
2021-05-11 13:51:40 +03:00
Efraim Flashner ee559bca27
gnu: Add ruby-hkdf.
* gnu/packages/ruby.scm (ruby-hkdf): New variable.
2021-05-11 13:51:40 +03:00
Greg Hogan e54d188955
gnu: python-pycurl: Migrate uri from bintray.
* gnu/packages/python-web.scm (python-pycurl)[source]: Download from pypi.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-05-11 12:49:54 +02:00
Greg Hogan 74f83a1dee
gnu: boost: Migrate uri from bintray.
* gnu/packages/boost.scm (boost)[source]: Download from jfrog.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-05-11 12:49:53 +02:00
Ludovic Courtès da28efef36
ssh: Fix type that broke offloading.
Reported by Simon Streit <simon@netpanic.org>.
Regression introduced in 3270308eeb.

* guix/ssh.scm (remote-daemon-channel)[redirect]: Unquote SOCKET-NAME.
2021-05-11 12:49:53 +02:00
Sharlatan Hellseher a232a40b00
gnu: Add cl-trivial-main-thread.
* gnu/packages/lisp-xyz.scm (sbcl-trivial-main-thread,
  ecl-trivial-main-thread, cl-trivial-main-thread): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
2021-05-11 10:15:38 +02:00
Sharlatan Hellseher 4a1fd4a537
gnu: Add cl-simple-tasks.
* gnu/packages/lisp-xyz.scm (sbcl-simple-tasks, ecl-simple-tasks,
  cl-simple-tasks): New packages.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
2021-05-11 10:06:53 +02:00
Sharlatan Hellseher a2aa8ac551
gnu: Add cl-glsl-toolkit.
* gnu/packages/lisp-xyz.scm (sbcl-glsl-toolkit, ecl-glsl-toolkit,
  cl-glsl-toolkit): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
2021-05-11 10:01:44 +02:00
Sharlatan Hellseher df07ecbac6
gnu: Add cl-messagebox.
* gnu/packages/lisp-xyz.scm (sbcl-messagebox, ecl-messagebox,
  cl-messagebox): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
2021-05-11 09:39:56 +02:00
Maxim Cournoyer 21fcced608
nls: Update translations. 2021-05-10 22:34:43 -04:00
Maxim Cournoyer abff6f0fac
.gitignore: Ignore .mo files.
* .gitignore: Ignore files matching the *.mo pattern.
2021-05-10 22:33:08 -04:00
Maxim Cournoyer 63d26e81ee
nls: New nl and oc translations for the 'packages' component.
* po/packages/nl.po: New file.
* po/packages/oc.po: Likewise.
* po/packages/LINGUAS: Register them.
2021-05-10 22:27:53 -04:00
Maxim Cournoyer b507a0e38c
nls: New oc and si translations for the 'guix' component.
* po/guix/oc.po: New file.
* po/guix/si.po: Likewise.
* po/guix/LINGUAS: Register them.
2021-05-10 22:25:36 -04:00
Maxim Cournoyer 80dc6ad4a8
Update NEWS. 2021-05-10 13:48:30 -04:00
Maxim Cournoyer ed2d4d52dd
maint: update-NEWS: Sort packages prior writing to the data file.
* build-aux/update-NEWS.scm (main): Sort packages.
2021-05-10 13:48:02 -04:00
Leo Famulari 7418a20074
Update NEWS. 2021-05-10 11:21:02 -04:00
Efraim Flashner 87b4b0e438
gnu: tor: Update to 0.4.5.8.
* gnu/packages/tor.scm (tor): Update to 0.4.5.8.
2021-05-10 18:20:15 +03:00
Maxim Cournoyer 945ad48cd8
system: vm-image.tmpl: Add a crutch to allow refreshing the resolution.
Inspired by
1270b2e209.
The price to pay is about 5% of a CPU core usage in the guest in the worst
scenario.

* gnu/system/examples/vm-image.tmpl
(auto-update-resolution-crutch): New mcron job.
[services]: Extend the mcron-service with it.
2021-05-10 10:18:19 -04:00
Philip McGrath b12bb7d297
gnu: racket: Update to 8.1.
* gnu/packages/racket.scm (racket-minimal): Update to 8.1.
[arguments](#:phases): Remove 'patch-chez-configure: fixes applied upstream.
(racket): Update to 8.1.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2021-05-10 15:51:48 +03:00
Zelphir Kaltstahl 767c3df815
gnu: Add guile-fslib.
* gnu/packages/guile-xyz.scm (guile-fslib): New variable.
2021-05-10 12:09:40 +02:00
Ludovic Courtès 3a0fcaa0fe
Update NEWS. 2021-05-10 11:42:03 +02:00
Roel Janssen ce3d05cc08
guix: scripts system: Increase the size for generating Docker container images.
* guix/scripts/system.scm: Override the default of 256.
2021-05-10 09:43:12 +02:00