[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: emacs-flycheck-cpplint: Update to 1.0.2.
From: |
guix-commits |
Subject: |
branch master updated: gnu: emacs-flycheck-cpplint: Update to 1.0.2. |
Date: |
Mon, 31 Oct 2022 18:35:31 -0400 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 1a734947bc gnu: emacs-flycheck-cpplint: Update to 1.0.2.
1a734947bc is described below
commit 1a734947bce26e0a0a34962fb40e96d05ebad604
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon Oct 31 23:34:47 2022 +0100
gnu: emacs-flycheck-cpplint: Update to 1.0.2.
* gnu/packages/emacs-xyz.scm (emacs-flycheck-cpplint): Update to 1.0.2.
---
gnu/packages/emacs-xyz.scm | 60 ++++++++++++++++++++++------------------------
1 file changed, 29 insertions(+), 31 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 325ec7d287..731a2235df 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -29860,39 +29860,37 @@ such as:
(license license:gpl3+)))
(define-public emacs-flycheck-cpplint
- (let ((commit "1d8a090861572258ab704915263feeb3a436c3d2")
- (revision "1"))
- (package
- (name "emacs-flycheck-cpplint")
- (version (git-version "0.1" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/flycheck/flycheck-google-cpplint")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0l6sg83f6z8x2alnblpv03rj442sbnkkkcbf8i0agjmx3713a5yx"))))
- (build-system emacs-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'set-cpplint-path
- (lambda _
- (substitute* "flycheck-google-cpplint.el"
- (("\"cpplint.py\"")
- (string-append "\"" (which "cpplint") "\""))))))))
- (inputs
- (list cpplint))
- (propagated-inputs
- (list emacs-flycheck))
- (synopsis "Google C++ checker for Flycheck")
- (description "This package provides a interface for @code{cpplint} over
+ (package
+ (name "emacs-flycheck-cpplint")
+ (version "1.0.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/flycheck/flycheck-google-cpplint")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1nlyv81pyqmyz18dlzw5h23prhkvyzb0aasjxba8mm33avx0fvvb"))))
+ (build-system emacs-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'set-cpplint-path
+ (lambda _
+ (substitute* "flycheck-google-cpplint.el"
+ (("\"cpplint.py\"")
+ (string-append "\"" (which "cpplint") "\""))))))))
+ (inputs
+ (list cpplint))
+ (propagated-inputs
+ (list emacs-flycheck))
+ (synopsis "Google C++ checker for Flycheck")
+ (description "This package provides a interface for @code{cpplint} over
Flycheck plugin. @code{cpplint} is a static code checker for C++, following
Google guidelines.")
- (home-page "https://github.com/flycheck/flycheck-google-cpplint")
- (license license:gpl3+))))
+ (home-page "https://github.com/flycheck/flycheck-google-cpplint")
+ (license license:gpl3+)))
(define-public emacs-highlight-doxygen
;; Upstream does not tag releases. Commit below matches version bump.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: emacs-flycheck-cpplint: Update to 1.0.2.,
guix-commits <=