All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC][PATCH] package.bbclass: export subpackage individual version, if different from main
@ 2009-09-20  6:33 Denys Dmytriyenko
  2009-09-20  8:40 ` Phil Blundell
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Denys Dmytriyenko @ 2009-09-20  6:33 UTC (permalink / raw)
  To: openembedded-devel

Fixes the wrong versioned runtime dependency for shlib subpackages with
own versions. Consider this:

PACKAGES = "libfoo libbar"
PV_libfoo = "1"
PV_libbar = "2"
PV = "3"

That will generate libfoo_1 and libbar_2 packages, but version 3 will be
exported in shlibs database, leading to the following versioned runtime
dependencies:

RDEPENDS: libfoo (>=3) libbar (>=3)

This fixes the problem.

Signed-off-by: Denys Dmytriyenko <denis@denix.org>

---
 classes/package.bbclass |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/classes/package.bbclass b/classes/package.bbclass
index 5a9fa50..7a0ba80 100644
--- a/classes/package.bbclass
+++ b/classes/package.bbclass
@@ -652,6 +652,10 @@ python package_do_shlibs() {
 		needs_ldconfig = False
 		bb.debug(2, "calculating shlib provides for %s" % pkg)
 
+		pkgver = bb.data.getVar('PV_' + pkg, d, 1)
+		if not pkgver:
+			pkgver = ver
+
 		needed[pkg] = []
 		sonames = list()
 		top = os.path.join(pkgdest, pkg)
@@ -696,7 +700,7 @@ python package_do_shlibs() {
 			fd.close()
 			package_stagefile(shlibs_file, d)
 			fd = open(shver_file, 'w')
-			fd.write(ver + '\n')
+			fd.write(pkgver + '\n')
 			fd.close()
 			package_stagefile(shver_file, d)
 		if needs_ldconfig and use_ldconfig:
-- 
1.6.3.3




^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2009-09-22 18:52 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-20  6:33 [RFC][PATCH] package.bbclass: export subpackage individual version, if different from main Denys Dmytriyenko
2009-09-20  8:40 ` Phil Blundell
2009-09-20 12:29   ` Koen Kooi
2009-09-20 18:49   ` Denys Dmytriyenko
2009-09-22 18:51     ` Denys Dmytriyenko
2009-09-20 10:51 ` Koen Kooi
2009-09-20 15:13 ` Khem Raj
2009-09-20 18:50   ` Denys Dmytriyenko
2009-09-21 15:10     ` Phil Blundell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.