mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 03:32:13 +02:00
package: allow setting a section for locale packages
(From OE-Core rev: 521cab0239352e3b4316183c20e63cc06f5ae92b) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
07de9dc55c
commit
ce110eddfc
@@ -44,6 +44,8 @@ inherit prserv
|
||||
PKGD = "${WORKDIR}/package"
|
||||
PKGDEST = "${WORKDIR}/packages-split"
|
||||
|
||||
LOCALE_SECTION ?= ''
|
||||
|
||||
# rpm is used for the per-file dependency identification
|
||||
PACKAGE_DEPENDS += "rpm-native"
|
||||
|
||||
@@ -401,6 +403,7 @@ python package_do_split_locales() {
|
||||
|
||||
summary = bb.data.getVar('SUMMARY', d, True) or pn
|
||||
description = bb.data.getVar('DESCRIPTION', d, True) or ""
|
||||
locale_section = bb.data.getVar('LOCALE_SECTION', d, True)
|
||||
for l in locales:
|
||||
ln = legitimize_package_name(l)
|
||||
pkg = pn + '-locale-' + ln
|
||||
@@ -410,6 +413,8 @@ python package_do_split_locales() {
|
||||
bb.data.setVar('RPROVIDES_' + pkg, '%s-locale %s-translation' % (pn, ln), d)
|
||||
bb.data.setVar('SUMMARY_' + pkg, '%s - %s translations' % (summary, l), d)
|
||||
bb.data.setVar('DESCRIPTION_' + pkg, '%s This package contains language translation files for the %s locale.' % (description, l), d)
|
||||
if locale_section:
|
||||
bb.data.setVar('SECTION_' + pkg, locale_section, d)
|
||||
|
||||
bb.data.setVar('PACKAGES', ' '.join(packages), d)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user