mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
classes: Drop none package specific packaging variable accesses
(From OE-Core rev: 24cbe88429ba021d7c461e0271b67106d11d5eb2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -418,7 +418,7 @@ python package_do_split_locales() {
|
||||
# glibc-localedata-translit* won't install as a dependency
|
||||
# for some other package which breaks meta-toolchain
|
||||
# Probably breaks since virtual-locale- isn't provided anywhere
|
||||
#rdep = (d.getVar('RDEPENDS_%s' % pn, True) or d.getVar('RDEPENDS', True) or "").split()
|
||||
#rdep = (d.getVar('RDEPENDS_%s' % pn, True) or "").split()
|
||||
#rdep.append('%s-locale*' % pn)
|
||||
#d.setVar('RDEPENDS_%s' % pn, ' '.join(rdep))
|
||||
}
|
||||
@@ -901,7 +901,7 @@ python populate_packages () {
|
||||
root = os.path.join(pkgdest, pkg)
|
||||
bb.utils.mkdirhier(root)
|
||||
|
||||
filesvar = d.getVar('FILES_%s' % pkg, True) or d.getVar('FILES', True) or ""
|
||||
filesvar = d.getVar('FILES_%s' % pkg, True) or ""
|
||||
if "//" in filesvar:
|
||||
bb.warn("FILES variable for package %s contains '//' which is invalid. Attempting to fix this but you should correct the metadata.\n" % pkg)
|
||||
filesvar.replace("//", "/")
|
||||
@@ -1023,7 +1023,7 @@ python package_fixsymlinks () {
|
||||
bb.note("%s contains dangling symlink to %s" % (pkg, l))
|
||||
|
||||
for pkg in newrdepends:
|
||||
rdepends = bb.utils.explode_dep_versions2(d.getVar('RDEPENDS_' + pkg, True) or d.getVar('RDEPENDS', True) or "")
|
||||
rdepends = bb.utils.explode_dep_versions2(d.getVar('RDEPENDS_' + pkg, True) or "")
|
||||
for p in newrdepends[pkg]:
|
||||
if p not in rdepends:
|
||||
rdepends[p] = []
|
||||
@@ -1408,7 +1408,7 @@ python package_do_shlibs() {
|
||||
fd.close()
|
||||
if needs_ldconfig and use_ldconfig:
|
||||
bb.debug(1, 'adding ldconfig call to postinst for %s' % pkg)
|
||||
postinst = d.getVar('pkg_postinst_%s' % pkg, True) or d.getVar('pkg_postinst', True)
|
||||
postinst = d.getVar('pkg_postinst_%s' % pkg, True)
|
||||
if not postinst:
|
||||
postinst = '#!/bin/sh\n'
|
||||
postinst += d.getVar('ldconfig_postinst_fragment', True)
|
||||
@@ -1595,7 +1595,7 @@ python read_shlibdeps () {
|
||||
|
||||
packages = d.getVar('PACKAGES', True).split()
|
||||
for pkg in packages:
|
||||
rdepends = bb.utils.explode_dep_versions2(d.getVar('RDEPENDS_' + pkg, True) or d.getVar('RDEPENDS', True) or "")
|
||||
rdepends = bb.utils.explode_dep_versions2(d.getVar('RDEPENDS_' + pkg, True) or "")
|
||||
for dep in pkglibdeps[pkg]:
|
||||
# Add the dep if it's not already there, or if no comparison is set
|
||||
if dep not in rdepends:
|
||||
@@ -1627,7 +1627,7 @@ python package_depchains() {
|
||||
def pkg_adddeprrecs(pkg, base, suffix, getname, depends, d):
|
||||
|
||||
#bb.note('depends for %s is %s' % (base, depends))
|
||||
rreclist = bb.utils.explode_dep_versions2(d.getVar('RRECOMMENDS_' + pkg, True) or d.getVar('RRECOMMENDS', True) or "")
|
||||
rreclist = bb.utils.explode_dep_versions2(d.getVar('RRECOMMENDS_' + pkg, True) or "")
|
||||
|
||||
for depend in depends:
|
||||
if depend.find('-native') != -1 or depend.find('-cross') != -1 or depend.startswith('virtual/'):
|
||||
@@ -1648,7 +1648,7 @@ python package_depchains() {
|
||||
def pkg_addrrecs(pkg, base, suffix, getname, rdepends, d):
|
||||
|
||||
#bb.note('rdepends for %s is %s' % (base, rdepends))
|
||||
rreclist = bb.utils.explode_dep_versions2(d.getVar('RRECOMMENDS_' + pkg, True) or d.getVar('RRECOMMENDS', True) or "")
|
||||
rreclist = bb.utils.explode_dep_versions2(d.getVar('RRECOMMENDS_' + pkg, True) or "")
|
||||
|
||||
for depend in rdepends:
|
||||
if depend.find('virtual-locale-') != -1:
|
||||
@@ -1675,9 +1675,6 @@ python package_depchains() {
|
||||
add_dep(depends, dep)
|
||||
|
||||
rdepends = []
|
||||
for dep in bb.utils.explode_deps(d.getVar('RDEPENDS', True) or ""):
|
||||
add_dep(rdepends, dep)
|
||||
|
||||
for pkg in packages.split():
|
||||
for dep in bb.utils.explode_deps(d.getVar('RDEPENDS_' + pkg, True) or ""):
|
||||
add_dep(rdepends, dep)
|
||||
@@ -1727,7 +1724,7 @@ python package_depchains() {
|
||||
pkg_addrrecs(pkg, base, suffix, func, rdepends, d)
|
||||
else:
|
||||
rdeps = []
|
||||
for dep in bb.utils.explode_deps(d.getVar('RDEPENDS_' + base, True) or d.getVar('RDEPENDS', True) or ""):
|
||||
for dep in bb.utils.explode_deps(d.getVar('RDEPENDS_' + base, True) or ""):
|
||||
add_dep(rdeps, dep)
|
||||
pkg_addrrecs(pkg, base, suffix, func, rdeps, d)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user