Package: drmaa / 0.7.9-3

Metadata

Package Version Patches format
drmaa 0.7.9-3 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
drmae_library_path.patch | (download)

drmaa/wrappers.py | 2 2 + 0 - 0 !
1 file changed, 2 insertions(+)

 add fixed path to libdrmaa.so.1.0
 No idea why find_library('drmaa') does not work but since in
 Debian we know the location it can be set fixed here
Bug-Debian: https://bugs.debian.org/953832
jemalloc 5.patch | (download)

drmaa/wrappers.py | 14 13 + 1 - 0 !
1 file changed, 13 insertions(+), 1 deletion(-)

 work around impossibility to dlopen jemalloc 5 library
 Since version 5, jemalloc "cannot allocate memory in static TLS block" when
 loaded with dlopen(3).  This also affects libraries linked against the
 libjemalloc, so this patch exposes a possible workaround for end users of
 python drmaa module when they get caught in such situation.  Having to
 manually preload the library before starting the interpreter is somewhat ugly,
 but that's the only way which works for the moment.