meta-openembedded/meta-oe
Martin Jansa 66adbbce87 libsmi: use /bin/sh instead of ${base_bindir}/sh to silence QA error with usrmerge
* with usrmerge ${base_bindir} is /usr/bin/sh and libsmi fails with:
  ERROR: libsmi-0.5.0-r0 do_package_qa: QA Issue: /usr/bin/smistrip contained in package libsmi requires /usr/bin/sh, but no providers found in RDEPENDS_libsmi? [file-rdeps]
  ERROR: libsmi-0.5.0-r0 do_package_qa: QA run found fatal errors. Please consider fixing them.

* this is a bit strange as busybox does install /usr/bin/sh file:
  ./1.33.0-r0.usrmerge/image/usr/bin/sh
  ./1.33.0-r0.default/image/bin/sh

  but also adds /bin/sh to RPROVIDES_${PN} for usrmerge in DISTRO_FEATURES:
  RPROVIDES_${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', '/bin/sh', '', d)}"
  added in:
  https://git.openembedded.org/openembedded-core/commit/?id=1f6c14939c8daa5e09103789c3ff5031cc888d16

  and 1.33.0-r0.usrmerge/pkgdata/runtime/busybox:FILERPROVIDES_/usr/bin/busybox.nosuid_busybox
  correctly contains /usr/bin/sh

* adding runtime dependency on busybox as /usr/bin/sh provider would silence the QA warning
  but people might not like adding busybox to their image

* using /bin/sh silences the QA warning as well, because /bin/sh is explicitly ignored in file-rdeps insane.bbclass:
  https://git.openembedded.org/openembedded-core/tree/meta/classes/insane.bbclass?id=1f6c14939c8daa5e09103789c3ff5031cc888d16#n907

  if "file-rdeps" not in skip:
    ignored_file_rdeps = set(['/bin/sh', '/usr/bin/env', 'rtld(GNU_HASH)'])

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 08fad9f3a6)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
2021-04-08 16:58:00 -07:00
..
classes gitpkgv.bbclass: Add support for extending the supported tag formats 2020-01-17 15:44:06 -08:00
conf meta-openembedded: Add gatesgarth to LAYERSERIES_COMPAT 2020-10-15 11:42:15 -07:00
dynamic-layers nanopb: move to dynamic-layers 2021-01-10 11:13:25 -08:00
lib/oeqa/selftest/cases
licenses ace: add new recipe 2020-06-03 15:15:43 -07:00
recipes-benchmark lmbench: Fix setting LDLIBS failure 2021-01-10 11:27:48 -08:00
recipes-bsp nvme-cli: upgrade 1.12 -> 1.13 2020-11-02 09:00:52 -08:00
recipes-connectivity zabbix: CVE-2020-15803 Security Advisory 2021-01-10 10:45:36 -08:00
recipes-core packagegroup-meta-oe: include glfw, icewm, geis only with x11 in DISTRO_FEATURES 2021-04-04 12:39:17 -07:00
recipes-crypto libkcapi: upgrade 1.2.0 -> 1.2.1 2020-11-02 09:00:52 -08:00
recipes-dbs postgresql: Inherit python3targetconfig 2021-02-14 15:48:09 -08:00
recipes-devtools rapidjson: Remove unwanted patches 2021-03-28 21:50:04 -07:00
recipes-extended libplist: Inherit python3targetconfig 2021-02-14 15:48:01 -08:00
recipes-gnome libpeas: disable tests when introspection is not enabled/available 2020-08-11 15:58:26 -07:00
recipes-graphics xterm: provide virtual/x-terminal-emulator 2021-01-18 08:38:10 -08:00
recipes-kernel kernel-selftest: Disable vm packageconfig for riscv 2020-11-04 09:57:18 -08:00
recipes-multimedia mpv: fetch waf in do_fetch 2020-10-18 12:45:33 -07:00
recipes-navigation geoclue: Use git fetcher 2020-11-03 11:42:27 -08:00
recipes-printing qpdf: fix typo in RDEPENDS 2020-05-28 12:36:49 -07:00
recipes-security passwdqc: remove double modify operation 2020-05-31 22:42:25 -07:00
recipes-shells dash: upgrade 0.5.11.1 -> 0.5.11.2 2020-09-08 11:53:53 -07:00
recipes-support libsmi: use /bin/sh instead of ${base_bindir}/sh to silence QA error with usrmerge 2021-04-08 16:58:00 -07:00
recipes-test cmocka: add recipe 2020-09-28 09:17:18 -07:00
COPYING.MIT
README meta-oe/README: add Ubuntu prerequisite information 2021-02-15 08:19:35 -08:00

meta-oe
=======

This layer depends on:

URI: git://github.com/openembedded/openembedded-core.git
branch: gatesgarth
revision: HEAD

luajit recipe requires host compiler to be able to generate 32bit code when target is 32bit
e.g. arm, so ensure that $CC -m32 is functional on build host, if building this recipe, needed
packages to fullfit this might have different names on different host distributions
e.g. on archlinux based distributions install prerequisites like below

pacman -S lib32-gcc-libs lib32-glibc

Ubuntu
sudo apt-get install gcc-multilib

Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-oe][gatesgarth]' in the subject'

When sending single patches, please use something like:
'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix="meta-oe][PATCH"'

You are encouraged to fork the mirror on GitHub https://github.com/openembedded/meta-openembedded
to share your patches, this is preferred for patch sets consisting of more than one patch.

Other services like GitLab, repo.or.cz or self-hosted setups are of course accepted as well,
'git fetch <remote>' works the same on all of them. We recommend GitHub because it is free, easy
to use, has been proven to be reliable and has a really good web GUI.

gatesgarth maintainer: Armin Kuster <akuster808@gmail.com>