[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
44/331: gnu: gstreamer: Update package definition.
From: |
guix-commits |
Subject: |
44/331: gnu: gstreamer: Update package definition. |
Date: |
Fri, 14 Aug 2020 11:12:47 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 62c8fb36193913b86ba75b970312d2f9fd5d2bd8
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Wed Jun 24 23:28:32 2020 -0400
gnu: gstreamer: Update package definition.
* gnu/packages/gstreamer.scm (gstreamer): Update package definition.
[arguments]<#:glib-or-gtk?>: New argument.
<#:phases>['patch-dockbook-xml]: New phase.
['disable-failing-tests]: Remove phase.
[native-inputs]: Add bash-completion, docbook-xml, docbook-xsl,
gettext-minimal and libxml2.
[inputs]: Add gmp, gsl, gtk+ and libcap.
[propagated-inputs]: Add glib-networking, elfutils and libunwind.
[search-paths]: New field.
[synopsis]: Modify.
[description]: Modify.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/gstreamer.scm | 150 +++++++++++++++++++++++++--------------------
1 file changed, 83 insertions(+), 67 deletions(-)
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 6381d42..7a134b8 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -37,10 +37,13 @@
#:use-module (gnu packages audio)
#:use-module (gnu packages autotools)
#:use-module (gnu packages base)
+ #:use-module (gnu packages bash)
#:use-module (gnu packages bison)
#:use-module (gnu packages cdrom)
#:use-module (gnu packages curl)
#:use-module (gnu packages compression)
+ #:use-module (gnu packages docbook)
+ #:use-module (gnu packages elf)
#:use-module (gnu packages flex)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages gettext)
@@ -51,9 +54,12 @@
#:use-module (gnu packages graphics)
#:use-module (gnu packages gtk)
#:use-module (gnu packages image)
+ #:use-module (gnu packages libunwind)
#:use-module (gnu packages libusb)
#:use-module (gnu packages linux)
+ #:use-module (gnu packages maths)
#:use-module (gnu packages mp3)
+ #:use-module (gnu packages multiprecision)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages networking)
#:use-module (gnu packages perl)
@@ -169,73 +175,83 @@ arrays of data.")
(define-public gstreamer
(package
(name "gstreamer")
- (version "1.16.2")
- (source
- (origin
- (method url-fetch)
- (uri (string-append
- "https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-"
- version ".tar.xz"))
- (sha256
- (base32
- "0kp93622y29pck8asvil1fmzf55s2gx76wv475a6izc3cwj49w73"))))
- (build-system meson-build-system)
- (outputs '("out" "doc"))
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- ,@%common-gstreamer-phases
- ;; FIXME: Since switching to the meson-build-system, two tests
- ;; started failing on i686. See
- ;; <https://gitlab.freedesktop.org/gstreamer/gstreamer/issues/499>.
- ,@(if (string-prefix? "i686" (or (%current-target-system)
- (%current-system)))
- `((add-after 'unpack 'disable-some-tests
- (lambda _
- (substitute* "tests/check/gst/gstsystemclock.c"
- (("tcase_add_test \\(tc_chain,
test_stress_cleanup_unschedule.*")
- "")
- (("tcase_add_test \\(tc_chain,
test_stress_reschedule.*")
- ""))
- #t)))
- '())
- (add-after 'install 'move-docs
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (doc (assoc-ref outputs "doc")))
- (mkdir-p (string-append doc "/share"))
- (copy-recursively (string-append out "/share/gtk-doc")
- (string-append doc "/share/gtk-doc"))
- (delete-file-recursively (string-append out "/share/gtk-doc"))
- #t))))))
- (propagated-inputs `(("glib" ,glib))) ; required by gstreamer-1.0.pc.
- (native-inputs
- `(("bison" ,bison)
- ("flex" ,flex)
- ("glib" ,glib "bin")
- ("gobject-introspection" ,gobject-introspection)
- ("gtk-doc" ,gtk-doc)
- ("perl" ,perl)
- ("pkg-config" ,pkg-config)
- ("python-wrapper" ,python-wrapper)))
- (native-search-paths
- (list (search-path-specification
- (variable "GST_PLUGIN_SYSTEM_PATH")
- (files '("lib/gstreamer-1.0")))))
- (home-page "https://gstreamer.freedesktop.org/")
- (synopsis "Multimedia library")
- (description
- "GStreamer is a library for constructing graphs of media-handling
-components. The applications it supports range from simple Ogg/Vorbis
-playback, audio/video streaming to complex audio mixing and video
-non-linear editing.
-
-Applications can take advantage of advances in codec and filter technology
-transparently. Developers can add new codecs and filters by writing a
-simple plugin with a clean, generic interface.
-
-This package provides the core library and elements.")
- (license license:lgpl2.0+)))
+ (version "1.16.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append
+ "https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-"
+ version ".tar.xz"))
+ (sha256
+ (base32 "0kp93622y29pck8asvil1fmzf55s2gx76wv475a6izc3cwj49w73"))))
+ (build-system meson-build-system)
+ (outputs '("out" "doc"))
+ (arguments
+ `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'patch-docbook-xml
+ (lambda* (#:key inputs #:allow-other-keys)
+ (with-directory-excursion "docs"
+ (substitute* '("gst/building.xml" "gst/running.xml")
+ (("http://www.oasis-open.org/docbook/xml/4.3/")
+ (string-append (assoc-ref inputs "docbook-xml-4.3")
+ "/xml/dtd/docbook/")))
+ (substitute* '("libs/gstreamer-libs-docs.sgml"
+ "plugins/gstreamer-plugins-docs.sgml")
+ (("http://www.oasis-open.org/docbook/xml/4.1.2/")
+ (string-append (assoc-ref inputs "docbook-xml-4.1.2")
+ "/xml/dtd/docbook/"))))
+ #t))
+ (add-after 'install 'move-docs
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (doc (assoc-ref outputs "doc")))
+ (mkdir-p (string-append doc "/share"))
+ (rename-file
+ (string-append out "/share/gtk-doc")
+ (string-append doc "/share/gtk-doc"))
+ #t))))))
+ (native-inputs
+ `(("bash-completion" ,bash-completion)
+ ("bison" ,bison)
+ ("docbook-xml-4.1.2" ,docbook-xml-4.1.2)
+ ("docbook-xml-4.3" ,docbook-xml-4.3)
+ ("docbook-xsl" ,docbook-xsl)
+ ("flex" ,flex)
+ ("gettext" ,gettext-minimal)
+ ("glib" ,glib "bin")
+ ("gobject-introspection" ,gobject-introspection)
+ ("gtk-doc" ,gtk-doc)
+ ("libxml2" ,libxml2)
+ ("perl" ,perl)
+ ("pkg-config" ,pkg-config)
+ ("python-wrapper" ,python-wrapper)))
+ (inputs
+ `(("gmp" ,gmp)
+ ("gsl" ,gsl)
+ ("gtk+" ,gtk+)
+ ("setcap" ,libcap)))
+ (propagated-inputs
+ `(("glib" ,glib)
+ ("glib-networking" ,glib-networking)
+ ("libdw" ,elfutils)
+ ("libunwind" ,libunwind)))
+ (native-search-paths
+ (list
+ (search-path-specification
+ (variable "GST_PLUGIN_SYSTEM_PATH")
+ (files '("lib/gstreamer-1.0")))))
+ ;; To load gst-plugins.
+ (search-paths native-search-paths)
+ (synopsis "Multimedia framework core library")
+ (description "GStreamer is a library for constructing graphs of
+media-handling components. The applications it supports range from simple
+Ogg/Vorbis playback, audio/video streaming to complex audio and video
+processing.")
+ (home-page "https://gstreamer.freedesktop.org/")
+ (license license:lgpl2.0+)))
(define-public gst-plugins-base
(package
- 21/331: gnu: Add ronn., (continued)
- 21/331: gnu: Add ronn., guix-commits, 2020/08/14
- 26/331: gnu: fcitx: Update package definition., guix-commits, 2020/08/14
- 30/331: gnu: gdk-pixbuf+svg: Update package definition., guix-commits, 2020/08/14
- 36/331: gnu: graphene: Update package definition., guix-commits, 2020/08/14
- 35/331: gnu: Add mutest., guix-commits, 2020/08/14
- 39/331: gnu: faad2: Update to 2.8.8., guix-commits, 2020/08/14
- 40/331: gnu: glib: Update package definition., guix-commits, 2020/08/14
- 42/331: gnu: glib-networking: Update to 2.64.3., guix-commits, 2020/08/14
- 38/331: gnu: Add esound., guix-commits, 2020/08/14
- 43/331: gnu: gobject-introspection: Update package definition., guix-commits, 2020/08/14
- 44/331: gnu: gstreamer: Update package definition.,
guix-commits <=
- 18/331: gnu: clutter-gst: Update package definition., guix-commits, 2020/08/14
- 29/331: gnu: gdk-pixbuf: Update package definition., guix-commits, 2020/08/14
- 19/331: gnu: cogl: Update package definition., guix-commits, 2020/08/14
- 20/331: gnu: dconf: Update to 0.36.0., guix-commits, 2020/08/14
- 24/331: gnu: enchant: Update package definition., guix-commits, 2020/08/14
- 25/331: gnu: Add presage., guix-commits, 2020/08/14
- 27/331: gnu: gcab: Update to 1.4., guix-commits, 2020/08/14
- 28/331: gnu: gcr: Update to 3.36.0., guix-commits, 2020/08/14
- 31/331: gnu: geoclue: Update to 2.5.6., guix-commits, 2020/08/14
- 32/331: gnu: Add sysprof., guix-commits, 2020/08/14