diff --git a/.gitignore b/.gitignore index f01faf9..eaaee0c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,2 @@ /emacs-flycheck-31.tar.gz /emacs-flycheck-32.tar.gz -/emacs-flycheck-34.1.tar.gz -/emacs-flycheck-35.0.tar.gz diff --git a/emacs-flycheck.spec b/emacs-flycheck.spec index 6f9f1b5..87fac85 100644 --- a/emacs-flycheck.spec +++ b/emacs-flycheck.spec @@ -1,13 +1,13 @@ %global pkg flycheck Name: emacs-%{pkg} -Version: 35.0 -Release: 2%{?dist} +Version: 32 +Release: 1%{?dist} Summary: On the fly syntax checking for GNU Emacs -License: GPL-3.0-or-later +License: GPLv3+ URL: https://www.flycheck.org/ -Source0: https://github.com/%{pkg}/%{pkg}/archive/v%{version}/%{name}-%{version}.tar.gz +Source0: https://github.com/%{pkg}/%{pkg}/archive/%{version}/%{name}-%{version}.tar.gz Source1: %{pkg}-init.el BuildRequires: emacs @@ -49,46 +49,9 @@ install -Dpm 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_emacs_sitestartdir}/%{pkg}-init.e %changelog -* Wed Jul 23 2025 Fedora Release Engineering - 35.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild - -* Sat Jul 12 2025 Mohamed El Morabity - 35.0-1 -- Update to 35.0 - -* Thu Jan 16 2025 Fedora Release Engineering - 34.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild - -* Wed Jul 17 2024 Fedora Release Engineering - 34.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild - -* Fri Mar 01 2024 Mohamed El Morabity - 34.1-1 -- Update to 34.1 -- Migrate to SPDX license - -* Wed Jan 24 2024 Fedora Release Engineering - 32-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Fri Jan 19 2024 Fedora Release Engineering - 32-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Wed Jul 19 2023 Fedora Release Engineering - 32-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Thu Jan 19 2023 Fedora Release Engineering - 32-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Thu Jul 21 2022 Fedora Release Engineering - 32-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - * Wed Mar 30 2022 Mohamed El Morabity - 32-1 - Update to 32 -* Thu Jan 20 2022 Fedora Release Engineering - 31-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Wed Jul 21 2021 Fedora Release Engineering - 31-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - * Tue Jan 26 2021 Fedora Release Engineering - 31-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/flycheck-init.el b/flycheck-init.el index df7016f..7559b78 100644 --- a/flycheck-init.el +++ b/flycheck-init.el @@ -1,8 +1,5 @@ (autoload 'flycheck-manual "flycheck" "\ -Open the Flycheck manual." t) - -(autoload 'flycheck-quick-help "flycheck" "\ -Display brief Flycheck help." t) +Open the Flycheck manual." t nil) (autoload 'flycheck-mode "flycheck" "\ Flycheck is a minor mode for on-the-fly syntax checking. @@ -24,11 +21,10 @@ Flycheck displays its status in the mode line. In the default configuration, it looks like this: `FlyC' This buffer has not been checked yet. -`FlyC*' Flycheck is running. Expect results soon! -`FlyC:0' Last check resulted in no errors and no warnings. -`FlyC:3|5' This buffer contains three errors and five warnings. - Use `\\[flycheck-list-errors]' to see the list. `FlyC-' Flycheck doesn't have a checker for this buffer. +`FlyC*' Flycheck is running. Expect results soon! +`FlyC:3|2' This buffer contains three warnings and two errors. + Use `\\[flycheck-list-errors]' to see the list. You may also see the following icons: `FlyC!' The checker crashed. @@ -47,7 +43,7 @@ and disable it if ARG is zero or negative. If called from Lisp, also enable the mode if ARG is omitted or nil, and toggle it if ARG is ‘toggle’; disable the mode otherwise. -\(fn &optional ARG)" t) +\(fn &optional ARG)" t nil) (put 'global-flycheck-mode 'globalized-minor-mode t) @@ -64,18 +60,14 @@ or call the function `global-flycheck-mode'.") (autoload 'global-flycheck-mode "flycheck" "\ Toggle Flycheck mode in all buffers. With prefix ARG, enable Global Flycheck mode if ARG is positive; -otherwise, disable it. - -If called from Lisp, toggle the mode if ARG is `toggle'. -Enable the mode if ARG is nil, omitted, or is a positive number. -Disable the mode if ARG is a negative number. - -Flycheck mode is enabled in all buffers where `flycheck-mode-on-safe' -would do it. +otherwise, disable it. If called from Lisp, enable the mode if +ARG is omitted or nil. +Flycheck mode is enabled in all buffers where +`flycheck-mode-on-safe' would do it. See `flycheck-mode' for more information on Flycheck mode. -\(fn &optional ARG)" t) +\(fn &optional ARG)" t nil) (autoload 'flycheck-define-error-level "flycheck" "\ Define a new error LEVEL with PROPERTIES. @@ -85,8 +77,7 @@ The following PROPERTIES constitute an error level: `:severity SEVERITY' A number denoting the severity of this level. The higher the number, the more severe is this level compared to other - levels. Defaults to 0; info is -10, warning is 10, and - error is 100. + levels. Defaults to 0. The severity is used by `flycheck-error-level-<' to determine the ordering of errors according to their levels. @@ -134,9 +125,9 @@ The following PROPERTIES constitute an error level: A face symbol denoting the face to use for messages of this level in the error list. See `flycheck-list-errors'. -\(fn LEVEL &rest PROPERTIES)") +\(fn LEVEL &rest PROPERTIES)" nil nil) -(function-put 'flycheck-define-error-level 'lisp-indent-function 1) +(function-put 'flycheck-define-error-level 'lisp-indent-function '1) (autoload 'flycheck-define-command-checker "flycheck" "\ Define SYMBOL as syntax checker to run a command. @@ -208,21 +199,6 @@ of command checkers is `flycheck-sanitize-errors'. If this property is given and has a non-nil value, send the contents of the buffer on standard input. - Some checkers that support reading from standard input have - a separate flag to indicate the name of the file whose - contents are being passed on standard input (typically - `stdin-filename'). In that case, use the `(option)' form in - `:command' to pass the value of variable `buffer-file-name' - when the current buffer has a file name (that is, - use `option \"--stdin-file-name\" buffer-file-name'). - - For buffers not backed by files, checkers that support input - on stdin typically report a file name like `-' or `'. - Make sure your error parser or patterns expect these file - names (for example, use `(or \"\" (file-name))') or - call `flycheck-remove-error-file-names' in a custom - `:error-filter'. - Defaults to nil. Note that you may not give `:start', `:interrupt', and @@ -230,11 +206,11 @@ Note that you may not give `:start', `:interrupt', and `:verify' function, though, whose results will be appended to the default `:verify' function of command checkers. -\(fn SYMBOL DOCSTRING &rest PROPERTIES)") +\(fn SYMBOL DOCSTRING &rest PROPERTIES)" nil nil) -(function-put 'flycheck-define-command-checker 'lisp-indent-function 1) +(function-put 'flycheck-define-command-checker 'lisp-indent-function '1) -(function-put 'flycheck-define-command-checker 'doc-string-elt 2) +(function-put 'flycheck-define-command-checker 'doc-string-elt '2) (autoload 'flycheck-def-config-file-var "flycheck" "\ Define SYMBOL as config file variable for CHECKER, with default FILE-NAME. @@ -252,7 +228,7 @@ argument to `flycheck-define-checker'. \(fn SYMBOL CHECKER &optional FILE-NAME &rest CUSTOM-ARGS)" nil t) -(function-put 'flycheck-def-config-file-var 'lisp-indent-function 3) +(function-put 'flycheck-def-config-file-var 'lisp-indent-function '3) (autoload 'flycheck-def-option-var "flycheck" "\ Define SYMBOL as option variable with INIT-VALUE for CHECKER. @@ -269,9 +245,9 @@ Use this together with the `option', `option-list' and \(fn SYMBOL INIT-VALUE CHECKERS DOCSTRING &rest CUSTOM-ARGS)" nil t) -(function-put 'flycheck-def-option-var 'lisp-indent-function 3) +(function-put 'flycheck-def-option-var 'lisp-indent-function '3) -(function-put 'flycheck-def-option-var 'doc-string-elt 4) +(function-put 'flycheck-def-option-var 'doc-string-elt '4) (autoload 'flycheck-define-checker "flycheck" "\ Define SYMBOL as command syntax checker with DOCSTRING and PROPERTIES. @@ -282,12 +258,6 @@ SYMBOL with `flycheck-def-executable-var'. \(fn SYMBOL DOCSTRING &rest PROPERTIES)" nil t) -(function-put 'flycheck-define-checker 'lisp-indent-function 1) +(function-put 'flycheck-define-checker 'lisp-indent-function '1) -(function-put 'flycheck-define-checker 'doc-string-elt 2) - -(register-definition-prefixes "flycheck" '("flycheck-" "help-flycheck-checker-d" "list-flycheck-errors")) - -(register-definition-prefixes "flycheck-buttercup" '("flycheck-buttercup-format-error-list")) - -(register-definition-prefixes "flycheck-ert" '("flycheck-er")) +(function-put 'flycheck-define-checker 'doc-string-elt '2) diff --git a/sources b/sources index e4558b0..4e7f610 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (emacs-flycheck-35.0.tar.gz) = 56b9bd231a711b05b87dac1bb191a796957edfc1ea9e0db63cccff9ba2259044097b489d660e0171483bfbef788ae4eeb3f78210730304fc0f50ce22f2199ddb +SHA512 (emacs-flycheck-32.tar.gz) = 3e89238ee6d2bd3e51cd5df805969366fbb77c3df470a12e697282535e372cbea1d3e907f1c33952e5821c05c62ce758103d6421a2add9be5347f839806f831b