Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 178921 - dev-lang/python has an internal copy of expat 1.x
Summary: dev-lang/python has an internal copy of expat 1.x
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Python Gentoo Team
URL:
Whiteboard:
Keywords: InVCS
Depends on:
Blocks:
 
Reported: 2007-05-17 19:25 UTC by Diego Elio Pettenò (RETIRED)
Modified: 2008-05-13 15:48 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
celementtree-1.0.5-external-libexpat.patch (celementtree-1.0.5-external-libexpat.patch,486 bytes, patch)
2007-05-23 21:48 UTC, Diego Elio Pettenò (RETIRED)
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Diego Elio Pettenò (RETIRED) gentoo-dev 2007-05-17 19:25:50 UTC
As per summary, there's an internal copy of expat 1.x in pyexpat shared
object, and its symbols are not hidden either. Loading in the same process
space both libexpat (2) and python with pyexpat will likely cause crashes
not so easy to debug.

Easy solution: hide the symbols.
Proper solution: use the already-installed shared copy of libexpat.
Comment 1 Diego Elio Pettenò (RETIRED) gentoo-dev 2007-05-23 21:48:36 UTC
Created attachment 120136 [details, diff]
celementtree-1.0.5-external-libexpat.patch

This patch replaces the bundled sources with a link to libexpat. This mostly work, where mostly is one of the tests expects to receive 1.95.8 as output for the expat version but instead gets 2.0.0; it doesn't seem to be fatal.
Comment 2 Ali Polatel (RETIRED) gentoo-dev 2007-07-06 22:13:04 UTC
 the fix in CVS. I've also modified the test so it won't check for expat's version. thanks for reporting ;)
Comment 3 Diego Elio Pettenò (RETIRED) gentoo-dev 2008-04-19 12:45:28 UTC
2.5.2 has two copies of it, one in pyexpat and one in celementtree.
Comment 4 Ali Polatel (RETIRED) gentoo-dev 2008-04-22 09:23:55 UTC
This¹ patch should fix it. It will be included in the next revision bump.

alip@trippin> ldd /usr/lib64/python2.5/lib-dynload/{pyexpat,_elementtree}.so |grep libexpat                    ~/src/gentoo-x86/dev-lang/python
libexpat.so.1 => /usr/lib/libexpat.so.1 (0x00007f53e8be0000)
libexpat.so.1 => /usr/lib/libexpat.so.1 (0x00007ff1ad7b8000)

Looks fine :)

¹: http://overlays.gentoo.org/proj/python/changeset/60
Comment 5 Ali Polatel (RETIRED) gentoo-dev 2008-05-13 15:48:50 UTC
2.5.2-r3 includes this. Thanks for reporting :)