emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#30940: closed ([PATCH] gnu: Add twitchy.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#30940: closed ([PATCH] gnu: Add twitchy.)
Date: Mon, 26 Mar 2018 19:52:05 +0000

Your message dated Mon, 26 Mar 2018 22:50:48 +0300
with message-id <address@hidden>
and subject line Re: [bug#30940] [PATCH] gnu: Add twitchy.
has caused the debbugs.gnu.org bug report #30940,
regarding [PATCH] gnu: Add twitchy.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
30940: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=30940
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add twitchy. Date: Sun, 25 Mar 2018 21:41:25 +0300
* gnu/packages/video.scm (twitchy): New public variable.
---
 gnu/packages/video.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index f7f82df07..1d073f328 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1782,6 +1782,38 @@ from sites like Twitch.tv and pipes them into a video 
player of choice.")
 (define-public livestreamer
   (deprecated-package "livestreamer" streamlink))
 
+(define-public twitchy
+  (let ((commit "0c0f925b9c7ff2aed4a3b0046561cb794143c398"))
+    (package
+      (name "twitchy")
+      (version (git-version "3.2" "1" commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/BasioMeusPuga/twitchy.git";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "02aizvsr744sh8bdqvwwsmp2qpczlzn8fy76h5dyd3517n9nlcz9"))))
+      (build-system python-build-system)
+      (arguments
+       '(#:phases
+         (modify-phases %standard-phases
+           (add-before 'check 'check-setup
+             (lambda _
+               (setenv "HOME" (getcwd)) ;Needs to write to ‘$HOME’.
+               #t)))))
+      (inputs
+       `(("python-requests" ,python-requests)
+         ("streamlink" ,streamlink)))
+      (home-page "https://github.com/BasioMeusPuga/twitchy";)
+      (synopsis "Command-line interface for Twitch.tv")
+      (description
+       "This package provides a command-line interface for Twitch.tv")
+      (license license:gpl3+))))
+
 (define-public mlt
   (package
     (name "mlt")
-- 
2.16.2




--- End Message ---
--- Begin Message --- Subject: Re: [bug#30940] [PATCH] gnu: Add twitchy. Date: Mon, 26 Mar 2018 22:50:48 +0300 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.3 (gnu/linux)
Marius Bakke <address@hidden> writes:

> Oleg Pykhalov <address@hidden> writes:
>
>> * gnu/packages/video.scm (twitchy): New public variable.
>
> [...]
>   
>> +(define-public twitchy
>> +  (let ((commit "0c0f925b9c7ff2aed4a3b0046561cb794143c398"))
>> +    (package
>> +      (name "twitchy")
>> +      (version (git-version "3.2" "1" commit))
>> +      (source
>> +       (origin
>> +         (method git-fetch)
>> +         (uri (git-reference
>> +               (url "https://github.com/BasioMeusPuga/twitchy.git";)
>> +               (commit commit)))
>> +         (file-name (git-file-name name version))
>> +         (sha256
>> +          (base32
>> +           "02aizvsr744sh8bdqvwwsmp2qpczlzn8fy76h5dyd3517n9nlcz9"))))
>
> Can you add a comment about why a git checkout is necessary?

OK.  Thank you for a review.

Pushed as e5e5eb1fcf4c0aab10e2d6ed7fa34257a3c87e58

I'll close the bug report.

Oleg.

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]