summaryrefslogtreecommitdiff
path: root/gnu/packages/gstreamer.scm
Commit message (Collapse)AuthorAge
* gnu: Add gst-editing-services.Leo Prikler2020-02-14
| | | | | | * gnu/packages/gstreamer.scm (gst-editing-services): New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
* gnu: gst-plugins-good: Disable failing tests on armhf-linux.Marius Bakke2020-01-21
| | | | | * gnu/packages/gstreamer.scm (gst-plugins-good)[arguments]: Add phase when building for armhf-linux.
* gnu: gst-plugins-bad: Disable failing test on armhf-linux.Marius Bakke2020-01-21
| | | | | * gnu/packages/gstreamer.scm (gst-plugins-bad)[arguments]: Add phase when building for armhf-linux.
* gnu: gstreamer: Disable two tests on i686.Marius Bakke2020-01-21
| | | | | * gnu/packages/gstreamer.scm (gstreamer)[arguments]: Add phase when building for i686 systems.
* gnu: python-gst: Build with Meson.Marius Bakke2020-01-20
| | | | | * gnu/packages/gstreamer.scm (python-gst)[build-system]: Change to MESON-BUILD-SYSTEM. [arguments]: Adjust accordingly.
* gnu: gst-libav: Build with Meson.Marius Bakke2020-01-20
| | | | | * gnu/packages/gstreamer.scm (gst-libav)[build-system]: Change to MESON-BUILD-SYSTEM. [arguments]: Remove.
* gnu: gst-plugins-ugly: Build with Meson.Marius Bakke2020-01-20
| | | | | * gnu/packages/gstreamer.scm (gst-plugins-ugly)[build-system]: Change to MESON-BUILD-SYSTEM.
* gnu: gst-plugins-bad: Build with Meson.Marius Bakke2020-01-20
| | | | | | * gnu/packages/gstreamer.scm (gst-plugins-bad)[outputs]: Remove. [build-system]: Change to MESON-BUILD-SYSTEM. [arguments]: Enable tests, except for one. Disable documentation generation.
* gnu: gst-plugins-good: Build with Meson.Marius Bakke2020-01-20
| | | | | * gnu/packages/gstreamer.scm (gst-plugins-good)[build-system]: Change to MESON-BUILD-SYSTEM.
* gnu: gst-plugins-base: Build with Meson.Marius Bakke2020-01-20
| | | | | | | * gnu/packages/gstreamer.scm (gst-plugins-base)[build-system]: Change to MESON-BUILD-SYSTEM. [outputs]: Remove. [arguments]: Enable parallel tests. Disable doc generation and Mesa dependency.
* gnu: gstreamer: Build with Meson.Marius Bakke2020-01-20
| | | | | | | | | | The package fails to build with GNU Make 4.3, and upstream no longer supports autotools. * gnu/packages/gstreamer.scm (gstreamer)[build-system]: Change to MESON-BUILD-SYSTEM. [arguments]: Remove #:configure-flags. Add #:phases. [native-inputs]: Add GTK-DOC.
* gnu: gst-plugins-base: Do not propagate Orc on armhf systems.Marius Bakke2020-01-12
| | | | | * gnu/packages/gstreamer.scm (gst-plugins-base)[propagated-inputs]: Conditionally add ORC.
* gnu: gstreamer: Update to 1.16.2.Marius Bakke2019-12-11
| | | | | | | * gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base, gst-plugins-good, gst-plugins-ugly, gst-libav, python-gst): Update to 1.16.2. (gst-plugins-bad): Likewise. [arguments]: Remove #:make-flags.
* gnu: orc: Update to 0.4.31.Marius Bakke2019-12-11
| | | | | | | * gnu/packages/patches/orc-typedef-enum.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/gstreamer.scm (orc): Update to 0.4.31. [source](patches): Remove.
* gnu: orc: Fix broken header file.Marius Bakke2019-10-15
| | | | | | * gnu/packages/patches/orc-typedef-enum.patch: New file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/gstreamer.scm (orc)[source](patches): New field.
* gnu: gstreamer: Update to 1.16.1.Marius Bakke2019-10-09
| | | | | | | | | * gnu/packages/patches/gstreamer-buffer-reset-offset.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/gstreamer.scm (gstreamer): Update to 1.16.1. [source](patches): Remove. (gst-plugins-base, gst-plugins-good, gst-plugins-bad, gst-plugins-ugly, gst-libav, python-gst): Update to 1.16.1.
* gnu: orc: Update to 0.4.30.Marius Bakke2019-10-09
| | | | | | | * 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.
* Merge branch 'master' into core-updatesMarius Bakke2019-09-27
|\
| * gnu: OpenEXR: Update to 2.4.0 [fixes CVE-2018-18443, CVE-2018-18444].Marius Bakke2019-09-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/patches/ilmbase-fix-tests.patch: Adjust for new origin. * gnu/packages/patches/ilmbase-openexr-pkg-config.patch: New file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/graphics.scm (ilmbase): Update to 2.4.0. [source]: Change to GIT-FETCH, as tarballs are no longer provided. Add new patch. [build-system]: Change to CMAKE-BUILD-SYSTEM. [arguments]: Add phase to enter the correct source directory. * gnu/packages/graphics.scm (openexr): Update to 2.4.0. [source]: Inherit from ILMBASE, which comes from the same repository. [build-system]: Change to CMAKE-BUILD-SYSTEM. [arguments]: Add phase to enter the correct source directory. * gnu/packages/gstreamer.scm (gst-plugins-bad)[arguments]: Enable C++11. * gnu/packages/image-processing.scm (opencv)[arguments]: Likewise.
* | gnu: python-gst: Fix build failure.Christopher Baines2019-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Building python-gst fails with: Unbound variable: python-version Therefore, add python-build-system to #:modules so that it's imported, and give it a prefix to avoid clashing with the gnu-build-system. Also, simplify the code by using the site-packages function from the python-build-system module. * gnu/packages/gstreamer.scm (python-gst)[arguments]: Rework to fix build failure.
* | Merge branch 'staging' into core-updatesMarius Bakke2019-07-02
|\|
| * gnu: gstreamer: Fix buffer offset problem.Marius Bakke2019-06-29
| | | | | | | | | | | | | | * gnu/packages/patches/gstreamer-buffer-reset-offset.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/gstreamer.scm (gstreamer)[source](patches): New field. [arguments]: Do not disable any tests.
* | build-system/python: Export 'python-version'.Ludovic Courtès2019-06-21
|/ | | | | | | | | | | * guix/build/python-build-system.scm (get-python-version): Rename to... (python-version): ... this. Update callers. Make public. * gnu/packages/gstreamer.scm (python-gst)[arguments]: Adjust accordingly. * gnu/packages/machine-learning.scm (ghmm)[arguments]: Likewise. * gnu/packages/openldap.scm (389-ds-base)[arguments]: Import (guix build python-build-system). Use 'python-version'. * gnu/packages/package-management.scm (conda)[arguments]: Use 'python-version'.
* gnu: gstreamer: Skip failing test on 32-bit systems.Marius Bakke2019-06-13
| | | | | * gnu/packages/gstreamer.scm (gstreamer)[arguments]: When building for a 32-bit system, add #:phases.
* gnu: gstreamer: Update to 1.16.0.Marius Bakke2019-05-04
| | | | | | | | | | | | * gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base, gst-plugins-bad, gst-plugins-ugly, python-gst): Update to 1.16.0. (gst-plugins-good): Likewise. [source](patches): Remove. [arguments]: Remove #:make-flags. (gst-libav): Update to 1.16.0. [inputs]: Change FFMPEG-3.4 to FFMPEG. * gnu/packages/patches/gst-plugins-good-libvpx-compat.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly.
* gnu: orc: Update to 0.4.29.Marius Bakke2019-05-04
| | | | * gnu/packages/gstreamer.scm (orc): Update to 0.4.29.
* gnu: gst-plugins-good: Include gstgtk extension.Pierre Neidhardt2019-03-16
| | | | * gnu/packages/gstreamer.scm (gst-plugins-good)[inputs]: Add gtk+.
* gnu: libvpx: Update to 1.8.0.Marius Bakke2019-02-09
| | | | | | | | | | | * gnu/packages/patches/gst-plugins-good-libvpx-compat.patch: New file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/video.scm (libvpx): Update to 1.8.0. [source](patches): Remove obsolete patch. (libvpx-1.7): New public variable. * gnu/packages/gnuzilla.scm (icecat)[inputs]: Use LIBVPX-1.7 instead of LIBVPX. * gnu/packages/gstreamer.scm (gst-plugins-good)[source](patches): New field. [arguments]: Add #:make-flags.
* gnu: gstreamer: Update to 1.14.4.Marius Bakke2018-12-04
| | | | | * gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base, gst-plugins-good, gst-plugins-bad, gst-plugins-ugly, gst-libav, python-gst): Update to 1.14.4.
* Merge branch 'master' into core-updatesMarius Bakke2018-10-17
|\
| * gnu: GStreamer plugins: Update MP3 features for GStreamer 1.14.Leo Famulari2018-10-16
| | | | | | | | | | | | | | | | | | | | | | GStreamer moved all MPEG-1 audio (mp1, mp2, and mp3) decoders and encoders to the group of "good" plugins in GStreamer 1.14.0. See the 'NEWS' file for more information. * gnu/packages/gstreamer.scm (gst-plugins-ugly)[inputs]: Remove lame, mpg123, and twolame. (gst-plugins-bad): Remove mpg123. (gst-plugins-good): Add lame, mpg123, and twolame.
* | gnu: gstreamer: Update to 1.14.3.Marius Bakke2018-09-20
|/ | | | | * gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base, gst-plugins-good, gst-plugins-bad, gst-plugins-ugly, gst-libav, python-gst): Update to 1.14.3.
* Merge branch 'staging'Marius Bakke2018-08-19
|\
| * gnu: gst-libav: Delete bundled ffmpeg.Marius Bakke2018-07-22
| | | | | | | | | | * gnu/packages/gstreamer.scm (gst-libav)[source](modules, snippet): New fields. [arguments]: Remove #:phases.
| * gnu: gstreamer: Update to 1.14.2.Marius Bakke2018-07-22
| | | | | | | | | | * gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base, gst-plugins-good, gst-plugins-bad, gst-plugins-ugly, gst-libav, python-gst): Update to 1.14.2.
* | gnu: gst-plugins-base: Don't build with Opus for 32-bit systems.Leo Famulari2018-08-18
|/ | | | | | | | | Fixes <https://bugs.gnu.org/32360> and <https://bugs.gnu.org/32466>. * gnu/packages/gstreamer.scm (gst-plugins-base)[inputs]: Exclude opus when building for 32-bit systems. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
* gnu: gstreamer: Update to 4.14.1.Mark H Weaver2018-05-22
| | | | | * gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base, gst-plugins-good) (gst-plugins-bad, gst-plugins-ugly, gst-libav, python-gst): Update to 4.14.1.
* Merge branch 'master' into core-updatesMark H Weaver2018-05-17
|\
| * gnu: gst-plugins-ugly: Remove libmad from the build environment.Leo Famulari2018-05-12
| | | | | | | | | | | | Libmad is not used by gst-plugins-ugly since 1.12.0. * gnu/packages/gstreamer.scm (gst-plugins-ugly)[inputs]: Remove libmad.
* | Merge branch 'master' into core-updatesMark H Weaver2018-04-30
|\|
| * Merge branch 'master' into stagingMarius Bakke2018-04-25
| |\
| * | gnu: gstreamer: Downgrade to 1.12.5.Marius Bakke2018-04-23
| | | | | | | | | | | | | | | * gnu/packages/gstreamer.scm (gstreamer, gst-plugins-base, gst-plugins-good, gst-plugins-bad, gst-plugins-ugly, gst-libav, python-gst): Downgrade to 1.12.5.
| * | Merge branch 'master' into stagingMarius Bakke2018-04-16
| |\ \
| * | | gnu: gstreamer: Update to 1.14.0.Marius Bakke2018-03-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/gstreamer.scm (gstreamer, gst-plugins-good, gst-plugins-bad, gst-plugins-ugly, gst-libav, python-gst): Update to 1.14.0. (gst-plugins-base): Likewise. [inputs]: Move ORC ... [propagated-inputs]: ... here. Add GLIB.
* | | | Merge branch 'master' into core-updatesMark H Weaver2018-04-30
|\ \ \ \ | | |_|/ | |/| |
| * | | gnu: ffmpeg: Update to 4.0.Rutger Helling2018-04-23
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * gnu/packages/video.scm (ffmpeg): Update to 4.0. * gnu/packages/video.scm (ffmpeg@3.4): New variable. * gnu/packages/video.scm (ffmpeg-git): Remove variable. * gnu/packages/video.scm (mpv)[inputs]: Build with ffmpeg instead of ffmpeg-git. * gnu/packages/gstreamer.scm (gst-libav)[inputs]: Build with ffmpeg@3.4 instead of ffmpeg. * gnu/packages/messaging.scm (qtox)[inputs]: Build with ffmpeg@3.4 instead of ffmpeg. * gnu/packages/emulators.scm (dolphin-emu)[inputs]: Build with ffmpeg@3.4 instead of ffmpeg. * gnu/packages/gnunet.scm (libextractor)[inputs]: Build with ffmpeg@3.4 instead of ffmpeg.
* | | Merge branch 'master' into core-updatesMark H Weaver2018-04-10
|\| |
| * | gnu: python-gst: Update to 1.12.5.Tobias Geerinckx-Rice2018-04-05
| |/ | | | | | | * gnu/packages/gstreamer.scm (python-gst): Update to 1.12.5.
* / gnu: orc: Return #t from all phases.Mark H Weaver2018-03-20
|/ | | | | * gnu/packages/gstreamer.scm (orc)[arguments]: Return #t from the 'disable-faulty-test' phase.
* gnu: Use HTTPS for supported freedesktop.org home pages.Tobias Geerinckx-Rice2018-02-26
| | | | | | | | | | | | | | | | | | | | | * gnu/packages/fontutils.scm (fontconfig)[home-page]: Use HTTPS. * gnu/packages/freedesktop.scm (python-pyxdg, accountsservice) (modem-manager, telepathy-mission-control, telepathy-mission-control) (colord-gtk, desktop-file-utils)[home-page]: Likewise. * gnu/packages/ghostscript.scm (libspectre)[home-page]: Likewise. * gnu/packages/glib.scm (dbus, dbus-glib, telepathy-glib)[home-page]: Likewise. * gnu/packages/gnome.scm (shared-mime-info, hicolor-icon-theme) (libxklavier, colord, upower)[home-page]: Likewise. * gnu/packages/gstreamer.scm (orc, python-gst)[home-page]: Likewise. * gnu/packages/libcanberra.scm (sound-theme-freedesktop)[home-page]: Likewise. * gnu/packages/libreoffice.scm (libexttextcat)[home-page]: Likewise. * gnu/packages/polkit.scm (polkit-gnome, polkit-gnome)[home-page]: Likewise. * gnu/packages/pulseaudio.scm (pavucontrol)[home-page]: Likewise. * gnu/packages/python.scm (python-dbus)[home-page]: Likewise. * gnu/packages/xdisorg.scm (startup-notification)[home-page]: Likewise.