summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* build: Fix detection of guile-ssh.•••Fixes <https://issues.guix.gnu.org/74800>. The check for make-session stopped working after update to 0.18.0. This commit adds the additional `#:config #f' to skip reading the ssh configuration, arguably we did not want to do that anyway. * m4/guix.m4 (GUIX_CHECK_GUILE_SSH): Add `#:config #f' to make-session call. Change-Id: Id6ea3860292159ac2e6cf2a77df5f720f66aa071 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Reported-by: Dariqq <dariqq@posteo.net> Tomas Volf2024-12-121-1/+1
* gnu: gnunet-gtk: Update to 0.23.0.•••* gnu/packages/gnunet.scm (gnunet-gtk): Update to 0.23.0. Change-Id: I2d5f47b5773c72777bc0ad4e4ebeaee63c3005b1 Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Amélia Coutard-Sander2024-12-121-2/+2
* gnu: gnunet: Update to 0.23.0.•••* gnu/packages/gnunet.scm (gnunet): Update to 0.23.0. [phases]: Adjust disable-problematic-tests phase. Change-Id: Ibf900d929bcd257932c6997eacbfaeeda1aa7f26 Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Amélia Coutard-Sander2024-12-121-2/+7
* gnu: cl-simple-matrix: Update to 1.2-0.76b1df4.•••* gnu/packages/lisp-xyz.scm (sbcl-simple-matrix): Update to 1.2-0.76b1df4. Change-Id: Iad0abf2dad881e2c59b7f9e94fa3c3b04b62562d Guillaume Le Vaillant2024-12-121-3/+3
* gnu: hyprlang: Fix cross-compilation.•••* gnu/packages/cpp.scm (hyprlang)[arguments]<#:phases>: Set PKG_CONFIG_EXECUTABLE in CMakeLists.txt. Change-Id: Ied775ece2de83f6842bf405be76ce7f33fdce5fe Signed-off-by: Ludovic Courtès <ludo@gnu.org> Hilton Chain2024-12-121-0/+11
* gnu: hyprutils: Fix cross-compilation.•••* gnu/packages/cpp.scm (hyprutils)[arguments]<#:phases>: Set PKG_CONFIG_EXECUTABLE in CMakeLists.txt. Change-Id: Ia08cf44230c311f444e4881bdca2b759cda9b112 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Hilton Chain2024-12-121-0/+11
* doc: cookbook: Document postgres upgrade for cuirass.•••* doc/guix-cookbook.texi(System Management): New chapter. [Upgrade Postgres for Cuirass] New node. Change-Id: I23aae16b1f50b6c40c56b78712dfd6eae3834761 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Gabriel Wicki2024-12-121-0/+103
* remote: Do not double-quote the repl-command.•••Fixes <https://issues.guix.gnu.org/74787>. In 0.18.0, the `open-remote-pipe*' now correctly quotes the arguments, so the double quoting that was done by `shell-quote' is not harmful and breaks at least offloading and deploy. * guix/remote.scm (remote-pipe-for-gexp): Call object->string just once. Change-Id: Id922d26d318bfdd4714e267687c1b27461196d90 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Reported-by: Dariqq <dariqq@posteo.net> Tomas Volf2024-12-121-4/+1
* services: cuirass: Run in a UTF-8 locale.•••Fixes <https://issues.guix.gnu.org/73751>. * gnu/services/cuirass.scm (cuirass-shepherd-service): Add ‘LC_ALL’. Reported-by: Noé Lopez <noelopez@free.fr> Change-Id: I9121a213405d287e2f15338c8608153e11c2508d Ludovic Courtès2024-12-121-1/+2
* lint: Pre-compile regexp for ‘starts-with-texinfo-markup?’.•••* guix/lint.scm (%starts-with-texinfo-markup-rx): New variable. (starts-with-texinfo-markup?): Use it. Change-Id: I1b7a836ba968631f3f358a88a29e996d431b0001 Ludovic Courtès2024-12-121-1/+4
* lint: More abbreviations.•••* guix/lint.scm: Allow more common abbreviations in double-space-after sentence check. * tests/lint.scm: Add tests. Change-Id: I0eedf73e5fcd0a8c67b3ae3dfa979a57fe0f6253 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Gabriel Wicki2024-12-122-2/+2
* lint: Ignore initials from double space check.•••Prevent false positives in initials as the are commonly used in names, e.g. Margaret E. Hamilton - which obviously do not end sentences. Check whether a period character `.' is preceded by at least two characters. This should save us from false positives when linting. * guix/lint.scm(check-description-style)[check-end-of-sentence-space] Add condition. * tests/lint.scm: Add test case. Change-Id: I42a1365aaaed2afc7308b88ebd4b0720ad362761 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Gabriel Wicki2024-12-122-6/+11
* lint: Prevent false positives in description typo check.•••* guix/lint.scm(check-description-style)[check-description-typo]: Add spaces to match strings to prevent matching false positives, like "allows tokens" or "prevents torpedoes". * tests/lint.scm: Add test. Change-Id: Ifc2ec6167a590b9d2e742dd86fecd798c4bfaa24 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Gabriel Wicki2024-12-122-3/+9
* lint: Allow texinfo markup at beginning of synopsis.•••* guix/lint.scm(check-synopsis-style)[check-proper-start]: Add condition. * tests/lint.scm: Add test case. Change-Id: I2509b3a4e7e51c6a274697ceb5f776c22e27c5f9 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Gabriel Wicki2024-12-122-1/+8
* lint: Allow texinfo markup at beginning of description.•••* guix/lint.scm(starts-with-texinfo-markup?): New function. (check-description-style)[check-proper-start]: Add condition. * tests/lint.scm: Add test case. Change-Id: I674988882265d9e2041d48dba0f9627cd68bf292 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Gabriel Wicki2024-12-122-1/+12
* lint: Refine description start check logic.•••Fix linter warnings for the following: - packages that belong to some programming language or ecosystem, e.g. python-foo or texlive-bar, - packages whose names end in a version distinction, e.g. wlroots-0.16 and - packages where the software's real name contains an underscore `_' character where our package name replaced that with a hyphen `-', e.g. wpa_supplicant and wpa-supplicant-minimal. * guix/lint.scm (check-description-style)[check-proper-start]: Add conditions. * tests/lint.scm: New tests. Change-Id: Ifc9f5cda04db59e460e287cd93afae89c7f17e3c Signed-off-by: Ludovic Courtès <ludo@gnu.org> Gabriel Wicki2024-12-122-9/+43
* lint: Fix indentation.•••* guix/lint.scm(check-synopsis-style): Add white space. * tests/lint.scm: Fix indentation. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Change-Id: I8e08fa43131c586065b742fc441172c9408877a3 Gabriel Wicki2024-12-122-9/+9
* gnu: lapack: Mark as tunable.•••* gnu/packages/maths.scm (lapack)[properties]: New field. Change-Id: Iec6383a36f699a573654827a0f7ddaf52790625a Ludovic Courtès2024-12-121-1/+2
* transformations: Add tuning wrapper for gfortran.•••guix/transformations.scm (tuning-compiler): Add gfortran to the list of wrapped compilers. Change-Id: Ic7eaa07acbb5ea013af0d515686e961106a6bbbb Signed-off-by: Ludovic Courtès <ludo@gnu.org> Romain GARBAGE2024-12-121-1/+1
* Revert "gnu: python-mathics-core: Add docs."•••This reverts commit 978305639e3c930a539ddd2018bc061716ed8b55 since it was too early. Change-Id: I934d5bd0de1a895670be44a754e54ca0ab431156 Danny Milosavljevic2024-12-122-55/+6
* gnu: snd: Update to 24.9.•••* gnu/packages/audio.scm (snd): Update to 24.9. [arguments]: Use G-expressions; add configure flag "--with-gui"; add phase 'install-s7. [inputs]: Replace jack-1 with jack-2; remove gtk+; add motif. Change-Id: Iaba84c2dafa4bf5c0a33f087743844412d961adc Ricardo Wurmus2024-12-121-25/+30
* gnu: texmacs: Make it find qtwayland plugin at runtime.•••* gnu/packages/text-editors.scm (texmacs)[build-system]: Change to qt-build-system. (texmacs-guile3)[build-system]: Change to qt-build-system. Change-Id: Ic7b2af22d146f757a54c3ee6d56969493a561aab Danny Milosavljevic2024-12-121-1/+1
* gnu: texmacs: Add qtwayland-5.•••* gnu/packages/text-editors.scm (texmacs)[inputs]: Add qtwayland-5. (texmacs-guile3)[inputs]: Add qtwayland-5. (mogan)[inputs]: Add qtwayland-5. Change-Id: Ia5cebcff38059533c7add3bcc3c764cb5df1816e Danny Milosavljevic2024-12-121-0/+2
* gnu: rust-swc: Fix build.•••* gnu/packages/rust-apps.scm (rust-swc): Fix build. Change-Id: I06106439e7df8112075880081c3b444d84ecccf1 Danny Milosavljevic2024-12-121-0/+1
* gnu: python-mathics-core: Add docs.•••* gnu/packages/plotutils.scm (asymptote): Install files where latex will find them. * gnu/packages/maths.scm (python-mathics-core): Add docs. Change-Id: Id2dac5f9b4b3bdcfbb751a94263261fb69edb461 Danny Milosavljevic2024-12-122-6/+55
* gnu: Add python-mathics-django.•••* gnu/packages/maths.scm (python-mathics-django): New variable. Change-Id: I9f928a13e07f4fc680a6d0e3e965a72d45d7d80c Danny Milosavljevic2024-12-121-0/+33
* gnu: python-networkx: Update to 3.4.2.•••* gnu/packages/python-xyz.scm (python-networkx-next): New variable. Change-Id: I59d3883f13ef60b92bd5892edf89b09defdd8845 Danny Milosavljevic2024-12-121-0/+12
* gnu: python-mathics-core: Fix license.•••* gnu/packages/maths.scm (python-mathics-core)[license]: Change to gpl3. Change-Id: Ic48b004f5fd429ddf99c34d5ba891736f9ffafd6 Danny Milosavljevic2024-12-121-1/+1
* gnu: Add python-mathicsscript.•••* gnu/packages/maths.scm (python-mathicsscript): New variable. Change-Id: Id98fe33f3e6fdef5fcdc2ea58b2f71f396b9ea23 Danny Milosavljevic2024-12-121-0/+34
* gnu: Add perl-pdl.•••* gnu/packages (perl-pdl-2.019): New variable. Change-Id: I608a1d59ee4dfebf9df45886c0a8bbf93bee4696 Danny Milosavljevic2024-12-111-0/+61
* gnu: Add python-term-background.•••* gnu/packages/python-xyz.scm (python-term-background): New variable. Change-Id: If3606c0d037afc52842d3adb69af26d35c55f6ce Danny Milosavljevic2024-12-111-0/+24
* gnu: librewolf: Add %u to Exec option to open URLs.•••The context behind this change is that Firefox used to ship a taskcluster/docker/firefox-snap/firefox.desktop file which had an Exec line like this: Exec=@MOZ_APP_NAME@ %u The Guix package would use that file, replacing the token with the path to the binary. Reported in #74648. * gnu/packages/librewolf.scm (librewolf): Add %u to Exec option to open URLs. Change-Id: I8cf5d3886eaf7805209cf12eae0cc875bef6d5dd Reviewed-by: André Batista <nandre@riseup.net> Reviewed-by: Ian Eure <ian@retrospec.tv> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Roman Scherer2024-12-111-1/+1
* gnu: gdb: Fix build of target-specific versions.•••Since recently there has been a change to gdb package that introduced configure-flags, three gdb packages broke, since they assumed there are no configure-flags in gdb. That means they produced the same gdb as gdb-14. This patche fixes that by ensuring configure-flags are appended to original package. * gnu/packages/embedded.scm (make-gdb-arm-none-eabi)[arguments]: Append configure-flags to original flags. * gnu/packages/gdb.scm (gdb-multiarch)[arguments]: Likewise. * gnu/packages/gdb.scm (avr-gdb)[arguments]: Likewise. Signed-off-by: Janneke Nieuwenhuizen <janneke@gnu.org> Change-Id: Ia8748b86dc72197bd4eef307d091b6af44fc5611 Rutherther via Guix-patches via2024-12-112-22/+24
* gnu: openblas: Fix description.•••* gnu/packages/maths.scm (openblas)[description]: Write BLAS acronym in full before using it. Change-Id: Ieff4f6c4d69882b3afc826da8283cd7ce0263c74 Janneke Nieuwenhuizen2024-12-111-1/+2
* Revert "gnu: xdg-desktop-portal-gtk: Make possible to use with xdg-desktop-po...•••This reverts commit 5d284ebc8df87b0e21cee5844d66dc7c80863464 but breaks sway. Change-Id: I9ed395862ac0547346bd78ecb73c05b748fdf141 Danny Milosavljevic2024-12-111-1/+1
* gnu: texmacs: Support HiDPI displays on Wayland.•••* gnu/packages/patches/texmacs-wayland-hidpi.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/text-editors.scm (texmacs)[source]: Use it. (texmacs-guile3)[source]: Use it. (mogan)[source]: Use it. Change-Id: Ida737433957cb26695bf43538cff4d5d1c8a83c3 Danny Milosavljevic2024-12-113-3/+32
* gnu: Add texmacs-guile3.•••* gnu/packages/text-editors.scm (texmacs-guile3): New variable. Change-Id: I23b58c15162a64d72a5d7092a23aa2503a62b139 Danny Milosavljevic2024-12-111-0/+26
* gnu: Add perl-pgplot.•••* gnu/packages/maths.scm (perl-pgplot): New variable. Change-Id: Iac06caf5f0c1b142153c011e46aa4fda7704d672 Danny Milosavljevic2024-12-111-0/+27
* gnu: mullvadbrowser: Update to 14.0.3 [security fixes].•••Fixes CVE 2024-9680, 2024-10458, 2024-10459, 2024-10460, 2024-10461, 2024-10462, 2024-10463, 2024-10464, 2024-10465, 2024-10466, 2024-10467, 2024-11691, 2024-11692, 2024-11693, 2024-11694, 2024-11695, 2024-11696, 2024-11697, 2024-11698 and 2024-11699. See the Mozilla Foundation Security Advisories <https://www.mozilla.org/en-US/security/advisories/mfsa2024-51/>, <https://www.mozilla.org/en-US/security/advisories/mfsa2024-57/> and <https://www.mozilla.org/en-US/security/advisories/mfsa2024-64/> for details. * gnu/packages/tor-browsers.scm (%mullvadbrowser-build-date): Update to 20241125154204. (%mullvadbrowser-version): Update to 14.0.3. (%mullvadbrowser-firefox-version): Update to 128.5.0esr-14.0-1-build2. (mullvadbrowser-translation-base): Update to caa431bbea1a76d7ad61eeda94086a1513762605. (mullvadbrowser-translation-specific): Update to 2f7d98b46ce480cdb4d7e9ddab912650c8673d6c. Change-Id: Ia5d445e387351b3d5d08ecb14c2f31bf4cc81396 Signed-off-by: Hilton Chain <hako@ultrarare.space> André Batista2024-12-111-9/+9
* gnu: torbrowser: Update to 14.0.3 [security-fixes].•••Fixes CVEs 2024-10458, 2024-10459, 2024-10460, 2024-10461, 2024-10462, 2024-10463, 2024-10464, 2024-10465, 2024-10466, 2024-10467, 2024-11691, 2024-11692, 2024-11693, 2024-11694, 2024-11695, 2024-11696, 2024-11697, 2024-11698 and 2024-11699. See <https://www.mozilla.org/en-US/security/advisories/mfsa2024-48/> and <https://www.mozilla.org/en-US/security/advisories/mfsa2024-64/> for details. * gnu/packages/patches/torbrowser-compare-paths.patch: New file. * gnu/local.mk (dist_patch_DATA): Regisiter it. * gnu/packages/tor-browsers.scm (firefox-locales): Update to f75c1e6a305e68161037337767ece88e9de940b9. (%torbrowser-build-date): Update to 20241125154204. (%torbrowser-version): Update to 14.0.3. (%torbrowser-firefox-version): Update to 128.5.0esr-14.0-1-build2. (torbrowser-translation-base): Update to caa431bbea1a76d7ad61eeda94086a1513762605. (torbrowser-translation-specific): Update to 4314d0a7ce780ffdf82b84e324bfbc437198f993. (make-torbrowser) [arguments] <#:phases>: On 'apply-guix-specific-patches change icecat-compare-paths.patch to torbrowser-compare-paths.patch as the patched file has changed its name between major versions. On 'remove-cargo-frozen-flag, update the regex to match this newer version string. Change-Id: Ia5d445e387351b3d5d08ecb14c2f31bf4cc81396 Signed-off-by: Hilton Chain <hako@ultrarare.space> André Batista2024-12-113-13/+38
* gnu: ublock-origin: Update to 1.61.0.•••* gnu/packages/browser-extensions.scm (ublock-origin): Update to 1.61.0. (ublock-main-assets): Update to bfbafa49f72d078fd1126033be1d4434ca6d5009. (ublock-prod-assets): Update to 873eb22777b9a951e64d6453048bec9291db2ed7. Change-Id: I605528caa5ab5e237e61f7c040502a8b0d7038a1 Signed-off-by: Hilton Chain <hako@ultrarare.space> André Batista2024-12-111-6/+6
* gnu: noscript: Update to 11.5.2•••* gnu/packages/browser-extensions.scm (noscript): Update to 11.5.2. Change-Id: I1c3bb1ca1aa6f31dac31cbb7c5ca5a155ec8c1d0 Signed-off-by: Hilton Chain <hako@ultrarare.space> André Batista2024-12-111-2/+2
* gnu: Fix synopsis in miscelaneous packages.•••* gnu/packages/astronomy.scm (calcmysky-qt5): Fix synopsis. * gnu/packages/base.scm (hello): Fix synopsis. * gnu/packages/bioinformatics.scm (vembrane): Fix synopsis. * gnu/packages/browser-extensions.scm (passff): Fix synopsis. * gnu/packages/browser-extensions.scm (noscript): Fix synopsis. * gnu/packages/c.scm (orangeduck-mpc): Fix synopsis. * gnu/packages/cran.scm (r-d3r): Fix synopsis. * gnu/packages/docbook.scm (docbook-mathml-1.0): Fix synopsis. * gnu/packages/finance.scm (flowee): Fix synopsis. * gnu/packages/firmware.scm (seabios): Fix synopsis. * gnu/packages/games.scm (pinball): Fix synopsis. (morris): Fix synopsis. * gnu/packages/gawk.scm (cppawk-egawk): Fix synopsis. * gnu/packages/gnome.scm (gssdp): Fix synopsis. * gnu/packages/gstreamer.scm (gst-plugins-espeak): Fix synopsis. * gnu/packages/heads.scm (musl-cross): Fix synopsis. * gnu/packages/irc.scm (epic5): Fix synopsis. * gnu/packages/kde-pim.scm (itinerary): Fix synopsis. * gnu/packages/kde-plasma.scm (mpvqt): Fix synopsis. * gnu/packages/lesstif.scm (motif): Fix synopsis. * gnu/packages/linux.scm (ecryptfs-utils): Fix synopsis. * gnu/packages/linux.scm (falcosecurity-libs): Fix synopsis. * gnu/packages/mail.scm (pan): Fix synopsis. * gnu/packages/messaging.scm (biboumi): Fix synopsis. * gnu/packages/ocaml.scm (ocaml-ppx-import): Fix synopsis. * gnu/packages/pascal.scm (p2c): Fix synopsis. * gnu/packages/pdf.scm (unpaper): Fix synopsis. * gnu/packages/pure.scm (pure): Fix synopsis. * gnu/packages/qt.scm (qxlsx-qt5): Fix synopsis. * gnu/packages/smalltalk.scm (smalltalk): Fix synopsis. * gnu/packages/sugar.scm (sugar): Fix synopsis. * gnu/packages/terminals.scm (roxterm): Fix synopsis. * gnu/packages/virtualization.scm (xen): Fix synopsis. * gnu/packages/vpn.scm (sshoot): Fix synopsis. * gnu/packages/web.scm (buku-run): Fix synopsis. Signed-off-by: Vagrant Cascadian <vagrant@debian.org> Gabriel Wicki2024-12-1032-36/+35
* gnu: Fix synopsis in various go packages.•••* gnu/packages/golang-check.scm (go-github-com-go-quicktest-qt): Fix synopsis. * gnu/packages/golang-crypto.scm (go-github-com-refraction-networking-utls): Fix synopsis. (go-gitlab-com-yawning-edwards25519-extra): Fix synopsis. * gnu/packages/golang-web.scm (go-github-com-aws-smithy-go): Fix synopsis. * gnu/packages/golang-xyz.scm (go-msgio): Fix synopsis. * gnu/packages/golang.scm (go-github-com-flopp-go-findfont): Fix synopsis. * gnu/packages/ipfs.scm (go-github-com-ipfs-go-ipld-cbor): Fix synopsis. Signed-off-by: Vagrant Cascadian <vagrant@debian.org> Gabriel Wicki2024-12-106-9/+8
* gnu: Fix synopsis in various python packages.•••* gnu/packages/python-compression.scm (python-inflate64): Fix synopsis. * gnu/packages/python-science.scm (python-xarray-dataclasses): Fix synopsis. * gnu/packages/python-web.scm (python-waybackpack): Fix synopsis. * gnu/packages/python-xyz.scm (python-mir-eval): Fix synopsis. (python-restructuredtext-lint): Fix synopsis. (python-pixelmatch): Fix synopsis. (python-google-pasta): Fix synopsis. (python-xmp-toolkit): Fix synopsis. * gnu/packages/bioinformatics.scm (python-mgatk): Fix synopsis. * gnu/packages/rpc.scm (python-grpc-stubs): Fix synopsis. * gnu/packages/simulation.scm (python-commonroad-io): Fix synopsis. Signed-off-by: Vagrant Cascadian <vagrant@debian.org> Gabriel Wicki2024-12-107-12/+11
* gnu: Fix synopsis in various julia packages.•••* gnu/packages/julia-jll.scm (julia-ffmpeg-jll): Fix synopsis. (julia-libgcrypt-jll): Fix synopsis. (julia-libgpg-error-jll): Fix synopsis. (julia-x264-jll): Fix synopsis. (julia-x265-jll): Fix synopsis. (julia-xorg-libxrender-jll): Fix synopsis. (julia-xorg-xkbcomp-jll): Fix synopsis. (julia-xorg-xtrans-jll): Fix synopsis. Signed-off-by: Vagrant Cascadian <vagrant@debian.org> Gabriel Wicki2024-12-101-8/+8
* gnu: Fix synopsis in various texlive packages.•••* gnu/packages/tex.scm (texlive-algorithms): Fix synopsis. (texlive-bestpapers): Fix synopsis. (texlive-cryptocode): Fix synopsis. (texlive-filecontentsdef): Fix synopsis. (texlive-garamond-math): Fix synopsis. (texlive-ijsra): Fix synopsis. (texlive-sudokubundle): Fix synopsis. (texlive-checklistings): Fix synopsis. (texlive-platex): Fix synopsis. (texlive-platex-tools): Fix synopsis. (texlive-mptopdf): Fix synopsis. (texlive-ieejtran): Fix synopsis. (texlive-na-position): Fix synopsis. (texlive-footnotehyper): Fix synopsis. (texlive-ncctools): Fix synopsis. (texlive-scikgtex): Fix synopsis. (texlive-beamertheme-focus): Fix synopsis. (texlive-cellprops): Fix synopsis. (texlive-eq-pin2corr): Fix synopsis. (texlive-exercisepoints): Fix synopsis. (texlive-latexgit): Fix synopsis. (texlive-longfbox): Fix synopsis. (texlive-suppose): Fix synopsis. (texlive-xsim): Fix synopsis. (texlive-ycbook): Fix synopsis. Signed-off-by: Vagrant Cascadian <vagrant@debian.org> Gabriel Wicki2024-12-101-29/+30
* gnu: Fix synopsis in rust packages.•••* gnu/packages/crates-crypto.scm (rust-curve25519-dalek-derive-0.1): Fix synopsis. * gnu/packages/crates-graphics.scm (rust-x11-clipboard-0.9): Fix synopsis. * gnu/packages/crates-io.scm (rust-abi-stable-derive-0.11): Fix synopsis. (rust-anstyle-lossy-1): Fix synopsis. (rust-anstyle-stream-0.2): Fix synopsis. (rust-assert2-0.3): Fix synopsis. (rust-backtrace-ext-0.2): Fix synopsis. (rust-carapace-spec-clap-0.1): Fix synopsis. (rust-circular-0.3): Fix synopsis. (rust-const-sha1-0.2): Fix synopsis. (rust-cpuid-bool-0.2): Fix synopsis. (rust-ctor-0.2): Fix synopsis. (rust-enum-iterator-1): Fix synopsis. (rust-hyprland-0.3): Fix synopsis. (rust-is-debug-1): Fix synopsis. (rust-kqueue-1): Fix synopsis. (rust-pico-args-0.5): Fix synopsis. (rust-pnet-base-0.34): Fix synopsis. (rust-postcard-1): Fix synopsis. (rust-profiling-procmacros-1): Fix synopsis. (rust-pyproject-toml-0.8): Fix synopsis. (rust-railroad-0.2): Fix synopsis. (rust-rstest-macros-0.18): Fix synopsis. (rust-rustdoc-json-0.8): Fix synopsis. (rust-serde-big-array-0.5): Fix synopsis. (rust-structmeta-0.2): Fix synopsis. (rust-subplotlib-derive-0.7): Fix synopsis. (rust-sval-ref-2): Fix synopsis. (rust-thiserror-1): Fix synopsis. (rust-thiserror-core-1): Fix synopsis. (rust-thousands-0.2): Fix synopsis. (rust-tokio-uring-0.4): Fix synopsis. (rust-ubyte-0.10): Fix synopsis. (rust-udev-0.7): Fix synopsis. (rust-ufmt-macros-0.3): Fix synopsis. (rust-ufmt-write-0.1): Fix synopsis. (rust-urlencoding-2): Fix synopsis. * gnu/packages/crates-web.scm (rust-hyper-native-tls-0.3): Fix synopsis. (rust-tonic-0.10): Fix synopsis. (rust-trust-dns-native-tls-0.20): Fix synopsis. (rust-trust-dns-openssl-0.20): Fix synopsis. (rust-trust-dns-rustls-0.20): Fix synopsis. (rust-wiremock-0.5): Fix synopsis. Signed-off-by: Vagrant Cascadian <vagrant@debian.org> Gabriel Wicki2024-12-104-43/+52
* gnu: Fix synopsis in various sbcl packages.•••* gnu/packages/lisp-xyz.scm (sbcl-cl-iconv): Fix synopsis. (sbcl-nclasses): Fix synopsis. (sbcl-slite): Fix synopsis. Signed-off-by: Vagrant Cascadian <vagrant@debian.org> Gabriel Wicki2024-12-101-3/+3
* gnu: Fix synopsis in various emacs packages.•••* gnu/packages/emacs-xyz.scm (emacs-0x0): Fix synopsis. (emacs-speed-type): Fix synopsis. (emacs-bbdb-vcard): Fix synopsis. (emacs-mediawiki-el): Fix synopsis. (emacs-capf-autosuggest): Fix synopsis. (emacs-org-rich-yank): Fix synopsis. (emacs-anakondo): Fix synopsis. (emacs-gnosis): Fix synopsis. (emacs-free-keys): Fix synopsis. (emacs-pgmacs): Fix synopsis. (emacs-jsdoc): Fix synopsis. (emacs-ox-reveal): Fix synopsis. (emacs-discomfort): Fix synopsis. * gnu/packages/emacs.scm (emacs-no-x-toolkit): Fix synopsis. Signed-off-by: Vagrant Cascadian <vagrant@debian.org> Gabriel Wicki2024-12-102-15/+15