gnu: qtsensors: Update to 5.15.8.

* gnu/packages/qt.scm (qtsensors): Update to 5.15.8.
This commit is contained in:
Maxim Cournoyer 2023-03-27 16:09:49 -04:00
parent 721d91336c
commit 49586719c3
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -1440,25 +1440,26 @@ (define-public qtwebsockets
(license (package-license qtbase)))) (license (package-license qtbase))))
(define-public qtsensors (define-public qtsensors
(package (inherit qtsvg-5) (package
(inherit qtsvg-5)
(name "qtsensors") (name "qtsensors")
(version "5.15.5") (version "5.15.8")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (qt-urls name version)) (uri (qt-urls name version))
(sha256 (sha256
(base32 (base32
"0zlhm4js02niibb23rw87wf4ik0gy4ai08fwprnwy7zf4rm1ss3d")))) "1fdpgbikvxjacyipcyac0czqhv96pvc75dl9cyafslws8m53fm56"))))
(arguments (arguments
(substitute-keyword-arguments (package-arguments qtsvg-5) (substitute-keyword-arguments (package-arguments qtsvg-5)
((#:parallel-tests? _ #f) #f) ; can lead to race condition ((#:parallel-tests? _ #f) #f) ; can lead to race condition
((#:phases phases) ((#:phases phases)
`(modify-phases ,phases `(modify-phases ,phases
(add-after 'unpack 'fix-tests (add-after 'unpack 'fix-tests
(lambda _ (lambda _
(substitute* "tests/auto/qsensorgestures_gestures/tst_sensorgestures_gestures.cpp" (substitute* "tests/auto/qsensorgestures_gestures/tst_sensorgestures_gestures.cpp"
(("2000") "5000") ;lengthen test timeout (("2000") "5000") ;lengthen test timeout
(("QTest::newRow(\"twist\") << \"twist\"") "")))))))) ;failing test (("QTest::newRow(\"twist\") << \"twist\"") "")))))))) ;failing test
(native-inputs (native-inputs
(list perl qtdeclarative-5)) (list perl qtdeclarative-5))
(inputs (list qtbase-5)) (inputs (list qtbase-5))