Age | Commit message (Collapse) | Author |
|
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
|
This should enable to have more than one compatibility library
at the same time.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
|
This was for the older version of icu-parabola.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
|
OpenTTD doesn't depend on libicudata:
$ readelf -d /usr/bin/openttd | grep "Shared library:" | awk '{print $5}'
[libpthread.so.0]
[libSDL-1.2.so.0]
[libz.so.1]
[liblzma.so.5]
[liblzo2.so.2]
[libpng16.so.16]
[libfontconfig.so.1]
[libfreetype.so.6]
[libicui18n.so.67]
[libicuuc.so.67]
[libfluidsynth.so.2]
[libstdc++.so.6]
[libm.so.6]
[libc.so.6]
[libgcc_s.so.1]
but libicuuc does depend on libicudata:
$ readelf -d /usr/lib/libicuuc.so.67 | grep "Shared library:" | awk '{print $5}'
[libicudata.so.67]
[libpthread.so.0]
[libdl.so.2]
[libstdc++.so.6]
[libm.so.6]
[libgcc_s.so.1]
[libc.so.6]
[ld-linux-x86-64.so.2]
The ldd utility doesn't show this level of details.
The lddtree utility which is part of the pax-utils package can show a tree of
dependencies, but on x86_64 it didn't work for me due to some python issue:
# lddtree
Traceback (most recent call last):
File "/usr/bin/lddtree", line 53, in <module>
from elftools.elf.elffile import ELFFile
ImportError: No module named elftools.elf.elffile
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
|
The Arch Linux icu PKGBUILD has now the following:
provides=(libicu{data,i18n,io,test,tu,uc}.so)
and the resulting packages are already in Parabola.
Thanks to that, adding such libraries as a dependency will
make sure that the package depends on the precise version
of the library like libicui18n.so=67-64.
For some reason even if libicudata.so.67 is used by the
OpenTTD binary:
$ ldd /usr/bin/openttd | grep libicudata.so
libicudata.so.67 => /usr/lib/libicudata.so.67
When building the package, it didn't add manage to find the
automatic libicudata.so dependency:
==> Checking for packaging issues...
==> WARNING: Package contains reference to $srcdir
usr/bin/openttd
==> Creating package "openttd"...
-> Generating .PKGINFO file...
==> WARNING: Library listed in 'depends' is not required by any files: libicudata.so
-> Generating .BUILDINFO file...
-> Generating .MTREE file...
-> Compressing package...
This also shows up in the package:
$ pacman -Q -i openttd
Depends On: [...] libicui18n.so=67-64 libicuuc.so=67-64 libicudata.so
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
|
|
|
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
|
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|