gnu: kdoctools: Update to 5.27.0.
* gnu/packages/kde-frameworks.scm (kdoctools): Update to 5.27.0 and fix indentation.
This commit is contained in:
parent
075eeb355b
commit
f5dae6aec1
1 changed files with 24 additions and 23 deletions
|
@ -1234,16 +1234,16 @@ application crashes.")
|
||||||
(define-public kdoctools
|
(define-public kdoctools
|
||||||
(package
|
(package
|
||||||
(name "kdoctools")
|
(name "kdoctools")
|
||||||
(version "5.24.0")
|
(version "5.27.0")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method url-fetch)
|
||||||
(method url-fetch)
|
(uri (string-append
|
||||||
(uri (string-append "mirror://kde/stable/frameworks/"
|
"mirror://kde/stable/frameworks/"
|
||||||
(version-major+minor version) "/"
|
(version-major+minor version) "/"
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1r129kpq0d11b9l87cqbal6fm5ycwhsps1g3r1a7jsxz70scz4ri"))))
|
"1hgg19da0918mx8z2614qljvj9j8bny78mwlyljf42814f3ycpam"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("extra-cmake-modules" ,extra-cmake-modules)))
|
`(("extra-cmake-modules" ,extra-cmake-modules)))
|
||||||
|
@ -1259,19 +1259,20 @@ application crashes.")
|
||||||
("qtbase" ,qtbase)))
|
("qtbase" ,qtbase)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'cmake-find-docbook
|
(add-after 'unpack 'cmake-find-docbook
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(substitute* (find-files "cmake" "\\.cmake$")
|
(substitute* (find-files "cmake" "\\.cmake$")
|
||||||
(("CMAKE_SYSTEM_PREFIX_PATH")
|
(("CMAKE_SYSTEM_PREFIX_PATH")
|
||||||
"CMAKE_PREFIX_PATH"))
|
"CMAKE_PREFIX_PATH"))
|
||||||
(substitute* "cmake/FindDocBookXML4.cmake"
|
(substitute* "cmake/FindDocBookXML4.cmake"
|
||||||
(("^.*xml/docbook/schema/dtd.*$")
|
(("^.*xml/docbook/schema/dtd.*$")
|
||||||
"xml/dtd/docbook\n"))
|
"xml/dtd/docbook\n"))
|
||||||
(substitute* "cmake/FindDocBookXSL.cmake"
|
(substitute* "cmake/FindDocBookXSL.cmake"
|
||||||
(("^.*xml/docbook/stylesheet.*$")
|
(("^.*xml/docbook/stylesheet.*$")
|
||||||
(string-append "xml/xsl/docbook-xsl-"
|
(string-append "xml/xsl/docbook-xsl-"
|
||||||
,(package-version docbook-xsl) "\n"))))))))
|
,(package-version docbook-xsl) "\n")))
|
||||||
|
#t)))))
|
||||||
(home-page "https://community.kde.org/Frameworks")
|
(home-page "https://community.kde.org/Frameworks")
|
||||||
(synopsis "Create documentation from DocBook")
|
(synopsis "Create documentation from DocBook")
|
||||||
(description "Provides tools to generate documentation in various format
|
(description "Provides tools to generate documentation in various format
|
||||||
|
|
Reference in a new issue