emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#32971: closed ([PATCH] gnu: Add picard.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#32971: closed ([PATCH] gnu: Add picard.)
Date: Mon, 08 Oct 2018 06:43:01 +0000

Your message dated Mon, 08 Oct 2018 07:42:23 +0100
with message-id <address@hidden>
and subject line Re: [bug#32971] [PATCH] gnu: Add picard.
has caused the debbugs.gnu.org bug report #32971,
regarding [PATCH] gnu: Add picard.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
32971: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=32971
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add picard. Date: Sun, 7 Oct 2018 16:33:07 +0100
* 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




--- End Message ---
--- Begin Message --- Subject: Re: [bug#32971] [PATCH] gnu: Add picard. Date: Mon, 08 Oct 2018 07:42:23 +0100 User-agent: mu4e 1.0; emacs 26.1
Leo Famulari <address@hidden> 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: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]