unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#32971] [PATCH] gnu: Add picard.
@ 2018-10-07 15:33 Christopher Baines
  2018-10-08  2:49 ` Leo Famulari
  0 siblings, 1 reply; 3+ messages in thread
From: Christopher Baines @ 2018-10-07 15:33 UTC (permalink / raw)
  To: 32971

* gnu/packages/music.scm (picard): New variable.
---
 gnu/packages/music.scm | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 3163e6a8f6..e1bac6f51e 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -2429,6 +2429,47 @@ and managing stations, can be controlled remotely via fifo, and can run
 event-based scripts for scrobbling, notifications, etc.")
     (license license:expat)))
 
+(define-public picard
+  (package
+    (name "picard")
+    (version "2.0.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://musicbrainz.osuosl.org/pub/musicbrainz/"
+                    "picard/picard-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0ds3ylpqn717fnzcjrfn05v5xram01bj6n3hwn9igmkd1jgf8vhc"))))
+    (build-system python-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'patch-source
+           (lambda* (#:key inputs #:allow-other-keys)
+             (substitute* "picard/const/__init__.py"
+               (("pyfpcalc")
+                (string-append
+                 "pyfpcalc', '"
+                 (assoc-ref inputs "chromaprint") "/bin/fpcalc")))))
+         (replace 'install
+           (lambda* (#:key outputs #:allow-other-keys)
+             (invoke "python" "setup.py" "install"
+                     (string-append "--prefix=" (assoc-ref outputs "out"))
+                     "--root=/"))))))
+    (native-inputs
+     `(("gettext" ,gettext-minimal)))
+    (inputs
+     `(("chromaprint" ,chromaprint)
+       ("python-pyqt" ,python-pyqt)
+       ("python-mutagen" ,python-mutagen)))
+    (home-page "https://picard.musicbrainz.org/")
+    (synopsis "Graphical music tagging application")
+    (description
+     "MusicBrainz Picard is a music tagging application, supporting multiple
+formats, looking up tracks through metadata and audio fingerprints.")
+    (license license:gpl2+)))
+
 (define-public python-mutagen
   (package
     (name "python-mutagen")
-- 
2.19.1

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

* [bug#32971] [PATCH] gnu: Add picard.
  2018-10-07 15:33 [bug#32971] [PATCH] gnu: Add picard Christopher Baines
@ 2018-10-08  2:49 ` Leo Famulari
  2018-10-08  6:42   ` bug#32971: " Christopher Baines
  0 siblings, 1 reply; 3+ messages in thread
From: Leo Famulari @ 2018-10-08  2:49 UTC (permalink / raw)
  To: Christopher Baines; +Cc: 32971

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

On Sun, Oct 07, 2018 at 04:33:07PM +0100, Christopher Baines wrote:
> * gnu/packages/music.scm (picard): New variable.

Thanks! LGTM

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* bug#32971: [PATCH] gnu: Add picard.
  2018-10-08  2:49 ` Leo Famulari
@ 2018-10-08  6:42   ` Christopher Baines
  0 siblings, 0 replies; 3+ messages in thread
From: Christopher Baines @ 2018-10-08  6:42 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 32971-done

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


Leo Famulari <leo@famulari.name> writes:

> On Sun, Oct 07, 2018 at 04:33:07PM +0100, Christopher Baines wrote:
>> * gnu/packages/music.scm (picard): New variable.
>
> Thanks! LGTM

Great, I've pushed this to master. Thanks for taking a look!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 962 bytes --]

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

end of thread, other threads:[~2018-10-08  6:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-07 15:33 [bug#32971] [PATCH] gnu: Add picard Christopher Baines
2018-10-08  2:49 ` Leo Famulari
2018-10-08  6:42   ` bug#32971: " Christopher Baines

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).