[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
21/115: gnu: gst-plugins-base: Enable more features.
From: |
guix-commits |
Subject: |
21/115: gnu: gst-plugins-base: Enable more features. |
Date: |
Fri, 15 Oct 2021 09:48:53 -0400 (EDT) |
apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.
commit 2d854cf62959f6eb6fe776f2e2875f497ec394e1
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 54c978a..f2f6238 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -559,6 +559,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)
@@ -569,21 +570,43 @@ This package provides the core library and elements.")
("libXext" ,libxext)
("libxv" ,libxv)
("alsa-lib" ,alsa-lib)
- ("opus" ,opus)))
+ ("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
- 09/115: gnu: gdk-pixbuf: Add a debug output., (continued)
- 09/115: gnu: gdk-pixbuf: Add a debug output., guix-commits, 2021/10/15
- 12/115: gnu: appstream-glib: Propagate gdk-pixbuf+svg rather than gdk-pixbuf., guix-commits, 2021/10/15
- 14/115: gnu: librsvg-next: Do not propagate gdk-pixbuf., guix-commits, 2021/10/15
- 17/115: gnu: mutter: Propagate gdk-pixbuf+svg rather than gdk-pixbuf., guix-commits, 2021/10/15
- 18/115: gnu: cheese: Propagate gdk-pixbuf+svg rather than gdk-pixbuf., guix-commits, 2021/10/15
- 19/115: gnu: gstreamer: Update to 1.18.4., guix-commits, 2021/10/15
- 15/115: gnu: libgweather: Propagate gdk-pixbuf+svg rather than gdk-pixbuf., guix-commits, 2021/10/15
- 20/115: gnu: gst-plugins-base: Update to 1.18.4., guix-commits, 2021/10/15
- 27/115: gnu: gst-editing-services: Update to 1.18.4., guix-commits, 2021/10/15
- 16/115: gnu: cogl: Propagate gdk-pixbuf+svg rather than gdk-pixbuf., guix-commits, 2021/10/15
- 21/115: gnu: gst-plugins-base: Enable more features.,
guix-commits <=
- 22/115: gnu: gst-plugins-good: Update to 1.18.4., guix-commits, 2021/10/15
- 25/115: gnu: gst-plugins-bad: Update to 1.18.4., guix-commits, 2021/10/15
- 30/115: gnu: farstream: Enable tests., guix-commits, 2021/10/15
- 32/115: gnu: python-docutils: Update to 0.17.1., guix-commits, 2021/10/15
- 34/115: gnu: gnupg: Don't explicitly return #t from phases., guix-commits, 2021/10/15
- 23/115: gnu: gst-plugins-ugly: Update to 1.18.4., guix-commits, 2021/10/15
- 28/115: gnu: python-pygobject: Update to 3.40.1., guix-commits, 2021/10/15
- 38/115: gnu: python-sphinx: Update to 4.2.0., guix-commits, 2021/10/15
- 39/115: gnu: gstreamer-docs: Update to 1.19.2., guix-commits, 2021/10/15
- 40/115: gnu: gstreamer: Update to 1.19.2., guix-commits, 2021/10/15