GNU bug report logs -
#38543
[PATCH 0/3] Add KDE multimedia addons
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 38543 in the body.
You can then email your comments to 38543 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#38543
; Package
guix-patches
.
(Mon, 09 Dec 2019 10:10:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Hartmut Goebel <h.goebel <at> crazy-compilers.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Mon, 09 Dec 2019 10:10:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
This adds the KDE multimedia add-ons which have not been finished
for <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38532>
Hartmut Goebel (3):
gnu: Add libkcompactdisc.
gnu: Add audiocd-kio.
gnu: Add ffmpegthumbs.
gnu/packages/kde-multimedia.scm | 100 ++++++++++++++++++++++++++++++++
1 file changed, 100 insertions(+)
--
2.21.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#38543
; Package
guix-patches
.
(Mon, 09 Dec 2019 10:12:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 38543 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/kde-multimedia.scm (libkcompactdisc): New variable.
---
gnu/packages/kde-multimedia.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm
index 7261ef04ad..7478ef4b00 100644
--- a/gnu/packages/kde-multimedia.scm
+++ b/gnu/packages/kde-multimedia.scm
@@ -600,3 +600,30 @@ Its features include:
(synopsis "CDDB library for KDE Platform (runtime)")
(description "A library for retrieving and sending cddb information.")
(license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
+(define-public libkcompactdisc
+ (package
+ (name "libkcompactdisc")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/libkcompactdisc-" version ".tar.xz"))
+ (sha256
+ (base32 "09gl2dww5i50rpj92ryw4vq5ryy96cv9kflg6yqgdbznmmdqhawi"))))
+ (properties `((tags . ("Desktop" "KDE" "Multimedia"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)))
+ (inputs
+ `(("alsa-lib" ,alsa-lib)
+ ("kcoreaddons" ,kcoreaddons)
+ ("ki18n" ,ki18n)
+ ("phonon" ,phonon)
+ ("qtbase" ,qtbase)
+ ("solid" ,solid)))
+ (home-page "https://cgit.kde.org/libkcompactdisc.git/")
+ (synopsis "KDE library for playing & ripping CDs")
+ (description "KDE library for playing & ripping CDs.")
+ (license (list license:gpl2+ license:lgpl2.0+))))
--
2.21.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#38543
; Package
guix-patches
.
(Mon, 09 Dec 2019 10:12:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 38543 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/kde-multimedia.scm (audiocd-kio): New variable.
---
gnu/packages/kde-multimedia.scm | 41 +++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm
index 7478ef4b00..eaae095e93 100644
--- a/gnu/packages/kde-multimedia.scm
+++ b/gnu/packages/kde-multimedia.scm
@@ -26,6 +26,7 @@
#:use-module (gnu packages audio)
#:use-module (gnu packages base)
#:use-module (gnu packages compression)
+ #:use-module (gnu packages cdrom)
#:use-module (gnu packages glib)
#:use-module (gnu packages gtk)
#:use-module (gnu packages gnome)
@@ -42,6 +43,46 @@
#:use-module (gnu packages xiph)
#:use-module (gnu packages xorg))
+(define-public audiocd-kio
+ (package
+ (name "audiocd-kio")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/audiocd-kio-" version ".tar.xz"))
+ (sha256
+ (base32 "1924w7li16qkmqsvbgfihjd7id6mb00m9k3acfwkkf32yzg3dn4q"))))
+ (properties `((tags . ("Desktop" "KDE" "Multimedia"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("kdoctools" ,kdoctools)))
+ (inputs
+ `(("cdparanoia" ,cdparanoia)
+ ("flac" ,flac)
+ ("kcmutils" ,kcmutils)
+ ("kconfig" ,kconfig)
+ ("ki18n" ,ki18n)
+ ("kio" ,kio)
+ ("libkcddb" ,libkcddb)
+ ("libkcompactdisc", libkcompactdisc)
+ ("libvorbis" ,libvorbis)
+ ("phonon" ,phonon)
+ ("qtbase" ,qtbase)))
+ (home-page "https://kde.org/applications/multimedia/org.kde.kio_audiocd")
+ (synopsis "Transparent audio CD integration for applications using the KDE
+Platform")
+ (description "KIO AudioCD is a KIO slave that enables KIO-aware
+applications (such as Dolphin or k3b) to access audio and CD text data on the
+audio compact disks. It allows transparent drag and drop conversion of audio
+data into the popular formats and has a configuration System Settings module
+available in the \"Multimedia\" section.
+
+This package is part of the KDE multimedia module.")
+ (license (list license:gpl2+ license:fdl1.2+))))
+
(define-public dragon
(package
(name "dragon")
--
2.21.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#38543
; Package
guix-patches
.
(Mon, 09 Dec 2019 10:12:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 38543 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/kde-multimedia.scm (ffmpegthumbs): New variable.
---
gnu/packages/kde-multimedia.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/kde-multimedia.scm b/gnu/packages/kde-multimedia.scm
index eaae095e93..4580a31dbd 100644
--- a/gnu/packages/kde-multimedia.scm
+++ b/gnu/packages/kde-multimedia.scm
@@ -199,6 +199,38 @@ The Baloo one is much faster because Baloo is providing all needed data from
its own database. You can build and play your own playlist.")
(license license:lgpl3+)))
+(define-public ffmpegthumbs
+ (package
+ (name "ffmpegthumbs")
+ (version "19.08.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://kde/stable/applications/" version
+ "/src/ffmpegthumbs-" version ".tar.xz"))
+ (sha256
+ (base32 "1w6070ng40nf99wpl6p5s8nx0icfx2c26vvnz4f9fx7l7pldh6n9"))))
+ (properties `((tags . ("Desktop" "KDE" "Multimedia"))))
+ (build-system qt-build-system)
+ (native-inputs
+ `(("extra-cmake-modules" ,extra-cmake-modules)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("ffmpeg" ,ffmpeg)
+ ("kconfig" ,kconfig)
+ ("ki18n" ,ki18n)
+ ("kio" ,kio)
+ ("qtbase" ,qtbase)))
+ (home-page "https://kde.org/applications/multimedia/org.kde.ffmpegthumbs")
+ (synopsis "Video thumbnail generator for KDE using ffmpeg")
+ (description "
+FFMpegThumbs is a video thumbnail generator for KDE file managers
+like Dolphin and Konqueror. It enables them to show preview images
+of video files using FFMpeg.
+
+This package is part of the KDE multimedia module.")
+ (license license:gpl2+)))
+
(define-public juk
(package
(name "juk")
--
2.21.0
Reply sent
to
Hartmut Goebel <h.goebel <at> crazy-compilers.com>
:
You have taken responsibility.
(Thu, 26 Dec 2019 15:47:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Hartmut Goebel <h.goebel <at> crazy-compilers.com>
:
bug acknowledged by developer.
(Thu, 26 Dec 2019 15:47:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 38543-close <at> debbugs.gnu.org (full text, mbox):
Pushed as b291c9570d5a27b11472df3df61cef9ed012241b
after removing the "tags" properties, using the fixed qt-build-system
and adding license comment.
--
Regards
Hartmut Goebel
| Hartmut Goebel | h.goebel <at> crazy-compilers.com |
| www.crazy-compilers.com | compilers which you thought are impossible |
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Fri, 24 Jan 2020 12:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 5 years and 206 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.