unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#29863] [PATCH] gnu: Add emacs-bongo.
@ 2017-12-27 13:52 Mathieu Othacehe
  2017-12-31  7:17 ` Catonano
  2018-01-08  9:20 ` Ludovic Courtès
  0 siblings, 2 replies; 4+ messages in thread
From: Mathieu Othacehe @ 2017-12-27 13:52 UTC (permalink / raw)
  To: 29863

* gnu/packages/emacs.scm (emacs-bongo): 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 e78c58f8a..3e0605327 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -6551,3 +6551,27 @@ Feautures:
      "@code{evil-matchit} is a minor mode for jumping between matching tags in
 evil mode using @kbd{%}.  It is a port of @code{matchit} for Vim.")
     (license license:gpl3+)))
+
+(define-public emacs-bongo
+  (package
+    (name "emacs-bongo")
+    (version "1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/dbrock/bongo/archive/"
+             version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1pcsyyrvj7djjjwpaswd1i782hvqvlvs39cy9ns0k795si6xd64d"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/dbrock/bongo")
+    (synopsis "Media player for Emacs")
+    (description
+     "This package provides a flexible media player for Emacs.  @code{Bongo}
+    supports multiple backends such as @code{vlc}, @code{mpg123},
+    @code{ogg123}, @code{speexdec}, @code{timidity}, @code{mikmod} and
+    @code{afplay}.")
+    (license license:gpl2+)))
-- 
2.15.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#29863] [PATCH] gnu: Add emacs-bongo.
  2017-12-27 13:52 [bug#29863] [PATCH] gnu: Add emacs-bongo Mathieu Othacehe
@ 2017-12-31  7:17 ` Catonano
  2018-01-08  9:20 ` Ludovic Courtès
  1 sibling, 0 replies; 4+ messages in thread
From: Catonano @ 2017-12-31  7:17 UTC (permalink / raw)
  To: Mathieu Othacehe; +Cc: 29863

[-- Attachment #1: Type: text/plain, Size: 1816 bytes --]

Hi Mathieu !

emacs-bongo builds and lints with no errors

I didn't use it to play anything, thogh, as I have no mp3 files on this
machine and I don't like the Bongo requirements on the position of the
files in a hierarchy

Maybe some music listener could try this ?

Otherwise: lgtm !

2017-12-27 14:52 GMT+01:00 Mathieu Othacehe <m.othacehe@gmail.com>:

> * gnu/packages/emacs.scm (emacs-bongo): 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 e78c58f8a..3e0605327 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -6551,3 +6551,27 @@ Feautures:
>       "@code{evil-matchit} is a minor mode for jumping between matching
> tags in
>  evil mode using @kbd{%}.  It is a port of @code{matchit} for Vim.")
>      (license license:gpl3+)))
> +
> +(define-public emacs-bongo
> +  (package
> +    (name "emacs-bongo")
> +    (version "1.0")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append
> +             "https://github.com/dbrock/bongo/archive/"
> +             version ".tar.gz"))
> +       (file-name (string-append name "-" version ".tar.gz"))
> +       (sha256
> +        (base32
> +         "1pcsyyrvj7djjjwpaswd1i782hvqvlvs39cy9ns0k795si6xd64d"))))
> +    (build-system emacs-build-system)
> +    (home-page "https://github.com/dbrock/bongo")
> +    (synopsis "Media player for Emacs")
> +    (description
> +     "This package provides a flexible media player for Emacs.
> @code{Bongo}
> +    supports multiple backends such as @code{vlc}, @code{mpg123},
> +    @code{ogg123}, @code{speexdec}, @code{timidity}, @code{mikmod} and
> +    @code{afplay}.")
> +    (license license:gpl2+)))
> --
> 2.15.1
>
>
>
>
>

[-- Attachment #2: Type: text/html, Size: 2808 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#29863] [PATCH] gnu: Add emacs-bongo.
  2017-12-27 13:52 [bug#29863] [PATCH] gnu: Add emacs-bongo Mathieu Othacehe
  2017-12-31  7:17 ` Catonano
@ 2018-01-08  9:20 ` Ludovic Courtès
  2018-01-08 15:20   ` bug#29863: " Mathieu Othacehe
  1 sibling, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2018-01-08  9:20 UTC (permalink / raw)
  To: Mathieu Othacehe; +Cc: 29863

Mathieu Othacehe <m.othacehe@gmail.com> skribis:

> * gnu/packages/emacs.scm (emacs-bongo): 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 e78c58f8a..3e0605327 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -6551,3 +6551,27 @@ Feautures:
>       "@code{evil-matchit} is a minor mode for jumping between matching tags in
>  evil mode using @kbd{%}.  It is a port of @code{matchit} for Vim.")
>      (license license:gpl3+)))
> +
> +(define-public emacs-bongo
> +  (package
> +    (name "emacs-bongo")
> +    (version "1.0")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append
> +             "https://github.com/dbrock/bongo/archive/"
> +             version ".tar.gz"))
> +       (file-name (string-append name "-" version ".tar.gz"))
> +       (sha256
> +        (base32
> +         "1pcsyyrvj7djjjwpaswd1i782hvqvlvs39cy9ns0k795si6xd64d"))))
> +    (build-system emacs-build-system)
> +    (home-page "https://github.com/dbrock/bongo")
> +    (synopsis "Media player for Emacs")
> +    (description
> +     "This package provides a flexible media player for Emacs.  @code{Bongo}
> +    supports multiple backends such as @code{vlc}, @code{mpg123},
> +    @code{ogg123}, @code{speexdec}, @code{timidity}, @code{mikmod} and
> +    @code{afplay}.")
   ^^^^

No space here please.  :-)

Otherwise LGTM too!

Thanks,
Ludo’.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#29863: [PATCH] gnu: Add emacs-bongo.
  2018-01-08  9:20 ` Ludovic Courtès
@ 2018-01-08 15:20   ` Mathieu Othacehe
  0 siblings, 0 replies; 4+ messages in thread
From: Mathieu Othacehe @ 2018-01-08 15:20 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 29863-done


> Otherwise LGTM too!

Fixed and pushed, thanks !

Mathieu

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-01-08 15:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-27 13:52 [bug#29863] [PATCH] gnu: Add emacs-bongo Mathieu Othacehe
2017-12-31  7:17 ` Catonano
2018-01-08  9:20 ` Ludovic Courtès
2018-01-08 15:20   ` bug#29863: " Mathieu Othacehe

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).