public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
From: "Jose Quaresma" <quaresma.jose@gmail.com>
To: openembedded-core@lists.openembedded.org
Cc: Jose Quaresma <quaresma.jose@gmail.com>
Subject: [PATCH v3 02/20] gstreamer1.0: Fix reproducibility issue around libcap
Date: Sun, 18 Oct 2020 13:09:44 +0100	[thread overview]
Message-ID: <20201018121002.1417335-3-quaresma.jose@gmail.com> (raw)
In-Reply-To: <20201018121002.1417335-1-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/0004-capfix.patch  | 48 -------------------
 .../gstreamer/gstreamer1.0_1.18.0.bb          |  4 +-
 2 files changed, 2 insertions(+), 50 deletions(-)
 delete mode 100644 meta/recipes-multimedia/gstreamer/gstreamer1.0/0004-capfix.patch

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0004-capfix.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0/0004-capfix.patch
deleted file mode 100644
index 32e9610cff..0000000000
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0/0004-capfix.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From 9607e9858d681f5ad2e1677f5dbbb1fb61bd8846 Mon Sep 17 00:00:00 2001
-From: Jose Quaresma <quaresma.jose@gmail.com>
-Date: Sun, 18 Oct 2020 10:40:59 +0100
-Subject: [PATCH 4/4] 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
----
- libs/gst/helpers/meson.build | 7 ++++++-
- meson_options.txt            | 1 +
- 2 files changed, 7 insertions(+), 1 deletion(-)
-
-diff --git a/libs/gst/helpers/meson.build b/libs/gst/helpers/meson.build
-index 9e5a4ae..c2e540f 100644
---- a/libs/gst/helpers/meson.build
-+++ b/libs/gst/helpers/meson.build
-@@ -66,7 +66,12 @@ if have_ptp
-       description : 'getifaddrs() and AF_LINK is available')
-   endif
- 
--  setcap_prog = find_program('setcap', '/usr/sbin/setcap', '/sbin/setcap', required : false)
-+  setcap_feature = get_option('setcap')
-+  if setcap_feature.disabled()
-+    setcap_prog = find_program('dontexist', required : false)
-+  else
-+    setcap_prog = find_program('setcap', '/usr/sbin/setcap', '/sbin/setcap', required : false)
-+  endif
-   cap_dep = dependency('libcap', required: false)
- 
-   # user/group to change to in gst-ptp-helper
-diff --git a/meson_options.txt b/meson_options.txt
-index 346c423..03338ad 100644
---- a/meson_options.txt
-+++ b/meson_options.txt
-@@ -25,6 +25,7 @@ option('libdw', type : 'feature', value : 'auto', description : 'Use libdw to ge
- 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('coretracers', type : 'feature', value : 'auto', description : 'Build coretracers plugin')
-+option('setcap', type : 'feature', value : 'auto', description : 'Use setcap')
- 
- # Common feature options
- option('examples', type : 'feature', value : 'auto', yield : true)
--- 
-2.28.0
-
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.18.0.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.18.0.bb
index 8f7dfc6079..d382655bcb 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.18.0.bb
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.18.0.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
 
@@ -36,7 +36,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.28.0


  parent reply	other threads:[~2020-10-18 12:10 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-18 12:09 [PATCH v3 00/20] Updates the gstreamer to version 1.18.0 Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 01/20] gstreamer1.0: upgrade " Jose Quaresma
2020-10-18 12:09 ` Jose Quaresma [this message]
2020-10-18 12:09 ` [PATCH v3 03/20] gstreamer1.0-plugins-base: " Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 04/20] gstreamer1.0-plugins-base: add new meson option as PACKAGECONFIG Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 05/20] gstreamer1.0-plugins-good: upgrade to version 1.18.0 Jose Quaresma
2020-10-19  7:37   ` [OE-core] " Carlos Rafael Giani
2020-10-19 10:41     ` Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 06/20] gstreamer1.0-plugins-good: disable new meson options Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 07/20] gstreamer1.0-plugins-good: add new meson option as PACKAGECONFIG Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 08/20] gstreamer1.0-plugins-bad: upgrade to version 1.18.0 Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 09/20] gstreamer1.0-plugins-bad: disable new meson options Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 10/20] gstreamer1.0-plugins-bad: add new meson options as PACKAGECONFIG Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 11/20] gstreamer1.0-plugins-ugly: upgrade to version 1.18.0 Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 12/20] gstreamer1.0-python: " Jose Quaresma
2020-10-19  7:05   ` [OE-core] " Carlos Rafael Giani
2020-10-19 10:29     ` Jose Quaresma
2020-10-19 10:37       ` [OE-core] " Carlos Rafael Giani
2020-10-18 12:09 ` [PATCH v3 13/20] gstreamer1.0-python: install append is not need any more Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 14/20] gstreamer1.0-rtsp-server: upgrade to version 1.18.0 Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 15/20] gstreamer1.0-vaapi: " Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 16/20] gst-examples: " Jose Quaresma
2020-10-18 12:09 ` [PATCH v3 17/20] gstreamer1.0-omx: " Jose Quaresma
2020-10-18 12:10 ` [PATCH v3 18/20] gstreamer1.0-libav: " Jose Quaresma
2020-10-18 12:10 ` [PATCH v3 19/20] gst-devtools: add version 1.18.0 (gst-validate -> gst-devtools) Jose Quaresma
2020-10-18 12:10 ` [PATCH v3 20/20] orc: Upgrade 0.4.31 -> 0.4.32 Jose Quaresma
2020-10-19 10:06 ` [PATCH v3 00/20] Updates the gstreamer to version 1.18.0 Jose Quaresma
2020-10-19 10:12   ` [OE-core] " Alexander Kanavin
2020-10-19 10:16     ` Jose Quaresma

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201018121002.1417335-3-quaresma.jose@gmail.com \
    --to=quaresma.jose@gmail.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox