aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-03-10gnu: cataclysm-dda: Improve package style.Nicolas Goaziou
* gnu/packages/games.scm (cataclysm-dda)[arguments]: Use G-expressions. [native-inputs]: Remove labels. Re-order alphabetically.
2023-03-10gnu: Add r-hdcytodata.Navid Afkhami
* gnu/packages/bioconductor.scm (r-hdcytodata): New variable. Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
2023-03-10doc: Add missing space after @deftp.Ludovic Courtès
* doc/guix.texi (Samba Services): Add missing space before brace.
2023-03-10gnu: Add 9base.Antero Mejr
* gnu/packages/suckless.scm (9base): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10gnu: Add 9yacc.Antero Mejr
* gnu/packages/suckless.scm (9yacc): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10gnu: Add lib9.Antero Mejr
* gnu/packages/suckless.scm (lib9): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10gnu: r-mapproj: Correct license field to lpl1.02.Antero Mejr
* gnu/packages/cran.scm (r-mapproj): Correct license. [license]: Change to lpl1.02. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10import: Add EUPL 1.1 to the SPDX license name converter.Antero Mejr
* guix/import/utils.scm (spdx-string->license): Add EUPL-1.1 identifier. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10licenses: Add LPL 1.02 (Lucent Public Licence).Antero Mejr
* guix/licenses.scm (lpl1.02): New variable. * guix/import/utils.scm (spdx-string->license): Add LPL-1.02 identifier. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10doc: Sending-a-Patch-Series: Fix URL.Hugo Buddelmeijer
* doc/contributing.texi (Sending a Patch Series): Fix URL for issue tracker. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10services: xorg: Deprecate 'screen-locker-service' procedure.Bruno Victal
* doc/guix.texi (X Window): Replace 'screen-locker-service' with 'screen-locker-service-type'. Document <screen-locker-configuration>. * gnu/services/desktop.scm (desktop-services-for-system): Use screen-locker-service-type. * gnu/services/xorg.scm: Export accessors for <screen-locker-configuration>. (<screen-locker>): Rename to ... (<screen-locker-configuration>): ... this. (<screen-locker-configuration>)[empty?]: Rename to ... (<screen-locker-configuration>)[allow-empty-password?]: ... this. (screen-locker-pam-services): Update record name. (screen-locker-setuid-programs): Update accessor name. (screen-locker-service): Deprecate procedure. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10services: connman: Set service canonical-name to connman.Bruno Victal
* gnu/services/networking.scm (connman-shepherd-service): Make 'networking a virtual service and set 'connman as its canonical name. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10services: network-manager: Set service canonical-name to NetworkManager.Bruno Victal
According to the semantics in [1], 'networking should be a "virtual service" and NetworkManager its canonical-name. This does not influence existing services and they should continue to use the 'networking symbol. One visible change is that 'herd status' doesn't show 'networking' anymore, instead listing 'NetworkManager' in its place but both symbols are can be used to start and stop the same service. Note: Though the symbol NetworkManager doesn't really conform with the overall kebab-case used throughout Guix, this is intentional as we really want to make it clear that that the symbol NetworkManager really refers to the software called NetworkManager, since it's a canonical name here. (rather than risk misleading the user to interpret the symbol network-manager as a symbol for some unspecific network management software) [1]: https://www.gnu.org/software/shepherd/manual/html_node/Jump-Start.html * gnu/services/networking.scm (network-manager-shepherd-service): Make 'networking a virtual service and set 'NetworkManager as its canonical name. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10services: network-manager: Await for NetworkManager to finish starting up.Bruno Victal
This is similar to its NetworkManager-wait-online.service systemd counterpart, with the main difference being that we handle it all in 'networking symbol, rather than introduce a new 'networking-online symbol. (see discussion #47253) As a result of this change, with opensmtpd-service-type as an example, manual 'herd restart smtpd' after system bootups are no longer required when opensmtpd is configured with a smtpd.conf containing non-loopback interfaces. (this issue is described in more detail at #60300) Fixes <https://issues.guix.gnu.org/60300>. * gnu/services/networking.scm (network-manager-shepherd-service): Await for NetworkManager to finish starting up. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10services: connman: Deprecate 'iwd?' field.Bruno Victal
* gnu/services/networking.scm (<connman-configuration>) [iwd?]: Use helper to warn deprecated field. (connman-shepherd-service): Make iwd? a local variable independent from the deprecated field. * doc/guix.texi (Networking Setup): Remove mention of iwd? field. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10services: connman: Add 'shepherd-requirement' field.Bruno Victal
* gnu/services/networking.scm (<connman-configuration>) [shepherd-requirement]: New field. (connman-shepherd-service): Honor it. (connman-configuration-shepherd-requirement): Export accessor. * doc/guix.texi (Networking Setup): Document it. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10services: connman: Use match-record and export accessors.Bruno Victal
* gnu/services/networking.scm (connman-shepherd-service): Use match-record. (connman-configuration-connman, connman-configuration-disable-vpn?) (connman-configuration-iwd?): Export accessors. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10services: network-manager: Deprecate 'iwd?' field.Bruno Victal
* gnu/services/networking.scm (warn-iwd?-field-deprecation): New procedure, helper for deprecated field. (<network-manager-configuration>)[iwd?]: Use helper to warn deprecated field. (network-manager-shepherd-service): Make iwd? a local variable independent from the deprecated field. * doc/guix.texi (Networking Setup): Remove mention of iwd? field. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10services: network-manager: Add 'shepherd-requirement' field.Bruno Victal
Note: This also makes wpa-supplicant an optional requirement. * gnu/services/networking.scm (<network-manager-configuration>) [shepherd-requirement]: New field. (network-manager-shepherd-service): Honor it. (network-manager-configuration-shepherd-requirement): Export accessor. * doc/guix.texi (Networking Setup): Document it. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-03-10build-system/gnu: Remove 'install-license-files' from '%dist-phases'.Ludovic Courtès
* guix/build/gnu-dist.scm (%dist-phases): Delete 'install-license-files'.
2023-03-09gnu: ipxe: Update to 1.21.1-1.9e1f7a3.Efraim Flashner
* gnu/packages/bootloaders.scm (ipxe): Update to 1.21.1-1.9e1f7a3. [source]: Remove patch. [arguments]: Add phase to skip 1 i386 firmware file. Move setting syslinux path from make-flags to phases. * gnu/packages/patches/ipxe-reproducible-geniso.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Remove it.
2023-03-09gnu: make-openbios-package: Enable building from aarch64, riscv64.Efraim Flashner
* gnu/packages/firmware.scm (make-openbios-package)[source]: Add patch to correctly detect aarch64 and riscv64 build hosts. (openbios-qemu-ppc)[arguments]: Remove aarch64 workaround for #:system. * gnu/packages/patches/openbios-aarch64-riscv64-support.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it.
2023-03-09gnu: make-openbios-package: Enable setting configure-flags.Efraim Flashner
* gnu/packages/firmware.scm (make-openbios-package)[arguments]: Adjust custom 'configure phase to apply configure-flags.
2023-03-09gnu: emacs-next-tree-sitter: Inherit from emacs-next-pgtk.Andrew Tropin
Make emacs with tree-sitter work on wayland as well. * gnu/packages/emacs.scm (emacs-next-tree-sitter): Inherit from emacs-next-pgtk, remove uneeded native-inputs, add synopsis and description. [source]: Use inherited patches.
2023-03-09gnu: emacs-next-pgtk: Remove xwidgets support.Andrew Tropin
xwidgets is beefy and buggy, but emacs-next-pgtk is important for wayland users, so it seems a good idea to remove xwidgets from emacs-next-pgtk. Also, we have a separate emacs-xwidgets package for those who wants to experiment. * gnu/packages/emacs.scm (emacs-next-pgtk)[propagated-inputs]: Remove gsettings-desktop-schemas glib-networking. [arguments]<#:configure-flags>: Remove --with-xwidgets. [inputs]: Remove webkitgtk-with-libsoup2. [home-page]: PGTK is merged to upstream emacs repository now, so inherit home-page from emacs-next.
2023-03-09gnu: Add emacs-cyrillic-dvorak-im.Andrew Tropin
* gnu/packages/emacs-xyz.scm (emacs-cyrillic-dvorak-im): New variable.
2023-03-09gnu: fluxbox: Make big cursors work.Danny Milosavljevic
* gnu/packages/patches/fluxbox-1.3.7-no-dynamic-cursor.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/wm.scm (fluxbox)[source]: Add patch. [arguments]<#:phases>[force-bootstrap]: New phase. [native-inputs]: Add autoconf, automake, gnu-gettext. [inputs]: Add libxcursor.
2023-03-08gnu: tlpui: Update to 1.5.0-6.Nicolas Goaziou
* gnu/packages/linux.scm (tlpui): Update to 1.5.0-6. [arguments]<#:phases>: Rename USE-TLP-INPUT into SET-ABSOLUTE-LOCATIONS to be more accurate. Also add a new phase to skip failing tests. [inputs]: Add LSBUTILS and PCIUTILS.
2023-03-08gnu: emacs-ace-jump-helm-line: Fix description.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-ace-jump-helm-line)[description]: Pacify linter.
2023-03-08gnu: emacs-afternoon-theme: Use HTTPS home page URI.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-afternoon-theme)[home-page]: Use HTTPS URI.
2023-03-08gnu: Add emacs-afternoon-theme.Rostislav Svoboda
* gnu/packages/emacs-xyz.scm (emacs-afternoon-theme): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2023-03-08gnu: Add emacs-cider-eval-sexp-fu.Rostislav Svoboda
* gnu/packages/emacs-xyz.scm (emacs-cider-eval-sexp-fu): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2023-03-08gnu: Add emacs-ace-jump-helm-line.Rostislav Svoboda
* gnu/packages/emacs-xyz.scm (emacs-ace-jump-helm-line): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2023-03-08gnu: Add emacs-ac-ispell.Rostislav Svoboda
* gnu/packages/emacs-xyz.scm (emacs-ac-ispell): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2023-03-08gnu: Add emacs-cfrs.Rostislav Svoboda
* gnu/packages/emacs-xyz.scm (emacs-cfrs): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2023-03-08gnu: Add emacs-font-lock+.Rostislav Svoboda
* gnu/packages/emacs-xyz.scm (emacs-font-lock+): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
2023-03-08gnu: emacs-terraform-mode: Update to 1.0.0.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-terraform-mode): Update to 1.0.0. [propagated-inputs]: Add EMACS-DASH.
2023-03-08gnu: emacs-shell-command+: Update to 2.4.2.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-shell-command+): Update to 2.4.2.
2023-03-08gnu: emacs-org-re-reveal: Update to 3.18.2.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-org-re-reveal): Update to 3.18.2.
2023-03-08gnu: emacs-magit-todos: Update to 1.6.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-magit-todos): Update to 1.6.
2023-03-08gnu: emacs-ebuild-mode: Update to 1.62.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-ebuild-mode): Update to 1.62.
2023-03-08gnu: emacs-dtrt-indent: Update to 1.9.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-dtrt-indent): Update to 1.9.
2023-03-08gnu: emacs-cnfonts: Update to 1.1.0.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-cnfonts): Update to 1.1.0. [description]: Use proper capitalization.
2023-03-08gnu: emacs-cmake-font-lock: Update to 0.1.13.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-cmake-font-lock): Update to 0.1.13.
2023-03-08gnu: emacs-beginend: Update to 2.4.0.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-beginend): Update to 2.4.0.
2023-03-08gnu: emacs-tramp: Update to 2.6.0.2.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-tramp): Update to 2.6.0.2.
2023-03-08gnu: emacs-kind-icon: Update to 0.2.0.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-kind-icon): Update to 0.2.0.
2023-03-08gnu: emacs-compat: Update to 29.1.4.0.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-compat): Update to 29.1.4.0.
2023-03-08gnu: emacs-subed: Update to 1.1.0.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-subed): Update to 1.1.0.
2023-03-08gnu: emacs-auctex: Update to 13.1.10.Nicolas Goaziou
* gnu/packages/emacs-xyz.scm (emacs-auctex): Update to 13.1.10.