summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-05-14gnu: go-1.22: Disable flakey tests.wip-gnome-teamKatherine Cox-Buday
* gnu/packages/golang.scm (go-1.22): Disable flakey tests. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Change-Id: Iae54b66ca9e330a8a6fafdba23869fccf875aab4
2024-05-14gnu: go-1.22: Update to 1.22.2.Brennan Vincent
* gnu/packages/golang.scm (go-1.22): Update to 1.22.2. Change-Id: I2f30d9d851e97399be771e878a9158b56ff08e1b Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-05-14gnu: go-1.22: Update to 1.22.1.Brennan Vincent
* gnu/packages/golang.scm (go-1.22): Update to 1.22.1. Change-Id: I4c007f43448b391dfa53c932b6adf8622efc9e43 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-05-14build/go: Use trimpath go flag.Ekaitz Zarraga
Go 1.13 introduced[1] a new "trimpath" flag in charge of removing the references to the go toolchain in the produced ELFs. We used to remove these references using the "remove-go-reference" function. This function was executed after go install. By using this new trimpath flag, we don't have to remove any store path from the ELFs produced by go install. We're not using any go older than 1.13 anymore, it's safe to remove these functions. [1] https://go.dev/doc/go1.13 -trimpath remove all file system paths from the resulting executable. Instead of absolute file system paths, the recorded file names will begin either a module path@version (when using modules), or a plain import path (when using the standard library, or GOPATH). * guix/build/go-build-system.scm (build): Add -trimpath (%standard-phases): Remove remove-go-references. (remove-go-references): Remove. Change-Id: Idcae366d226da5ce095693f81fd33133fd1d70d6 Co-authored-by: Picnoir <picnoir@alternativebit.fr> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-05-14build/go: Don't use set!Efraim Flashner
This causes build failures on powerpc-linux. * guix/build/go-build-system.scm (unpack): When the unpack-path is unset use the import-path but don't redefine the unpack-path. Change-Id: I2b5a36eb738abb14307941d388038139dbaf2bdf Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-05-14gnu: Remove go-golang-org-x-net-html.Sharlatan Hellseher
golang.org/x/net is distributed as a single module according to provided go.mod file. This changes remove the last reference to golang.org/x/net/html. * gnu/packages/golang-build.scm (go-golang-org-x-net) [propagated-inputs]: Add go-golang-org-x-sys, go-golang-org-x-term and go-golang-org-x-text. (go-golang-org-x-net-html): Remove variable. * gnu/packages/version-control.scm (ghq) [inputs]: Remove go-golang-org-x-net-html. Add go-golang-org-x-net. * gnu/packages/textutils.scm (vale) [inputs]: Remove go-golang-org-x-net-html. Add go-golang-org-x-net. Change-Id: Ic275f2f7ccd145edfd376d65bd24599a550e849a
2024-05-14gnu: Remove go-etcd-io-bbolt.Troy Figiel
go-go-etcd-io-bbolt and go-etcd-io-bbolt are the same version and source packages. This change removes go-etcd-io-bbolt and keeps go-go-etcd-io-bbolt. * gnu/packages/configuration-management.scm (chezmoi) [native-inputs]: Add go-go-etcd-io-bbolt. Remove go-etcd-io-bbolt. * gnu/packages/golang.scm (go-etcd-io-bbolt): Remove variable. Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Change-Id: I482f22b77b61d4761390742db2ced570cd4de3bd
2024-05-14gnu: go-go-etcd-io-bbolt: Move to (gnu packages golang-xyz).Troy Figiel
* gnu/packages/databases.scm (go-go-etcd-io-bbolt): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Change-Id: I52e6ea227c417c1997210ecc22725387143df32f
2024-05-14gnu: Add go-go-etcd-io-gofail.Sharlatan Hellseher
* gnu/packages/golang-check.scm (go-go-etcd-io-gofail): New variable. Change-Id: I86478db4267cd8559c1d87497f1b635ffe86192d
2024-05-14gnu: Remove go-1.14.Efraim Flashner
* gnu/packages/golang.scm (go-1.14, go-std-1.14): Remove variables. (go-1.16): Inherit from go-1.4. Change-Id: Ie92019e3aa733a8c6f12dfefbc7b140eb1b76c5c Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-05-14gnu: Add go-1.22 and its standard library.Brennan Vincent
* gnu/packages/golang.scm (go-1.22): New variable. * gnu/packages/golang.scm (go-std-1.22): New variable. Change-Id: I18d92874d4131843e7c6cf0e8d89f2946f7b972d Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
2024-05-14gnu: gnome-shell: Wrap screencast service.Dariqq
Adjust screencast such that GI_TYPELIB_PATH and GST_PLUGIN_SYSTEM_PATH refer to all required typelibs and GStreamer plugins. This alone is not enough to make the screencast function however -- a running pipewire service (e.g. via Guix Home) is also needed. * gnu/packages/gnome.scm (gnome-shell): [inputs]: Add gst-plugins-good and pipewire. [#:phases]<'wrap-programs>: Wrap org.gnome.Shell.Screencast. Change-Id: I2c31bf1bd92e281b86c57b06988c6a3793a58d40 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2024-05-14gnu: renpy: Update to 8.3.0.Liliana Marie Prikler
* gnu/packages/game-development.scm (python-renpy): Update to 8.3.0.
2024-05-14gnu: python-pygame-sdl2: Update to 2.1.0+renpy8.3.0.Liliana Marie Prikler
* gnu/packages/game-development.scm (python-pygame-sdl2): Update to 2.1.0+renpy8.3.0.
2024-05-14gnu: Add python-clintest.Liliana Marie Prikler
* gnu/packages/potassco.scm (python-clintest): New variable.
2024-05-13gnu: r-logspline: Update to 2.1.22.Ricardo Wurmus
* gnu/packages/statistics.scm (r-logspline): Update to 2.1.22. Change-Id: I08b684ab0f5a429923f3163353ccf7e9339de627
2024-05-13gnu: r-tclust: Update to 2.0-4.Ricardo Wurmus
* gnu/packages/statistics.scm (r-tclust): Update to 2.0-4. Change-Id: I5d2cabd4fbbbb7e540cfe129bbeb5e0e2b9f7a84
2024-05-13gnu: r-estimability: Update to 1.5.1.Ricardo Wurmus
* gnu/packages/statistics.scm (r-estimability): Update to 1.5.1. Change-Id: I1e0e9508b48a178ef7a241b14c86141aea5189ef
2024-05-13gnu: r-paws-storage: Update to 0.6.0.Ricardo Wurmus
* gnu/packages/cran.scm (r-paws-storage): Update to 0.6.0. Change-Id: I30a9e0cf35bbee39a01f4a794df66b75a44d2977
2024-05-13gnu: r-paws-database: Update to 0.6.0.Ricardo Wurmus
* gnu/packages/cran.scm (r-paws-database): Update to 0.6.0. Change-Id: I006c62cba2953e81175a3ce030b25a623b02d958
2024-05-13gnu: r-paws-networking: Update to 0.6.0.Ricardo Wurmus
* gnu/packages/cran.scm (r-paws-networking): Update to 0.6.0. Change-Id: I01b39db5292b96bb8b6c18ef721c03a410b858b2
2024-05-13gnu: r-paws-machine-learning: Update to 0.6.0.Ricardo Wurmus
* gnu/packages/cran.scm (r-paws-machine-learning): Update to 0.6.0. Change-Id: Idb88c0ad3b57bdd6680042e55dce54b5330a5304
2024-05-13gnu: r-paws-analytics: Update to 0.6.0.Ricardo Wurmus
* gnu/packages/cran.scm (r-paws-analytics): Update to 0.6.0. Change-Id: I5113ccaf37f395775e3053f4b5f4fb4fdcb34636
2024-05-13gnu: r-paws-application-integration: Update to 0.6.0.Ricardo Wurmus
* gnu/packages/cran.scm (r-paws-application-integration): Update to 0.6.0. Change-Id: Ia11603af5ca15f71f52e8527da104e932f22c5ad
2024-05-13gnu: r-paws-end-user-computing: Update to 0.6.0.Ricardo Wurmus
* gnu/packages/cran.scm (r-paws-end-user-computing): Update to 0.6.0. Change-Id: Iee934acf9078935edc19cdd64055949663e5f6ec
2024-05-13gnu: r-paws-developer-tools: Update to 0.6.0.Ricardo Wurmus
* gnu/packages/cran.scm (r-paws-developer-tools): Update to 0.6.0. Change-Id: I76076854850e76162bb212a1298f3a9ef4b97bfc
2024-05-13gnu: r-paws-customer-engagement: Update to 0.6.0.Ricardo Wurmus
* gnu/packages/cran.scm (r-paws-customer-engagement): Update to 0.6.0. Change-Id: Ib40afc8078d9771f602318d522be358e8b4d6bf9
2024-05-13gnu: r-seurat: Update to 5.1.0.Ricardo Wurmus
* gnu/packages/cran.scm (r-seurat): Update to 5.1.0. Change-Id: I070c848853e26c3b8c031e92ef24f39b08962348
2024-05-13gnu: r-imager: Update to 1.0.2.Ricardo Wurmus
* gnu/packages/cran.scm (r-imager): Update to 1.0.2. Change-Id: I678a384037c4c265d2a2b06f2b3b8013abb6d017
2024-05-13gnu: r-farver: Update to 2.1.2.Ricardo Wurmus
* gnu/packages/cran.scm (r-farver): Update to 2.1.2. Change-Id: Ic73015b3cd86c9cbaceedf6a721db8d6fe825c6c
2024-05-13gnu: r-options: Update to 0.2.0.Ricardo Wurmus
* gnu/packages/cran.scm (r-options): Update to 0.2.0. Change-Id: Ia011d3fb5295a58ea49396b090186beae2bab575
2024-05-13gnu: r-polspline: Update to 1.1.25.Ricardo Wurmus
* gnu/packages/cran.scm (r-polspline): Update to 1.1.25. Change-Id: I0fb7c7912036cff5fd56d577cf29a464e34a2775
2024-05-13gnu: r-qlcmatrix: Update to 0.9.8.Ricardo Wurmus
* gnu/packages/cran.scm (r-qlcmatrix): Update to 0.9.8. [native-inputs]: Add r-knitr and r-rmarkdown. Change-Id: I08e55b72ffacf17b41c895801d6cbdad52658e6b
2024-05-13gnu: r-effectsize: Update to 0.8.8.Ricardo Wurmus
* gnu/packages/cran.scm (r-effectsize): Update to 0.8.8. Change-Id: I51270018adaf62fdbcb3e5ad73b99f618b346b9a
2024-05-13gnu: r-insight: Update to 0.19.11.Ricardo Wurmus
* gnu/packages/cran.scm (r-insight): Update to 0.19.11. Change-Id: I3cb8ef7e28309d542cb30d993264cc79811b8d59
2024-05-13gnu: cgit: Update to 1.2.3-3.dbadd85.Tomas Volf
* gnu/packages/version-control.scm (cgit): Update to 1.2.3-3.dbadd85. Change-Id: I41827d1d97f28be71af5532b554d6b7a5e1123cc Signed-off-by: Christopher Baines <mail@cbaines.net>
2024-05-13gnu: fcitx5-configtool: Remove inputs label.Zheng Junjie
* gnu/packages/fcitx5.scm (fcitx5-configtool) [inputs]: Remove label. Change-Id: Ib45fbf71d5f2ffbac3285e388629b6cf0ca004fe Signed-off-by: Christopher Baines <mail@cbaines.net>
2024-05-13gnu: fcitx5-configtool: Enable kcm support.Zheng Junjie
* gnu/packages/fcitx5.scm (fcitx5-configtool) [arguments]: Remove it. [inputs]: Add qtdeclarative, qtquickcontrols2, ki18n, kpackage, kdeclarative, kiconthemes, kcoreaddons, plasma-framework, kwindowsystem, kirigami, libxkbcommon. Change-Id: I43a43458232a5ad3c1d156c779359e356cbf98b8 Signed-off-by: Christopher Baines <mail@cbaines.net>
2024-05-13gnu: isc-dhcp: Add debianutils as an input.Alexey Abramov
dhclient provides a hook mechanism for users. In order to run these hooks, dhclient-script uses run-parts to run all the executable files found in requested directory. run-parts is part of debianutils packages. * gnu/packages/admin.scm (isc-dhcp)[inputs]: Add "debianutils" to provide access to run-parts. Signed-off-by: Christopher Baines <mail@cbaines.net> Change-Id: I2057881da57a6065d65d1de95e51ed1c8b19e15f
2024-05-13gnu: notmuch: Add sfsexp input.Fabio Natali
sfsexp is a C/C++ library for the manipulation (read, parse, modify, and create) of symbolic expressions. In an environment where sfsexp is available, Notmuch will compile with support for a S-expression-based query format. This commit is to add sfsexp as a Notmuch dependency and therefore to add S-exp support. * gnu/packages/mail.scm (notmuch)[native-inputs]: Add git-minimal/pinned. [inputs]: Add sfsexp. Change-Id: Ic3b4a30b2672ad690d66b283e9bdc8e2197f97a7 Signed-off-by: Christopher Baines <mail@cbaines.net>
2024-05-13gnu: Add sfsexp.Fabio Natali
* gnu/packages/c.scm (sfsexp): New variable. Change-Id: Iabfbe10b4ad6134ae886a3d26487f881107b559c Signed-off-by: Christopher Baines <mail@cbaines.net>
2024-05-13store: Add with-store/non-blocking.Christopher Baines
For some applications, it's important to establish a non-blocking connection rather than just making the socket non-blocking after the connection is established. This is because there is I/O on the socket that will block during the handshake. I've noticed this blocking during the handshake causing issues in the build coordinator for example. This commit adds a new with-store variant to avoid changing the behaviour of with-store/open-connection to ensure that this change can't break anything that depends on the blocking nature of the socket. * guix/store.scm (open-unix-domain-socket, open-inet-socket): Take #:non-blocking? and use SOCK_NONBLOCK when calling socket if appropriate. (connect-to-daemon, open-connection, call-with-store): Take #:non-blocking? and pass it on. (with-store/non-blocking): New syntax rule. * .dir-locals.el (scheme-mode): Add entry for with-store/non-blocking. Change-Id: I8225762b78448bc1f7b698c8de5d736e13f577bf
2024-05-13gnu: evdi: Update to 1.14.4.Efraim Flashner
* gnu/packages/linux.scm (evdi): Update to 1.14.4. (libevdi)[native-inputs]: Add pkg-config. Change-Id: I5e25a2a4a10608af927b2315dbd56b568ef56a1a
2024-05-14gnu: Add tree-sitter-erlang.Karl Hallsby
* gnu/packages/tree-sitter.scm (tree-sitter-erlang): New variable. Change-Id: Ib1449549249816736bf30a1d419a23fd7a45570e Change-Id: I99cdde6418e04d4898f0f6509d2e7d849e2a4f22 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
2024-05-14gnu: Add tree-sitter-vhdl.Karl Hallsby
* gnu/packages/tree-sitter.scm (tree-sitter-vhdl): New variable. Change-Id: Ia26e33f9898573e70c9afdd4025e3770d042dbd6 Change-Id: I07b2b89f878957af1544344122cdfe8970efc9f7 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
2024-05-14gnu: Add tree-sitter-verilog.Karl Hallsby
* gnu/packages/tree-sitter.scm (tree-sitter-verilog): New variable. Change-Id: I2066aff3cf39cebda956125cdac71236502a7ac5 Change-Id: If4acb8c10cd3942f46dcb05b8009760a6452b67a Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
2024-05-14gnu: foot: Fix cross-compilation.Zheng Junjie
* gnu/packages/terminals.scm (foot): Fix cross-compilation. [arguments]<#:configure-flags>: When cross-compilation, Remove -Db_lto=true. [native-inputs]: When cross-compilation, Add wayland, pkg-config-for-build. [inputs]: Add wayland-protocols. Change-Id: Ia56d2583254bd9ab463e5b39859eae8eb5092c9b
2024-05-14gnu: utf8proc: fix cross-compilation.Zheng Junjie
* gnu/packages/textutils.scm (utf8proc): fix cross-compilation. [arguments]<#:make-flags>: Use CC-FOR-TARGET. <#:phases>: When cross-compilation, Get test data from native-inputs. Change-Id: I42699e62f28585cc215a8843b5daad9c52af44c9
2024-05-14gnu: cairo: Fix cross-compilation.Zheng Junjie
* gnu/packages/gtk.scm (cairo)[arguments]: Add ‘fix-cross-compilation’ phase when cross-compiling. Change-Id: I3579bb1249c749ee5f164bb4dd47f585b181c2bc Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
2024-05-13gnu: guix: Update to 7ca9809.Ludovic Courtès
This is a followup to 7757fdd491862fa5c33f1f894503346b89898a01. * gnu/packages/package-management.scm (guix): Update to 7ca9809. Change-Id: Ic1e6d75223eb7e1371805f51b9f230ef846c536c