mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: itinerary: Update to 24.05.2.
* gnu/packages/kde-pim.scm (itinerary): Update to 24.05.2. [inputs]: Remove qtdeclarative-5, qtgraphicaleffects, qtlocation-5, qtmultimedia-5, and qtquickcontrols2-5; add qtdeclarative, qtpositioning, qtlocation, and qtmultimedia. [native-inputs]: Add python-minimal. [arguments]<#:phases>: Add stop-require-qmlmodule phase. Change-Id: Ie03b729c420ba8519c2108109eac462a67f24c77
This commit is contained in:
parent
eb5474bcbe
commit
136774bea8
1 changed files with 20 additions and 9 deletions
|
@ -45,6 +45,7 @@ (define-module (gnu packages kde-pim)
|
||||||
#:use-module (gnu packages openldap)
|
#:use-module (gnu packages openldap)
|
||||||
#:use-module (gnu packages pdf)
|
#:use-module (gnu packages pdf)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
|
#:use-module (gnu packages python)
|
||||||
#:use-module (gnu packages qt)
|
#:use-module (gnu packages qt)
|
||||||
#:use-module (gnu packages search)
|
#:use-module (gnu packages search)
|
||||||
#:use-module (gnu packages sqlite)
|
#:use-module (gnu packages sqlite)
|
||||||
|
@ -379,18 +380,29 @@ (define-public akonadi-search
|
||||||
(define-public itinerary
|
(define-public itinerary
|
||||||
(package
|
(package
|
||||||
(name "itinerary")
|
(name "itinerary")
|
||||||
(version "23.04.3")
|
(version "24.05.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://kde/stable/release-service/"
|
(uri (string-append "mirror://kde/stable/release-service/"
|
||||||
version "/src/" name "-" version ".tar.xz"))
|
version "/src/" name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"132x68wc4pallxgkvridfsimfq5m2g47fj9lcgz1kq4gdsidzf6i"))))
|
"1p05v9r1ipi465nmka8n2gs7npc6wdgfxzj7523plnja9kfa8bmb"))))
|
||||||
(build-system qt-build-system)
|
(build-system qt-build-system)
|
||||||
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ;Fails 20/27
|
(list #:qtbase qtbase
|
||||||
(native-inputs (list extra-cmake-modules))
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'stop-require-qmlmodule
|
||||||
|
(lambda _
|
||||||
|
;; HACK: ecm_find_qmlmodule cann't find qmlmodule on other
|
||||||
|
;; prefix, so we remove it require.
|
||||||
|
(substitute* "CMakeLists.txt"
|
||||||
|
(("24.02 REQUIRED")
|
||||||
|
"24.02")))))
|
||||||
|
#:tests? #f)) ;Fails 20/27
|
||||||
|
(native-inputs (list extra-cmake-modules python-minimal))
|
||||||
(inputs (list karchive
|
(inputs (list karchive
|
||||||
kdbusaddons
|
kdbusaddons
|
||||||
ki18n
|
ki18n
|
||||||
|
@ -413,11 +425,10 @@ (define-public itinerary
|
||||||
kunitconversion
|
kunitconversion
|
||||||
kwindowsystem
|
kwindowsystem
|
||||||
prison
|
prison
|
||||||
qtdeclarative-5
|
qtdeclarative
|
||||||
qtgraphicaleffects
|
qtpositioning
|
||||||
qtlocation-5
|
qtlocation
|
||||||
qtmultimedia-5
|
qtmultimedia
|
||||||
qtquickcontrols2-5
|
|
||||||
qqc2-desktop-style
|
qqc2-desktop-style
|
||||||
shared-mime-info
|
shared-mime-info
|
||||||
solid
|
solid
|
||||||
|
|
Loading…
Reference in a new issue