diff options
| author | Anderson Torres <anderson.torres.8519@gmail.com> | 2025-11-21 13:29:23 -0300 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-04-19 08:24:47 +0200 |
| commit | 6b11be9644b495bb4c4de68c9258bfd0974b7136 (patch) | |
| tree | ed9de4c81313bbd5b9f7088e5b13293786ee7098 | |
| parent | 79a70405bb21034039bc36238dd2c2b14ae3855d (diff) | |
gnu: emacs-flymake-flycheck: Update to 0.2-0.cbc0fc8.
* gnu/packages/emacs-xyz.scm (emacs-flymake-flycheck): Update to 0.2-0.cbc0fc8.
[source]: Use git instead of MELPA.
[#:tests?]: Set as #f.
(emacs-flymake-flycheck-superseded-version): New dummy variable.
Change-Id: I75b96526e7cd9fdfbc95c1408bd0e94759344c5c
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
| -rw-r--r-- | gnu/packages/emacs-xyz.scm | 48 |
1 files changed, 31 insertions, 17 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 752a8110431..3e3017bb56b 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm | |||
| @@ -4329,25 +4329,39 @@ perform static analysis of Perl code.") | |||
| 4329 | (license license:gpl3+))) | 4329 | (license license:gpl3+))) |
| 4330 | 4330 | ||
| 4331 | (define-public emacs-flymake-flycheck | 4331 | (define-public emacs-flymake-flycheck |
| 4332 | (package | 4332 | (let ((commit "cbc0fc81bf369b36fe29a49d9e24708027f6da38") |
| 4333 | (name "emacs-flymake-flycheck") | 4333 | (revision "0")) |
| 4334 | (version "20210404.2128") | 4334 | (package |
| 4335 | (source | 4335 | (name "emacs-flymake-flycheck") |
| 4336 | (origin | 4336 | (version (git-version "0.2" revision commit)) |
| 4337 | (method url-fetch) | 4337 | (source |
| 4338 | (uri (string-append "https://melpa.org/packages/flymake-flycheck-" | 4338 | (origin |
| 4339 | version ".el")) | 4339 | (method git-fetch) |
| 4340 | (sha256 | 4340 | (uri (git-reference |
| 4341 | (base32 "1m59ahd5gjlfwf328labwdlpcxh8ywywkwgfrlsy5jyxfc9ss4nv")))) | 4341 | (url "https://github.com/purcell/flymake-flycheck") |
| 4342 | (build-system emacs-build-system) | 4342 | (commit commit))) |
| 4343 | (propagated-inputs (list emacs-flycheck)) | 4343 | (file-name (git-file-name name version)) |
| 4344 | (home-page "https://github.com/purcell/flymake-flycheck") | 4344 | (sha256 |
| 4345 | (synopsis "Use Flycheck checkers as Flymake backends") | 4345 | (base32 "0fda1n8hhklbq6p1s2dlvgc9xd0qy7qzb8yvxq89idx1irjx0785")))) |
| 4346 | (description | 4346 | (build-system emacs-build-system) |
| 4347 | "This package provides support for running any Flycheck checker as a | 4347 | (arguments |
| 4348 | (list | ||
| 4349 | #:tests? #f)) ; There is only a lint-check | ||
| 4350 | (propagated-inputs | ||
| 4351 | (list emacs-flycheck)) | ||
| 4352 | (home-page "https://github.com/purcell/flymake-flycheck") | ||
| 4353 | (synopsis "Use Flycheck checkers as Flymake backends") | ||
| 4354 | (description | ||
| 4355 | "This package provides support for running any Flycheck checker as a | ||
| 4348 | Flymake diagnostic backend. The effect is that Flymake will control when the | 4356 | Flymake diagnostic backend. The effect is that Flymake will control when the |
| 4349 | checker runs, and Flymake will receive its errors.") | 4357 | checker runs, and Flymake will receive its errors.") |
| 4350 | (license license:gpl3+))) | 4358 | (license license:gpl3+)))) |
| 4359 | |||
| 4360 | (define-public emacs-flymake-flycheck-superseded-version | ||
| 4361 | (package | ||
| 4362 | (inherit emacs-flymake-flycheck) | ||
| 4363 | (version "20210404.2128") | ||
| 4364 | (properties (list (cons 'superseded emacs-flymake-flycheck))))) | ||
| 4351 | 4365 | ||
| 4352 | (define-public emacs-flymake-quickdef | 4366 | (define-public emacs-flymake-quickdef |
| 4353 | ;; This particular commit includes bug fixes on top of 1.0.0 release. | 4367 | ;; This particular commit includes bug fixes on top of 1.0.0 release. |
