;;; glep-mode.el --- edit Gentoo GLEPs -*-lexical-binding:t-*- ;; Copyright 2017-2024 Gentoo Authors ;; Author: Ulrich Müller ;; Maintainer: ;; Keywords: wp ;; This file 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 2 of the License, or ;; (at your option) any later version. ;; This file 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 GNU Emacs. If not, see . ;;; Commentary: ;;; Code: (require 'rst) (require 'font-lock) (require 'easymenu) (require 'skeleton) (require 'ebuild-mode) (defgroup glep nil "Major mode for Gentoo Linux Enhancement Proposals." :group 'text) (defcustom glep-mode-update-last-modified t "If non-nil, update Last-Modified date before writing a file." :type 'boolean :group 'glep) (defvar glep-mode-font-lock-keywords (eval-when-compile (concat "^" (regexp-opt '("GLEP" "Title" "Author" "Type" "Status" "Version" "Created" "Last-Modified" "Post-History" "Content-Type" "Requires" "Replaces" "Replaced-By") t) ":")) "Expressions to highlight in the preamble of a GLEP.") (defvar glep-mode-delim-re "^---$" "Regexp matching delimiters of the GLEP header.") (defvar glep-mode-last-modified-re "^Last-Modified:[ \t]+\\([0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9]\\)[ \t]*$" "Regexp matching the Last-Modified header line.") (defvar glep-mode-preamble-limit 2000 "Maximum length of GLEP preamble. For efficiency only. Unlimited if nil.") (defun glep-mode-update-last-modified () "Update the Last-Modified date." (save-excursion (goto-char (point-min)) (let ((date (ebuild-mode-time-string "%Y-%m-%d")) (case-fold-search nil)) (and (re-search-forward glep-mode-last-modified-re glep-mode-preamble-limit t) (glep-mode-in-preamble-p (point)) (not (string-equal date (match-string 1))) (replace-match date t t nil 1))))) (defun glep-mode-before-save () "Function to be called before saving a buffer. This will be added to the `write-contents-functions' hook." (when glep-mode-update-last-modified (glep-mode-update-last-modified) ;; call it only once per buffer (set (make-local-variable 'glep-mode-update-last-modified) nil)) ;; return nil, otherwise the file is presumed to be written nil) ;;;###autoload (define-derived-mode glep-mode rst-mode "GLEP" "Major mode for Gentoo Linux Enhancement Proposals." ;; (setq indent-tabs-mode nil) ;; Tabs are allowed by GLEP 2, and should represent 4 spaces. ;; (Whereas PEP 12 said: "Tab characters must never appear ;; in the document at all.") (setq tab-width 4) ;; GLEP 2 specifies double space after a full stop, and filling ;; of paragraphs to column 70. (setq fill-column 70) (set (make-local-variable 'sentence-end-double-space) t) (add-hook 'font-lock-extend-region-functions #'glep-mode-font-lock-extend-region t) (add-hook 'write-contents-functions #'glep-mode-before-save t t)) (defun glep-mode-add-font-lock () "Add `glep-mode' font-lock keywords for the current buffer." (font-lock-add-keywords nil '((glep-mode-font-lock-match-delims . font-lock-comment-delimiter-face) (glep-mode-font-lock-match-preamble . font-lock-keyword-face)))) (add-hook 'glep-mode-hook #'glep-mode-add-font-lock) (defun glep-mode-preamble-bounds () "Return list with begin and end of the preamble, or nil if none found." (save-excursion (save-match-data (goto-char (point-min)) (and (re-search-forward glep-mode-delim-re glep-mode-preamble-limit t) (let ((beg (match-beginning 0))) (if (re-search-forward glep-mode-delim-re glep-mode-preamble-limit t) (list beg (match-end 0)))))))) (defun glep-mode-in-preamble-p (pos) "Return non-nil if position POS is inside the GLEP's preamble." (let ((pre (glep-mode-preamble-bounds))) (and pre (>= pos (car pre)) (<= pos (cadr pre))))) (defun glep-mode-font-lock-match-delims (limit) "Match delimiters to be highlighted by font-lock. LIMIT is the limit of the search." (let ((pos (save-excursion (re-search-forward glep-mode-delim-re limit t)))) (and pos (glep-mode-in-preamble-p pos) (goto-char pos)))) (defun glep-mode-font-lock-match-preamble (limit) "Match expressions in the preamble to be highlighted by font-lock. LIMIT is the limit of the search." (let ((pos (save-excursion (re-search-forward glep-mode-font-lock-keywords limit t)))) (and pos (glep-mode-in-preamble-p pos) (goto-char pos)))) (defvar font-lock-beg) (defvar font-lock-end) (defun glep-mode-font-lock-extend-region () "Extend the font-lock region if it might be in a multi-line construct. Return non-nil if so. Font-lock region is from `font-lock-beg' to `font-lock-end'." (let ((pre (glep-mode-preamble-bounds)) ret) (when pre (and (> font-lock-beg (car pre)) (<= font-lock-beg (cadr pre)) (setq font-lock-beg (car pre) ret t)) (and (>= font-lock-end (car pre)) (< font-lock-end (cadr pre)) (setq font-lock-end (cadr pre) ret t)) ret))) ;; Prevent rst-mode from interpreting the "---" delimiter as section header. ;; *** FIXME *** This is incomplete and probably too brittle. (defun glep-mode-ignore-preamble (_adornment end &rest _args) ;; checkdoc-params: (_adornment end _args) "Ignore GLEP preamble in `rst-classify-adornment'." (not (and (eq major-mode 'glep-mode) (glep-mode-in-preamble-p end)))) (advice-add 'rst-classify-adornment :before-while #'glep-mode-ignore-preamble) ;;; Generate HTML from GLEP. (defun glep-mode-format-html () "Generate HTML from reStructuredText GLEP file. Calls the external \"glep\" command." (interactive) (or buffer-file-name (error "No file for this buffer")) (let* ((rst-file (file-relative-name buffer-file-name)) (html-file (concat (file-name-sans-extension rst-file) ".html"))) (compile (format "glep %s %s" rst-file html-file)))) ;;; Skeleton support. ;; Header format, as specified by GLEP 1. ;; --- ;; GLEP: ;; Title: ;; Author: ;; Type: ;; Status: ;; Version: [.] ;; Created: ;; Last-Modified: ;; Post-History: ;; Content-Type: ;; * Requires: ;; * Replaces: ;; * Replaced-By: ;; --- (define-skeleton glep-mode-insert-skeleton "Insert a skeleton for a Gentoo Linux Enhancement Proposal." nil "---\n" "GLEP: " (skeleton-read "GLEP: " "9999") "\n" "Title: " (skeleton-read "Title: ") "\n" "Author: " (skeleton-read "Author's real name and e-mail address: " (concat ebuild-mode-full-name " <" ebuild-mode-mail-address ">")) "\n" "Type: " (completing-read "Type (TAB for completion): " (mapcar #'list '("Informational" "Standards Track")) nil 'confirm) "\n" "Status: " (completing-read "Status (TAB for completion): " (mapcar #'list '("Draft" "Active" "Accepted" "Deferred" "Withdrawn" "Rejected" "Final" "Replaced" "Moribund")) nil 'confirm "Draft") "\n" "Version: " (skeleton-read "Version: " "1") "\n" "Created: " (ebuild-mode-time-string "%Y-%m-%d") "\n" "Last-Modified: " (ebuild-mode-time-string "%Y-%m-%d") "\n" "Post-History: \n" "Content-Type: text/x-rst\n" ((skeleton-read "Requires: (null string if none): ") "Requires: " str "\n") ((skeleton-read "Replaces: (null string if none): ") "Replaces: " str "\n") "---\n" "\n\n" ;; Most of the following text is taken from GLEP 2, based on the last ;; CVS version by Grant Goodyear, which is in the public domain: ;; https://gitweb.gentoo.org/archive/proj/gentoo.git/tree/xml/htdocs/proj/en/glep/glep-0002.txt "\ How to Use This Template ======================== To use this template you must first decide whether your GLEP is going to be an Informational or Standards Track GLEP. Most GLEPs are Standards Track because they propose new functionality for some aspect of Gentoo Linux. When in doubt, read GLEP 1 for details or contact the GLEP editors . Once you've decided which type of GLEP yours is going to be, follow the directions below. - Change the Title header to the title of your GLEP. - Change the Author header to include your name, and optionally your e-mail address. Be sure to follow the format carefully: your name must appear first, and it must not be contained in parentheses. Your e-mail address may appear second (or it can be omitted) and if it appears, it must appear in angle brackets. - For Standards Track GLEPs, change the Type header to \"Standards Track\". - For Informational GLEPs, change the Type header to \"Informational\". - Change the Status header to \"Draft\". - Reset the Version to \"1\". - Change the Created and Last-Modified headers to today's date. Be sure to follow the format carefully: it must be in ISO 8601 ``yyyy-mm-dd`` format, with the date represented in UTC (Coordinated Universal Time). - Reset the Post-History to empty for now; you'll add dates to this header each time you post your GLEP to gentoo-dev@lists.gentoo.org. If you posted your GLEP to the list on August 14, 2003 and September 3, 2003, the Post-History header would look like:: Post-History: 2003-08-14, 2003-09-03 You must manually add new dates (again, in UTC) and check them in. If you don't have check-in privileges, send your changes to the GLEP editors. - For Standards Track GLEPs, if your feature depends on the acceptance of some other currently in-development GLEP, add a Requires header right after the Type header. The value should be the GLEP number of the GLEP yours depends on. Don't add this header if your dependent feature is described in a Final GLEP. - Add a Replaces header if your GLEP obsoletes one or more earlier GLEPs. The value of this header is the numbers of the GLEPs that your new GLEP is replacing, separated by commas. Only add this header if the older GLEP is in \"final\" form, i.e. is either Accepted, Final, or Rejected. You aren't replacing an older open GLEP if you're submitting a competing idea. - Now write your Abstract, Rationale, and other content for your GLEP, replacing all of this gobbledygook with your own text. Be sure to adhere to the format guidelines of GLEP 2 [#GLEP2]_, specifically on the indentation requirements. - Update your References section. Just leave the Copyright section alone, because all new GLEPs must be released under the Creative Commons Attribution-ShareAlike 4.0 International License (CC-BY-SA-4.0). - Send your GLEP submission to the GLEP editors at glep@gentoo.org. Abstract ======== A short (~200 word) description of the technical issue being addressed. This is a sample template for creating your own reStructuredText GLEPs. In conjunction with the content guidelines in GLEP 1 [#GLEP1]_, this should make it easy for you to conform your own GLEPs to the format outlined below. Motivation ========== Provide adequate motivation here. In this particular case, we need to provide people with the information necessary to submit GLEPs in the proper form. Specification ============= The technical specification should describe the specific areas of Gentoo Linux that would be touched by this GLEP. If new functionality is being introduced, what packages will that functionality affect? If new policy, who will be affected? Rationale ========= The rationale fleshes out the specification by describing what motivated the design and why particular design decisions were made. It should describe alternate designs that were considered and related work, e.g. how the feature is supported in other distributions. The rationale should provide evidence of consensus within the community and discuss important objections or concerns raised during discussion. Backwards Compatibility ======================= Not a problem for this GLEP. This section should be included *even* when it is only to state that there are no backwards compatibility issues. Reference Implementation ======================== The reference implementation must be completed before any GLEP is given status \"Final\", but it need not be completed before the GLEP is accepted. It is better to finish the specification and rationale first and reach consensus on it before writing code or significantly modifying ebuilds. References ========== .. [#GLEP1] GLEP 1, GLEP Purpose and Guidelines, Goodyear, (https://www.gentoo.org/glep/glep-0001.html) .. [#GLEP2] GLEP 2, Sample ReStructuredText GLEP Template, Goodyear, (https://www.gentoo.org/glep/glep-0002.html) Copyright ========= This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/. ") ;; rst-mode already uses the following C-c C- keys: aclrt (define-key glep-mode-map "\C-c\C-n" #'glep-mode-insert-skeleton) (define-key glep-mode-map "\C-c\C-f" #'glep-mode-format-html) (easy-menu-define glep-mode-menu glep-mode-map "Menu for `glep-mode'." '("GLEP" ["Insert skeleton" glep-mode-insert-skeleton] ["Format as HTML" glep-mode-format-html])) ;;;###autoload (add-to-list 'auto-mode-alist '("/glep.*\\.rst\\'" . glep-mode)) (provide 'glep-mode) ;; Local Variables: ;; coding: utf-8 ;; End: ;;; glep-mode.el ends here