me
/
guix
Archived
1
0
Fork 0

gnu: linphoneqt: Remove obsolete phase.

Now that we have Qt 5.14, having SOURCE_DATE_EPOCH set prevents
reproducibility problems with the Qt Resource Compiler (this was fixed
upstream in Qt 5.13).

* gnu/packages/linphone.scm (linphoneqt)[phases]: Remove obsolete
'set-qt-rcc-source-date-override phase.
master
Maxim Cournoyer 2020-06-16 23:48:27 -04:00
parent cb4b60bcee
commit 7fcf4fa082
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 0 additions and 8 deletions

View File

@ -512,14 +512,6 @@ and video calls or instant messaging capabilities to an application.")
`(#:tests? #f ; No test target
#:phases
(modify-phases %standard-phases
(add-after 'set-paths 'set-qt-rcc-source-date-override
(lambda _
;; This fixes a reproducibility problem where the Qt Resource
;; Compiler (RCC) includes timestamp of its source files
;; (see: https://reproducible-builds.org/docs/
;; deterministic-build-systems/#cmake-notes).
(setenv "QT_RCC_SOURCE_DATE_OVERRIDE" "1")
#t))
(add-after 'unpack 'fix-cmake-error
(lambda _
;; This is fixed in commit efed2fd8 of the master branch.