GNU bug report logs -
#66483
[PATCH] gnu: emacs-mastodon: Update to 1.0.5.
Previous Next
Reported by: Fabio Natali <me <at> fabionatali.com>
Date: Thu, 12 Oct 2023 09:48:02 UTC
Severity: normal
Tags: patch
Done: Andrew Tropin <andrew <at> trop.in>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 66483 in the body.
You can then email your comments to 66483 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
:
bug#66483
; Package
guix-patches
.
(Thu, 12 Oct 2023 09:48:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Fabio Natali <me <at> fabionatali.com>
:
New bug report received and forwarded. Copy sent to
andrew <at> trop.in, cox.katherine.e+guix <at> gmail.com, liliana.prikler <at> gmail.com, guix-patches <at> gnu.org
.
(Thu, 12 Oct 2023 09:48:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/emacs-xyz.scm (emacs-mastodon): Update to 1.0.5.
---
gnu/packages/emacs-xyz.scm | 62 ++++++++++++++++++--------------------
1 file changed, 29 insertions(+), 33 deletions(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index cf1542955c..47bdc10685 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -32827,40 +32827,36 @@ (define-public emacs-wc-mode
(license license:gpl3+)))
(define-public emacs-mastodon
- ;; No release in ~1 year, hence this snapshot.
- (let ((commit "20dec8871c9bb5f5e418bfc197e7533b5e3065e3")
- (revision "1"))
- (package
- (name "emacs-mastodon")
- (version (git-version "1.0.0" revision commit))
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://codeberg.org/martianh/mastodon.el")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "15cfjny99yw5frdp8nlyazlwgscvfvbinsj0fbdfprxf50k2zjs6"))))
- (build-system emacs-build-system)
- (arguments
- (list #:phases
- #~(modify-phases %standard-phases
- ;; Move the source files to the top level, which is included in
- ;; the EMACSLOADPATH.
- (add-after 'unpack 'move-source-files
- (lambda _
- (let ((el-files (find-files "./lisp" ".*\\.el$")))
- (for-each (lambda (f)
- (rename-file f (basename f)))
- el-files)))))))
- (propagated-inputs
- (list emacs-request emacs-ts emacs-persist))
- (home-page "https://codeberg.org/martianh/mastodon.el")
- (synopsis "Emacs client for Mastodon")
- (description "@code{mastodon.el} is an Emacs client for Mastodon, the
+ (package
+ (name "emacs-mastodon")
+ (version "1.0.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/martianh/mastodon.el")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0zjn3v3qfr034vz0ns7s9j7n4xzzqy5xiihc307mr3f6fcjgq0xd"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list
+ #:phases #~(modify-phases %standard-phases
+ ;; Move the source files to the top level, which is included in
+ ;; the EMACSLOADPATH.
+ (add-after 'unpack 'move-source-files
+ (lambda _
+ (let ((el-files (find-files "./lisp" ".*\\.el$")))
+ (for-each (lambda (f)
+ (rename-file f
+ (basename f))) el-files)))))))
+ (propagated-inputs (list emacs-request emacs-ts emacs-persist))
+ (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.")
- (license license:gpl3+))))
+ (license license:gpl3+)))
(define-public emacs-ebdb
(package
base-commit: add2a22ad7bcca2521432e3f486460138401d5a5
--
2.41.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#66483
; Package
guix-patches
.
(Thu, 12 Oct 2023 10:18:02 GMT)
Full text and
rfc822 format available.
Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):
Hi All,
Please ignore the previous email:
[bug#66483] [PATCH] gnu: emacs-mastodon: Update to 1.0.5.
I must have had a stale buffer somewhere with a (now obsolete) patch
from a few days ago. The buffer must have thought that today was a good
day to send itself.
Then people talk about AI, when we have self-aware autonomous Emacs
buffers already - go figure.
Cheers, F.
Reply sent
to
Andrew Tropin <andrew <at> trop.in>
:
You have taken responsibility.
(Thu, 12 Oct 2023 15:16:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Fabio Natali <me <at> fabionatali.com>
:
bug acknowledged by developer.
(Thu, 12 Oct 2023 15:16:02 GMT)
Full text and
rfc822 format available.
Message #13 received at 66483-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On 2023-10-12 10:35, Fabio Natali wrote:
> * gnu/packages/emacs-xyz.scm (emacs-mastodon): Update to 1.0.5.
> ---
> gnu/packages/emacs-xyz.scm | 62 ++++++++++++++++++--------------------
> 1 file changed, 29 insertions(+), 33 deletions(-)
>
> diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
> index cf1542955c..47bdc10685 100644
> --- a/gnu/packages/emacs-xyz.scm
> +++ b/gnu/packages/emacs-xyz.scm
> @@ -32827,40 +32827,36 @@ (define-public emacs-wc-mode
> (license license:gpl3+)))
>
> (define-public emacs-mastodon
> - ;; No release in ~1 year, hence this snapshot.
> - (let ((commit "20dec8871c9bb5f5e418bfc197e7533b5e3065e3")
> - (revision "1"))
> - (package
> - (name "emacs-mastodon")
> - (version (git-version "1.0.0" revision commit))
> - (source (origin
> - (method git-fetch)
> - (uri (git-reference
> - (url "https://codeberg.org/martianh/mastodon.el")
> - (commit commit)))
> - (file-name (git-file-name name version))
> - (sha256
> - (base32
> - "15cfjny99yw5frdp8nlyazlwgscvfvbinsj0fbdfprxf50k2zjs6"))))
> - (build-system emacs-build-system)
> - (arguments
> - (list #:phases
> - #~(modify-phases %standard-phases
> - ;; Move the source files to the top level, which is included in
> - ;; the EMACSLOADPATH.
> - (add-after 'unpack 'move-source-files
> - (lambda _
> - (let ((el-files (find-files "./lisp" ".*\\.el$")))
> - (for-each (lambda (f)
> - (rename-file f (basename f)))
> - el-files)))))))
> - (propagated-inputs
> - (list emacs-request emacs-ts emacs-persist))
> - (home-page "https://codeberg.org/martianh/mastodon.el")
> - (synopsis "Emacs client for Mastodon")
> - (description "@code{mastodon.el} is an Emacs client for Mastodon, the
> + (package
> + (name "emacs-mastodon")
> + (version "1.0.5")
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://codeberg.org/martianh/mastodon.el")
> + (commit version)))
> + (file-name (git-file-name name version))
> + (sha256
> + (base32 "0zjn3v3qfr034vz0ns7s9j7n4xzzqy5xiihc307mr3f6fcjgq0xd"))))
> + (build-system emacs-build-system)
> + (arguments
> + (list
> + #:phases #~(modify-phases %standard-phases
> + ;; Move the source files to the top level, which is included in
> + ;; the EMACSLOADPATH.
> + (add-after 'unpack 'move-source-files
> + (lambda _
> + (let ((el-files (find-files "./lisp" ".*\\.el$")))
> + (for-each (lambda (f)
> + (rename-file f
> + (basename f))) el-files)))))))
> + (propagated-inputs (list emacs-request emacs-ts emacs-persist))
> + (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.")
> - (license license:gpl3+))))
> + (license license:gpl3+)))
>
> (define-public emacs-ebdb
> (package
>
> base-commit: add2a22ad7bcca2521432e3f486460138401d5a5
Patch superseding this one is already applied in different thread,
closing the ticket.
--
Best regards,
Andrew Tropin
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Fri, 10 Nov 2023 12:24:08 GMT)
Full text and
rfc822 format available.
This bug report was last modified 1 year and 280 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.