diff options
| author | Anuj Mittal <anuj.mittal@intel.com> | 2018-05-25 14:20:14 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-18 11:07:58 +0100 |
| commit | 917282c41b666bcfd3aeb95a0ec8973131719ce1 (patch) | |
| tree | 90bcf25cf690b6b2d2fb8c5b9ce6eb39d0d0337f | |
| parent | a5402ba7dd45c5c4bc7718e7166e9cf85b1b43df (diff) | |
| download | poky-917282c41b666bcfd3aeb95a0ec8973131719ce1.tar.gz | |
gst-validate: upgrade 1.14.0 -> 1.14.1
Bugfixes only. Please see:
https://gstreamer.freedesktop.org/releases/1.14/#1.14.1
(From OE-Core rev: c4cdfc0507bba6edbdd361fd61a95eef8c76bb87)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-validate/0001-validate-fix-template-paths-when-buildir-is-differen.patch | 41 | ||||
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-validate_1.14.1.bb (renamed from meta/recipes-multimedia/gstreamer/gst-validate_1.14.0.bb) | 5 |
2 files changed, 2 insertions, 44 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-validate/0001-validate-fix-template-paths-when-buildir-is-differen.patch b/meta/recipes-multimedia/gstreamer/gst-validate/0001-validate-fix-template-paths-when-buildir-is-differen.patch deleted file mode 100644 index 400b8b0fea..0000000000 --- a/meta/recipes-multimedia/gstreamer/gst-validate/0001-validate-fix-template-paths-when-buildir-is-differen.patch +++ /dev/null | |||
| @@ -1,41 +0,0 @@ | |||
| 1 | From ac9d7d230effdb97870c2f317b3b45449bde1769 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Anuj Mittal <am.devel@gmail.com> | ||
| 3 | Date: Wed, 11 Apr 2018 15:40:02 +0800 | ||
| 4 | Subject: [PATCH] validate: fix template paths when buildir is different | ||
| 5 | |||
| 6 | Compilation just fails otherwise because it's not able to locate the files. | ||
| 7 | |||
| 8 | Upstream-Status: Submitted [https://bugzilla.gnome.org/show_bug.cgi?id=795149] | ||
| 9 | Signed-off-by: Anuj Mittal <am.devel@gmail.com> | ||
| 10 | |||
| 11 | --- | ||
| 12 | gst/validate/Makefile.am | 7 +++++-- | ||
| 13 | 1 file changed, 5 insertions(+), 2 deletions(-) | ||
| 14 | |||
| 15 | diff --git a/gst/validate/Makefile.am b/gst/validate/Makefile.am | ||
| 16 | index 342730a..3fcc3e5 100644 | ||
| 17 | --- a/gst/validate/Makefile.am | ||
| 18 | +++ b/gst/validate/Makefile.am | ||
| 19 | @@ -48,14 +48,17 @@ source_h = \ | ||
| 20 | nodist_libgstvalidate_@GST_API_VERSION@_la_SOURCES = $(built_source_make) | ||
| 21 | nodist_libgstvalidate_@GST_API_VERSION@include_HEADERS = $(built_header_make) | ||
| 22 | |||
| 23 | +template_h = $(patsubst %,$(srcdir)/%, gst-validate-enum-types.h.template) | ||
| 24 | +template_c = $(patsubst %,$(srcdir)/%, gst-validate-enum-types.c.template) | ||
| 25 | + | ||
| 26 | gst-validate-enum-types.h: $(source_h) | ||
| 27 | $(AM_V_GEN)$(GLIB_MKENUMS) \ | ||
| 28 | - --template gst-validate-enum-types.h.template \ | ||
| 29 | + --template $(template_h) \ | ||
| 30 | $^ > gst-validate-enum-types.h | ||
| 31 | |||
| 32 | gst-validate-enum-types.c: $(source_h) | ||
| 33 | $(AM_V_GEN)$(GLIB_MKENUMS) \ | ||
| 34 | - --template gst-validate-enum-types.c.template \ | ||
| 35 | + --template $(template_c) \ | ||
| 36 | $^ > gst-validate-enum-types.c | ||
| 37 | |||
| 38 | EXTRA_DIST= \ | ||
| 39 | -- | ||
| 40 | 2.7.4 | ||
| 41 | |||
diff --git a/meta/recipes-multimedia/gstreamer/gst-validate_1.14.0.bb b/meta/recipes-multimedia/gstreamer/gst-validate_1.14.1.bb index d12b8f6a0f..7517580a8d 100644 --- a/meta/recipes-multimedia/gstreamer/gst-validate_1.14.0.bb +++ b/meta/recipes-multimedia/gstreamer/gst-validate_1.14.1.bb | |||
| @@ -7,10 +7,9 @@ LICENSE = "LGPLv2.1" | |||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343" | 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343" |
| 8 | 8 | ||
| 9 | SRC_URI = "https://gstreamer.freedesktop.org/src/${BPN}/${BP}.tar.xz \ | 9 | SRC_URI = "https://gstreamer.freedesktop.org/src/${BPN}/${BP}.tar.xz \ |
| 10 | file://0001-validate-fix-template-paths-when-buildir-is-differen.patch \ | ||
| 11 | " | 10 | " |
| 12 | SRC_URI[md5sum] = "deb8654c912b189388fe585b0fc5bc8f" | 11 | SRC_URI[md5sum] = "293262badee41357e029e5f2664354d7" |
| 13 | SRC_URI[sha256sum] = "33df08bf77f2895d64b7e8a957de3b930b4da0a8edabfbefcff2eab027eeffdf" | 12 | SRC_URI[sha256sum] = "68e3f38f66e0d04837b60090fe5d9ca1127f5df124669f34ca82e241209171e4" |
| 14 | 13 | ||
| 15 | DEPENDS = "json-glib glib-2.0 glib-2.0-native gstreamer1.0 gstreamer1.0-plugins-base" | 14 | DEPENDS = "json-glib glib-2.0 glib-2.0-native gstreamer1.0 gstreamer1.0-plugins-base" |
| 16 | RRECOMMENDS_${PN} = "git" | 15 | RRECOMMENDS_${PN} = "git" |
