[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
94/115: gnu: gst-plugins-base: Enable more features.
From: |
guix-commits |
Subject: |
94/115: gnu: gst-plugins-base: Enable more features. |
Date: |
Fri, 7 May 2021 16:56:49 -0400 (EDT) |
raghavgururajan pushed a commit to branch wip-gnome
in repository guix.
commit b80322c40fedf042e31f00d2292f7b5cef2c79b7
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Mon Apr 12 11:36:08 2021 +0200
gnu: gst-plugins-base: Enable more features.
* gnu/packages/gstreamer.scm (gst-plugins-base)
[inputs]: Add graphene, iso-codes, libgudev, libjpeg-turbo, libpng,
libvisual, mesa, wayland-protocols, wayland.
[native-inputs]: Add gettext-minimal and xorg-server-for-test.
[arguments]: Remove '-Dgl=disabled' from configure flags. Add pre-check
phase.
Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
Co-authored-by: 宋文武 <iyzsong@member.fsf.org>
---
gnu/packages/gstreamer.scm | 37 ++++++++++++++++++++++++++++++-------
1 file changed, 30 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 82b4676..0bfe0cc 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -560,6 +560,7 @@ This package provides the core library and elements.")
'()
`(("orc" ,orc))))) ;required by gstreamer-audio-1.0.pc
(inputs
+ ;; TODO: Add libvorbisidec
`(("cdparanoia" ,cdparanoia)
("pango" ,pango)
("libogg" ,libogg)
@@ -574,21 +575,43 @@ This package provides the core library and elements.")
;; <https://bugs.gnu.org/32360>
,@(if (target-64bit?)
`(("opus" ,opus))
- '())))
+ '())
+ ("graphene" ,graphene)
+ ("iso-codes" ,iso-codes)
+ ("libgudev" ,libgudev)
+ ("libjpeg" ,libjpeg-turbo)
+ ("libpng" ,libpng)
+ ("libvisual" ,libvisual)
+ ("mesa" ,mesa)
+ ("wayland-protocols" ,wayland-protocols)
+ ("wayland" ,wayland)))
(native-inputs
- `(("pkg-config" ,pkg-config)
- ("glib:bin" ,glib "bin")
- ("gobject-introspection" ,gobject-introspection)
- ("python-wrapper" ,python-wrapper)))
+ `(("pkg-config" ,pkg-config)
+ ("glib:bin" ,glib "bin")
+ ("gobject-introspection" ,gobject-introspection)
+ ("python-wrapper" ,python-wrapper)
+ ("gettext" ,gettext-minimal)
+ ("xorg-server" ,xorg-server-for-tests)))
(arguments
- `(#:configure-flags '("-Dgl=disabled")
- #:phases
+ `(#:phases
(modify-phases %standard-phases
,@%common-gstreamer-phases
(add-before 'configure 'patch
(lambda _
(substitute* "tests/check/libs/pbutils.c"
(("/bin/sh") (which "sh")))
+ #t))
+ (add-before 'check 'pre-check
+ (lambda _
+ ;; Tests require a running X server.
+ (system "Xvfb :1 +extension GLX &")
+ (setenv "DISPLAY" ":1")
+ ;; Tests write to $HOME.
+ (setenv "HOME" (getcwd))
+ ;; Tests look for $XDG_RUNTIME_DIR.
+ (setenv "XDG_RUNTIME_DIR" (getcwd))
+ ;; For missing '/etc/machine-id'.
+ (setenv "DBUS_FATAL_WARNINGS" "0")
#t)))))
(home-page "https://gstreamer.freedesktop.org/")
(synopsis
- 74/115: gnu: yelp-xsl: Enable documentation., (continued)
- 74/115: gnu: yelp-xsl: Enable documentation., guix-commits, 2021/05/07
- 72/115: gnu: wayland: Update synopsis, description and license., guix-commits, 2021/05/07
- 75/115: gnu: gtk+-2: Enable tests., guix-commits, 2021/05/07
- 79/115: gnu: gtk+: Add missing inputs., guix-commits, 2021/05/07
- 84/115: gnu: ibus: Update to 1.5.24., guix-commits, 2021/05/07
- 82/115: gnu: gtkmm: Update to 3.24.4., guix-commits, 2021/05/07
- 90/115: gnu: faac: Correct source uri., guix-commits, 2021/05/07
- 87/115: gnu: ibus: Enable tests., guix-commits, 2021/05/07
- 88/115: gnu: ibus: Remove trailing #t in phases., guix-commits, 2021/05/07
- 89/115: gnu: iqa: Correct source uri., guix-commits, 2021/05/07
- 94/115: gnu: gst-plugins-base: Enable more features.,
guix-commits <=
- 95/115: gnu: gst-plugins-good: Update to 1.18.4., guix-commits, 2021/05/07
- 96/115: gnu: gst-plugins-ugly: Update to 1.18.4., guix-commits, 2021/05/07
- 99/115: gnu: gst-plugins-bad: Add missing inputs to enable more features., guix-commits, 2021/05/07
- 98/115: gnu: gst-plugins-bad: Update to 1.18.4., guix-commits, 2021/05/07
- 101/115: gnu: cairo: Reintroduce security patches [security fixes]., guix-commits, 2021/05/07
- 111/115: gnu: python-pycairo: Update to 1.20.0., guix-commits, 2021/05/07
- 105/115: gnu: pango: Use meson-0.55, as required by the project., guix-commits, 2021/05/07
- 110/115: gnu: w3m: Update to 0.5.3+git20210102., guix-commits, 2021/05/07
- 102/115: gnu: glib: Disable failing test., guix-commits, 2021/05/07
- 05/115: gnu: glib-with-documentation: Make some cosmetic changes., guix-commits, 2021/05/07