GNU bug report logs -
#55516
[PATCH] gnu: Add quod-libet.
Previous Next
Reported by: "Wamm K. D" <jaft.r <at> outlook.com>
Date: Thu, 19 May 2022 04:48:01 UTC
Severity: normal
Tags: patch
Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Sat, 28 May 2022 13:13:27 +0200
with message-id <3f4037d41a6a3d9234d27bbb63c00fde01b3529c.camel <at> gmail.com>
and subject line Re: [PATCH v2] gnu: Add quodlibet.
has caused the debbugs.gnu.org bug report #55516,
regarding [PATCH] gnu: Add quod-libet.
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
55516: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=55516
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
---
gnu/packages/music.scm | 61 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 210af3b166..d3a3064a50 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -45,6 +45,7 @@
;;; Copyright © 2021 Xinglu Chen <public <at> yoctocell.xyz>
;;; Copyright © 2021 Thomas Albers Raviola <thomas <at> thomaslabs.org>
;;; Copyright © 2022 Sughosha <sughosha <at> disroot.org>
+;;; Copyright © 2022 Wamm K. D. <jaft.r <at> outlook.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -176,6 +177,7 @@ (define-module (gnu packages music)
#:use-module (gnu packages vim) ;for 'xxd'
#:use-module (gnu packages web)
#:use-module (gnu packages webkit)
+ #:use-module (gnu packages wm)
#:use-module (gnu packages wxwidgets)
#:use-module (gnu packages xdisorg)
#:use-module (gnu packages xml)
@@ -6877,3 +6879,62 @@ (define-public musikcube
streaming audio server.")
(home-page "https://musikcube.com/")
(license license:bsd-3)))
+
+(define-public quod-libet
+ (package
+ (name "quod-libet")
+ (version "4.5.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/quodlibet/quodlibet/")
+ (commit (string-append "release-" version))))
+ (sha256 (base32
+ "1i5k93k3bfp7hpcwkbr865mbj9jam3jv2a5k1bazcyp4f5vdrb0v"))))
+ (build-system python-build-system)
+ (native-inputs (list gettext-minimal python-pytest))
+ (inputs (list ;;; Per their documentation:
+ ;; required
+ python-pygobject
+ python-pycairo
+ python-mutagen
+ gtk+
+ libsoup-minimal-2
+ python-feedparser
+ gstreamer
+ gst-plugins-base
+ ;; discovered, while building
+ gdk-pixbuf
+ ;; optional but recommended
+ gst-plugins-good
+ gst-plugins-bad
+ gst-plugins-ugly
+ gst-libav
+ ;; optional but needed for DBus and
+ ;; multimedia keys under Gnome
+ python-dbus
+ ;; optional but needed for multimedia keys not under Gnome
+ keybinder-3.0
+ ;; optional but needed for Undo/Redo
+ ;; support for multiline text fields
+ gtksourceview
+ ;; optional but needed for the auto library update plugin
+ python-pyinotify
+ ;; optional but needed for the Musicbrainz plugin
+ python-musicbrainzngs))
+ (arguments `(#:phases (modify-phases %standard-phases
+ (add-after 'wrap 'gi-wrap
+ (lambda* (#:key outputs #:allow-other-keys)
+ (for-each
+ (lambda (binary)
+ (wrap-program (string-append (assoc-ref outputs "out")
+ "/bin/"
+ binary)
+ `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))))
+ '("quodlibet" "exfalso")))))
+ ;; Gtk.init_check requires an internet connection to initialize
+ #:tests? #f))
+ (home-page "https://quodlibet.readthedocs.io/en/latest/")
+ (synopsis "Music player and music library manager for Linux, Windows, and macOS")
+ (description "Quod Libet is a cross-platform audio / music management program. It can be used to view your local library and supports streaming audio and feeds (podcasts, etc.). It, also, has metadata editing and searching capabilities.")
+ (license license:gpl2)))
--
2.36.0
[Message part 3 (message/rfc822, inline)]
Am Samstag, dem 28.05.2022 um 10:57 +0200 schrieb Remco van 't Veer:
> * gnu/packages/music.scm (quodlibet): New variable.
Cleaned up and pushed.
Cheers
This bug report was last modified 2 years and 356 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.