GNU bug report logs - #70288
[PATCH 1/3] gnu: Add phonon-backend-vlc.

Previous Next

Package: guix-patches;

Reported by: Sughosha <sughosha <at> disroot.org>

Date: Mon, 8 Apr 2024 19:20:01 UTC

Severity: normal

Tags: patch

Merged with 70289, 70290, 70291

Done: Z572 <zhengjunjie <at> iscas.ac.cn>

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 70288 in the body.
You can then email your comments to 70288 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#70288; Package guix-patches. (Mon, 08 Apr 2024 19:20:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Sughosha <sughosha <at> disroot.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 08 Apr 2024 19:20:02 GMT) Full text and rfc822 format available.

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

From: Sughosha <sughosha <at> disroot.org>
To: guix-patches <at> gnu.org
Cc: Sughosha <sughosha <at> disroot.org>
Subject: [PATCH 1/3] gnu: Add phonon-backend-vlc.
Date: Tue,  9 Apr 2024 00:48:51 +0530
* gnu/packages/kde-frameworks.scm (phonon-plugin-vlc): New variable.

Change-Id: I5a680d55782cbfcd6349efc64cce36457f456377
---
 gnu/packages/kde-frameworks.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index f487ac9a30..8135cfa544 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -288,6 +288,33 @@ (define-public phonon-backend-gstreamer
     ;; license: source files mention "either version 2.1 or 3"
     (license (list license:lgpl2.1 license:lgpl3))))
 
+(define-public phonon-backend-vlc
+  (package
+    (name "phonon-backend-vlc")
+    (version "0.12.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "mirror://kde/stable/phonon/"
+                    name "/" version "/"
+                    name "-" version ".tar.xz"))
+              (sha256
+               (base32
+                "19f9wzff4nr36ryq18i6qvsq5kqxfkpqsmsvrarr8jqy8pf7k11k"))))
+    (build-system cmake-build-system)
+    (arguments
+     (list #:configure-flags
+           #~(list "-DPHONON_BUILD_QT6=OFF")))
+    (native-inputs
+     (list extra-cmake-modules qttools-5))
+    (inputs
+     (list phonon qtbase-5 vlc))
+    (home-page "https://community.kde.org/Phonon")
+    (synopsis "Phonon backend which uses VLC")
+    (description "Phonon makes use of backend libraries to provide sound.
+Phonon-VLC is a backend based on the VLC multimedia library.")
+    (license license:lgpl2.1)))
+
 
 ;; Tier 1
 ;;
-- 
2.41.0





Merged 70288 70289 70290 70291. Request was from Sughosha <sughosha <at> disroot.org> to control <at> debbugs.gnu.org. (Mon, 08 Apr 2024 19:44:03 GMT) Full text and rfc822 format available.

Reply sent to Z572 <zhengjunjie <at> iscas.ac.cn>:
You have taken responsibility. (Tue, 30 Apr 2024 16:32:02 GMT) Full text and rfc822 format available.

Notification sent to Sughosha <sughosha <at> disroot.org>:
bug acknowledged by developer. (Tue, 30 Apr 2024 16:32:02 GMT) Full text and rfc822 format available.

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

From: Z572 <zhengjunjie <at> iscas.ac.cn>
To: Sughosha via Guix-patches via <guix-patches <at> gnu.org>
Cc: 70288-done <at> debbugs.gnu.org, Sughosha <sughosha <at> disroot.org>
Subject: Re: [bug#70288] [PATCH 1/3] gnu: Add phonon-backend-vlc.
Date: Wed, 01 May 2024 00:30:59 +0800
[Message part 1 (text/plain, inline)]
Sughosha via Guix-patches via <guix-patches <at> gnu.org> writes:

> * gnu/packages/kde-frameworks.scm (phonon-plugin-vlc): New variable.
>
> Change-Id: I5a680d55782cbfcd6349efc64cce36457f456377
> ---
>  gnu/packages/kde-frameworks.scm | 27 +++++++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
>
> diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
> index f487ac9a30..8135cfa544 100644
> --- a/gnu/packages/kde-frameworks.scm
> +++ b/gnu/packages/kde-frameworks.scm
> @@ -288,6 +288,33 @@ (define-public phonon-backend-gstreamer
>      ;; license: source files mention "either version 2.1 or 3"
>      (license (list license:lgpl2.1 license:lgpl3))))
>  
> +(define-public phonon-backend-vlc
> +  (package
> +    (name "phonon-backend-vlc")
> +    (version "0.12.0")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append
> +                    "mirror://kde/stable/phonon/"
> +                    name "/" version "/"
> +                    name "-" version ".tar.xz"))
> +              (sha256
> +               (base32
> +                "19f9wzff4nr36ryq18i6qvsq5kqxfkpqsmsvrarr8jqy8pf7k11k"))))
> +    (build-system cmake-build-system)
> +    (arguments
> +     (list #:configure-flags
> +           #~(list "-DPHONON_BUILD_QT6=OFF")))
> +    (native-inputs
> +     (list extra-cmake-modules qttools-5))
> +    (inputs
> +     (list phonon qtbase-5 vlc))
> +    (home-page "https://community.kde.org/Phonon")
> +    (synopsis "Phonon backend which uses VLC")
> +    (description "Phonon makes use of backend libraries to provide sound.
> +Phonon-VLC is a backend based on the VLC multimedia library.")
> +    (license license:lgpl2.1)))
> +
>  
>  ;; Tier 1
>  ;;

apply, see

https://git.savannah.gnu.org/cgit/guix.git/commit/?id=40cf627160f14b7077094e1999de189309e41058
https://git.savannah.gnu.org/cgit/guix.git/commit/?id=418a75b15733affac92254f03b9e74a0ba271fd9
https://git.savannah.gnu.org/cgit/guix.git/commit/?id=29987db3809bbda16762ecb349142be6cf71a0af
[signature.asc (application/pgp-signature, inline)]

Reply sent to Z572 <zhengjunjie <at> iscas.ac.cn>:
You have taken responsibility. (Tue, 30 Apr 2024 16:32:03 GMT) Full text and rfc822 format available.

Notification sent to Sughosha <sughosha <at> disroot.org>:
bug acknowledged by developer. (Tue, 30 Apr 2024 16:32:03 GMT) Full text and rfc822 format available.

Reply sent to Z572 <zhengjunjie <at> iscas.ac.cn>:
You have taken responsibility. (Tue, 30 Apr 2024 16:32:03 GMT) Full text and rfc822 format available.

Notification sent to Sughosha <sughosha <at> disroot.org>:
bug acknowledged by developer. (Tue, 30 Apr 2024 16:32:03 GMT) Full text and rfc822 format available.

Reply sent to Z572 <zhengjunjie <at> iscas.ac.cn>:
You have taken responsibility. (Tue, 30 Apr 2024 16:32:03 GMT) Full text and rfc822 format available.

Notification sent to Sughosha <sughosha <at> disroot.org>:
bug acknowledged by developer. (Tue, 30 Apr 2024 16:32:03 GMT) Full text and rfc822 format available.

Information forwarded to guix-patches <at> gnu.org:
bug#70288; Package guix-patches. (Tue, 30 Apr 2024 16:33:01 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 29 May 2024 11:24:12 GMT) Full text and rfc822 format available.

This bug report was last modified 3 days ago.

Previous Next


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