[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 3/5] gnu: Add emacs-gntp.
From: |
Alex Kost |
Subject: |
Re: [PATCH v2 3/5] gnu: Add emacs-gntp. |
Date: |
Sat, 28 Jan 2017 12:44:14 +0300 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) |
Mathieu Othacehe (2017-01-27 14:43 +0100) wrote:
> * gnu/packages/emacs.scm (emacs-gntp): New variable.
> ---
> gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++
> 1 file changed, 24 insertions(+)
>
> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> index 35294a9bc..aaa67615f 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -3699,3 +3699,27 @@ provides functions to convert hash tables from and to
> alists and plists.")
> "This package provides a logging framework for elisp. It allows to deal
> with
> multiple log levels.")
> (license license:gpl3+)))
> +
> +(define-public emacs-gntp
> + (package
> + (name "emacs-gntp")
> + (version "0.1")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append
> + "https://github.com/tekai/gntp.el/archive/"
> + "v" version ".tar.gz"))
> + (sha256
> + (base32
> + "16c1dfkia9yhl206bdhjr3b8kfvqcqr38jl5lq8qsyrrzsnmghny"))))
> + (build-system emacs-build-system)
> + (home-page "https://github.com/tekai/gntp.el")
> + (synopsis
> + "Growl Notification Protocol for Emacs")
> + (description
> + "This package implements the Growl Notification Protocol GNTP
> +described at http://www.growlforwindows.com/gfw/help/gntp.aspx
I made it @uref{http://www.growlforwindows.com/gfw/help/gntp.aspx} to
make it displayed properly by "guix package -s emacs-gntp" and in other
places.
> +It is incomplete as it only lets you send but not receive
> +notifications.")
> + (license license:gpl3+)))
This should be 'bsd-3'. Compare:
https://github.com/tekai/gntp.el/blob/master/gntp.el
and
http://directory.fsf.org/wiki/License:BSD_3Clause
--
Alex
- [PATCH v2 0/5] Add emacs-mu4e-alert., Mathieu Othacehe, 2017/01/27
- [PATCH v2 2/5] gnu: Add emacs-log4e., Mathieu Othacehe, 2017/01/27
- [PATCH v2 3/5] gnu: Add emacs-gntp., Mathieu Othacehe, 2017/01/27
- Re: [PATCH v2 3/5] gnu: Add emacs-gntp.,
Alex Kost <=
- [PATCH v2 4/5] gnu: Add emacs-alert., Mathieu Othacehe, 2017/01/27
- [PATCH v2 5/5] gnu: Add emacs-mu4e-alert., Mathieu Othacehe, 2017/01/27
- [PATCH v2 1/5] gnu: Add emacs-ht., Mathieu Othacehe, 2017/01/27
- Re: [PATCH v2 0/5] Add emacs-mu4e-alert., Alex Kost, 2017/01/28