Archived
1
0
Fork 0

gnu: emacs-mastodon: Update to 1.0.6.

* gnu/packages/emacs-xyz.scm (emacs-mastodon): Update to 1.0.6.

Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
Fabio Natali 2023-10-07 10:54:02 +01:00 committed by Christopher Baines
parent 378dfcf306
commit d6afcffb21
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -32828,40 +32828,37 @@ time.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public emacs-mastodon (define-public emacs-mastodon
;; No release in ~1 year, hence this snapshot. (package
(let ((commit "20dec8871c9bb5f5e418bfc197e7533b5e3065e3") (name "emacs-mastodon")
(revision "1")) (version "1.0.6")
(package (source
(name "emacs-mastodon") (origin
(version (git-version "1.0.0" revision commit)) (method git-fetch)
(source (origin (uri (git-reference
(method git-fetch) (url "https://codeberg.org/martianh/mastodon.el")
(uri (git-reference (commit version)))
(url "https://codeberg.org/martianh/mastodon.el") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32 "1z5lmzxhindxa0f6qi6z361k9smqcz68alr6w6jbmwg279qmk8jj"))))
(sha256 (build-system emacs-build-system)
(base32 (arguments
"15cfjny99yw5frdp8nlyazlwgscvfvbinsj0fbdfprxf50k2zjs6")))) (list
(build-system emacs-build-system) #:phases #~(modify-phases %standard-phases
(arguments ;; Move the source files to the top level, which is
(list #:phases ;; included in the EMACSLOADPATH.
#~(modify-phases %standard-phases (add-after 'unpack 'move-source-files
;; Move the source files to the top level, which is included in (lambda _
;; the EMACSLOADPATH. (let ((el-files (find-files "./lisp" ".*\\.el$")))
(add-after 'unpack 'move-source-files (for-each (lambda (f)
(lambda _ (rename-file f
(let ((el-files (find-files "./lisp" ".*\\.el$"))) (basename f)))
(for-each (lambda (f) el-files)))))))
(rename-file f (basename f))) (propagated-inputs (list emacs-request emacs-ts emacs-persist))
el-files))))))) (home-page "https://codeberg.org/martianh/mastodon.el")
(propagated-inputs (synopsis "Emacs client for Mastodon")
(list emacs-request emacs-ts emacs-persist)) (description "@code{mastodon.el} is an Emacs client for Mastodon, the
(home-page "https://codeberg.org/martianh/mastodon.el")
(synopsis "Emacs client for Mastodon")
(description "@code{mastodon.el} is an Emacs client for Mastodon, the
federated microblogging social network.") federated microblogging social network.")
(license license:gpl3+)))) (license license:gpl3+)))
(define-public emacs-ebdb (define-public emacs-ebdb
(package (package