gnu: gst-plugins-base: Update to 1.4.5, re-enable tests.
* gnu/packages/gstreamer.scm (gst-plugins-base): Update to 1.4.5. [arguments]: Add #:phases. [inputs]: Add cdparanoia and orc.master
parent
e244dc6dd6
commit
e9a0b5e7b2
|
@ -25,6 +25,7 @@
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages bison)
|
#:use-module (gnu packages bison)
|
||||||
|
#:use-module (gnu packages cdrom)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages flex)
|
#:use-module (gnu packages flex)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
|
@ -126,7 +127,7 @@ This package provides the core library and elements.")
|
||||||
(define-public gst-plugins-base
|
(define-public gst-plugins-base
|
||||||
(package
|
(package
|
||||||
(name "gst-plugins-base")
|
(name "gst-plugins-base")
|
||||||
(version "1.0.10")
|
(version "1.4.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -134,10 +135,11 @@ This package provides the core library and elements.")
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1s4pphbb5kpdh4rrmb8rala4sp499k4by59925k15xiz58xyhm4p"))))
|
"07ampnfa6p41s0lhia62l9h8bdx3c7vxvdz93pbx64m3wycq3gbp"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("glib" ,glib)
|
`(("cdparanoia" ,cdparanoia)
|
||||||
|
("orc" ,orc)
|
||||||
("pango" ,pango)
|
("pango" ,pango)
|
||||||
("libogg" ,libogg)
|
("libogg" ,libogg)
|
||||||
("libtheora" ,libtheora)
|
("libtheora" ,libtheora)
|
||||||
|
@ -153,14 +155,13 @@ This package provides the core library and elements.")
|
||||||
("glib" ,glib "bin")
|
("glib" ,glib "bin")
|
||||||
("python-wrapper" ,python-wrapper)))
|
("python-wrapper" ,python-wrapper)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f))
|
'(#:phases
|
||||||
;; All tests pass except for one:
|
(alist-cons-before
|
||||||
;; Running suite(s): pbutils library
|
'configure 'patch-test-pb-utils
|
||||||
;; 85%: Checks: 7, Failures: 1, Errors: 0
|
(lambda _
|
||||||
;; libs/pbutils.c:522:F:general:test_pb_utils_install_plugins:0: gst_install_plugins_sync() failed ;; with unexpected ret 201, which is neither HELPER_MISSING nor 1
|
(substitute* "tests/check/libs/pbutils.c"
|
||||||
;; FAIL: libs/pbutils
|
(("/bin/sh") (which "sh"))))
|
||||||
;; According to the documentation, "gst_install_plugins_sync (...)
|
%standard-phases)))
|
||||||
;; should almost never be used".
|
|
||||||
(home-page "http://gstreamer.freedesktop.org/")
|
(home-page "http://gstreamer.freedesktop.org/")
|
||||||
(synopsis
|
(synopsis
|
||||||
"Plugins for the GStreamer multimedia library")
|
"Plugins for the GStreamer multimedia library")
|
||||||
|
|
Reference in New Issue