diff options
author | André Draszik <git@andred.net> | 2019-11-07 15:36:39 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-10 14:06:10 +0000 |
commit | b3271b42c31e65b4f942c2063ffd59f9c855c32d (patch) | |
tree | 28415d27fbeb557d2ce45dca07cc0ed0f1b0d614 /meta | |
parent | b30c1f5e46a173221c5ffb248eb9da508f8c446a (diff) | |
download | poky-b3271b42c31e65b4f942c2063ffd59f9c855c32d.tar.gz |
libevent: update packaging (one package per shared library)
libevent produces several libraries that might or might not
be used in the end. We can prevent those potentially unused
libraries from being pulled into a file-system by splitting
the individual shared libraries into individual packages.
Because this recipe only provides shared libraries which are
handled automatically by bitbake (shlibs), there is no need
to add the subpackages to the RDEPENDS of PN for backwards
compatibility. The packaging process of dependees will
simply pull in the sub-packages as runtime dependency as
needed.
This also how Debian splits this up.
While updating the packaging, we can also drop event_rpcgen.py
which appears to be a tool for generating rpc bindings, i.e.
something that should normally be in -dev. Given Debian
doesn't package this at all, and given it actually requires
python to run but no runtime dependency is stated at the
moment, it would appear that no users of this exist.
(From OE-Core rev: d10e8384bfa08d928dfec3a00c59006badfc88ee)
Signed-off-by: André Draszik <git@andred.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/libevent/libevent_2.1.11.bb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/recipes-support/libevent/libevent_2.1.11.bb b/meta/recipes-support/libevent/libevent_2.1.11.bb index f005ab8bda..8c7c49e7dd 100644 --- a/meta/recipes-support/libevent/libevent_2.1.11.bb +++ b/meta/recipes-support/libevent/libevent_2.1.11.bb | |||
@@ -31,9 +31,17 @@ inherit ptest multilib_header | |||
31 | 31 | ||
32 | DEPENDS = "zlib" | 32 | DEPENDS = "zlib" |
33 | 33 | ||
34 | PACKAGES_DYNAMIC = "^${PN}-.*$" | ||
35 | python split_libevent_libs () { | ||
36 | do_split_packages(d, '${libdir}', r'^libevent_([a-z]*)-.*\.so\..*', '${PN}-%s', '${SUMMARY} (%s)', prepend=True, allow_links=True) | ||
37 | } | ||
38 | PACKAGESPLITFUNCS_prepend = "split_libevent_libs " | ||
39 | |||
34 | BBCLASSEXTEND = "native nativesdk" | 40 | BBCLASSEXTEND = "native nativesdk" |
35 | 41 | ||
36 | do_install_append() { | 42 | do_install_append() { |
43 | rm ${D}${bindir}/event_rpcgen.py | ||
44 | rmdir ${D}${bindir} | ||
37 | oe_multilib_header event2/event-config.h | 45 | oe_multilib_header event2/event-config.h |
38 | } | 46 | } |
39 | 47 | ||