* [bug#40786] [PATCH] * gnu: Add emacs-twittering-mode.
@ 2020-04-23 1:25 Masaya Tojo
2020-04-28 15:23 ` Nicolas Goaziou
0 siblings, 1 reply; 5+ messages in thread
From: Masaya Tojo @ 2020-04-23 1:25 UTC (permalink / raw)
To: 40786; +Cc: Masaya Tojo
---
gnu/packages/emacs-xyz.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 32b1868813..8c12332b69 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -22534,3 +22534,23 @@ ASCII UML sequence diagrams in Emacs, which can be embedded in source code,
comments or emails.")
(license license:gpl3+))))
+(define-public emacs-twittering-mode
+ (package
+ (name "emacs-twittering-mode")
+ (version "3.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/twmode"
+ "/twittering-mode-" version
+ "/twittering-mode-" version ".tar.xz"))
+ (sha256
+ (base32 "02imis1gxz90lah0b5n37j2hlsaw5igss11d85vpsm5d1bgw8j28"))))
+ (build-system emacs-build-system)
+ (home-page "http://twmode.sourceforge.net")
+ (synopsis "Emacs major mode for Twitter")
+ (description
+ "Twittering-mode is an Emacs major mode for Twitter.
+You can check timelines, tweet, mark posts as favorites and so on
+with Emacs.")
+ (license license:gpl2+)))
--
2.26.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#40786] [PATCH] * gnu: Add emacs-twittering-mode.
2020-04-23 1:25 [bug#40786] [PATCH] * gnu: Add emacs-twittering-mode Masaya Tojo
@ 2020-04-28 15:23 ` Nicolas Goaziou
2020-04-28 16:47 ` [bug#40786] [PATCH] " Masaya Tojo
0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Goaziou @ 2020-04-28 15:23 UTC (permalink / raw)
To: Masaya Tojo; +Cc: 40786
Hello,
Masaya Tojo <masaya@tojo.tokyo> writes:
> +(define-public emacs-twittering-mode
Thank you! Could you also provide a commit message for this? For new
variables, it is usually:
gnu: Add emacs-twittering-mode
* gnu/packages/emacs-xyz.scm (emacs-twittering-mode): New variable.
If no one objects to this, I'll commit when you send me an updated patch.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#40786] [PATCH] gnu: Add emacs-twittering-mode.
2020-04-28 15:23 ` Nicolas Goaziou
@ 2020-04-28 16:47 ` Masaya Tojo
2020-04-28 17:32 ` Masaya Tojo
0 siblings, 1 reply; 5+ messages in thread
From: Masaya Tojo @ 2020-04-28 16:47 UTC (permalink / raw)
To: mail; +Cc: 40786, Masaya Tojo
* gnu/packages/emacs-xyz.scm (emacs-twittering-mode): New variable.
---
gnu/packages/emacs-xyz.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 32b1868813..8c12332b69 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -22534,3 +22534,23 @@ ASCII UML sequence diagrams in Emacs, which can be embedded in source code,
comments or emails.")
(license license:gpl3+))))
+(define-public emacs-twittering-mode
+ (package
+ (name "emacs-twittering-mode")
+ (version "3.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/twmode"
+ "/twittering-mode-" version
+ "/twittering-mode-" version ".tar.xz"))
+ (sha256
+ (base32 "02imis1gxz90lah0b5n37j2hlsaw5igss11d85vpsm5d1bgw8j28"))))
+ (build-system emacs-build-system)
+ (home-page "http://twmode.sourceforge.net")
+ (synopsis "Emacs major mode for Twitter")
+ (description
+ "Twittering-mode is an Emacs major mode for Twitter.
+You can check timelines, tweet, mark posts as favorites and so on
+with Emacs.")
+ (license license:gpl2+)))
--
2.26.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#40786] [PATCH] gnu: Add emacs-twittering-mode.
2020-04-28 16:47 ` [bug#40786] [PATCH] " Masaya Tojo
@ 2020-04-28 17:32 ` Masaya Tojo
2020-04-29 14:27 ` bug#40786: " Nicolas Goaziou
0 siblings, 1 reply; 5+ messages in thread
From: Masaya Tojo @ 2020-04-28 17:32 UTC (permalink / raw)
To: mail; +Cc: 40786
Hello,
Thank you for review.
> Thank you! Could you also provide a commit message for this? For new
> variables, it is usually
I sent an updated patch.
Best Regards.
--
Masaya Tojo
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#40786: [PATCH] gnu: Add emacs-twittering-mode.
2020-04-28 17:32 ` Masaya Tojo
@ 2020-04-29 14:27 ` Nicolas Goaziou
0 siblings, 0 replies; 5+ messages in thread
From: Nicolas Goaziou @ 2020-04-29 14:27 UTC (permalink / raw)
To: Masaya Tojo; +Cc: 40786-done
Hello,
Masaya Tojo <masaya@tojo.tokyo> writes:
> I sent an updated patch.
Applied. Thank you.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-04-29 14:31 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-23 1:25 [bug#40786] [PATCH] * gnu: Add emacs-twittering-mode Masaya Tojo
2020-04-28 15:23 ` Nicolas Goaziou
2020-04-28 16:47 ` [bug#40786] [PATCH] " Masaya Tojo
2020-04-28 17:32 ` Masaya Tojo
2020-04-29 14:27 ` bug#40786: " Nicolas Goaziou
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).