summary refs log tree commit diff
AgeCommit message (Collapse)Author
2022-09-05gnu: rust-csv-1: Update to 1.1.6.Ricardo Wurmus
* gnu/packages/crates-io.scm (rust-csv-1): Update to 1.1.6.
2022-09-04gnu: Add wmamixer.Jessica Tallon
* gnu/packages/gnustep.scm (wmamixer): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: texlive-caption: Fix description.Wiktor Żelazny
* gnu/packages/tex.scm (texlive-caption): Update description. [description]: newfloat.sty and totalcount.sty are not in the package. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: Add texlive-latex-hyphenat.Wiktor Żelazny
* gnu/packages/tex.scm (texlive-latex-hyphenat): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: hashcat: Fix cross-compilation.Maxime Devos
* gnu/packages/password-utils.scm (hashcat)[native-inputs]: Move to ... (hashcat)[inputs]: ... here. (hashcat)[arguments]<#:make-flags>: Set AR and CC. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: hashcat: Rewrite with G-exps.Maxime Devos
This is required for cross-compilation, as %output does not exist when cross-compiling. * gnu/packages/password-utils.scm (hashcat)[arguments]: Rewrite with G-exps. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: hashcat: Unbundle everything but LZMA-SDK.Maxime Devos
There does not appear to be a convenient Guix package for LZMA-SDK yet. I currently have a bit of a dirty working tree (fiddling with imports), so the use-modules is in the wrong place. Also, a small rebase conflict, the version and source hash of hashcat has been updated. * gnu/packages/password-utils.scm (hashcat)[source]{snippet}: Delete everything from deps except for deps/LZMA-SDK. (hashcat)[inputs]: Add minizip, xxhash and zlib. (hashcat)[arguments]<#:make-flags>: Add USE_SYSTEM_ZLIB, USE_SYSTEM_OPENCL and USE_SYSTEM_XXHASH. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: hashcat: Don't embed timestamp, fixing reproducibility.Maxime Devos
* gnu/packages/password-utils.scm (hashcat)[arguments]{#:phases}: Remove timestamp, fixing reproducibility. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: racket: Use Racket CS on all systems.Philip McGrath
This patch uses the 'pbarch' support added to 'racket-vm-cs' to make it the default Racket VM implementation on all systems. * gnu/packages/racket.scm (racket-vm-for-system): Remove. (racket-minimal, racket)[inputs]: Replace '(racket-vm-for-system)' with 'racket-vm-cs'. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: racket-vm-bc: Add workaround for ppc64le.Philip McGrath
This is an attempt to avoid a problem with Racket BC on ppc64 reported in <https://issues.guix.gnu.org/57050#19> that was exposed by attempting to use Racket BC to bootstrap Chez Scheme. Thanks to Matthew Flatt for the workaround: <https://racket.discourse.group/t/950/30>. * gnu/packages/racket.scm (racket-vm-bc)[arguments]<#:configure-flags>: Increase the number of bytes that should be available on the stack for "safety" when checking for stack overflow. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: chez-scheme-for-racket: Support all systems.Philip McGrath
On systems for which Racket's variant of Chez Scheme cannot generate native code, it can use a 'pbarch' machine type: a variant of the ``portable bytecode'' backend specialized to word size and endianness. This allows Racket CS to replace Racket BC on those systems while maintaining comparable performance. (Racket BC lacks JIT support for those systems anyway.) It also lets us provide a Chez Scheme package on all systems Guix supports. This patch adds 'pbarch' support to both 'chez-scheme-for-racket' and 'racket-vm-cs', but it does not change the Racket VM implementation used for the 'racket' and 'racket-minimal' packages. * gnu/packages/chez.scm (nix-system->pbarch-machine-type): New variable. (chez-scheme-for-racket)[inputs]: Use 'libffi' for non-native systems. [arguments]<#:configure-flags>: Always supply '-m='. Add applicable flags for non-native systems. [supported-systems]: Use '%supported-systems'. [description]: Update. (chez-scheme-for-racket-bootstrap-bootfiles)[arguments]<#:phases>: Adapt 'build' phase for non-native systems. * gnu/packages/racket.scm (racket-vm-bc)[description]: Update. (racket-vm-cs)[description]: Likewise. [inputs]: Use 'libffi' for non-native systems. [arguments]<#:configure-flags>: Add applicable flags for non-native systems. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: racket: Support cross-compiling the VM packages.Philip McGrath
Cross-compilation works for 'racket-vm-cgc', 'racket-vm-bc', and 'racket-vm-cs'. These changes are not enough to cross-compile 'racket-minimal' or 'racket': that would require building and loading cross-compilation pluggins for 'racket-vm-cs', which will be much easier once we can build the package 'raco-cross'. * gnu/packages/racket.scm (racket-vm-cgc): Add 'this-package' when cross-compiling. (racket-vm-bc)[native-inputs]: Adjust accordingly. (racket-vm-cs)[native-inputs]: Use 'racket-vm-cs' instead of 'racket-vm-bc' when cross-compiling. Adapt to changes to 'racket-vm-cgc'. [arguments]<#:configure-flags>: Fix '--enable-scheme' for cross-compilation. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: chez-scheme-for-racket: Support cross-compilation.Philip McGrath
* gnu/packages/chez.scm (racket-cs-native-supported-system): Change to return the applicable machine type instead of '#t'. (chez-scheme-for-racket)[native-inputs]: When cross-compiling, add 'this-package'. [arguments]<#:configure-flags>: When cross-compiling, supply '-m=' and '--toolprefix='. <#:phases>: Work around cross-compilation issues in 'build' and 'install-docs'. (chez-scheme-for-racket-bootstrap-bootfiles): When cross-compiling, use 'zuo' and 'chez-scheme-for-racket' instead of 'racket-vm-bc'. [arguments]<#:phases>: Adapt 'build' phase for cross-compilation. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: chez-scheme: Make bootfiles regular inputs.Philip McGrath
* gnu/packages/chez.scm (chez-scheme)[native-inputs]: Move 'chez-scheme-bootstrap-bootfiles' to ... [inputs]: ... this field. [arguments]<#:phases>: Update 'unpack-bootfiles' accordingly. (chez-scheme-for-racket)[native-inputs]: Move 'chez-scheme-for-racket-bootstrap-bootfiles' to ... [inputs]: ... this field. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: racket: Update to 8.6.Philip McGrath
Also, update 'chez-scheme-for-racket' to 9.5.9.2. * gnu/packages/patches/racket-chez-scheme-bin-sh.patch: Refresh patch. * gnu/packages/patches/racket-backport-8.6-cross-install.patch, gnu/packages/patches/racket-backport-8.6-docindex-write.patch, gnu/packages/patches/racket-backport-8.6-hurd.patch: New patches. * gnu/local.mk (dist_patch_DATA): Add them. * gnu/packages/racket.scm (%racket-origin)[patches]: Use them and the patches for Zuo. (%racket-version): Update to 8.6. (zuo)[version]: Refer to '%racket-version'. [origin]: Use '%racket-origin'. (racket-vm-cgc)[native-inputs]: Add 'zuo'. [arguments]<#:make-flags>: Use 'zuo' from 'native-inputs'. (racket)[inputs]<data, db, deinprogramm, draw, drracket, errortrace, gui, htdp, math, option-contract, parser-tools, pict, rackunit, realm, redex, scribble, typed-racket, string-constants, swindle, syntax-color, web-server>: Update checksums. * gnu/packages/chez.scm (target-chez-os): Handle Hurd and QNX. (%chez-features-table): Likewise. (chez-scheme-for-racket): Update to 9.5.9.2. [native-inputs]: Add 'zuo'. [arguments]<#:out-of-source?>: Use out-of-source build. <#:tests?>: Skip them due to ongoing problems. <#:configure-flags>: Add '--install-csug=' and '--installreleasenotes='. <#:make-flags>: Use 'zuo' from 'native-inputs'. Supply 'STEXLIB=' here, rather than in a phase. <#:phases>: Replace 'install-docs' using new 'make' target. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: Add Zuo.Philip McGrath
* gnu/packages/patches/racket-backport-8.6-zuo.patch, gnu/packages/patches/racket-zuo-bin-sh.patch: New patches. * gnu/local.mk (dist_patch_DATA): Add them. * gnu/packages/racket.scm (%zuo-version): New variable. (zuo): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: chez-scheme: Fix use of "/bin/sh".Philip McGrath
The unsuccessful attempt to execute "/bin/sh" by Chez Scheme's 'process' function seems to have caused parts of the Chez Scheme test suite to have been silently skipped. The issue was exposed by the upcoming changes to Racket's build system. * gnu/packages/patches/chez-scheme-bin-sh.patch, gnu/packages/patches/racket-chez-scheme-bin-sh.patch: New patches. * gnu/local.mk (dist_patch_DATA): Add them. * gnu/packages/racket.scm (%racket-origin)[patches]: Update accordingly. * gnu/packages/chez.scm (chez-scheme)[origin]<patches>: Likewise. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: racket: Adjust patch for "/bin/sh" in rktio.Philip McGrath
Use '_PATH_BSHELL' instead of a custom preprocessor macro. This may not be The Right Thing in the long term, but it at least avoids a proliferation of 'CPPFLAGS'. * gnu/packages/patches/racket-minimal-sh-via-rktio.patch: Rename to ... * gnu/packages/patches/racket-rktio-bin-sh.patch: ... this, and change to use '_PATH_BSHELL'. * gnu/local.mk (dist_patch_DATA): Update accordingly. * gnu/packages/racket.scm (%racket-origin)[patches]: Likewise. (racket-vm-common-configure-flags): Stop setting 'CPPFLAGS'. Change to a constant instead of a function, since we no longer need the delay. (racket-vm-cgc, racket-vm-bc, racket-vm-cs)[arguments]<#:configure-flags>: Update accordingly. [inputs]: Remove 'bash-minimal'. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04etc: teams: Add entry for Philip McGrath.Philip McGrath
* etc/teams.scm.in ("Philip McGrath"): New member. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04etc: teams: Add racket team.Philip McGrath
* etc/teams.scm.in (racket): New team. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: stex: Fix read-only gifs and math directories.Philip McGrath
Excplicitly set the user write bit when initializing the gifs or math directories from the skeletons installed in the store. See also upstream discussion at <https://github.com/dybvig/stex/pull/6>. This problem would be exposed by the upcoming changes to Racket's build system. * gnu/packages/patches/stex-copy-from-immutable-store.patch: New patch. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/chez.scm (stex-bootstrap)[patches]: Use it. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04gnu: stex: Update to 1.2.2-2.afa6075.Philip McGrath
* gnu/packages/chez.scm (stex-bootstrap): Update to 1.2.2-2.afa6075. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-09-04guix system: Do not use 'vm-image.tmpl' in tests.Ludovic Courtès
This is a followup to 95a03aa5c507d48e2cde19ea007b8f90a4e0108a. Since that commit, merely evaluating 'vm-image.tmpl' would trigger the build of 'current-guix' so skip it. * tests/guix-system.sh: Do not try to build 'vm-image.tmpl'.
2022-09-04guix describe: Adjust test to latest changes.Ludovic Courtès
This is a followup to 64a070717c3de32332201df5d6d2d52a7f99dce9. * tests/guix-describe.sh: Add trailing slash when checking URL.
2022-09-04store: Open daemon connections with SOCK_CLOEXEC.Ludovic Courtès
Previously, 'guix shell' for example would leak the socket that's connected to the daemon. * guix/store.scm (open-unix-domain-socket, open-inet-socket): Pass SOCK_CLOEXEC to 'socket'. * tests/guix-shell.sh: Add test.
2022-09-04store: Remove unused variable and 'socket' call.Ludovic Courtès
* guix/store.scm (open-inet-socket): Remove unused 'sock' variable.
2022-09-04services: upower: Default to a percentage-based policy.Ludovic Courtès
This is the documented default of UPower 0.99.15 (the actual default appears to be #f though). * gnu/services/desktop.scm (<upower-configuration>) [use-percentage-for-policy?]: Default to #t. * doc/guix.texi (Desktop Services): Adjust accordingly. Explain the tradeoff.
2022-09-04services: upower: Update default percentage values.Ludovic Courtès
These values are those used by default by UPower 0.99.15. * gnu/services/desktop.scm (<upower-configuration>)[percentage-low] [percentage-critical]: Increase. * doc/guix.texi (Desktop Services): Update accordingly.
2022-09-04gnu: scintilla: Update to 5.3.0.Nicolas Goaziou
* gnu/packages/text-editors.scm (scintilla): Update to 5.3.0.
2022-09-04gnu: emacs-autothemer: Update to 0.2.12.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-autothemer): Update to 0.2.12. [description]: Add missing final full stop.
2022-09-04gnu: f3d: Update to 1.3.0-pre-0.46df21f.Paul A. Patience
* gnu/packages/graphics.scm (f3d): Update to 1.3.0-pre-0.46df21f. [source](modules, snippet): New fields. [arguments]<#:configure-flags>: Generate manual page, install various resource files, and enable the now-optional external rendering feature. [native-inputs]: New field. [synopsis]: Add hyphen. [description]: Reword. Signed-off-by: Christopher Baines <mail@cbaines.net>
2022-09-04gnu: erlang: Update to 25.0.4.Cees de Groot
* gnu/packages/erlang.scm (erlang): Update to 25.0.4. Signed-off-by: Christopher Baines <mail@cbaines.net>
2022-09-04gnu: elixir: Update to 1.14.0.Cees de Groot
* gnu/packages/elixir.scm (elixir): Update to 1.14.0. Signed-off-by: Christopher Baines <mail@cbaines.net>
2022-09-04gnu: foot: Update to 1.13.1.kiasoc5
* gnu/packages/terminals.scm (foot): Update to 1.13.1. Signed-off-by: Christopher Baines <mail@cbaines.net>
2022-09-04gnu: xmobar: Update to 0.44.2.gyara
* gnu/packages/wm.scm (xmobar): Update to 0.44.2. Signed-off-by: Christopher Baines <mail@cbaines.net>
2022-09-04gnu: Add cl-portable-condition-system.jgart
* gnu/packages/lisp-xyz.scm (cl-portable-condition-system): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
2022-09-04gnu: shotwell: Update to 0.30.16.Christopher Baines
* gnu/packages/gnome.scm (shotwell): Update to 0.30.16.
2022-09-04gnu: Remove duplicate package.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-inheritenv): Remove duplicate package introduced in 21f6026574b0e93f52176b9d20f9a6188f8a5066.
2022-09-04gnu: ding: Update to 1.9.Hendursaga
* gnu/packages/dictionaries.scm (ding): Update to 1.9. [source]: Switch to HTTPS. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2022-09-04gnu: xfce4-notifyd: Update to 0.6.4.Michael Rohleder
* gnu/packages/xfce.scm (xfce4-notifyd): Update to 0.6.4. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2022-09-04gnu: lesspipe: Update to 2.06.Michael Rohleder
* gnu/packages/less.scm (lesspipe): Update to 2.06. [arguments]: Fixed typos in comment. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2022-09-04Fix misspelling of GUIX_DIGITAL_OCEAN_TOKEN.Matthew James Kraai
* gnu/machine/digital-ocean.scm (maybe-raise-missing-api-key-error): Fix misspelling of GUIX_DIGITAL_OCEAN_TOKEN. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2022-09-04gnu: Add emacs-engrave-faces.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-engrave-faces): New variable.
2022-09-04gnu: guile2.2-ics: Update to 0.3.0Artyom V. Poptsov
* gnu/packages/guile-xyz.scm (guile2.2-ics): Update to 0.3.0. [package-inputs]: Replace "guile-smc" with "guile2.2-smc". [propagated-inputs]: Use the new style. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2022-09-04gnu: Add guile2.2-smcArtyom V. Poptsov
* gnu/packages/guile-xyz.scm (guile2.2-smc): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2022-09-04gnu: guile-ics: Update to 0.3.0.Artyom V. Poptsov
* gnu/packages/guile-xyz.scm (guile-ics): Update to 0.3.0. [phases]: Remove "strip" phase. [propagated-inputs]: Add "guile-smc". Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
2022-09-04nls: Update translations.Julien Lepiller
2022-09-04gnu: opendht: Update to 2.4.10.Olivier Dion via Guix-patches via
* gnu/packages/networking.scm (opendht): Update to 2.4.10. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
2022-09-04gnu: gitolite: Switch to git-minimal to reduce closure size.David Thompson
* gnu/packages/version-control.scm (gitolite)[inputs]: Swap 'git' for 'git-minimal'. [arguments]: Refer to 'git-minimal' input instead of 'git'.
2022-09-04gnu: gitolite: Wrap programs instead of using propagated inputs.David Thompson
* gnu/packages/version-control.scm (gitolite)[arguments]: Add git to wrapped $PATH and additionally wrap gitolite-shell. [inputs]: Add git and openssh. [propagated-inputs]: Remove it.