All of lore.kernel.org
 help / color / mirror / Atom feed
* [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap
@ 2020-11-01  0:43 Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 02/12] gstreamer1.0: Update 1.16.2 -> Update 1.16.3 Martin Jansa
                   ` (11 more replies)
  0 siblings, 12 replies; 16+ messages in thread
From: Martin Jansa @ 2020-11-01  0:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jose Quaresma

From: Jose Quaresma <quaresma.jose@gmail.com>

Currently gstreamer configuration depends libcap and on whether
setcap is found on the host system.

Removing libcap from DEPENDS and only use it when the 'setcap' is enabled.

    * 0004-capfix.patch
      Removed as the same goals can be achieved only with the PACKAGECONFIG 'setcap'

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
---
 .../gstreamer/gstreamer1.0/capfix.patch       | 37 -------------------
 .../gstreamer/gstreamer1.0_1.16.2.bb          |  5 +--
 2 files changed, 2 insertions(+), 40 deletions(-)
 delete mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0/capfix.patch

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0/capfix.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0/capfix.patch
deleted file mode 100644
index 7ca3d5ad4a..0000000000
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0/capfix.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Currently gstreamer configuration depends on whether setcap is found on the host
-system. Turn this into a configure option to make builds deterinistic.
-
-RP 2020/2/19
-Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-Upstream-Status: Pending
-
-Index: gstreamer-1.16.1/libs/gst/helpers/meson.build
-===================================================================
---- gstreamer-1.16.1.orig/libs/gst/helpers/meson.build
-+++ gstreamer-1.16.1/libs/gst/helpers/meson.build
-@@ -73,7 +73,12 @@ if have_ptp
-     endif
-   endif
- 
--  setcap = find_program('setcap', '/usr/sbin/setcap', '/sbin/setcap', required : false)
-+  setcap_feature = get_option('setcap')
-+  if setcap_feature.disabled()
-+    setcap = find_program('dontexist', required : false)
-+  else
-+    setcap = find_program('setcap', '/usr/sbin/setcap', '/sbin/setcap', required : false)
-+  endif
- 
-   # user/group to change to in gst-ptp-helper
-   ptp_helper_setuid_user = get_option('ptp-helper-setuid-user')
-Index: gstreamer-1.16.1/meson_options.txt
-===================================================================
---- gstreamer-1.16.1.orig/meson_options.txt
-+++ gstreamer-1.16.1/meson_options.txt
-@@ -26,6 +26,7 @@ option('libunwind', type : 'feature', va
- option('libdw', type : 'feature', value : 'auto', description : 'Use libdw to generate better backtraces from libunwind')
- option('dbghelp', type : 'feature', value : 'auto', description : 'Use dbghelp to generate backtraces')
- option('bash-completion', type : 'feature', value : 'auto', description : 'Install bash completion files')
-+option('setcap', type : 'feature', value : 'auto', description : 'Use setcap')
- 
- # Common feature options
- option('examples', type : 'feature', value : 'auto', yield : true)
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.2.bb
index 50a872e292..9d92fe1439 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.2.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.2.bb
@@ -6,7 +6,7 @@ BUGTRACKER = "https://bugzilla.gnome.org/enter_bug.cgi?product=Gstreamer"
 SECTION = "multimedia"
 LICENSE = "LGPLv2+"
 
-DEPENDS = "glib-2.0 glib-2.0-native libcap libxml2 bison-native flex-native"
+DEPENDS = "glib-2.0 glib-2.0-native libxml2 bison-native flex-native"
 
 inherit meson pkgconfig gettext upstream-version-is-even gobject-introspection gtk-doc
 
@@ -21,7 +21,6 @@ SRC_URI = " \
     file://0002-meson-build-gir-even-when-cross-compiling-if-introsp.patch \
     file://0003-meson-Add-valgrind-feature.patch \
     file://0004-meson-Add-option-for-installed-tests.patch \
-    file://capfix.patch \
 "
 SRC_URI[md5sum] = "0e661ed5bdf1d8996e430228d022628e"
 SRC_URI[sha256sum] = "e3f044246783fd685439647373fa13ba14f7ab0b346eadd06437092f8419e94e"
@@ -40,7 +39,7 @@ PACKAGECONFIG[unwind] = "-Dlibunwind=enabled,-Dlibunwind=disabled,libunwind"
 PACKAGECONFIG[dw] = "-Dlibdw=enabled,-Dlibdw=disabled,elfutils"
 PACKAGECONFIG[bash-completion] = "-Dbash-completion=enabled,-Dbash-completion=disabled,bash-completion"
 PACKAGECONFIG[tools] = "-Dtools=enabled,-Dtools=disabled"
-PACKAGECONFIG[setcap] = "-Dsetcap=enabled,-Dsetcap=disabled,libcap libcap-native"
+PACKAGECONFIG[setcap] = ",,libcap libcap-native"
 
 # TODO: put this in a gettext.bbclass patch
 def gettext_oemeson(d):
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gastesgarth][PATCH 02/12] gstreamer1.0: Update 1.16.2 -> Update 1.16.3
  2020-11-01  0:43 [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Martin Jansa
@ 2020-11-01  0:43 ` Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 03/12] gstreamer1.0-plugins-base: " Martin Jansa
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2020-11-01  0:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jose Quaresma

From: Jose Quaresma <quaresma.jose@gmail.com>

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
---
 .../{gstreamer1.0_1.16.2.bb => gstreamer1.0_1.16.3.bb}        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0_1.16.2.bb => gstreamer1.0_1.16.3.bb} (95%)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.3.bb
similarity index 95%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.2.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.3.bb
index 9d92fe1439..66ad3e3381 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.2.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.3.bb
@@ -22,8 +22,8 @@ SRC_URI = " \
     file://0003-meson-Add-valgrind-feature.patch \
     file://0004-meson-Add-option-for-installed-tests.patch \
 "
-SRC_URI[md5sum] = "0e661ed5bdf1d8996e430228d022628e"
-SRC_URI[sha256sum] = "e3f044246783fd685439647373fa13ba14f7ab0b346eadd06437092f8419e94e"
+SRC_URI[md5sum] = "beecf6965a17fb17fa3b262fd36df70a"
+SRC_URI[sha256sum] = "692f037968e454e508b0f71d9674e2e26c78475021407fcf8193b1c7e59543c7"
 
 PACKAGECONFIG ??= "${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \
                    check \
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gastesgarth][PATCH 03/12] gstreamer1.0-plugins-base: Update 1.16.2 -> Update 1.16.3
  2020-11-01  0:43 [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 02/12] gstreamer1.0: Update 1.16.2 -> Update 1.16.3 Martin Jansa
@ 2020-11-01  0:43 ` Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 04/12] gstreamer1.0-plugins-good: " Martin Jansa
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2020-11-01  0:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jose Quaresma

From: Jose Quaresma <quaresma.jose@gmail.com>

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
---
 ...ins-base_1.16.2.bb => gstreamer1.0-plugins-base_1.16.3.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-base_1.16.2.bb => gstreamer1.0-plugins-base_1.16.3.bb} (96%)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.16.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.16.3.bb
similarity index 96%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.16.2.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.16.3.bb
index 6563b6f738..a4f4772c1c 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.16.2.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.16.3.bb
@@ -13,8 +13,8 @@ SRC_URI = " \
             file://0005-viv-fb-Make-sure-config.h-is-included.patch \
             file://0009-glimagesink-Downrank-to-marginal.patch \
             "
-SRC_URI[md5sum] = "3fdb32823535799a748c1fc14f978e2c"
-SRC_URI[sha256sum] = "b13e73e2fe74a4166552f9577c3dcb24bed077021b9c7fa600d910ec6987816a"
+SRC_URI[md5sum] = "e3ddb1bae9fb510b49a295f212f1e6e4"
+SRC_URI[sha256sum] = "9f02678b0bbbcc9eff107d3bd89d83ce92fec2154cd607c7c8bd34dc7fee491c"
 
 S = "${WORKDIR}/gst-plugins-base-${PV}"
 
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gastesgarth][PATCH 04/12] gstreamer1.0-plugins-good: Update 1.16.2 -> Update 1.16.3
  2020-11-01  0:43 [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 02/12] gstreamer1.0: Update 1.16.2 -> Update 1.16.3 Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 03/12] gstreamer1.0-plugins-base: " Martin Jansa
@ 2020-11-01  0:43 ` Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 05/12] gstreamer1.0-plugins-bad: " Martin Jansa
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2020-11-01  0:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jose Quaresma

From: Jose Quaresma <quaresma.jose@gmail.com>

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
---
 ...ins-good_1.16.2.bb => gstreamer1.0-plugins-good_1.16.3.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-good_1.16.2.bb => gstreamer1.0-plugins-good_1.16.3.bb} (96%)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.3.bb
similarity index 96%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.2.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.3.bb
index 17c9421394..75dd029109 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.2.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.16.3.bb
@@ -6,8 +6,8 @@ SRC_URI = " \
             file://0001-qt-include-ext-qt-gstqtgl.h-instead-of-gst-gl-gstglf.patch \
             "
 
-SRC_URI[md5sum] = "bd025f8f14974f94b75ac69a9d1b9c93"
-SRC_URI[sha256sum] = "40bb3bafda25c0b739c8fc36e48380fccf61c4d3f83747e97ac3f9b0171b1319"
+SRC_URI[md5sum] = "c79b6c2f8eaadb2bb66615b694db399e"
+SRC_URI[sha256sum] = "d3a23a3fe73de673f591b7655494990c9e8a0e22a3c70d6f1dbf50198b29f85f"
 
 S = "${WORKDIR}/gst-plugins-good-${PV}"
 
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gastesgarth][PATCH 05/12] gstreamer1.0-plugins-bad: Update 1.16.2 -> Update 1.16.3
  2020-11-01  0:43 [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Martin Jansa
                   ` (2 preceding siblings ...)
  2020-11-01  0:43 ` [gastesgarth][PATCH 04/12] gstreamer1.0-plugins-good: " Martin Jansa
@ 2020-11-01  0:43 ` Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 06/12] gstreamer1.0-plugins-ugly: " Martin Jansa
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2020-11-01  0:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jose Quaresma

From: Jose Quaresma <quaresma.jose@gmail.com>

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
---
 ...ugins-bad_1.16.2.bb => gstreamer1.0-plugins-bad_1.16.3.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-bad_1.16.2.bb => gstreamer1.0-plugins-bad_1.16.3.bb} (98%)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.3.bb
similarity index 98%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.2.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.3.bb
index 99176b2571..ffbaaf425a 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.2.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.16.3.bb
@@ -8,8 +8,8 @@ SRC_URI = " \
     file://ensure-valid-sentinels-for-gst_structure_get-etc.patch \
     file://opencv-resolve-missing-opencv-data-dir-in-yocto-buil.patch \
 "
-SRC_URI[md5sum] = "ccc7404230afddec723bbdb63c89feec"
-SRC_URI[sha256sum] = "f1cb7aa2389569a5343661aae473f0a940a90b872001824bc47fa8072a041e74"
+SRC_URI[md5sum] = "8969ea1aec3411c13d0e7dd27ccaaef1"
+SRC_URI[sha256sum] = "84efe57011658f0a53a5d5b20f64ef109f5105dccb0808c21e069e946673514d"
 
 S = "${WORKDIR}/gst-plugins-bad-${PV}"
 
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gastesgarth][PATCH 06/12] gstreamer1.0-plugins-ugly: Update 1.16.2 -> Update 1.16.3
  2020-11-01  0:43 [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Martin Jansa
                   ` (3 preceding siblings ...)
  2020-11-01  0:43 ` [gastesgarth][PATCH 05/12] gstreamer1.0-plugins-bad: " Martin Jansa
@ 2020-11-01  0:43 ` Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 07/12] gstreamer1.0-libav: " Martin Jansa
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2020-11-01  0:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jose Quaresma

From: Jose Quaresma <quaresma.jose@gmail.com>

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
---
 ...ins-ugly_1.16.2.bb => gstreamer1.0-plugins-ugly_1.16.3.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-ugly_1.16.2.bb => gstreamer1.0-plugins-ugly_1.16.3.bb} (90%)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.16.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.16.3.bb
similarity index 90%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.16.2.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.16.3.bb
index be10800389..d9ec82d887 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.16.2.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.16.3.bb
@@ -9,8 +9,8 @@ LICENSE_FLAGS = "commercial"
 SRC_URI = " \
             https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-${PV}.tar.xz \
             "
-SRC_URI[md5sum] = "10283ff5ef1e34d462dde77042e329bd"
-SRC_URI[sha256sum] = "5500415b865e8b62775d4742cbb9f37146a50caecfc0e7a6fc0160d3c560fbca"
+SRC_URI[md5sum] = "b025125a6c928024cbd300cc27b5d712"
+SRC_URI[sha256sum] = "403c21688065f41e53008874402b5c07832567cc1309a60df597eab7ff5843f0"
 
 S = "${WORKDIR}/gst-plugins-ugly-${PV}"
 
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gastesgarth][PATCH 07/12] gstreamer1.0-libav: Update 1.16.2 -> Update 1.16.3
  2020-11-01  0:43 [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Martin Jansa
                   ` (4 preceding siblings ...)
  2020-11-01  0:43 ` [gastesgarth][PATCH 06/12] gstreamer1.0-plugins-ugly: " Martin Jansa
@ 2020-11-01  0:43 ` Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 08/12] gstreamer1.0-vaapi: " Martin Jansa
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2020-11-01  0:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jose Quaresma

From: Jose Quaresma <quaresma.jose@gmail.com>

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
---
 ...reamer1.0-libav_1.16.2.bb => gstreamer1.0-libav_1.16.3.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-libav_1.16.2.bb => gstreamer1.0-libav_1.16.3.bb} (90%)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.16.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.16.3.bb
similarity index 90%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.16.2.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.16.3.bb
index 2fdefc925e..98355a1b75 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.16.2.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.16.3.bb
@@ -10,8 +10,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
 
 SRC_URI = "https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-${PV}.tar.xz \
            "
-SRC_URI[md5sum] = "eacebd0136ede3a9bd3672eeb338806b"
-SRC_URI[sha256sum] = "c724f612700c15a933c7356fbeabb0bb9571fb5538f8b1b54d4d2d94188deef2"
+SRC_URI[md5sum] = "d08fb5429f102d5a3f1eca3dee2a0add"
+SRC_URI[sha256sum] = "d10c5eb1a00a91de97c85c0956c663aa6e99d268195cdec4534c179b831538ec"
 
 S = "${WORKDIR}/gst-libav-${PV}"
 
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gastesgarth][PATCH 08/12] gstreamer1.0-vaapi: Update 1.16.2 -> Update 1.16.3
  2020-11-01  0:43 [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Martin Jansa
                   ` (5 preceding siblings ...)
  2020-11-01  0:43 ` [gastesgarth][PATCH 07/12] gstreamer1.0-libav: " Martin Jansa
@ 2020-11-01  0:43 ` Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 09/12] gstreamer1.0-rtsp-server: " Martin Jansa
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2020-11-01  0:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jose Quaresma

From: Jose Quaresma <quaresma.jose@gmail.com>

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
---
 ...reamer1.0-vaapi_1.16.2.bb => gstreamer1.0-vaapi_1.16.3.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-vaapi_1.16.2.bb => gstreamer1.0-vaapi_1.16.3.bb} (93%)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.16.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.16.3.bb
similarity index 93%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.16.2.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.16.3.bb
index 1bedf25128..9d9b1b8757 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.16.2.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.16.3.bb
@@ -12,8 +12,8 @@ SRC_URI = "https://gstreamer.freedesktop.org/src/${REALPN}/${REALPN}-${PV}.tar.x
            file://0001-vaapsink-downgrade-to-marginal.patch \
            "
 
-SRC_URI[md5sum] = "13f7cb6a64bde24e67f563377487dcce"
-SRC_URI[sha256sum] = "191de7b0ab64a85dd0875c990721e7be95518f60e2a9106beca162004ed7c601"
+SRC_URI[md5sum] = "8c9b5a4d20afc04bc5e1536e81511f27"
+SRC_URI[sha256sum] = "77200b3c183fe97cd987deb5544e615873cff5e98ec87573583771e5f1fb9ebe"
 
 S = "${WORKDIR}/${REALPN}-${PV}"
 DEPENDS = "libva gstreamer1.0 gstreamer1.0-plugins-base gstreamer1.0-plugins-bad"
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gastesgarth][PATCH 09/12] gstreamer1.0-rtsp-server: Update 1.16.2 -> Update 1.16.3
  2020-11-01  0:43 [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Martin Jansa
                   ` (6 preceding siblings ...)
  2020-11-01  0:43 ` [gastesgarth][PATCH 08/12] gstreamer1.0-vaapi: " Martin Jansa
@ 2020-11-01  0:43 ` Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 10/12] gstreamer1.0-omx: " Martin Jansa
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2020-11-01  0:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jose Quaresma

From: Jose Quaresma <quaresma.jose@gmail.com>

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
---
 ...sp-server_1.16.2.bb => gstreamer1.0-rtsp-server_1.16.3.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-rtsp-server_1.16.2.bb => gstreamer1.0-rtsp-server_1.16.3.bb} (86%)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.3.bb
similarity index 86%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.2.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.3.bb
index 02c3c83840..5f1b1d44fa 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.2.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.16.3.bb
@@ -12,8 +12,8 @@ SRC_URI = "https://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.x
            file://0001-meson-build-gir-even-when-cross-compiling-if-introsp.patch \
            "
 
-SRC_URI[md5sum] = "8a998725820c771ba45be6e18bfdf73a"
-SRC_URI[sha256sum] = "de07a2837b3b04820ce68264a4909f70c221b85dbff0cede7926e9cdbb1dc26e"
+SRC_URI[md5sum] = "f0d8263c9d61f6f05b59ae0f676a6406"
+SRC_URI[sha256sum] = "67886b872826d513c58f88d559d4dc4aa63382d03fb64ceac91a09537fe6fea0"
 
 S = "${WORKDIR}/${PNREAL}-${PV}"
 
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gastesgarth][PATCH 10/12] gstreamer1.0-omx: Update 1.16.2 -> Update 1.16.3
  2020-11-01  0:43 [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Martin Jansa
                   ` (7 preceding siblings ...)
  2020-11-01  0:43 ` [gastesgarth][PATCH 09/12] gstreamer1.0-rtsp-server: " Martin Jansa
@ 2020-11-01  0:43 ` Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 11/12] gstreamer1.0-python: " Martin Jansa
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2020-11-01  0:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jose Quaresma

From: Jose Quaresma <quaresma.jose@gmail.com>

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
---
 ...{gstreamer1.0-omx_1.16.2.bb => gstreamer1.0-omx_1.16.3.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-omx_1.16.2.bb => gstreamer1.0-omx_1.16.3.bb} (92%)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.16.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.16.3.bb
similarity index 92%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.16.2.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.16.3.bb
index f1bdbd235d..1aa13cf73c 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.16.2.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.16.3.bb
@@ -9,8 +9,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \
 
 SRC_URI = "https://gstreamer.freedesktop.org/src/gst-omx/gst-omx-${PV}.tar.xz"
 
-SRC_URI[md5sum] = "6362786d2b6cce34de08c86b7847f782"
-SRC_URI[sha256sum] = "11ed411a2eba75610d72331eeb14ff05e2df28f4fd05cb69225a88bec6d27439"
+SRC_URI[md5sum] = "d4d89dd44362c1d262186c60437cdbee"
+SRC_URI[sha256sum] = "60603b7889528ef8539d36cb3284b648c46aa0cf980a28cba4d3fe3a44988ff9"
 
 S = "${WORKDIR}/gst-omx-${PV}"
 
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gastesgarth][PATCH 11/12] gstreamer1.0-python: Update 1.16.2 -> Update 1.16.3
  2020-11-01  0:43 [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Martin Jansa
                   ` (8 preceding siblings ...)
  2020-11-01  0:43 ` [gastesgarth][PATCH 10/12] gstreamer1.0-omx: " Martin Jansa
@ 2020-11-01  0:43 ` Martin Jansa
  2020-11-01  0:43 ` [gastesgarth][PATCH 12/12] gst-validate: " Martin Jansa
  2020-11-02  9:57 ` [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Jose Quaresma
  11 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2020-11-01  0:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jose Quaresma

From: Jose Quaresma <quaresma.jose@gmail.com>

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
---
 ...son.build-fix-builds-with-python-3.8.patch | 24 -------------------
 ....16.2.bb => gstreamer1.0-python_1.16.3.bb} |  8 +++----
 2 files changed, 3 insertions(+), 29 deletions(-)
 delete mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0-python/0001-meson.build-fix-builds-with-python-3.8.patch
 rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-python_1.16.2.bb => gstreamer1.0-python_1.16.3.bb} (80%)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python/0001-meson.build-fix-builds-with-python-3.8.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python/0001-meson.build-fix-builds-with-python-3.8.patch
deleted file mode 100644
index 053108ad50..0000000000
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python/0001-meson.build-fix-builds-with-python-3.8.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 61cfd1b49dc82baf14bb36d88b6c5be7b8c3d23a Mon Sep 17 00:00:00 2001
-From: Alexander Kanavin <alex.kanavin@gmail.com>
-Date: Mon, 2 Dec 2019 18:16:41 +0100
-Subject: [PATCH] meson.build: fix builds with python 3.8
-
-Upstream-Status: Submitted [https://gitlab.freedesktop.org/gstreamer/gst-python/merge_requests/14]
-Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
----
- meson.build | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/meson.build b/meson.build
-index 1da81d5..3e0db38 100644
---- a/meson.build
-+++ b/meson.build
-@@ -24,7 +24,7 @@ pygobject_dep = dependency('pygobject-3.0', fallback: ['pygobject', 'pygobject_d
- 
- pymod = import('python')
- python = pymod.find_installation(get_option('python'))
--python_dep = python.dependency(required : true)
-+python_dep = dependency('python3-embed', required : true)
- 
- python_abi_flags = python.get_variable('ABIFLAGS', '')
- pylib_loc = get_option('libpython-dir')
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.16.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.16.3.bb
similarity index 80%
rename from meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.16.2.bb
rename to meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.16.3.bb
index 9e024eb9f3..14b34a2808 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.16.2.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-python_1.16.3.bb
@@ -5,11 +5,9 @@ SECTION = "multimedia"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=c34deae4e395ca07e725ab0076a5f740"
 
-SRC_URI = "https://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz \
-           file://0001-meson.build-fix-builds-with-python-3.8.patch \
-           "
-SRC_URI[md5sum] = "6ac709767334d8d0a71cb4e016f6abeb"
-SRC_URI[sha256sum] = "208df3148d73d9f416d016564737585d8ea763d91201732d44b5fe688c6288a8"
+SRC_URI = "https://gstreamer.freedesktop.org/src/${PNREAL}/${PNREAL}-${PV}.tar.xz"
+SRC_URI[md5sum] = "326f4f4c23e2477bf3d5839c465a42ca"
+SRC_URI[sha256sum] = "36a00a256c25ccaaa9b965a6f09d6158dfb77558145ab6b25809938732c7161f"
 
 DEPENDS = "gstreamer1.0 python3-pygobject"
 RDEPENDS_${PN} += "gstreamer1.0 python3-pygobject"
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [gastesgarth][PATCH 12/12] gst-validate: Update 1.16.2 -> Update 1.16.3
  2020-11-01  0:43 [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Martin Jansa
                   ` (9 preceding siblings ...)
  2020-11-01  0:43 ` [gastesgarth][PATCH 11/12] gstreamer1.0-python: " Martin Jansa
@ 2020-11-01  0:43 ` Martin Jansa
  2020-11-02  9:57 ` [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Jose Quaresma
  11 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2020-11-01  0:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Jose Quaresma

From: Jose Quaresma <quaresma.jose@gmail.com>

Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
---
 .../{gst-validate_1.16.2.bb => gst-validate_1.16.3.bb}        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-multimedia/gstreamer/{gst-validate_1.16.2.bb => gst-validate_1.16.3.bb} (87%)

diff --git a/meta/recipes-multimedia/gstreamer/gst-validate_1.16.2.bb b/meta/recipes-multimedia/gstreamer/gst-validate_1.16.3.bb
similarity index 87%
rename from meta/recipes-multimedia/gstreamer/gst-validate_1.16.2.bb
rename to meta/recipes-multimedia/gstreamer/gst-validate_1.16.3.bb
index 35492fe861..ef42abbdd7 100644
--- a/meta/recipes-multimedia/gstreamer/gst-validate_1.16.2.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-validate_1.16.3.bb
@@ -9,8 +9,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343"
 SRC_URI = "https://gstreamer.freedesktop.org/src/${BPN}/${BP}.tar.xz \
            file://0001-connect-has-a-different-signature-on-musl.patch \
            "
-SRC_URI[md5sum] = "688f42c52d62e8c5e506df911553fb2c"
-SRC_URI[sha256sum] = "4861ccb9326200e74d98007e316b387d48dd49f072e0b78cb9d3303fdecfeeca"
+SRC_URI[md5sum] = "740a436f5b9bf17ea7de0e62c92ec264"
+SRC_URI[sha256sum] = "c2064e887324af6aa476ca669234936711f253b29042f617f1d9f2597c4bf92b"
 
 DEPENDS = "json-glib glib-2.0 glib-2.0-native gstreamer1.0 gstreamer1.0-plugins-base"
 RRECOMMENDS_${PN} = "git"
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* Re: [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap
  2020-11-01  0:43 [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Martin Jansa
                   ` (10 preceding siblings ...)
  2020-11-01  0:43 ` [gastesgarth][PATCH 12/12] gst-validate: " Martin Jansa
@ 2020-11-02  9:57 ` Jose Quaresma
  2020-11-02 11:16   ` [OE-core] " Richard Purdie
  11 siblings, 1 reply; 16+ messages in thread
From: Jose Quaresma @ 2020-11-02  9:57 UTC (permalink / raw)
  To: Martin Jansa; +Cc: OE-core

I think I already know the answer but Is there any possibility to use
gstreamer 1.18 on gastesgarth ?

Martin Jansa <martin.jansa@gmail.com> escreveu no dia domingo,
1/11/2020 à(s) 00:44:
>
> From: Jose Quaresma <quaresma.jose@gmail.com>
>
> Currently gstreamer configuration depends libcap and on whether
> setcap is found on the host system.
>
> Removing libcap from DEPENDS and only use it when the 'setcap' is enabled.
>
>     * 0004-capfix.patch
>       Removed as the same goals can be achieved only with the PACKAGECONFIG 'setcap'
>
> Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
> ---
>  .../gstreamer/gstreamer1.0/capfix.patch       | 37 -------------------
>  .../gstreamer/gstreamer1.0_1.16.2.bb          |  5 +--
>  2 files changed, 2 insertions(+), 40 deletions(-)
>  delete mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0/capfix.patch
>
> diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0/capfix.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0/capfix.patch
> deleted file mode 100644
> index 7ca3d5ad4a..0000000000
> --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0/capfix.patch
> +++ /dev/null
> @@ -1,37 +0,0 @@
> -Currently gstreamer configuration depends on whether setcap is found on the host
> -system. Turn this into a configure option to make builds deterinistic.
> -
> -RP 2020/2/19
> -Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> -Upstream-Status: Pending
> -
> -Index: gstreamer-1.16.1/libs/gst/helpers/meson.build
> -===================================================================
> ---- gstreamer-1.16.1.orig/libs/gst/helpers/meson.build
> -+++ gstreamer-1.16.1/libs/gst/helpers/meson.build
> -@@ -73,7 +73,12 @@ if have_ptp
> -     endif
> -   endif
> -
> --  setcap = find_program('setcap', '/usr/sbin/setcap', '/sbin/setcap', required : false)
> -+  setcap_feature = get_option('setcap')
> -+  if setcap_feature.disabled()
> -+    setcap = find_program('dontexist', required : false)
> -+  else
> -+    setcap = find_program('setcap', '/usr/sbin/setcap', '/sbin/setcap', required : false)
> -+  endif
> -
> -   # user/group to change to in gst-ptp-helper
> -   ptp_helper_setuid_user = get_option('ptp-helper-setuid-user')
> -Index: gstreamer-1.16.1/meson_options.txt
> -===================================================================
> ---- gstreamer-1.16.1.orig/meson_options.txt
> -+++ gstreamer-1.16.1/meson_options.txt
> -@@ -26,6 +26,7 @@ option('libunwind', type : 'feature', va
> - option('libdw', type : 'feature', value : 'auto', description : 'Use libdw to generate better backtraces from libunwind')
> - option('dbghelp', type : 'feature', value : 'auto', description : 'Use dbghelp to generate backtraces')
> - option('bash-completion', type : 'feature', value : 'auto', description : 'Install bash completion files')
> -+option('setcap', type : 'feature', value : 'auto', description : 'Use setcap')
> -
> - # Common feature options
> - option('examples', type : 'feature', value : 'auto', yield : true)
> diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.2.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.2.bb
> index 50a872e292..9d92fe1439 100644
> --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.2.bb
> +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.16.2.bb
> @@ -6,7 +6,7 @@ BUGTRACKER = "https://bugzilla.gnome.org/enter_bug.cgi?product=Gstreamer"
>  SECTION = "multimedia"
>  LICENSE = "LGPLv2+"
>
> -DEPENDS = "glib-2.0 glib-2.0-native libcap libxml2 bison-native flex-native"
> +DEPENDS = "glib-2.0 glib-2.0-native libxml2 bison-native flex-native"
>
>  inherit meson pkgconfig gettext upstream-version-is-even gobject-introspection gtk-doc
>
> @@ -21,7 +21,6 @@ SRC_URI = " \
>      file://0002-meson-build-gir-even-when-cross-compiling-if-introsp.patch \
>      file://0003-meson-Add-valgrind-feature.patch \
>      file://0004-meson-Add-option-for-installed-tests.patch \
> -    file://capfix.patch \
>  "
>  SRC_URI[md5sum] = "0e661ed5bdf1d8996e430228d022628e"
>  SRC_URI[sha256sum] = "e3f044246783fd685439647373fa13ba14f7ab0b346eadd06437092f8419e94e"
> @@ -40,7 +39,7 @@ PACKAGECONFIG[unwind] = "-Dlibunwind=enabled,-Dlibunwind=disabled,libunwind"
>  PACKAGECONFIG[dw] = "-Dlibdw=enabled,-Dlibdw=disabled,elfutils"
>  PACKAGECONFIG[bash-completion] = "-Dbash-completion=enabled,-Dbash-completion=disabled,bash-completion"
>  PACKAGECONFIG[tools] = "-Dtools=enabled,-Dtools=disabled"
> -PACKAGECONFIG[setcap] = "-Dsetcap=enabled,-Dsetcap=disabled,libcap libcap-native"
> +PACKAGECONFIG[setcap] = ",,libcap libcap-native"
>
>  # TODO: put this in a gettext.bbclass patch
>  def gettext_oemeson(d):
> --
> 2.27.0
>


-- 
best regards,
José Quaresma

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [OE-core] [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap
  2020-11-02  9:57 ` [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Jose Quaresma
@ 2020-11-02 11:16   ` Richard Purdie
  2020-11-02 11:47     ` Martin Jansa
  0 siblings, 1 reply; 16+ messages in thread
From: Richard Purdie @ 2020-11-02 11:16 UTC (permalink / raw)
  To: Jose Quaresma, Martin Jansa; +Cc: OE-core

On Mon, 2020-11-02 at 09:57 +0000, Jose Quaresma wrote:
> I think I already know the answer but Is there any possibility to use
> gstreamer 1.18 on gastesgarth ?

Not really, we can't do version upgrades on releases in their
maintenance cycle unless there is a really pressing reasons to take
those risks. gatesgarth whilst not released yet, is imminently due to
release (I hope!).

Cheers,

Richard


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [OE-core] [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap
  2020-11-02 11:16   ` [OE-core] " Richard Purdie
@ 2020-11-02 11:47     ` Martin Jansa
  2020-11-05  9:51       ` Jose Quaresma
  0 siblings, 1 reply; 16+ messages in thread
From: Martin Jansa @ 2020-11-02 11:47 UTC (permalink / raw)
  To: Richard Purdie; +Cc: Jose Quaresma, OE-core

[-- Attachment #1: Type: text/plain, Size: 1385 bytes --]

FWIW: I've sent this 1.16.3 upgrade for gatesgarth only because it was
recently merged to dunfell and going backwards for something as significant
as gstreamer might be complicated, even when we should probably start
getting used to this as dunfell is LTS and will receive minor upgrades long
after gatesgarth is dead completely.

After updating some patches to apply on 1.16.3 and disabling hls support in
plugins-bad (because it now requires GPLv3 nette >= 3 after
https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/commit/a9c115adebeaa4f35f27953b1cb94881912e5c00
) I just didn't want to undo these 2 changes in gatesgarth branch.

I'm fine with 1.16 in oe-core, people who need 1.18 in gatesgarth (or even
dunfell) should do it in separate layer like you already prepared in
https://github.com/OSSystems/meta-gstreamer1.0/

On Mon, Nov 2, 2020 at 12:16 PM Richard Purdie <
richard.purdie@linuxfoundation.org> wrote:

> On Mon, 2020-11-02 at 09:57 +0000, Jose Quaresma wrote:
> > I think I already know the answer but Is there any possibility to use
> > gstreamer 1.18 on gastesgarth ?
>
> Not really, we can't do version upgrades on releases in their
> maintenance cycle unless there is a really pressing reasons to take
> those risks. gatesgarth whilst not released yet, is imminently due to
> release (I hope!).
>
> Cheers,
>
> Richard
>
>

[-- Attachment #2: Type: text/html, Size: 1944 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [OE-core] [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap
  2020-11-02 11:47     ` Martin Jansa
@ 2020-11-05  9:51       ` Jose Quaresma
  0 siblings, 0 replies; 16+ messages in thread
From: Jose Quaresma @ 2020-11-05  9:51 UTC (permalink / raw)
  To: Martin Jansa; +Cc: Richard Purdie, OE-core

Martin Jansa <martin.jansa@gmail.com> escreveu no dia segunda,
2/11/2020 à(s) 11:47:
>
> FWIW: I've sent this 1.16.3 upgrade for gatesgarth only because it was recently merged to dunfell and going backwards for something as significant as gstreamer might be complicated, even when we should probably start getting used to this as dunfell is LTS and will receive minor upgrades long after gatesgarth is dead completely.
>
> After updating some patches to apply on 1.16.3 and disabling hls support in plugins-bad (because it now requires GPLv3 nette >= 3 after https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/commit/a9c115adebeaa4f35f27953b1cb94881912e5c00 ) I just didn't want to undo these 2 changes in gatesgarth branch.
>
> I'm fine with 1.16 in oe-core, people who need 1.18 in gatesgarth (or even dunfell) should do it in separate layer like you already prepared in https://github.com/OSSystems/meta-gstreamer1.0/

Thanks for the explanation,
I have nothing against it and I have the same opinion.

>
> On Mon, Nov 2, 2020 at 12:16 PM Richard Purdie <richard.purdie@linuxfoundation.org> wrote:
>>
>> On Mon, 2020-11-02 at 09:57 +0000, Jose Quaresma wrote:
>> > I think I already know the answer but Is there any possibility to use
>> > gstreamer 1.18 on gastesgarth ?
>>
>> Not really, we can't do version upgrades on releases in their
>> maintenance cycle unless there is a really pressing reasons to take
>> those risks. gatesgarth whilst not released yet, is imminently due to
>> release (I hope!).

Thanks for the explanation,
This was the answer I expected. I understand the risk involved in an
update of this type.

>>
>> Cheers,
>>
>> Richard
>>


-- 
best regards,
José Quaresma

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2020-11-05  9:52 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-01  0:43 [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Martin Jansa
2020-11-01  0:43 ` [gastesgarth][PATCH 02/12] gstreamer1.0: Update 1.16.2 -> Update 1.16.3 Martin Jansa
2020-11-01  0:43 ` [gastesgarth][PATCH 03/12] gstreamer1.0-plugins-base: " Martin Jansa
2020-11-01  0:43 ` [gastesgarth][PATCH 04/12] gstreamer1.0-plugins-good: " Martin Jansa
2020-11-01  0:43 ` [gastesgarth][PATCH 05/12] gstreamer1.0-plugins-bad: " Martin Jansa
2020-11-01  0:43 ` [gastesgarth][PATCH 06/12] gstreamer1.0-plugins-ugly: " Martin Jansa
2020-11-01  0:43 ` [gastesgarth][PATCH 07/12] gstreamer1.0-libav: " Martin Jansa
2020-11-01  0:43 ` [gastesgarth][PATCH 08/12] gstreamer1.0-vaapi: " Martin Jansa
2020-11-01  0:43 ` [gastesgarth][PATCH 09/12] gstreamer1.0-rtsp-server: " Martin Jansa
2020-11-01  0:43 ` [gastesgarth][PATCH 10/12] gstreamer1.0-omx: " Martin Jansa
2020-11-01  0:43 ` [gastesgarth][PATCH 11/12] gstreamer1.0-python: " Martin Jansa
2020-11-01  0:43 ` [gastesgarth][PATCH 12/12] gst-validate: " Martin Jansa
2020-11-02  9:57 ` [gastesgarth][PATCH 01/12] gstreamer1.0: Fix reproducibility issue around libcap Jose Quaresma
2020-11-02 11:16   ` [OE-core] " Richard Purdie
2020-11-02 11:47     ` Martin Jansa
2020-11-05  9:51       ` Jose Quaresma

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.