guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add emacs-seriestracker.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-seriestracker.
Date: Sat, 03 Jul 2021 16:50:52 -0400

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 4e3479c  gnu: Add emacs-seriestracker.
4e3479c is described below

commit 4e3479c229fc84f162ad784f2353dadfb9f397f0
Author: Alexandr Vityazev <avityazev@posteo.org>
AuthorDate: Sat Jul 3 18:25:13 2021 +0000

    gnu: Add emacs-seriestracker.
    
    * gnu/packages/emacs-xyz.scm (emacs-seriestracker): New variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/emacs-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2dd51eb..31fa8a0 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -28603,6 +28603,34 @@ between cursor and next word, parenthesis or delimiter 
while honoring some
 rules about where space should be left to separate words and parentheses.")
       (license license:gpl2+))))
 
+(define-public emacs-seriestracker
+  (package
+    (name "emacs-seriestracker")
+    (version "1.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/MaximeWack/seriesTracker";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0b9hf20iah3ym2d4kz67k0kb48dq0442zxw4zmc03zg3sxfdxh0x"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-dash" ,emacs-dash)
+       ("emacs-transient" ,emacs-transient)))
+    (home-page "https://github.com/MaximeWack/seriesTracker";)
+    (synopsis "Keep track of the TV shows you watch from Emacs")
+    (description
+     "This package provides a major mode for tracking TV shows.
+TV shows data (episode list, release dates, etc.) are sourced from
+the free database hosted at @url{episodate.com}.  The mode presents an
+outlined list of tracked shows, their episodes and release dates, and
+enables the user to see when new episodes for their favorite shows get
+released, and track their progress in watching a series.")
+    (license license:gpl3+)))
+
 (define-public emacs-webpaste
   (package
     (name "emacs-webpaste")



reply via email to

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