From 52fc9a5b57d1d4add187e221e3608fecb7be2b3e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 16 Jan 2025 16:53:32 +0000 Subject: [PATCH 1/4] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- emacs-flycheck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/emacs-flycheck.spec b/emacs-flycheck.spec index 95e085c..1e15145 100644 --- a/emacs-flycheck.spec +++ b/emacs-flycheck.spec @@ -2,7 +2,7 @@ Name: emacs-%{pkg} Version: 34.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: On the fly syntax checking for GNU Emacs License: GPL-3.0-or-later @@ -49,6 +49,9 @@ install -Dpm 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_emacs_sitestartdir}/%{pkg}-init.e %changelog +* 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 From 1de637318cf3ed2d7a2c76d44ec6ccf5da1a2d25 Mon Sep 17 00:00:00 2001 From: Mohamed El Morabity Date: Sat, 12 Jul 2025 03:01:28 +0200 Subject: [PATCH 2/4] Update to 35.0 --- .gitignore | 1 + emacs-flycheck.spec | 9 ++++++--- flycheck-init.el | 23 +++++++++++++++++++++-- sources | 2 +- 4 files changed, 29 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 0f7306f..f01faf9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /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 1e15145..6eadabf 100644 --- a/emacs-flycheck.spec +++ b/emacs-flycheck.spec @@ -1,13 +1,13 @@ %global pkg flycheck Name: emacs-%{pkg} -Version: 34.1 -Release: 3%{?dist} +Version: 35.0 +Release: 1%{?dist} Summary: On the fly syntax checking for GNU Emacs License: GPL-3.0-or-later URL: https://www.flycheck.org/ -Source0: https://github.com/%{pkg}/%{pkg}/archive/%{version}/%{name}-%{version}.tar.gz +Source0: https://github.com/%{pkg}/%{pkg}/archive/v%{version}/%{name}-%{version}.tar.gz Source1: %{pkg}-init.el BuildRequires: emacs @@ -49,6 +49,9 @@ install -Dpm 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_emacs_sitestartdir}/%{pkg}-init.e %changelog +* 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 diff --git a/flycheck-init.el b/flycheck-init.el index fad88b5..df7016f 100644 --- a/flycheck-init.el +++ b/flycheck-init.el @@ -1,6 +1,9 @@ (autoload 'flycheck-manual "flycheck" "\ Open the Flycheck manual." t) +(autoload 'flycheck-quick-help "flycheck" "\ +Display brief Flycheck help." t) + (autoload 'flycheck-mode "flycheck" "\ Flycheck is a minor mode for on-the-fly syntax checking. @@ -21,10 +24,11 @@ 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 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. +`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. You may also see the following icons: `FlyC!' The checker crashed. @@ -204,6 +208,21 @@ 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 diff --git a/sources b/sources index 2381b50..e4558b0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (emacs-flycheck-34.1.tar.gz) = 5a28b8bb6a11db3da3535effb6c1087ee9d60e56ca132c77027834724dba723a610cb036b99baddaa9bd6e14d0986503f272bee4b64c5278f1cf0726cfac31f4 +SHA512 (emacs-flycheck-35.0.tar.gz) = 56b9bd231a711b05b87dac1bb191a796957edfc1ea9e0db63cccff9ba2259044097b489d660e0171483bfbef788ae4eeb3f78210730304fc0f50ce22f2199ddb From 37e64d18e970b324a039b75c3311861d1bd7c071 Mon Sep 17 00:00:00 2001 From: Mohamed El Morabity Date: Sat, 12 Jul 2025 03:01:28 +0200 Subject: [PATCH 3/4] Update to 35.0 --- .gitignore | 1 + emacs-flycheck.spec | 9 ++++++--- flycheck-init.el | 23 +++++++++++++++++++++-- sources | 2 +- 4 files changed, 29 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 0f7306f..f01faf9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /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 95e085c..4828168 100644 --- a/emacs-flycheck.spec +++ b/emacs-flycheck.spec @@ -1,13 +1,13 @@ %global pkg flycheck Name: emacs-%{pkg} -Version: 34.1 -Release: 2%{?dist} +Version: 35.0 +Release: 1%{?dist} Summary: On the fly syntax checking for GNU Emacs License: GPL-3.0-or-later URL: https://www.flycheck.org/ -Source0: https://github.com/%{pkg}/%{pkg}/archive/%{version}/%{name}-%{version}.tar.gz +Source0: https://github.com/%{pkg}/%{pkg}/archive/v%{version}/%{name}-%{version}.tar.gz Source1: %{pkg}-init.el BuildRequires: emacs @@ -49,6 +49,9 @@ install -Dpm 0644 %{SOURCE1} $RPM_BUILD_ROOT%{_emacs_sitestartdir}/%{pkg}-init.e %changelog +* Sat Jul 12 2025 Mohamed El Morabity - 35.0-1 +- Update to 35.0 + * Wed Jul 17 2024 Fedora Release Engineering - 34.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild diff --git a/flycheck-init.el b/flycheck-init.el index fad88b5..df7016f 100644 --- a/flycheck-init.el +++ b/flycheck-init.el @@ -1,6 +1,9 @@ (autoload 'flycheck-manual "flycheck" "\ Open the Flycheck manual." t) +(autoload 'flycheck-quick-help "flycheck" "\ +Display brief Flycheck help." t) + (autoload 'flycheck-mode "flycheck" "\ Flycheck is a minor mode for on-the-fly syntax checking. @@ -21,10 +24,11 @@ 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 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. +`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. You may also see the following icons: `FlyC!' The checker crashed. @@ -204,6 +208,21 @@ 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 diff --git a/sources b/sources index 2381b50..e4558b0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (emacs-flycheck-34.1.tar.gz) = 5a28b8bb6a11db3da3535effb6c1087ee9d60e56ca132c77027834724dba723a610cb036b99baddaa9bd6e14d0986503f272bee4b64c5278f1cf0726cfac31f4 +SHA512 (emacs-flycheck-35.0.tar.gz) = 56b9bd231a711b05b87dac1bb191a796957edfc1ea9e0db63cccff9ba2259044097b489d660e0171483bfbef788ae4eeb3f78210730304fc0f50ce22f2199ddb From f7ba20a0aef1448230b1191ec843f34d6501456c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 23 Jul 2025 19:50:28 +0000 Subject: [PATCH 4/4] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- emacs-flycheck.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/emacs-flycheck.spec b/emacs-flycheck.spec index 6eadabf..6f9f1b5 100644 --- a/emacs-flycheck.spec +++ b/emacs-flycheck.spec @@ -2,7 +2,7 @@ Name: emacs-%{pkg} Version: 35.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: On the fly syntax checking for GNU Emacs License: GPL-3.0-or-later @@ -49,6 +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