[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#61031] [PATCH] Add emacs-kodi-remote.
From: |
Nicolas Goaziou |
Subject: |
[bug#61031] [PATCH] Add emacs-kodi-remote. |
Date: |
Wed, 25 Jan 2023 18:40:34 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) |
Hello,
Matthieu Lemerre <racin@free.fr> writes:
> This emacs package allows to control Kodi remotely -- I use it every day and
> it is very handy!
> The guix installation works well.
Thank you. Some comments follow.
> +(define-public emacs-kodi-remote
> + (package
> + (name "emacs-kodi-remote")
> + (version "20190622.1325")
According to "kodi-remote.el", version is "0", not this date-based one.
You should also use `git-version' since we're using an unreleased version.
> + (source (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/spiderbit/kodi-remote.el.git")
You should drop the ".git" suffix from URL.
> + (commit "f5e932036c16e2b61a63020e006fc601e38d181e")))
Usually, we let-bind the commit at the beginning of the package
definition and write
(commit commit)
> + (sha256
> + (base32
> + "1gck7lvqxcr9ikrzlpvcf4408cq6i4s8ijgb0kdsbkfzv0w86934"))))
> + (build-system emacs-build-system)
> + (propagated-inputs (list emacs-request emacs-let-alist emacs-json-mode
> emacs-f))
Please order inputs alphabetically.
> + (home-page "http://github.com/spiderbit/kodi-remote.el")
> + (synopsis "Remote Control for Kodi")
> + (description
> + "This package provides a major to remote control kodi instances. First
> specify
kodi -> Kodi
> +the hostname/ip of your kodi webserver: (setq kodi-host-name
> \"my-htpc:8080\")
> +Then open the Remote with the command: kodi-remote Also open the current kodi
> +Video Playlist with the command: kodi-remote-playlist Start play exercise
> mode:
> +kodi-remote-exercise OPTIONAL: setup settings for deleting files (over tramp)
> +(setq kodi-dangerous-options t) (setq kodi-access-host \"my-htpc\") if you
> don't
> +use ssh to access your kodi server / nas: (setq kodi-access-method
> +\"smb/ftp/adb...\")")
This is more a manual excerpt than a proper description. Could you
reword it a bit to describe what the package does, not how to do it?
Note that sentences should be separated with full stops and two spaces,
per Texinfo specification.
> + (license gpl3+)))
This cannot possibly build: the license above should be license:gpl3+.
Could you send an updated patch?
Regards,
--
Nicolas Goaziou