gnu: emacs-package-lint: Update to 0.15.
* gnu/packages/emacs-xyz.scm (emacs-package-lint): Update to 0.15.
This commit is contained in:
parent
8689821865
commit
b7a9b63a70
1 changed files with 21 additions and 26 deletions
|
@ -20063,36 +20063,31 @@ image, rotate it, save modified images, and more.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-package-lint
|
(define-public emacs-package-lint
|
||||||
;; The commit below includes a fix for a missing file, "stdlib-changes",
|
(package
|
||||||
;; preventing build.
|
(name "emacs-package-lint")
|
||||||
(let ((commit "14c216f4889e71eec2a9da64e36ab8990337e82d")
|
(version "0.15")
|
||||||
(version "0.13")
|
(source
|
||||||
(revision "0"))
|
(origin
|
||||||
(package
|
(method git-fetch)
|
||||||
(name "emacs-package-lint")
|
(uri (git-reference
|
||||||
(version (git-version version revision commit))
|
(url "https://github.com/purcell/package-lint")
|
||||||
(source
|
(commit version)))
|
||||||
(origin
|
(file-name (git-file-name name version))
|
||||||
(method git-fetch)
|
(sha256
|
||||||
(uri (git-reference
|
(base32
|
||||||
(url "https://github.com/purcell/package-lint")
|
"1cn713g90zyjfq225yvg14c1qshslpi4466m3w102l5g57p8xv44"))))
|
||||||
(commit commit)))
|
(arguments
|
||||||
(file-name (git-file-name name version))
|
'(#:include (cons "^data/" %default-include)))
|
||||||
(sha256
|
(build-system emacs-build-system)
|
||||||
(base32
|
(home-page "https://github.com/purcell/package-lint")
|
||||||
"1zifiqmpj9j14fnrm3jxapady25m1nlm514nfry0jfrhhikvj6i8"))))
|
(synopsis "Linting library for elisp package authors")
|
||||||
(arguments
|
(description
|
||||||
'(#:include (cons "^data/" %default-include)))
|
"This provides a list of issues with the Emacs package metadata of a file,
|
||||||
(build-system emacs-build-system)
|
|
||||||
(home-page "https://github.com/purcell/package-lint")
|
|
||||||
(synopsis "Linting library for elisp package authors")
|
|
||||||
(description
|
|
||||||
"This provides a list of issues with the Emacs package metadata of a file,
|
|
||||||
e.g. the package dependencies it requires. See function
|
e.g. the package dependencies it requires. See function
|
||||||
@code{package-lint-buffer}. Checks will currently be enabled only if a
|
@code{package-lint-buffer}. Checks will currently be enabled only if a
|
||||||
\"Package-Requires:\" or \"Package-Version:\" header is present in the
|
\"Package-Requires:\" or \"Package-Version:\" header is present in the
|
||||||
file.")
|
file.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-picpocket
|
(define-public emacs-picpocket
|
||||||
(let ((version "41")
|
(let ((version "41")
|
||||||
|
|
Reference in a new issue