GNU bug report logs - #38686
[PATCH] gnu: Add mpv-mpris.

Previous Next

Package: guix-patches;

Reported by: Efraim Flashner <efraim <at> flashner.co.il>

Date: Fri, 20 Dec 2019 09:06:02 UTC

Severity: normal

Tags: patch

Done: Efraim Flashner <efraim <at> flashner.co.il>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 38686 in the body.
You can then email your comments to 38686 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#38686; Package guix-patches. (Fri, 20 Dec 2019 09:06:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Efraim Flashner <efraim <at> flashner.co.il>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 20 Dec 2019 09:06:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: guix-patches <at> gnu.org
Cc: Efraim Flashner <efraim <at> flashner.co.il>
Subject: [PATCH] gnu: Add mpv-mpris.
Date: Fri, 20 Dec 2019 11:04:03 +0200
* gnu/packages/video.scm (mpv-mpris): New variable.
---
 gnu/packages/video.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index ef60767236..fb62fc62a2 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -1436,6 +1436,48 @@ projects while introducing many more.")
 (define-public gnome-mpv
   (deprecated-package "gnome-mpv" celluloid))
 
+(define-public mpv-mpris
+  (package
+    (name "mpv-mpris")
+    (version "0.2")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/hoyon/mpv-mpris")
+               (commit version)))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "06hq3j1jjlaaz9ss5l7illxz8vm5bng86jl24kawglwkqayhdnjx"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:tests? #f ; no tests
+       #:make-flags '("CC=gcc")
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure) ; no configure script
+         (replace 'install
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let ((out (assoc-ref outputs "out")))
+               (install-file "mpris.so" (string-append out "/lib")))
+             #t)))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("glib" ,glib)
+       ("mpv" ,mpv)))
+    (home-page "https://github.com/hoyon/mpv-mpris")
+    (synopsis "MPRIS plugin for mpv")
+    (description "MPRIS plugin for mpv written in C.  Implements
+@code{org.mpris.MediaPlayer2} and @code{org.mpris.MediaPlayer2.Player} D-Bus
+interfaces.
+
+To load this plugin, specify the following option when starting mpv:
+@code{--script $GUIX_PROFILE/lib/mpris.so} or link it into
+$HOME/.config/mpv/scripts")
+    (license license:expat)))
+
 (define-public libvpx
   (package
     (name "libvpx")
-- 
2.24.1





Information forwarded to guix-patches <at> gnu.org:
bug#38686; Package guix-patches. (Mon, 23 Dec 2019 18:32:01 GMT) Full text and rfc822 format available.

Message #8 received at 38686 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Efraim Flashner <efraim <at> flashner.co.il>
Cc: 38686 <at> debbugs.gnu.org
Subject: Re: [bug#38686] [PATCH] gnu: Add mpv-mpris.
Date: Mon, 23 Dec 2019 19:31:02 +0100
Hello!

Efraim Flashner <efraim <at> flashner.co.il> skribis:

> * gnu/packages/video.scm (mpv-mpris): New variable.

[...]

> +    (home-page "https://github.com/hoyon/mpv-mpris")
> +    (synopsis "MPRIS plugin for mpv")
> +    (description "MPRIS plugin for mpv written in C.  Implements
> +@code{org.mpris.MediaPlayer2} and @code{org.mpris.MediaPlayer2.Player} D-Bus
> +interfaces.

Please write full sentences and provide some context, like:

  This package provides a plugin for the mpv media player, adding
  support for the Mblah… System (MPRIS).  It implements the …

> +To load this plugin, specify the following option when starting mpv:
> +@code{--script $GUIX_PROFILE/lib/mpris.so} or link it into
> +$HOME/.config/mpv/scripts")
  ^
@file

Otherwise LGTM!  :-)

Ludo’, who doesn’t know what MPRIS is.




Reply sent to Efraim Flashner <efraim <at> flashner.co.il>:
You have taken responsibility. (Mon, 23 Dec 2019 20:34:02 GMT) Full text and rfc822 format available.

Notification sent to Efraim Flashner <efraim <at> flashner.co.il>:
bug acknowledged by developer. (Mon, 23 Dec 2019 20:34:02 GMT) Full text and rfc822 format available.

Message #13 received at 38686-done <at> debbugs.gnu.org (full text, mbox):

From: Efraim Flashner <efraim <at> flashner.co.il>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 38686-done <at> debbugs.gnu.org
Subject: Re: [bug#38686] [PATCH] gnu: Add mpv-mpris.
Date: Mon, 23 Dec 2019 22:33:21 +0200
[Message part 1 (text/plain, inline)]
On Mon, Dec 23, 2019 at 07:31:02PM +0100, Ludovic Courtès wrote:
> Hello!
> 
> Efraim Flashner <efraim <at> flashner.co.il> skribis:
> 
> > * gnu/packages/video.scm (mpv-mpris): New variable.
> 
> [...]
> 
> > +    (home-page "https://github.com/hoyon/mpv-mpris")
> > +    (synopsis "MPRIS plugin for mpv")
> > +    (description "MPRIS plugin for mpv written in C.  Implements
> > +@code{org.mpris.MediaPlayer2} and @code{org.mpris.MediaPlayer2.Player} D-Bus
> > +interfaces.
> 
> Please write full sentences and provide some context, like:
> 
>   This package provides a plugin for the mpv media player, adding
>   support for the Mblah… System (MPRIS).  It implements the …

Sounds good

> 
> > +To load this plugin, specify the following option when starting mpv:
> > +@code{--script $GUIX_PROFILE/lib/mpris.so} or link it into
> > +$HOME/.config/mpv/scripts")
>   ^
> @file

Ok

> 
> Otherwise LGTM!  :-)
> 
> Ludo’, who doesn’t know what MPRIS is.

It's the magic that lets you control media playback from your phone
after connecting with kdeconnect. I'm sure it also has other things it
can do.

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 21 Jan 2020 12:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 5 years and 152 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.