* [bug#34673] [PATCH] gnu: Add toot.
@ 2019-02-27 7:16 Efraim Flashner
2019-02-27 19:54 ` Leo Famulari
0 siblings, 1 reply; 3+ messages in thread
From: Efraim Flashner @ 2019-02-27 7:16 UTC (permalink / raw)
To: 34673
* gnu/packages/syndication.scm (toot): New variable.
---
gnu/packages/syndication.scm | 45 +++++++++++++++++++++++++++++++++++-
1 file changed, 44 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm
index a9ccfcd274..d2132ecdf8 100644
--- a/gnu/packages/syndication.scm
+++ b/gnu/packages/syndication.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016, 2017, 2019 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
@@ -22,12 +22,16 @@
#:use-module (guix download)
#:use-module (guix packages)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system python)
#:use-module (gnu packages)
+ #:use-module (gnu packages check)
#:use-module (gnu packages curl)
#:use-module (gnu packages documentation)
#:use-module (gnu packages gettext)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages python-xyz)
+ #:use-module (gnu packages python-web)
#:use-module (gnu packages sqlite)
#:use-module (gnu packages web)
#:use-module (gnu packages xml))
@@ -88,3 +92,42 @@ It started life as a fork of the currently unmaintained Newsbeuter.")
(define-public newsbeuter
;; Newsbeuter is unmaintained with multiple CVEs, and was forked as Newsboat.
(deprecated-package "newsbeuter" newsboat))
+
+(define-public toot
+ (package
+ (name "toot")
+ (version "0.21.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "toot" version))
+ (sha256
+ (base32
+ "1dqv5jckaw3r7dnfns3iygwbfnf27x513qrw2rryzl5y79xrzs1x"))))
+ (build-system python-build-system)
+ (arguments
+ '(#:phases
+ (modify-phases %standard-phases
+ (delete 'check)
+ (add-after 'install 'check
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (add-installed-pythonpath inputs outputs)
+ (invoke "py.test"))))))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)))
+ (propagated-inputs
+ `(("python-beautifulsoup4" ,python-beautifulsoup4)
+ ("python-requests" ,python-requests)
+ ("python-wcwidth" ,python-wcwidth)))
+ (home-page "https://github.com/ihabunek/toot/")
+ (synopsis "Mastodon CLI client")
+ (description "Interact with Mastodon social network from the command line.
+Features include:
+@itemize
+@item Posting, replying, deleting statuses
+@item Support for media uploads, spoiler text, sensitive content
+@item Search by account or hash tag
+@item Following, muting and blocking accounts
+@item Simple switching between authenticated in Mastodon accounts
+@end itemize")
+ (license license:gpl3)))
--
2.21.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#34673] [PATCH] gnu: Add toot.
2019-02-27 7:16 [bug#34673] [PATCH] gnu: Add toot Efraim Flashner
@ 2019-02-27 19:54 ` Leo Famulari
2019-02-28 7:08 ` bug#34673: " Efraim Flashner
0 siblings, 1 reply; 3+ messages in thread
From: Leo Famulari @ 2019-02-27 19:54 UTC (permalink / raw)
To: Efraim Flashner; +Cc: 34673
[-- Attachment #1: Type: text/plain, Size: 291 bytes --]
On Wed, Feb 27, 2019 at 09:16:50AM +0200, Efraim Flashner wrote:
> * gnu/packages/syndication.scm (toot): New variable.
Thanks, LGTM!
> gnu/packages/syndication.scm | 45 +++++++++++++++++++++++++++++++++++-
Maybe we should have a (gnu packages social-media)? Or (gnu packages
mastodon)?
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* bug#34673: [PATCH] gnu: Add toot.
2019-02-27 19:54 ` Leo Famulari
@ 2019-02-28 7:08 ` Efraim Flashner
0 siblings, 0 replies; 3+ messages in thread
From: Efraim Flashner @ 2019-02-28 7:08 UTC (permalink / raw)
To: Leo Famulari; +Cc: 34673-done
[-- Attachment #1: Type: text/plain, Size: 766 bytes --]
On Wed, Feb 27, 2019 at 02:54:12PM -0500, Leo Famulari wrote:
> On Wed, Feb 27, 2019 at 09:16:50AM +0200, Efraim Flashner wrote:
> > * gnu/packages/syndication.scm (toot): New variable.
>
> Thanks, LGTM!
>
> > gnu/packages/syndication.scm | 45 +++++++++++++++++++++++++++++++++++-
>
> Maybe we should have a (gnu packages social-media)? Or (gnu packages
> mastodon)?
We currently have a gnu/packages/pumpio.scm so I created on for
mastodon. Perhaps we should join them into a social-media one, but I
really don't like that term :).
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-02-28 7:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-27 7:16 [bug#34673] [PATCH] gnu: Add toot Efraim Flashner
2019-02-27 19:54 ` Leo Famulari
2019-02-28 7:08 ` bug#34673: " Efraim Flashner
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.