From d0b9daa2cdf1dbb9bb14b111c3adfe55cd6ab67d Mon Sep 17 00:00:00 2001 From: Nicolas Dechesne Date: Thu, 21 Sep 2017 11:21:22 +0200 Subject: gstreamer1.0: upgrade to version 1.12.3 Bugfixes release only. Removed local patch which was merged upstream. Signed-off-by: Nicolas Dechesne Signed-off-by: Ross Burton --- ...dd-switches-for-enabling-disabling-libdw-.patch | 70 ---------------------- .../gstreamer/gstreamer1.0_1.12.2.bb | 13 ---- .../gstreamer/gstreamer1.0_1.12.3.bb | 12 ++++ 3 files changed, 12 insertions(+), 83 deletions(-) delete mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-configure-Add-switches-for-enabling-disabling-libdw-.patch delete mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0_1.12.2.bb create mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0_1.12.3.bb (limited to 'meta/recipes-multimedia') diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-configure-Add-switches-for-enabling-disabling-libdw-.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-configure-Add-switches-for-enabling-disabling-libdw-.patch deleted file mode 100644 index 1132fd5a48..0000000000 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0001-configure-Add-switches-for-enabling-disabling-libdw-.patch +++ /dev/null @@ -1,70 +0,0 @@ -From a0cb41ba72913eda06049d266ec43ea8f52b5bee Mon Sep 17 00:00:00 2001 -From: Carlos Rafael Giani -Date: Fri, 11 Aug 2017 21:21:36 +0200 -Subject: [PATCH] configure: Add switches for enabling/disabling libdw and - libunwind - -[Original patch modified to be applicable to 1.12.2] - -Upstream-Status: Submitted [https://bugzilla.gnome.org/show_bug.cgi?id=778193] - -Signed-off-by: Carlos Rafael Giani ---- - configure.ac | 38 ++++++++++++++++++++++++++++++++------ - 1 file changed, 32 insertions(+), 6 deletions(-) - -diff --git a/configure.ac b/configure.ac -index b6b2923..32dd827 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -821,15 +821,41 @@ fi - AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes") - - dnl libunwind is optionally used by the leaks tracer --PKG_CHECK_MODULES(UNWIND, libunwind, HAVE_UNWIND=yes, HAVE_UNWIND=no) --if test "x$HAVE_UNWIND" = "xyes"; then -- AC_DEFINE(HAVE_UNWIND, 1, [libunwind available]) -+AC_ARG_WITH([unwind],[AS_HELP_STRING([--with-unwind=yes|no|auto],[use libunwind])], -+ [], [with_unwind=auto]) -+if [ test "x${with_unwind}" != "xno" ]; then -+ PKG_CHECK_MODULES(UNWIND, [libunwind], -+ [ -+ HAVE_UNWIND=yes -+ AC_DEFINE(HAVE_UNWIND, 1, [libunwind available]) -+ ], -+ [ -+ HAVE_UNWIND=no -+ if [ test "x${with_unwind}" = "xyes" ]; then -+ AC_MSG_ERROR([could not find libunwind]) -+ fi -+ ]) -+else -+ HAVE_UNWIND=no - fi - - dnl libdw is optionally used to add source lines and numbers to backtraces --PKG_CHECK_MODULES(DW, libdw, HAVE_DW=yes, HAVE_DW=no) --if test "x$HAVE_DW" = "xyes"; then -- AC_DEFINE(HAVE_DW, 1, [libdw available]) -+AC_ARG_WITH([dw],[AS_HELP_STRING([--with-dw=yes|no|auto],[use libdw])], -+ [], [with_dw=auto]) -+if [ test "x${with_dw}" != "xno" ]; then -+ PKG_CHECK_MODULES(DW, [libdw], -+ [ -+ HAVE_DW=yes -+ AC_DEFINE(HAVE_DW, 1, [libdw available]) -+ ], -+ [ -+ HAVE_DW=no -+ if [ test "x${with_dw}" = "xyes" ]; then -+ AC_MSG_ERROR([could not find libdw]) -+ fi -+ ]) -+else -+ HAVE_DW=no - fi - - dnl Check for backtrace() from libc --- -2.7.4 - diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.12.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.12.2.bb deleted file mode 100644 index 8d41a59d91..0000000000 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.12.2.bb +++ /dev/null @@ -1,13 +0,0 @@ -require gstreamer1.0.inc - -LIC_FILES_CHKSUM = "file://COPYING;md5=6762ed442b3822387a51c92d928ead0d \ - file://gst/gst.h;beginline=1;endline=21;md5=e059138481205ee2c6fc1c079c016d0d" - -SRC_URI = " \ - http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.xz \ - file://0001-configure-Add-switches-for-enabling-disabling-libdw-.patch \ -" -SRC_URI[md5sum] = "4748860621607ffd96244fb79c86c238" -SRC_URI[sha256sum] = "9fde3f39a2ea984f9e07ce09250285ce91f6e3619d186889f75b5154ecf994ba" - -S = "${WORKDIR}/gstreamer-${PV}" diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.12.3.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.12.3.bb new file mode 100644 index 0000000000..98928c9466 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.12.3.bb @@ -0,0 +1,12 @@ +require gstreamer1.0.inc + +LIC_FILES_CHKSUM = "file://COPYING;md5=6762ed442b3822387a51c92d928ead0d \ + file://gst/gst.h;beginline=1;endline=21;md5=e059138481205ee2c6fc1c079c016d0d" + +SRC_URI = " \ + http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.xz \ +" +SRC_URI[md5sum] = "33dfcb690304fccdaff178440de13334" +SRC_URI[sha256sum] = "d388f492440897f02b01eebb033ca2d41078a3d85c0eddc030cdea5a337a216e" + +S = "${WORKDIR}/gstreamer-${PV}" -- cgit 1.2.3-korg