[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/07: gnu: gst-plugins-base: Do not propagate Orc on armhf systems.
From: |
guix-commits |
Subject: |
05/07: gnu: gst-plugins-base: Do not propagate Orc on armhf systems. |
Date: |
Sun, 12 Jan 2020 14:34:13 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit cc1b2b3e1366d254c653deb0af6687bcfb6f0ec1
Author: Marius Bakke <address@hidden>
AuthorDate: Sun Jan 12 19:13:03 2020 +0100
gnu: gst-plugins-base: Do not propagate Orc on armhf systems.
* gnu/packages/gstreamer.scm (gst-plugins-base)[propagated-inputs]:
Conditionally add ORC.
---
gnu/packages/gstreamer.scm | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 323e3cc..63b4179 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -7,7 +7,7 @@
;;; Copyright © 2016, 2018 Leo Famulari <address@hidden>
;;; Copyright © 2017 Ricardo Wurmus <address@hidden>
;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
-;;; Copyright © 2019 Marius Bakke <address@hidden>
+;;; Copyright © 2019, 2020 Marius Bakke <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -168,7 +168,14 @@ This package provides the core library and elements.")
(propagated-inputs
`(("glib" ,glib) ;required by gstreamer-sdp-1.0.pc
("gstreamer" ,gstreamer) ;required by gstreamer-plugins-base-1.0.pc
- ("orc" ,orc))) ;required by gstreamer-audio-1.0.pc
+
+ ;; XXX: Do not enable Orc optimizations on ARM systems because
+ ;; it leads to two test failures.
+ ;; https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/issues/683
+ ,@(if (string-prefix? "arm" (or (%current-target-system)
+ (%current-system)))
+ '()
+ `(("orc" ,orc))))) ;required by gstreamer-audio-1.0.pc
(inputs
`(("cdparanoia" ,cdparanoia)
("pango" ,pango)
- branch master updated (cfd0fd9 -> 2e4bb89), guix-commits, 2020/01/12
- 01/07: gnu: chez-scheme: Remove obsolete snippet., guix-commits, 2020/01/12
- 04/07: gnu: wavpack: Do not build the static library., guix-commits, 2020/01/12
- 05/07: gnu: gst-plugins-base: Do not propagate Orc on armhf systems.,
guix-commits <=
- 06/07: gnu: nss-certs: Update to 3.48., guix-commits, 2020/01/12
- 02/07: gnu: jsoncpp: Fix test failure on armhf-linux and aarch64-linux., guix-commits, 2020/01/12
- 03/07: gnu: wavpack: Update to 5.2.0., guix-commits, 2020/01/12
- 07/07: gnu: xdg-utils: Don't use propagated inputs., guix-commits, 2020/01/12