gnu: emacs-opencl-mode: Update to 2.0.

* gnu/packages/emacs-xyz.scm (emacs-opencl-mode): Update to 2.0.

Change-Id: If4b9ed5aeb996fa7c3849c4a70af9296a883963a
This commit is contained in:
Nicolas Goaziou 2024-12-24 13:55:00 +01:00
parent b7775b6a5d
commit 4dbb6efd73
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -22140,28 +22140,24 @@ characters from end of lines.")
(license license:gpl3+)))
(define-public emacs-opencl-mode
;; Upstream never makes any formal releases, there is only v1.0.
;; Use the latest commit instead.
(let ((commit "204d5d9e0f5cb2cbe810f2933230eb08fe2c7695")
(revision "2"))
(package
(name "emacs-opencl-mode")
(version (git-version "1.0" revision commit))
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/salmanebah/opencl-mode")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1x3h187r7waibrx5llsk6irb5afhqsrddb1f9hm3f9saks6n1ldv"))))
(build-system emacs-build-system)
(synopsis "Emacs major mode for editing OpenCL kernels")
(description "This Emacs package provides the @code{opencl-mode} major
(package
(name "emacs-opencl-mode")
(version "2.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/salmanebah/opencl-mode")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "1x3h187r7waibrx5llsk6irb5afhqsrddb1f9hm3f9saks6n1ldv"))))
(build-system emacs-build-system)
(synopsis "Emacs major mode for editing OpenCL kernels")
(description "This Emacs package provides the @code{opencl-mode} major
mode for editing OpenCL kernels. It supports syntax highlighting and online
access to the OpenCL documentation through the @code{opencl-lookup} function.")
(home-page "https://github.com/salmanebah/opencl-mode")
(license license:gpl3+))))
(home-page "https://github.com/salmanebah/opencl-mode")
(license license:gpl3+)))
(define-public emacs-openwith
;; There is no release tag. Version is extracted from main file.