gnu: emacs-circe: Update to 2.14.

* gnu/packages/emacs-xyz.scm (emacs-circe): Update to 2.14.

Change-Id: I21ef4e22086a0be7f5b251c5c4548404f392d08f
This commit is contained in:
Nicolas Goaziou 2025-05-27 13:27:26 +02:00 committed by Ian Eure
parent 6008cc4da3
commit 225585d4b1
No known key found for this signature in database
GPG key ID: 8499AC88F1A71CF2

View file

@ -24370,45 +24370,43 @@ part, which includes creating tokens.")
(license license:asl2.0)))
(define-public emacs-circe
(let ((commit "cc630eb9acb835012ad207dce545d2c380588da7")
(revision "1"))
(package
(name "emacs-circe")
(version (git-version "2.13" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jorgenschaefer/circe")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "1m2vnp38yv9fnxchcbf6mrzb7yp7z214vr28pr7sslrmm99dqg89"))))
(build-system emacs-build-system)
(arguments
`(#:tests? #t
#:test-command '("buttercup" "-L" ".")
#:emacs ,emacs ;requires gnutls
#:phases
(modify-phases %standard-phases
;; The HOME environment variable should be set to an existing
;; directory for the tests to succeed.
(add-before 'check 'set-home
(lambda _
(setenv "HOME" "/tmp"))))))
(native-inputs
(list emacs-buttercup))
;; In order to securely connect to an IRC server using TLS, Circe requires
;; the GnuTLS binary.
(propagated-inputs
(list gnutls))
(home-page "https://github.com/jorgenschaefer/circe")
(synopsis "Client for IRC in Emacs")
(description "Circe is a Client for IRC in Emacs. It integrates well with
(package
(name "emacs-circe")
(version "2.14")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/jorgenschaefer/circe")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "12vq5p3bmqp4gh4s40s8sbz8hs2zczkcl4zfnn7ybr5sc36g1zax"))))
(build-system emacs-build-system)
(arguments
`(#:tests? #t
#:test-command '("buttercup" "-L" ".")
#:emacs ,emacs ;requires gnutls
#:phases
(modify-phases %standard-phases
;; The HOME environment variable should be set to an existing
;; directory for the tests to succeed.
(add-before 'check 'set-home
(lambda _
(setenv "HOME" "/tmp"))))))
(native-inputs
(list emacs-buttercup))
;; In order to securely connect to an IRC server using TLS, Circe requires
;; the GnuTLS binary.
(propagated-inputs
(list gnutls))
(home-page "https://github.com/jorgenschaefer/circe")
(synopsis "Client for IRC in Emacs")
(description "Circe is a Client for IRC in Emacs. It integrates well with
the rest of the editor, using standard Emacs key bindings and indicating
activity in channels in the status bar so it stays out of your way unless you
want to use it.")
(license license:gpl3+))))
(license license:gpl3+)))
(define-public emacs-track-changes
(package