me
/
guix
Archived
1
0
Fork 0

gnu: kid3: Update to 3.9.5.

* gnu/packages/kde-multimedia.scm (kid3): Update to 3.9.5.
[inputs]: Remove qtbase-5, qtdeclarative-5, and qtmultimedia-5; add
qtdeclarative and qtmultimedia.
[native-inputs]: Remove python-wrapper and qttools-5; add python-minimal-wrapper and
qttools.
[arguments]: Set #:qtbase to qtbase.
<#:configure-flags>: Pass -DBUILD_WITH_QT6=ON.

Change-Id: I078ce62f2c4e1e8c9726a531d1c3580baed0ce25
master
Zheng Junjie 2024-07-07 16:53:11 +08:00
parent 3ce9995182
commit 1abc58d5c6
No known key found for this signature in database
GPG Key ID: 3B5AA993E1A2DFF0
1 changed files with 18 additions and 16 deletions

View File

@ -295,7 +295,7 @@ This package is part of the KDE multimedia module.")
(define-public kid3 (define-public kid3
(package (package
(name "kid3") (name "kid3")
(version "3.9.4") (version "3.9.5")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -304,15 +304,18 @@ This package is part of the KDE multimedia module.")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "0j454nzwx0v7iwcixyjcx71shzh3ag4ydggs8d68alrfj9f4ajap")))) (base32 "09pva85ffamjdr6m446jcvxjw8qyy7anmj1gz0fvn9ns3d1jgg46"))))
(build-system qt-build-system) (build-system qt-build-system)
(arguments (arguments
(list (list
#:configure-flags #:configure-flags
#~(list (string-append "-DDOCBOOK_XSL_DIR=" #~(list
"-DBUILD_WITH_QT6=ON"
(string-append "-DDOCBOOK_XSL_DIR="
#$(this-package-native-input "docbook-xsl"))) #$(this-package-native-input "docbook-xsl")))
#:qtbase qtbase
#:phases #:phases
`(modify-phases %standard-phases #~(modify-phases %standard-phases
;; FIXME: Documentation build scripts use unix pipes, which will fail ;; FIXME: Documentation build scripts use unix pipes, which will fail
;; in the build environment. ;; in the build environment.
(add-after 'unpack 'skip-docs (add-after 'unpack 'skip-docs
@ -325,8 +328,8 @@ This package is part of the KDE multimedia module.")
ffmpeg-4 ffmpeg-4
kdoctools kdoctools
libxslt libxslt
python-wrapper python-minimal-wrapper
qttools-5)) qttools))
(inputs (inputs
(list chromaprint (list chromaprint
flac flac
@ -338,9 +341,8 @@ This package is part of the KDE multimedia module.")
kwidgetsaddons kwidgetsaddons
kxmlgui kxmlgui
libvorbis libvorbis
qtbase-5 qtdeclarative
qtdeclarative-5 qtmultimedia
qtmultimedia-5
readline readline
taglib taglib
zlib)) zlib))