aboutsummaryrefslogtreecommitdiff
path: root/gnu
AgeCommit message (Expand)Author
2024-12-08gnu: guile-for-guile-emacs: Update to wip-elisp-rebased....* gnu/packages/guile.scm (guile-for-guile-emacs): Inherit from guile-next. Update to 4b9b8277733729f5b825f78fadfead9fc3630e7e. [version]: Update to 3.0.7-81. [arguments, native-inputs]: Remove. Change-Id: I78a53c2b45c4d2b87f560da82b400cbd985e332a Janneke Nieuwenhuizen
2024-12-07gnu: flacon: Add a source file-name....* gnu/packages/music.scm (flacon)[source]: Add a file-name field. Change-Id: I1a35101dcd6bdbdff4e75d01c82c2016b02591f6 Efraim Flashner
2024-12-07gnu: Add emacs-weblorg....* gnu/packages/emacs-xyz.scm (emacs-weblorg): New Variable. Change-Id: Iae2d6cbbadec7a171e1e5b8502d4f47701d7af5b Signed-off-by: Andreas Enge <andreas@enge.fr> Mattia Bunel
2024-12-07gnu: cl-simple-neural-network: Update to 3.2....* gnu/packages/lisp-xyz.scm (sbcl-simple-neural-network): Update to 3.2. [native-inputs, inputs]: Remove labels. [arguments]: Use gexp. Change-Id: Ia7682c82f88ab509715d90e37612b0208d500ed4 Guillaume Le Vaillant
2024-12-07gnu: cl-simple-matrix: Update to 1.1-0.c949568....* gnu/packages/lisp-xyz.scm (sbcl-simple-matrix): Update to 1.1-0.c949568. Change-Id: Ida5c5136607bbe0962a42827a8eed96e54b113bd Guillaume Le Vaillant
2024-12-07gnu: cl-cf: Update to 1.1-0.0aa0dd6....* gnu/packages/lisp-xyz.scm (sbcl-cf): Update to 1.1-0.0aa0dd6. Change-Id: I4ff6c6d1d82f0e604d5019d1af5bc1fd42f48170 Guillaume Le Vaillant
2024-12-06gnu: ipxe: Update to 24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6....* gnu/packages/bootloaders.scm (ipxe): Update to 24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6. Change-Id: I480fa8efad1e2d72e5239bf7df5fb779179ad96b Signed-off-by: Vagrant Cascadian <vagrant@debian.org> Roman Scherer
2024-12-07gnu: xnedit: Update to 1.6.0....* gnu/packages/text-editors.scm (xnedit): Update to 1.6.0. Change-Id: I7f7b30535b40f21864bba44665015242553f4881 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Andy Tai
2024-12-07gnu: diffoscope: Update to 284....* gnu/packages/diffoscope.scm (diffoscope): Update to 284. Vagrant Cascadian
2024-12-07gnu: lcov: disable parallel tests...`make check` is not reliable for lcov when run in parallel (e.g. `make -j 24 check`). Disable parallelism for the test suite. * gnu/packages/code (lcov): Set #:parallel-tests? #f Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Change-Id: Ibb3618c4786dfbb50b90e725297947458115347c Ryan Sundberg via Guix-patches via
2024-12-07gnu: wmenu: Update to 0.1.9....* gnu/packages/wm.scm (wmenu): Update to 0.1.9. [source]: Update url. [home-page]: Update url. Change-Id: Id0b6e1865cc2b4195fb6f73344494e5e0e880595 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Zheng Junjie
2024-12-06gnu: packages/astronomy: Sort alphabetically....* gnu/packages/astronomy.scm (python-astral, python-drizzle, splash): Sort variables alphabetically. Change-Id: I9876e8e2ad2f83448b65beb9d72aa1220f464581 Sharlatan Hellseher
2024-12-06gnu: packages/astronomy: Sort alphabetically....* gnu/packages/astronomy.scm (python-ccdproc, python-gwcs, python-jplephem, python-jwst, python-jwst-reffiles): Sort variables alphabetically. Change-Id: I8a0b77fe456927a158080570c52cb4c48d58257f Sharlatan Hellseher
2024-12-06gnu: Add perl-extutils-f77....* gnu/packages/perl.scm (perl-extutils-f77): New variable. Change-Id: I50b6e15e30d9b1dd2cfe5c1aae3398085069e303 Danny Milosavljevic
2024-12-06gnu: Add perl-sort-versions....* gnu/packages/perl.scm (perl-sort-versions): New variable. Danny Milosavljevic
2024-12-06gnu: Add perl-mojo-dom58....* gnu/packages/perl-web (perl-mojo-dom58): New variable. Danny Milosavljevic
2024-12-06gnu: Add perl-file-map....* gnu/packages/perl.scm (perl-file-map): New variable. Danny Milosavljevic
2024-12-06gnu: Add perl-sys-sigaction....* gnu/packages/perl.scm (perl-sys-sigaction): New variable. Danny Milosavljevic
2024-12-06gnu: Add perl-termreadkey....* gnu/packages/perl.scm (perl-termreadkey): New variable. Danny Milosavljevic
2024-12-06services: wireguard: Support lists of gexps for most fields....In order to support more flexibility in Wireguard configuration, ungexp the configuration fields directly instead of ungexp-splicing a sexp calculator. This allows for the fields to take arbitrary gexps instead of only strings which is particularly helpful for the Pre/Post Up/Down commands. * gnu/services/vpn.scm (wireguard-configuration-file): Ungexp configuration lists instead of ungexp-splicing the code surrounding them. * doc/guix.texi (VPN Services)[wireguard]: Document it. Change-Id: If074cbb78473b6fd34e0e4e990d2ed268001d6c7 Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Richard Sent
2024-12-06services: wireguard: Add the bootstrap-private-key? field....The syntax from using the private-key field is more convenient than writing a custom PreUp command (more formatting and preshared keys). Instead of trying to guess if private-key is/is not a file path, add an option to disable bootstrapping while still using private-key. * gnu/services/vpn.scm (<wireguard-configuration>): Add bootstrap-private-key?. (wireguard-activation): Check bootstrap-private-key? before bootstrapping. * doc/guix.texi (VPN Services)[wireguard]: Document it. Change-Id: I6ba71ad58b26743057a221a54a246369022f83a5 Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Richard Sent
2024-12-06services: wireguard: Make the private-key field optional....Users who retrieve the private-key via a PreUp field need to be able to disable the default retrieval mechanism. * gnu/services/vpn.scm (<wireguard-configuration>)[private-key]: Change comment. (wireguard-configuration-file): Conditionally serialize private-key. * gnu/services/vpn.scm (wireguard-activation): Do not create private-key if the field is #f. * doc/guix.texi (VPN Services)[wireguard-configuration]: Document it. Change-Id: Iac419809ae94eb76e97ff1f1749e2f4b3e65bb04 Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Richard Sent
2024-12-06gnu: Add emacs-dired-launch....* gnu/packages/emacs-xyz.scm (emacs-dired-launch): New variable. Danny Milosavljevic
2024-12-06gnu: emacs-jedi: Fix jedi:server-command default....* gnu/packages/emacs-xyz.scm (emacs-jedi)[arguments]<#:phases> [patch-jedi:server-command]: Make it a list. Danny Milosavljevic
2024-12-06gnu: xdg-desktop-portal-gtk: Make possible to use with xdg-desktop-portal-wlr....* gnu/packages/freedesktop.scm (xdg-desktop-portal-gtk)[propagated-inputs]: Replace xdg-desktop-portal with xdg-desktop-portal-next. Danny Milosavljevic
2024-12-06gnu: python-debugpy: Update to 1.8.9....* gnu/packages/python-xyz.scm (python-debugpy): Update to 1.8.9. Change-Id: I323570fc007af04fa8c9c59571cc3cc79833da04 Danny Milosavljevic
2024-12-06gnu: python-pydevd: Update to 3.2.3....* gnu/packages/python-xyz.scm (python-pydevd): Update to 3.2.3. Change-Id: Ibb1bb9880b2c456f27bf373259a0e604a62b9515 Danny Milosavljevic
2024-12-06gnu: Update otpclient to 4.0.2...Requires updating `libcotp` to 3.1.0, that introduced a new way for testing that requires `criterium`, a package we don't have and that has dependencies that we don't have either. As the tests in `libcotp` are not an exhaustive testsuite and `otpclient` is its only dependent package, tests are disabled for the moment. * gnu/packages/authentication.scm (libcotp): Update to 3.1.0 [arguments] Disable tests. * gnu/packages/password-utils.scm (otpclient): Update to 4.0.2 Change-Id: Ie6d37b5efe59397d4979c7490b94f1c871c27d6d Ekaitz Zarraga
2024-12-05gnu: Fix java-jaxen....java-jaxen was missing the dom4j and xom sub-packages. This was caused by java-jaxen-bootstrap deleting the respective directories (which is okay) and java-javen not removing the phase that does this. Solve this by removing the #:phases argument for java-jaxen and thus make guix use the default phases. * gnu/packages/java-xml.scm (java-jaxen)[arguments]: Remove #:phases. , making Hartmut Goebel
2024-12-05gnu: go-github-com-cyphar-filepath-securejoin: Fix url....Fix url incorrectly changed in 9399db35c2105157407fd4a59aeb0cacc58a0c54. * gnu/packages/golang-xyz.scm (go-github-com-cyphar-filepath-securejoin) [origin]: Fix url. Change-Id: Ibac24d11efdd6414bdeb8be2cd2184e21d7f8676 Signed-off-by: Ekaitz Zarraga <ekaitz@elenq.tech> Simen Endsjø
2024-12-05gnu: eisl: Update to 5.38....* gnu/packages/lisp.scm (eisl): Update to 5.38. Change-Id: I115706d2b06bed71a24cf2c1ab1f5c1bf2e88284 Guillaume Le Vaillant
2024-12-05gnu: gqrx: Update to 2.17.6....* gnu/packages/radio.scm (gqrx): Update to 2.17.6. Change-Id: Ief1ec50d0e64fa325dc2f270612a978105c05f3a Guillaume Le Vaillant
2024-12-05gnu: Add cl-simple-matrix....* gnu/packages/lisp-xyz.scm (cl-simple-matrix, ecl-simple-matrix, sbcl-simple-matrix): New variables. Change-Id: I79499aae2c8c7dc0ba2d1193104f2f3dd1d3621c Guillaume Le Vaillant
2024-12-05gnu: make-rust-sysroot: Adjust for newer cross-gcc....* gnu/packages/rust.scm (make-rust-sysroot/implementation) [native-inputs]: Add gcc-14. Change-Id: If9bc74bfe2e236accc39dc09e03b28dee62e332d Efraim Flashner
2024-12-05gnu: make-rust-sysroot: Simplify native-inputs....* gnu/packages/rust.scm (make-rust-sysroot/implementation) [native-inputs]: Combine the different modify-input branches into one. Change-Id: Ia7df5d1566099f9934a76b2660f46a55547c88b9 Efraim Flashner
2024-12-05gnu: make-rust-sysroot: Accept other mingw targets....* gnu/packages/rust.scm (make-rust-sysroot/implementation)[arguments]: Adjust the custom 'patch-for-mingw phase to generate the name of the mingw input package based on the target architecture. [inputs, native-inputs]: Use make-mingw-w64 to choose the mingw package for the target. Change-Id: I48638095a504675753e65fdb6f0286c31cebde66 Efraim Flashner
2024-12-05gnu: glibc-dynamic-linker: Match all mingw systems....* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Match any system which ends in '-mingw'. Change-Id: I057e3d0abfc37f4b2b8784f444bbaf865c67ce3e Efraim Flashner
2024-12-05Partial revert "gnu: bootstrap: %bootstrap-gcc: Also wrap g++ for the 64bit H......This partially reverts commit 877b925df16740f9419d165d39cb7f191a86d5d1. This part accidentally triggered a world rebuild for non-x86 architectures. Change-Id: Iabc5422bb0e2bb37816ad437994af94d04830cb0 Zheng Junjie
2024-12-05Partial revert "gnu: bootstrap: %bootstrap-glibc: Also fix libm.so."...This partially reverts commit 204fe1b1f05f4438d1cf72c568b45696e55e54c9. This part accidentally triggered a world rebuild for non-x86 architectures. Change-Id: I921984ef5eff58792ffc17b64675db6a8e79695c Zheng Junjie
2024-12-05Partial revert "gnu: make-bootstrap: Update gcc-static to gcc-14, for the 64b......This partially reverts commit ec8a5ec15f898e864705e5a5c834532e3fa8d0a4. This part accidentally triggered a world rebuild for non-x86 architectures. Change-Id: Id2f9bcbcda8dc86ea407e9a7857a854dc1a742b5 Zheng Junjie
2024-12-04gnu: Add r-ggupset....* gnu/packages/cran.scm (r-ggupset): New variable. Change-Id: I044fff58b66dbb56e6b7fb1ebcb5353e7ab3d1f7 Ricardo Wurmus
2024-12-04gnu: Add skewer....* gnu/packages/bioinformatics.scm (skewer): New variable. Change-Id: Ieeb95ed7449b91ea853d73ecca05e5436121df6a Ricardo Wurmus
2024-12-04gnu: packages/python-science: Update copyright header....* gnu/packages/python-science.scm: Update copyright header for Antero Mejr <antero@mailbox.org> . Change-Id: I4153d51d74f7de1629d5a7851346021b77e7352d Sharlatan Hellseher
2024-12-04gnu: Add python-scikit-surprise....* gnu/packages/python-science.scm (python-scikit-surprise): New variable. Change-Id: I9b5e13f0c985f34bb0bd759e76ebd27221a340a4 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Antero Mejr
2024-12-04gnu: ikiwiki: Fix build by disabling a test....* gnu/packages/web.scm (ikiwiki)[arguments]: In stage "pre-check", disable failing "t/t.po" test. Change-Id: I4fc1240512b4d3df3ece837521116aee5746e181 Janneke Nieuwenhuizen
2024-12-03gnu: r-rcdt: Add missing input....* gnu/packages/cran.scm (r-rcdt)[native-inputs]: Add r-testthat. Change-Id: Ic5358aee6d5174052266dc01b81f618edf931cd2 Ricardo Wurmus
2024-12-03gnu: r-msnid: Disable vignettes....* gnu/packages/bioconductor.scm (r-msnid)[arguments]: Disable vignettes. Change-Id: I47dc4cf5b6d80699d4f22b2b92382ada7ca3322a Ricardo Wurmus
2024-12-03gnu: r-pcaexplorer: Add missing inputs....* gnu/packages/bioconductor.scm (r-pcaexplorer)[native-inputs]: Add r-airway and r-org-hs-eg-db. Change-Id: Id559bea8cd4308058a06158e74d3e13d7f645572 Ricardo Wurmus
2024-12-03gnu: Add r-airway....* gnu/packages/bioconductor.scm (r-airway): New variable. Change-Id: I521c1bf868566f80997c8ba80609fd5709a95694 Ricardo Wurmus
2024-12-03gnu: r-reportingtools: Add missing inputs....* gnu/packages/bioconductor.scm (r-reportingtools)[native-inputs]: Add r-all, r-genefilter, r-hgu95av2-db, r-org-hs-eg-db, r-org-mm-eg-db, r-org-sc-sgd-db, r-pasilla, and r-shiny. [properties]: Tell updater to ignore r-gsealm. Change-Id: I9512bbc7a96c328ee05e15bc898969494dca4be0 Ricardo Wurmus