Gentoo Archives: gentoo-user

From: "Iván" <ivanviso123@×××××.com>
To: gentoo-user@l.g.o
Subject: [gentoo-user] We have had known workarounds for python:3 and icu in uclibc-ng for a few months but they havent yet been implemented
Date: Tue, 25 Jul 2017 21:06:00
Message-Id: CAJoFwWu9bkg5PedMperfCTTw42F5ZoMGgyr80hk4F8N+VXjcxw@mail.gmail.com
1 First im not sure if this belongs here or in -dev, posting here just in
2 case.
3
4 Second, i must say im not trying to be agressive. I aprecciate the
5 developers work, specially maintaining a side project.
6
7 Uclibc-ng, for some reason, cant read relative paths for LD_LIBRARY_PATH
8
9 I barely know about ebuilds and dont even know how to submit a patch. But
10 in python and icu bugtrackers you can find workarounds to both problems.
11
12 https://bugs.gentoo.org/show_bug.cgi?id=591586
13
14 https://bugs.gentoo.org/show_bug.cgi?id=608312
15
16 For python one, you would need to remove PYTHON_SITEDIR from local vars
17 (line 268) and add in the next line
18
19 local -x LD_LIBRARY_PATH=${LD_LIBRARY_PATH+${LD_LIBRARY_PATH}:}$PWD
20
21 As for icu, we can declare the variable in the ebuild, this ought to be
22 enough.
23
24 export
25 LD_LIBRARY_PATH=${WORKDIR}/icu/source-*/lib:${WORKDIR}/icu/source-*/stubdata
26
27 Both these options wrapped under a if elibc=uclibc-ng obviously.

Replies