From 3979a01af9279a64cc9e9db3edff16bd11e089dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Thu, 28 Mar 2019 17:41:50 +0100 Subject: [PATCH] qt5-translation.bbclass: remove True option in getVar calls MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- classes/qt5-translation.bbclass | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/classes/qt5-translation.bbclass b/classes/qt5-translation.bbclass index 184eea4..3a5f985 100644 --- a/classes/qt5-translation.bbclass +++ b/classes/qt5-translation.bbclass @@ -13,26 +13,26 @@ FILES_${PN}_remove = "${datadir}/${BPN}" python qt_do_split_locales() { import glob - if (d.getVar('PACKAGE_NO_LOCALE', True) == '1'): + if (d.getVar('PACKAGE_NO_LOCALE') == '1'): bb.debug(1, "package requested not splitting locales") return - packages = (d.getVar('PACKAGES', True) or "").split() + packages = (d.getVar('PACKAGES') or "").split() - datadir = d.getVar('datadir', True) + datadir = d.getVar('datadir') if not datadir: bb.note("datadir not defined") return - dvar = d.getVar('PKGD', True) - pn = d.getVar('LOCALEBASEPN', True) + dvar = d.getVar('PKGD') + pn = d.getVar('LOCALEBASEPN') if pn + '-locale' in packages: packages.remove(pn + '-locale') # extract locales from *.qm files into list in locales locales = [] - for transvar in d.getVar('QT_TRANSLATION_FILES', True).split(): + for transvar in d.getVar('QT_TRANSLATION_FILES').split(): translocation = '%s%s' % (dvar, transvar) transfiles = glob.glob(translocation) for l in sorted(transfiles): @@ -44,16 +44,16 @@ python qt_do_split_locales() { bb.debug(1, "No locale files in this package") return - summary = d.getVar('SUMMARY', True) or pn - description = d.getVar('DESCRIPTION', True) or "" - locale_section = d.getVar('LOCALE_SECTION', True) - mlprefix = d.getVar('MLPREFIX', True) or "" + summary = d.getVar('SUMMARY') or pn + description = d.getVar('DESCRIPTION') or "" + locale_section = d.getVar('LOCALE_SECTION') + mlprefix = d.getVar('MLPREFIX') or "" for l in sorted(locales): ln = legitimize_package_name(l) pkg = pn + '-locale-' + ln packages.append(pkg) files = '' - for transvar in d.getVar('QT_TRANSLATION_FILES', True).split(): + for transvar in d.getVar('QT_TRANSLATION_FILES').split(): files = '%s %s' % (files, transvar.replace('*.qm', '*_%s.qm' % l)) d.setVar('FILES_' + pkg, files ) d.setVar('RRECOMMENDS_' + pkg, '%svirtual-locale-%s' % (mlprefix, ln))