me
/
guix
Archived
1
0
Fork 0

gnu: qtremoteobjects: Update to 6.3.2.

* gnu/packages/qt.scm (qtremoteobjects): No longer inherit from qtsvg-5.
Update to 6.3.2.
[arguments]: Use gexps.  Delete remove-failing-test phase.  Add set-display,
prepare-for-tests and move check phase after install phase.
[home-page, license]: New fields.
master
Maxim Cournoyer 2023-03-27 16:09:55 -04:00
parent 4a3974228a
commit 2e6393d2c3
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 28 additions and 23 deletions

View File

@ -2283,36 +2283,41 @@ implementation of OAuth and OAuth2 authenticathon methods for Qt.")
(license (package-license qtbase))))
(define-public qtremoteobjects
(package (inherit qtsvg-5)
(package
(name "qtremoteobjects")
(version "5.15.5")
(version "6.3.2")
(source (origin
(method url-fetch)
(uri (qt-urls name version))
(sha256
(base32
"1m0xcqlbxsfn0cd4ajin1h3i4l51dajmkw91v0r4a61xi14i0kks"))))
(method url-fetch)
(uri (qt-urls name version))
(sha256
(base32
"099b3vchi458i4fci9kfwan871jplqlk5l8q78mfnh33g80qnasi"))))
(build-system cmake-build-system)
(arguments
(substitute-keyword-arguments (package-arguments qtsvg-5)
((#:phases phases)
`(modify-phases ,phases
(add-after 'unpack 'remove-failing-test
(lambda _
;; This test can't find its imports.
(substitute* "tests/auto/qml/qml.pro"
(("integration") "# integration")
(("usertypes") "# usertypes"))
;; disable failing tests: they need network
(substitute* "tests/auto/auto.pro"
(("integration_multiprocess proxy_multiprocess integration_external restart")
"integration_multiprocess"))))))))
(inputs
(list qtbase-5 qtdeclarative-5))
(list
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'set-display
(lambda _
;; Make Qt render "offscreen", required for tests.
(setenv "QT_QPA_PLATFORM" "offscreen")))
(delete 'check) ;move after the install phase
(add-after 'install 'check
(assoc-ref %standard-phases 'check))
(add-before 'check 'prepare-for-tests
(lambda _
(setenv "QML2_IMPORT_PATH"
(string-append #$output "/lib/qt6/qml:"
(getenv "QML2_IMPORT_PATH"))))))))
(native-inputs (list perl vulkan-headers))
(inputs (list libxkbcommon qtbase qtdeclarative))
(synopsis "Qt Remote Objects module")
(description "The Qt Remote Objects module is an @dfn{inter-process
communication} (IPC) module developed for Qt. The idea is to extend existing
Qt's functionalities to enable an easy exchange of information between
processes or computers.")))
processes or computers.")
(home-page (package-home-page qtbase))
(license (package-license qtbase))))
(define-public qtspeech
(package (inherit qtsvg-5)