mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 12:32:15 +02:00
util-linux: simplify meta-package RDEPENDS / RRECOMMENDS
The util-linux meta-package now simply RRECOMMENDS all subpackages created. There is no distinction between what it previously recommended or depended on for existing packages. This is to streamline the dependencies and to make things less surprising. It also stops the -dev package from depending on non-existing packages like util-linux-losetup-dev etc. [YOCTO #13058] (From OE-Core rev: d0d6cc9ee59ed7a017e1b31404603a135a8717e8) Signed-off-by: André Draszik <andre.draszik@jci.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
d11cbdf149
commit
b10556c694
@@ -33,35 +33,27 @@ PACKAGES += "${@bb.utils.contains('PACKAGECONFIG', 'pylibmount', 'util-linux-pyl
|
||||
|
||||
python util_linux_binpackages () {
|
||||
def pkg_hook(f, pkg, file_regex, output_pattern, modulename):
|
||||
pn = d.getVar('PN')
|
||||
d.appendVar('RRECOMMENDS_%s' % pn, ' %s' % pkg)
|
||||
|
||||
if d.getVar('ALTERNATIVE_' + pkg):
|
||||
return
|
||||
if d.getVarFlag('ALTERNATIVE_LINK_NAME', modulename):
|
||||
d.setVar('ALTERNATIVE_' + pkg, modulename)
|
||||
|
||||
def pkg_hook_with_recommends(f, pkg, file_regex, output_pattern, modulename):
|
||||
pn = d.getVar('PN')
|
||||
d.appendVar('RRECOMMENDS_%s' % pn, ' %s' % pkg)
|
||||
pkg_hook(f, pkg, file_regex, output_pattern, modulename)
|
||||
|
||||
for dir in [ '${base_sbindir}', '${base_bindir}' ]:
|
||||
bindirs = sorted(list(set(d.expand("${base_sbindir} ${base_bindir} ${sbindir} ${bindir}").split())))
|
||||
for dir in bindirs:
|
||||
do_split_packages(d, root=dir,
|
||||
file_regex=r'(.*)', output_pattern='${PN}-%s',
|
||||
description='${PN} %s',
|
||||
hook=pkg_hook, extra_depends='', prepend=True)
|
||||
|
||||
for dir in [ '${sbindir}', '${bindir}' ]:
|
||||
do_split_packages(d, root=dir,
|
||||
file_regex=r'(.*)', output_pattern='${PN}-%s',
|
||||
description='${PN} %s',
|
||||
hook=pkg_hook_with_recommends, extra_depends='', prepend=True)
|
||||
|
||||
# There are some symlinks for some binaries which we have ignored
|
||||
# above. Add them to the package owning the binary they are
|
||||
# pointing to
|
||||
extras = {}
|
||||
dvar = d.getVar('PKGD')
|
||||
for root in [ '${base_sbindir}', '${base_bindir}', '${sbindir}', '${bindir}' ]:
|
||||
root = d.expand(root)
|
||||
for root in bindirs:
|
||||
for walkroot, dirs, files in os.walk(dvar + root):
|
||||
for f in files:
|
||||
file = os.path.join(walkroot, f)
|
||||
@@ -133,12 +125,6 @@ FILES_util-linux-pylibmount = "${PYTHON_SITEPACKAGES_DIR}/libmount/pylibmount.so
|
||||
RCONFLICTS_util-linux-blkid = "e2fsprogs-blkid"
|
||||
RREPLACES_util-linux-blkid = "e2fsprogs-blkid"
|
||||
|
||||
RDEPENDS_${PN} = "util-linux-umount util-linux-swaponoff util-linux-losetup util-linux-sulogin util-linux-lsblk"
|
||||
RDEPENDS_${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'util-linux-runuser util-linux-su', '', d)}"
|
||||
|
||||
RRECOMMENDS_${PN} += "${PN}-blockdev ${PN}-cfdisk ${PN}-ctrlaltdel ${PN}-fdisk ${PN}-mkswap ${PN}-nologin ${PN}-pivot-root ${PN}-switch-root"
|
||||
RRECOMMENDS_${PN} += "${PN}-dmesg ${PN}-kill ${PN}-more ${PN}-mount ${PN}-mountpoint"
|
||||
|
||||
RRECOMMENDS_${PN}_class-native = ""
|
||||
RRECOMMENDS_${PN}_class-nativesdk = ""
|
||||
RDEPENDS_${PN}_class-native = ""
|
||||
|
||||
Reference in New Issue
Block a user