#!@EMACS@ --script ;;; indent-code.el --- Run Emacs to indent a package definition. ;; Copyright © 2017 Alex Kost ;; Copyright © 2017 Ludovic Courtès ;; This file is part of GNU Guix. ;; GNU Guix is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; GNU Guix is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see . ;;; Commentary: ;; This scripts indents the given file or package definition in the specified ;; file using Emacs. ;;; Code: ;; Load Scheme indentation rules from ".dir-locals.el". (with-temp-buffer (scheme-mode) (let ((default-directory (file-name-as-directory load-file-name)) (enable-local-variables :all)) (hack-dir-local-variables) (hack-local-variables-apply))) ;; Add indentation info for Scheme constructs that are not Guix-specific. ;; This is normally provided by Geiser but this file is for people who may not ;; be running Geiser, so we just copy it here (from 'geiser-syntax.el'). (defmacro guix-syntax--scheme-indent (&rest pairs) `(progn ,@(mapcar (lambda (p) `(put ',(car p) 'scheme-indent-function ',(cadr p))) pairs))) (guix-syntax--scheme-indent (and-let* 1) (case-lambda 0) (catch defun) (class defun) (dynamic-wind 0) (guard 1) (let*-values 1) (let-values 1) (let/ec 1) (letrec* 1) (match 1) (match-lambda 0) (match-lambda* 0) (match-let scheme-let-indent) (match-let* 1) (match-letrec 1) (opt-lambda 1) (parameterize 1) (parameterize* 1) (receive 2) (require-extension 0) (syntax-case 2) (test-approximate 1) (test-assert 1) (test-eq 1) (test-equal 1) (test-eqv 1) (test-group-with-cleanup 1) (test-runner-on-bad-count! 1) (test-runner-on-bad-end-name! 1) (test-runner-on-final! 1) (test-runner-on-group-begin! 1) (test-runner-on-group-end! 1) (test-runner-on-test-begin! 1) (test-runner-on-test-end! 1) (test-with-runner 1) (unless 1) (when 1) (while 1) (with-exception-handler 1) (with-syntax 1)) (pcase command-line-args-left (`(,file-name ,package-name) ;; Indent the definition of PACKAGE-NAME in FILE-NAME. (find-file file-name) (goto-char (point-min)) (if (re-search-forward (concat "^(define\\(-public\\) +" package-name) nil t) (let ((indent-tabs-mode nil)) (beginning-of-defun) (indent-sexp) (save-buffer) (message "Done!")) (error "Package '%s' not found in '%s'" package-name file-name))) (`(,file-name) ;; Indent all of FILE-NAME. (find-file file-name) (let ((indent-tabs-mode nil)) (indent-region (point-min) (point-max)) (save-buffer) (message "Done!"))) (x (error "Usage: indent-code.el FILE [PACKAGE]"))) ;;; indent-code.el ends here gned-off-by: Ludovic Courtès <ludo@gnu.org> Bruno Victal 2022-04-29services: Add missing 'description' fields....* gnu/services/databases.scm (postgresql-service-type)[description]: New field. (memcached-service-type)[description]: New field. (mysql-service-type)[description]: New field. (redis-service-type)[description]: New field. * gnu/services/desktop.scm (geoclue-service-type)[description]: New field. (udisks-service-type)[description]: New field. (elogind-service-type)[description]: New field. (account-service-type)[description]: New field. * gnu/services/kerberos.scm (krb5-service-type)[description]: New field. (pam-krb5-service-type)[description]: New field. * gnu/services/lirc.scm (lirc-service-type)[description]: New field. * gnu/services/mail.scm (dovecot-service-type)[description]: New field. (opensmtpd-service-type)[description]: New field. (mail-aliases-service-type)[description]: New field. (exim-service-type)[description]: New field. * gnu/services/monitoring.scm (zabbix-server-service-type)[description]: New field. (zabbix-agent-service-type)[description]: New field. * gnu/services/nfs.scm (rpcbind-service-type)[description]: New field. (pipefs-service-type)[description]: New field. (gss-service-type)[description]: New field. (idmap-service-type)[description]: New field. * gnu/services/spice.scm (spice-vdagent-service-type)[description]: New field. * gnu/services/sysctl.scm (sysctl-service-type)[description]: New field. * gnu/services/virtualization.scm (libvirt-service-type)[description]: New field. (virtlog-service-type)[description]: New field. * gnu/services/vpn.scm (openvpn-server-service-type)[description]: New field. (openvpn-client-service-type)[description]: New field. (wireguard-service-type)[description]: New field. * gnu/services/web.scm (httpd-service-type)[description]: New field. (fcgiwrap-service-type)[description]: New field. (agate-service-type)[description]: New field. [name]: Fix. Ludovic Courtès 2021-11-30services: Accept <inferior-package>s in lieu of <package>s....* gnu/services/authentication.scm (fprintd-configuration) (nslcd-configuration): Substitute file-like objects for package ones. * gnu/services/cgit.scm (cgit-configuration, opaque-cgit-configuration): Likewise. * gnu/services/cups.scm (package-list?, cups-configuration): Likewise. * gnu/services/dns.scm (verify-knot-configuration) (ddclient-configuration): Likewise. * gnu/services/docker.scm (docker-configuration): Likewise. * gnu/services/file-sharing.scm (transmission-daemon-configuration): Likewise. * gnu/services/getmail.scm (getmail-configuration): Likewise. * gnu/services/mail.scm (dovecot-configuration) (opaque-dovecot-configuration): Likewise. * gnu/services/messaging.scm (prosody-configuration) (opaque-prosody-configuration): Likewise. * gnu/services/monitoring.scm (zabbix-server-configuration) (zabbix-agent-configuration): Likewise. * gnu/services/networking.scm (opendht-configuration): Likewise. * gnu/services/pm.scm (tlp-configuration): Likewise. * gnu/services/telephony.scm (jami-configuration): Likewise. * gnu/services/virtualization.scm (libvirt-configuration) (qemu-guest-agent-configuration): Likewise. * gnu/services/vpn.scm (openvpn-client-configuration): Likewise. Tobias Geerinckx-Rice