From: Andrii Bordunov <aborduno@cisco.com>
To: openembedded-core@lists.openembedded.org
Subject: Re: [PATCH] package.bbclass: allow using EXCLUDE_FROM_SHLIBS for subpackages
Date: Tue, 15 Nov 2016 17:05:34 +0200 [thread overview]
Message-ID: <3c0307d1-0781-1d32-9a86-e5ff6fb44a2d@cisco.com> (raw)
In-Reply-To: <2f612347-5351-fc20-956e-1cf84a5189ff@cisco.com>
Ping-2. Guys? Anything?
Thank you,
Andrii
On 19.10.16 16:58, Andrii Bordunov wrote:
> Ping? Any comments?
>
>
>
> Thank you,
> Andrii
>
> On 10.10.16 20:02, Andrii Bordunov wrote:
>> Some packages containing shared libraries might be registered
>> as shlib providers when they shouldn't (for example, the lib is for
>> their private use and must not generate any dependency).
>>
>> EXCLUDE_FROM_SHLIBS is targeted at that, but it could be set
>> for entire recipe only.
>>
>> This patch expands EXCLUDE_FROM_SHLIBS usage, so now it's possible
>> to set it in a style similar with RDEPENDS. For example:
>> EXCLUDE_FROM_SHLIBS_${PN}-ptest = "1"
>>
>> Signed-off-by: Andrii Bordunov <aborduno@cisco.com>
>> ---
>> meta/classes/package.bbclass | 12 ++++++++++--
>> 1 file changed, 10 insertions(+), 2 deletions(-)
>>
>> diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
>> index a6f0a7a..9bf43dc 100644
>> --- a/meta/classes/package.bbclass
>> +++ b/meta/classes/package.bbclass
>> @@ -1499,6 +1499,14 @@ python package_do_shlibs() {
>> libdir_re = re.compile(".*/%s$" % d.getVar('baselib', True))
>>
>> packages = d.getVar('PACKAGES', True)
>> +
>> + shlib_pkgs = []
>> + for pkg in packages.split():
>> + if d.getVar('EXCLUDE_FROM_SHLIBS_' + pkg, 0):
>> + bb.note("not generating shlibs for %s" % pkg)
>> + else:
>> + shlib_pkgs.append(pkg)
>> +
>> targetos = d.getVar('TARGET_OS', True)
>>
>> workdir = d.getVar('WORKDIR', True)
>> @@ -1614,7 +1622,7 @@ python package_do_shlibs() {
>> needed = {}
>> shlib_provider = oe.package.read_shlib_providers(d)
>>
>> - for pkg in packages.split():
>> + for pkg in shlib_pkgs:
>> private_libs = d.getVar('PRIVATE_LIBS_' + pkg, True) or
>> d.getVar('PRIVATE_LIBS', True) or ""
>> private_libs = private_libs.split()
>> needs_ldconfig = False
>> @@ -1684,7 +1692,7 @@ python package_do_shlibs() {
>>
>> libsearchpath = [d.getVar('libdir', True),
>> d.getVar('base_libdir', True)]
>>
>> - for pkg in packages.split():
>> + for pkg in shlib_pkgs:
>> bb.debug(2, "calculating shlib requirements for %s" % pkg)
>>
>> deps = list()
>>
next prev parent reply other threads:[~2016-11-15 15:15 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-10 17:02 [PATCH] package.bbclass: allow using EXCLUDE_FROM_SHLIBS for subpackages Andrii Bordunov
2016-10-19 13:58 ` Andrii Bordunov
2016-11-15 15:05 ` Andrii Bordunov [this message]
2016-11-16 10:29 ` Burton, Ross
2016-11-16 10:47 ` Richard Purdie
2017-03-16 15:07 ` Andrii Bordunov
2018-03-13 17:25 ` [PATCH v3] " Andrii Bordunov
2018-04-12 14:42 ` Andrii Bordunov
2018-06-11 12:20 ` Andrii Bordunov
2018-06-16 12:00 ` Richard Purdie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3c0307d1-0781-1d32-9a86-e5ff6fb44a2d@cisco.com \
--to=aborduno@cisco.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox