From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?Q?Andr=C3=A9as?= Livet Subject: bug#36276: Not found .so files in bundle made by guix pack Date: Tue, 18 Jun 2019 12:07:40 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:58765) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hdB34-0003dm-JI for bug-guix@gnu.org; Tue, 18 Jun 2019 06:09:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hdB32-00066c-KZ for bug-guix@gnu.org; Tue, 18 Jun 2019 06:09:06 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58493) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hdB30-00061u-Lj for bug-guix@gnu.org; Tue, 18 Jun 2019 06:09:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hdB30-00079U-DY for bug-guix@gnu.org; Tue, 18 Jun 2019 06:09:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:58602) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hdB2S-00037Z-Gm for bug-guix@gnu.org; Tue, 18 Jun 2019 06:08:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hdB2R-00057k-FU for bug-guix@gnu.org; Tue, 18 Jun 2019 06:08:28 -0400 Received: from mta02.o2scoral.fr ([109.234.163.42]:53349) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hdB2Q-0003v5-SL for bug-guix@gnu.org; Tue, 18 Jun 2019 06:08:27 -0400 Content-Language: en-US List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 36276@debbugs.gnu.org Hi, I try to bundle scribus with guix pack in order to install it on a=20 centos system on which admin sys doesn't want us to install guix. So I created a tarball with a symlink to '/usr/bin' (don't know it's=20 really the recommanded way), this way scribus binary will automatically=20 be in the $PATH. Here is how I created the bundle : guix pack -S /usr/bin=3Dbin scribus I tried it on my Xubuntu 18.04 system and it worked like a charm. But, when deployed on the centos machine, it did not found=20 "libQt5Core.so.5" depsite the file exists. ldd=20 /gnu/store/5xqmac50axcgc8vrrn30jvzndjvrqd6a-scribus-1.5.4/bin/.scribus-re= al=20 | grep Qt =C2=A0=C2=A0=C2=A0 libQt5Xml.so.5 =3D>=20 /gnu/store/890yw9i7lcjnnxhlza8r121352xpb1hi-qtbase-5.11.3/lib/libQt5Xml.s= o.5=20 (0x00007f60dd9f6000) =C2=A0=C2=A0=C2=A0 libQt5Network.so.5 =3D>=20 /gnu/store/890yw9i7lcjnnxhlza8r121352xpb1hi-qtbase-5.11.3/lib/libQt5Netwo= rk.so.5=20 (0x00007f60dd7a4000) =C2=A0=C2=A0=C2=A0 libQt5OpenGL.so.5 =3D>=20 /gnu/store/890yw9i7lcjnnxhlza8r121352xpb1hi-qtbase-5.11.3/lib/libQt5OpenG= L.so.5=20 (0x00007f60dd99a000) =C2=A0=C2=A0=C2=A0 libQt5PrintSupport.so.5 =3D>=20 /gnu/store/890yw9i7lcjnnxhlza8r121352xpb1hi-qtbase-5.11.3/lib/libQt5Print= Support.so.5=20 (0x00007f60dd72b000) =C2=A0=C2=A0=C2=A0 libQt5Widgets.so.5 =3D>=20 /gnu/store/890yw9i7lcjnnxhlza8r121352xpb1hi-qtbase-5.11.3/lib/libQt5Widge= ts.so.5=20 (0x00007f60da93b000) =C2=A0=C2=A0=C2=A0 libQt5Gui.so.5 =3D>=20 /gnu/store/890yw9i7lcjnnxhlza8r121352xpb1hi-qtbase-5.11.3/lib/libQt5Gui.s= o.5=20 (0x00007f60da3a6000) =C2=A0=C2=A0=C2=A0 libQt5Core.so.5 =3D> not found I don't understand why it founds libQt5Gui.so.5 and not libQt5Core.so.5=20 which is in the same directory ! I tried to copy the .so inside the bin directory, to add qbase lib path=20 to $LD_LIBRARY_PATH, doesn't seem to work. Can't find any further information on guix manual, so I'm asking here. Thanks in advance for your help, Andr=C3=A9as