guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/08: gnu: orc: Update to 0.4.30.


From: guix-commits
Subject: 06/08: gnu: orc: Update to 0.4.30.
Date: Wed, 9 Oct 2019 12:54:49 -0400 (EDT)

mbakke pushed a commit to branch staging
in repository guix.

commit 45b01f2e05ce05ef796c186260e86c9042731cc0
Author: Marius Bakke <address@hidden>
Date:   Wed Oct 9 12:57:19 2019 +0200

    gnu: orc: Update to 0.4.30.
    
    * gnu/packages/gstreamer.scm (orc): Update to 0.4.30.
    [build-system]: Change to MESON-BUILD-SYSTEM.
    [arguments]: Adjust phase order to cope with the new out-of-source build.
    [native-inputs]: Add GTK-DOC.
---
 gnu/packages/gstreamer.scm | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 1ec161a..065f92d 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -29,6 +29,7 @@
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix build-system gnu)
+  #:use-module (guix build-system meson)
   #:use-module (guix utils)
   #:use-module (gnu packages)
   #:use-module (gnu packages audio)
@@ -68,19 +69,19 @@
 (define-public orc
   (package
     (name "orc")
-    (version "0.4.29")
+    (version "0.4.30")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://gstreamer.freedesktop.org/data/src/";
                                   "orc/orc-" version ".tar.xz"))
               (sha256
                (base32
-                "1cisbbn69p9c8vikn0nin14q0zscby5m8cyvzxyw2pjb2kwh32ag"))))
-    (build-system gnu-build-system)
+                "0wj93im7i8a6546q2r8sp39yjfbxflkc0ygb0b8iqsd58qhvjhds"))))
+    (build-system meson-build-system)
     (arguments
      `(#:phases
        (modify-phases %standard-phases
-         (add-before 'check 'disable-faulty-test
+         (add-after 'unpack 'disable-faulty-test
            (lambda _
              ;; XXX Disable the 'test-limits' and 'exec_opcodes_sys'
              ;; tests, which fail on some machines.  See:
@@ -90,6 +91,8 @@
                (("if \\(error\\) return 1;")
                 "if (error) return 77;"))
              #t)))))
+    (native-inputs
+     `(("gtk-doc" ,gtk-doc)))
     (home-page "https://gstreamer.freedesktop.org/modules/orc.html";)
     (synopsis "Oil runtime compiler")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]