apteryx pushed a commit to branch master
in repository guix.
commit 7fcf4fa082d945963bc2bebdd61f364d537debc4
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Tue Jun 16 23:48:27 2020 -0400
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.
---
gnu/packages/linphone.scm | 8 --------
1 file changed, 8 deletions(-)
diff --git a/gnu/packages/linphone.scm b/gnu/packages/linphone.scm
index f96fff2..14da150 100644
--- a/gnu/packages/linphone.scm
+++ b/gnu/packages/linphone.scm
@@ -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.