all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add mpdscribble.
@ 2015-02-28 19:26 David Thompson
  2015-02-28 19:40 ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: David Thompson @ 2015-02-28 19:26 UTC (permalink / raw
  To: guix-devel

[-- Attachment #1: 0001-gnu-Add-mpdscribble.patch --]
[-- Type: text/x-diff, Size: 2088 bytes --]

From f0c0cae0aef184c6bb1d9340334ca1601113e1eb Mon Sep 17 00:00:00 2001
From: David Thompson <dthompson2@worcester.edu>
Date: Sat, 28 Feb 2015 14:24:52 -0500
Subject: [PATCH] gnu: Add mpdscribble.

* gnu/packages/mpd.scm (mpdscribble): New variable.
---
 gnu/packages/mpd.scm | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm
index 2d7ca6e..05fdaf1 100644
--- a/gnu/packages/mpd.scm
+++ b/gnu/packages/mpd.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2014 David Thompson <dthompson2@worcester.edu>
+;;; Copyright © 2014, 2015 David Thompson <dthompson2@worcester.edu>
 ;;; Copyright © 2014 Andreas Enge <andreas@enge.fr>
 ;;; Copyright © 2014 Cyrill Schenkel <cyrill.schenkel@gmail.com>
 ;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
@@ -211,3 +211,25 @@ for library searches, extended song format, items filtering, the ability to
 sort playlists, and a local filesystem browser.")
     (home-page "http://ncmpcpp.rybczak.net/")
     (license license:gpl2+)))
+
+(define-public mpdscribble
+  (package
+    (name "mpdscribble")
+    (version "0.22")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://www.musicpd.org/download/mpdscribble/"
+                                  version "/mpdscribble-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0f0ybx380x2z2g1qvdndpvcrhkrgsfqckhz3ryydq2w3pl12v27z"))))
+    (build-system gnu-build-system)
+    (inputs `(("libmpdclient" ,libmpdclient)
+              ("curl" ,curl)
+              ("glib" ,glib)))
+    (native-inputs `(("pkg-config" ,pkg-config)))
+    (synopsis "MPD client for track scrobbling")
+    (description "mpdscribble is a Music Player Daemon client which submits
+information about tracks being played to a scrobbler, such as Libre.FM.")
+    (home-page "http://mpd.wikia.com/wiki/Client:Mpdscribble")
+    (license license:gpl2+)))
-- 
2.1.4


[-- Attachment #2: Type: text/plain, Size: 136 bytes --]


-- 
David Thompson
Web Developer - Free Software Foundation - http://fsf.org
GPG Key: 0FF1D807
Support the FSF: https://fsf.org/donate

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

* Re: [PATCH] gnu: Add mpdscribble.
  2015-02-28 19:26 [PATCH] gnu: Add mpdscribble David Thompson
@ 2015-02-28 19:40 ` Ludovic Courtès
  2015-02-28 20:39   ` David Thompson
  0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2015-02-28 19:40 UTC (permalink / raw
  To: David Thompson; +Cc: guix-devel

David Thompson <dthompson2@worcester.edu> skribis:

> From f0c0cae0aef184c6bb1d9340334ca1601113e1eb Mon Sep 17 00:00:00 2001
> From: David Thompson <dthompson2@worcester.edu>
> Date: Sat, 28 Feb 2015 14:24:52 -0500
> Subject: [PATCH] gnu: Add mpdscribble.
>
> * gnu/packages/mpd.scm (mpdscribble): New variable.

LGTM.

> +    (home-page "http://mpd.wikia.com/wiki/Client:Mpdscribble")

Shouldn’t it be musicpd.org?

Ludo’.

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

* Re: [PATCH] gnu: Add mpdscribble.
  2015-02-28 19:40 ` Ludovic Courtès
@ 2015-02-28 20:39   ` David Thompson
  2015-03-02  9:28     ` Ludovic Courtès
  0 siblings, 1 reply; 4+ messages in thread
From: David Thompson @ 2015-02-28 20:39 UTC (permalink / raw
  To: Ludovic Courtès; +Cc: guix-devel

Ludovic Courtès <ludo@gnu.org> writes:

> David Thompson <dthompson2@worcester.edu> skribis:
>
>> From f0c0cae0aef184c6bb1d9340334ca1601113e1eb Mon Sep 17 00:00:00 2001
>> From: David Thompson <dthompson2@worcester.edu>
>> Date: Sat, 28 Feb 2015 14:24:52 -0500
>> Subject: [PATCH] gnu: Add mpdscribble.
>>
>> * gnu/packages/mpd.scm (mpdscribble): New variable.
>
> LGTM.
>
>> +    (home-page "http://mpd.wikia.com/wiki/Client:Mpdscribble")
>
> Shouldn’t it be musicpd.org?

This is a weird case.  You'd think it would be on musicpd.org, because
that's where the source is.  However, musicpd.org doesn't mention it!
It isn't listed on <http://www.musicpd.org/clients/>, and that page
sends users to the wiki for more clients.  Debian uses the wikia page as
the home page, as well.  Due to this weird situation, is it alright if I
leave the home-page as-is and add a comment to explain?

-- 
David Thompson
Web Developer - Free Software Foundation - http://fsf.org
GPG Key: 0FF1D807
Support the FSF: https://fsf.org/donate

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

* Re: [PATCH] gnu: Add mpdscribble.
  2015-02-28 20:39   ` David Thompson
@ 2015-03-02  9:28     ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2015-03-02  9:28 UTC (permalink / raw
  To: David Thompson; +Cc: guix-devel

David Thompson <dthompson2@worcester.edu> skribis:

> Ludovic Courtès <ludo@gnu.org> writes:
>
>> David Thompson <dthompson2@worcester.edu> skribis:
>>
>>> From f0c0cae0aef184c6bb1d9340334ca1601113e1eb Mon Sep 17 00:00:00 2001
>>> From: David Thompson <dthompson2@worcester.edu>
>>> Date: Sat, 28 Feb 2015 14:24:52 -0500
>>> Subject: [PATCH] gnu: Add mpdscribble.
>>>
>>> * gnu/packages/mpd.scm (mpdscribble): New variable.
>>
>> LGTM.
>>
>>> +    (home-page "http://mpd.wikia.com/wiki/Client:Mpdscribble")
>>
>> Shouldn’t it be musicpd.org?
>
> This is a weird case.  You'd think it would be on musicpd.org, because
> that's where the source is.  However, musicpd.org doesn't mention it!
> It isn't listed on <http://www.musicpd.org/clients/>, and that page
> sends users to the wiki for more clients.  Debian uses the wikia page as
> the home page, as well.  Due to this weird situation, is it alright if I
> leave the home-page as-is and add a comment to explain?

Sure!

Ludo’.

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

end of thread, other threads:[~2015-03-02  9:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-28 19:26 [PATCH] gnu: Add mpdscribble David Thompson
2015-02-28 19:40 ` Ludovic Courtès
2015-02-28 20:39   ` David Thompson
2015-03-02  9:28     ` Ludovic Courtès

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.