From jengelh@inai.de Thu Mar 7 18:25:25 2013 Received: (at submit) by bugs.x2go.org; 7 Mar 2013 17:25:25 +0000 Received: from ares07.inai.de (ares07.inai.de [5.9.24.206]) by ymir (Postfix) with ESMTPS id 00D495DB0D for ; Thu, 7 Mar 2013 18:25:25 +0100 (CET) Received: by ares07.inai.de (Postfix, from userid 25121) id BFFE696A06C9; Thu, 7 Mar 2013 18:25:24 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ares07.inai.de (Postfix) with ESMTP id 9F9D696A0684 for ; Thu, 7 Mar 2013 18:25:24 +0100 (CET) Date: Thu, 7 Mar 2013 18:25:24 +0100 (CET) From: Jan Engelhardt To: submit@bugs.x2go.org Subject: nx-libs installs into wrong location Message-ID: User-Agent: Alpine 2.01 (LNX 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Package: nx-libs Version: 3.5.0.17 Installation is done using make install \ INSTALL_DIR="install -dm0755" \ INSTALL_FILE="install -pm0644" \ INSTALL_PROGRAM="install -pm0755" \ DESTDIR="/var/tmp/whatever" PREFIX="/usr" \ NXLIBDIR="/usr/lib64/nx" X2GOLIBDIR="/usr/lib/x2go" And at the end of the day, rpm notices the following broken link: [ 126s] ERROR: link target doesn't exist (neither in build root nor in installed sys... [ 126s] /usr/lib/x2go/bin/x2goagent -> /usr/lib/nx/bin/nxagent This is because the top-level Makefile does a rather dumb command: cd $(DESTDIR)$(X2GOLIBDIR)/bin/ && ln -sf ../../nx/bin/nxagent x2goagent so it creates a pointer to a non-existing target. From mike.gabriel@das-netzwerkteam.de Thu Mar 7 19:12:11 2013 Received: (at 143) by bugs.x2go.org; 7 Mar 2013 18:12:11 +0000 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir (Postfix) with ESMTPS id C411A5DB0D for <143@bugs.x2go.org>; Thu, 7 Mar 2013 19:12:11 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [78.46.204.98]) by freya.das-netzwerkteam.de (Postfix) with ESMTPS id 94C4DD94 for <143@bugs.x2go.org>; Thu, 7 Mar 2013 19:12:11 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 3F8C13BAE1 for <143@bugs.x2go.org>; Thu, 7 Mar 2013 19:12:11 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at grimnir.das-netzwerkteam.de Received: from grimnir.das-netzwerkteam.de ([127.0.0.1]) by localhost (grimnir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id H9XRbCMFDCxX for <143@bugs.x2go.org>; Thu, 7 Mar 2013 19:12:11 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 18E453B895 for <143@bugs.x2go.org>; Thu, 7 Mar 2013 19:12:11 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id F35013BAE1 for <143@bugs.x2go.org>; Thu, 7 Mar 2013 19:12:10 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on grimnir.das-netzwerkteam.de X-Spam-Flag: NO X-Spam-Status: No, hits=-1.0 required=5.0 tests=ALL_TRUSTED,MIME_QP_LONG_LINE, URIBL_BLOCKED autolearn=ham version=3.3.1 running as userid= X-Spam-Level: X-Spam-Bayes-Score: 0.5 Received: by grimnir.das-netzwerkteam.de (Postfix, from userid 33) id 9C9A33B933; Thu, 7 Mar 2013 19:12:10 +0100 (CET) Received: from 25-20-142-46.pool.kielnet.net (25-20-142-46.pool.kielnet.net [46.142.20.25]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Thu, 07 Mar 2013 19:12:10 +0100 Message-ID: <20130307191210.13994efg5hve23ju@mail.das-netzwerkteam.de> X-Priority: 3 (Normal) Date: Thu, 07 Mar 2013 19:12:10 +0100 From: Mike Gabriel To: Jan Engelhardt , 143@bugs.x2go.org Subject: Re: [X2Go-Dev] Bug#143: nx-libs installs into wrong location References: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=_4baqj2o2u8hm"; protocol="application/pgp-signature"; micalg="pgp-sha1" Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.3.4) This message is in MIME format and has been PGP signed. --=_4baqj2o2u8hm Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi Jan, On Do 07 M=C3=A4r 2013 18:25:24 CET Jan Engelhardt wrote: > Package: nx-libs > Version: 3.5.0.17 > > Installation is done using > > make install \ > INSTALL_DIR=3D"install -dm0755" \ > INSTALL_FILE=3D"install -pm0644" \ > INSTALL_PROGRAM=3D"install -pm0755" \ > DESTDIR=3D"/var/tmp/whatever" PREFIX=3D"/usr" \ > NXLIBDIR=3D"/usr/lib64/nx" X2GOLIBDIR=3D"/usr/lib/x2go" > > And at the end of the day, rpm notices the following broken link: > > [ 126s] ERROR: link target doesn't exist (neither in build root nor in > installed sys... > [ 126s] /usr/lib/x2go/bin/x2goagent -> /usr/lib/nx/bin/nxagent > > This is because the top-level Makefile does a rather dumb command: > > cd $(DESTDIR)$(X2GOLIBDIR)/bin/ && ln -sf ../../nx/bin/nxagent > x2goagent > > so it creates a pointer to a non-existing target. Thanks for submitting this bug. Any chance you can provide a patch? Thanks, Mike --=20 DAS-NETZWERKTEAM mike gabriel, rothenstein 5, 24214 neudorf-bornstein fon: +49 (1520) 1976 148 GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de freeBusy: https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xf= b --=_4baqj2o2u8hm Content-Type: application/pgp-signature Content-Description: Digitale PGP-Unterschrift Content-Disposition: inline Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iQIcBAABAgAGBQJRONh6AAoJEJr0azAldxsxcVsQALYpMkjUPN+EB+TNf7Ecm5U7 3nQngUazca+XpUZihOJQdn0wc5455RKv7NXZ9Z0f2y+WRac279WGmvU25fNLrT81 ny7rnF0Usi5Jepwruzh4T7q42PwjatxIDxbBa5n3QZhJL3ZNTV8DKNvzAhwh6awh iQ/EamsszSRVK0xqgkT2YsmEIqAMF4onb7xONdE5ZlRHkMUoEEUeKJ/7E2mPxlxq SdyBQX3DzOnb5ZjPvWw9PHsMebHMfCkPyizXErVO6fXPF0tQSmVh+erImd4pvVPG BgUuubeQheaoPstxoJGRC/ca6Qn14doGbdPcrUR98MTyz5ZiSNe8a67ZRvAJ0kcI zmDm8stWmR5aPbFMPVKQ28M0k2dIQ1JormzNQ4h772l10/UE2OpFexXlmWpGuQIx fZWpQr9MZD9wrWydqWUFy7DyXMaz1jf/QQPtrK1ErcYV+iexl5p2vUuBy8LSqMwX tAuaQHIfgxKPdxBzzzZnYD7FMZ5nnZsjuzw/IsBUnePyljV811d91XP9WQkGIZwz zfmQLsp7wmwvzn/Umbqk8KNjrdx0tPqAgQYoDOFdTZ3qm018CW7L4scYWrvNhR/J mWlHKIMCn4VQgewomGgdpS4iSNn+mGikU0i9f2woOdXhItaOal7Ve617zOMHRnEd WkK497VrLMkdje2JAYN9 =tPtz -----END PGP SIGNATURE----- --=_4baqj2o2u8hm-- From jengelh@inai.de Thu Mar 7 20:14:44 2013 Received: (at 143) by bugs.x2go.org; 7 Mar 2013 19:14:44 +0000 Received: from ares07.inai.de (ares07.inai.de [5.9.24.206]) by ymir (Postfix) with ESMTPS id B4FDA5DB0D for <143@bugs.x2go.org>; Thu, 7 Mar 2013 20:14:44 +0100 (CET) Received: by ares07.inai.de (Postfix, from userid 25121) id 8387896A06C9; Thu, 7 Mar 2013 20:14:44 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ares07.inai.de (Postfix) with ESMTP id 6444F96A0684; Thu, 7 Mar 2013 20:14:44 +0100 (CET) Date: Thu, 7 Mar 2013 20:14:44 +0100 (CET) From: Jan Engelhardt To: Mike Gabriel cc: 143@bugs.x2go.org Subject: Re: [X2Go-Dev] Bug#143: nx-libs installs into wrong location In-Reply-To: <20130307191210.13994efg5hve23ju@mail.das-netzwerkteam.de> Message-ID: References: <20130307191210.13994efg5hve23ju@mail.das-netzwerkteam.de> User-Agent: Alpine 2.01 (LNX 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Thursday 2013-03-07 19:12, Mike Gabriel wrote: >> make install \ >> INSTALL_DIR="install -dm0755" \ >> INSTALL_FILE="install -pm0644" \ >> INSTALL_PROGRAM="install -pm0755" \ >> DESTDIR="/var/tmp/whatever" PREFIX="/usr" \ >> NXLIBDIR="/usr/lib64/nx" X2GOLIBDIR="/usr/lib/x2go" >> >> And at the end of the day, rpm notices the following broken link: >> >> [ 126s] ERROR: link target doesn't exist (neither in build root nor in >> installed sys... >> [ 126s] /usr/lib/x2go/bin/x2goagent -> /usr/lib/nx/bin/nxagent >> >> This is because the top-level Makefile does a rather dumb command: >> >> cd $(DESTDIR)$(X2GOLIBDIR)/bin/ && ln -sf ../../nx/bin/nxagent >> x2goagent >> >> so it creates a pointer to a non-existing target. > > Thanks for submitting this bug. Any chance you can provide a patch? This is getting above my head. I already had to endure the silent introduction of the NXLIBDIR variable.. (it's really not fun if suddenly the entire filelist in .spec or whatever else is worthless because USRLIBDIR and SHLIBDIR are no longer used) From mike.gabriel@das-netzwerkteam.de Fri Mar 22 23:38:37 2013 Received: (at 143) by bugs.x2go.org; 22 Mar 2013 22:38:38 +0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=URIBL_BLOCKED autolearn=ham version=3.3.2 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir (Postfix) with ESMTPS id DF47E5DB16; Fri, 22 Mar 2013 23:38:37 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [78.46.204.98]) by freya.das-netzwerkteam.de (Postfix) with ESMTPS id 9BCB6C0D; Fri, 22 Mar 2013 23:38:37 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 8237C3BB4B; Fri, 22 Mar 2013 23:38:37 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at grimnir.das-netzwerkteam.de Received: from grimnir.das-netzwerkteam.de ([127.0.0.1]) by localhost (grimnir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ikRosPQj8wNv; Fri, 22 Mar 2013 23:38:37 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 6023C3BB4D; Fri, 22 Mar 2013 23:38:37 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 3A6DC3BA65; Fri, 22 Mar 2013 23:38:37 +0100 (CET) Received: by grimnir.das-netzwerkteam.de (Postfix, from userid 33) id AF0843BB4B; Fri, 22 Mar 2013 23:38:36 +0100 (CET) Received: from 7-135-142-46.pool.kielnet.net (7-135-142-46.pool.kielnet.net [46.142.135.7]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Fri, 22 Mar 2013 23:38:36 +0100 Message-ID: <20130322233836.3065514h1lfk6quk@mail.das-netzwerkteam.de> X-Priority: 3 (Normal) Date: Fri, 22 Mar 2013 23:38:36 +0100 From: Mike Gabriel To: Jan Engelhardt Cc: 143@bugs.x2go.org, control@bugs.x2go.org Subject: Re: [X2Go-Dev] Bug#143: nx-libs installs into wrong location References: <20130307191210.13994efg5hve23ju@mail.das-netzwerkteam.de> In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=_4p6jg4qz9bho"; protocol="application/pgp-signature"; micalg="pgp-sha1" Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.3.4) This message is in MIME format and has been PGP signed. --=_4p6jg4qz9bho Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable tag #143 pending thanks Hi Jan, On Do 07 M=C3=A4r 2013 20:14:44 CET Jan Engelhardt wrote: > > On Thursday 2013-03-07 19:12, Mike Gabriel wrote: >>> make install \ >>> INSTALL_DIR=3D"install -dm0755" \ >>> INSTALL_FILE=3D"install -pm0644" \ >>> INSTALL_PROGRAM=3D"install -pm0755" \ >>> DESTDIR=3D"/var/tmp/whatever" PREFIX=3D"/usr" \ >>> NXLIBDIR=3D"/usr/lib64/nx" X2GOLIBDIR=3D"/usr/lib/x2go" >>> >>> And at the end of the day, rpm notices the following broken link: >>> >>> [ 126s] ERROR: link target doesn't exist (neither in build root nor in >>> installed sys... >>> [ 126s] /usr/lib/x2go/bin/x2goagent -> /usr/lib/nx/bin/nxagent >>> >>> This is because the top-level Makefile does a rather dumb command: >>> >>> cd $(DESTDIR)$(X2GOLIBDIR)/bin/ && ln -sf ../../nx/bin/nxagent >>> x2goagent >>> >>> so it creates a pointer to a non-existing target. >> >> Thanks for submitting this bug. Any chance you can provide a patch? > > This is getting above my head. I already had to endure the silent > introduction of the NXLIBDIR variable.. > (it's really not fun if suddenly the entire filelist in .spec or =20 > whatever else > is worthless because USRLIBDIR and SHLIBDIR are no longer used) > The issue should be solved by this commit: http://code.x2go.org/gitweb?p=3Dnx-libs.git;a=3Dcommitdiff;h=3Df81df1a69982f= b3c4cfe13248dec1b8bc3fb66af Thanks for reporting! Mike --=20 DAS-NETZWERKTEAM mike gabriel, rothenstein 5, 24214 neudorf-bornstein fon: +49 (1520) 1976 148 GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de freeBusy: https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xf= b --=_4p6jg4qz9bho Content-Type: application/pgp-signature Content-Description: Digitale PGP-Unterschrift Content-Disposition: inline Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iQIcBAABAgAGBQJRTN1sAAoJEJr0azAldxsxIYkP+wZIoLuchJ6IxQBB10ldh6wo B+1PwU1DE2tgPTg9CL/Bo9bg8Nhu3WKGZsDGcYaGfVeWEySAe/WZMEnR9Nq98E0R eZW3xN6K9eIJ72tAqcuqGyQ9mb/YTSFBayle1Oj7SSfCFsOAE8Yu2PkxpeOMhvHD 9eAGOGx3RT41UsBW+VG5ORiqrT48eVAJZYSGrrcAExzsbrbdT907sZpvzbcBmhPi SK8Z9myTgugDD1C9/aarhhMinhPAzPoBlJDFtzru+QEHvh3esgqJGA0KelA34zzg VxeA955qIAL6rzVYEQdqy4xT5hy5RaVYcY8g+fC3fDbJEmD4mMDxHGDUuX8LDLX5 2ZK0ESVzCowzqL8u06UgK+5xNS4R2fg4BVbs/sTLzwRWa+6J6vAKYesIGPn6CrDP LO40OsLwrhqHHUJUO6UoXQkmJr6Ah2x7Da79PKlta4ev2B8DCQYSarQOVJ3Iit4P j0GyFVHW2IMo0jBXLeAtLpKVSJoZ+TVT9GszgTyF7G4+jljrXbtRD8DTA0meyDSa fE3J9YIbfITapBzL/3NTcxo+qf91GLo++8ySWj+lcWJh0qy4gGMDGjFp7f4dsoYt NFnaswj/W2nhRB1sxc9h/nepvlkJNak49Cg0jlsEPxOkLF6RD+DAJot3x6WYFl6V 3hpMer12EpOix7oKEIbk =YDzd -----END PGP SIGNATURE----- --=_4p6jg4qz9bho-- From mike.gabriel@das-netzwerkteam.de Sat Mar 23 00:48:17 2013 Received: (at 143) by bugs.x2go.org; 22 Mar 2013 23:48:26 +0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=URIBL_BLOCKED autolearn=unavailable version=3.3.2 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir (Postfix) with ESMTPS id D1EB45DB16; Sat, 23 Mar 2013 00:48:17 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [78.46.204.98]) by freya.das-netzwerkteam.de (Postfix) with ESMTPS id A8A00D50; Sat, 23 Mar 2013 00:48:17 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 93BFD3BADC; Sat, 23 Mar 2013 00:48:17 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at grimnir.das-netzwerkteam.de Received: from grimnir.das-netzwerkteam.de ([127.0.0.1]) by localhost (grimnir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vWs5qrQTLvvx; Sat, 23 Mar 2013 00:48:17 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 6402B3BB4B; Sat, 23 Mar 2013 00:48:17 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 3F39B3BADC; Sat, 23 Mar 2013 00:48:17 +0100 (CET) Received: by grimnir.das-netzwerkteam.de (Postfix, from userid 33) id E72D13BB4B; Sat, 23 Mar 2013 00:48:16 +0100 (CET) Received: from 7-135-142-46.pool.kielnet.net (7-135-142-46.pool.kielnet.net [46.142.135.7]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Sat, 23 Mar 2013 00:48:16 +0100 Message-ID: <20130323004816.22926ri5tjsrnjk0@mail.das-netzwerkteam.de> X-Priority: 3 (Normal) Date: Sat, 23 Mar 2013 00:48:16 +0100 From: Mike Gabriel To: 104@bugs.x2go.org, 107@bugs.x2go.org, 143@bugs.x2go.org, 145@bugs.x2go.org Cc: control@bugs.x2go.org Subject: The reported issue has been fixed in NX (redistributed) 3.5.0.18 MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=_6om4u9svvc1s"; protocol="application/pgp-signature"; micalg="pgp-sha1" Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.3.4) This message is in MIME format and has been PGP signed. --=_6om4u9svvc1s Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit close #104 close #107 close #143 close #145 thanks The reported issue has been fixed for release 3.5.0.18 of NX (redistributed). light+love, Mike -- DAS-NETZWERKTEAM mike gabriel, rothenstein 5, 24214 neudorf-bornstein fon: +49 (1520) 1976 148 GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de freeBusy: https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb --=_6om4u9svvc1s Content-Type: application/pgp-signature Content-Description: Digitale PGP-Unterschrift Content-Disposition: inline Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iQIcBAABAgAGBQJRTO3AAAoJEJr0azAldxsxRe8P+wZdMH1iFY7QOm7OHaixU/jS ZWZ3I/MGIWmMcsNO0ZFuOnnVjH78ky0mXNlZe4OtWyI2iVrcSxxhbgNi6Er189Si W6RjWtkISWYGKNmoAhrPaHm/X2nvzuJX8p3HBvndKbbKVeTkQlpR3Do4jgFwWW5h PdaF2a9lpVnD9Z303f+CrpdhuXmiv8naUxB2kTHjSpSRBiGRaqaVbZUVtzTkNwaH NpiCVKl+i2mWCOs/l5hIeI8NA9xqbyEpfssisZOT6CVl0z+Rx3cAbqXIJQRnjpli +dzpsfEiD0O5rgAg0ET0KrrDfK4Anoek9HOn9EwNUIFTV1e0nAQ3b23RT8LHDKcj BKIPQ4Q3BgJK3TNSlj0zmeaUGIhtELhTOD7/oYkRxIO4oZak9P4OXlh9ZpasjEPZ Nt3mcIAuu146vQkpRAWWH1QIRDkwX8sIAVkiPcPp6ZmlyjNQShgXXh/GXFoYzYhN 9tktQcTEf3JX1aZqdTZ+FOoD8SN/n7PC5+asi3tYapWhKhsv5AOkzMXUuCYK/dP9 DlYV0KcwHSLkm3ZBK4MBEOBfXREHTzGh6ru+xb+3nKZweyLMq5tgS2tHKFnQZ/Jb hS88dcW4F5IqkzSDQEKZDgpS5qSde1pGEkCTL9il0xRv9uswGjSxEPXqCDZHJmd3 Bds5OztJs8s0FI3OgDcC =tkvB -----END PGP SIGNATURE----- --=_6om4u9svvc1s-- From unknown Thu Mar 28 17:24:49 2024 MIME-Version: 1.0 X-Mailer: MIME-tools 5.502 (Entity 5.502) X-Loop: owner@bugs.x2go.org From: owner@bugs.x2go.org (X2Go Bug Tracking System) Subject: Bug#143 closed by Mike Gabriel (The reported issue has been fixed in NX (redistributed) 3.5.0.18) Message-ID: References: <20130323004816.22926ri5tjsrnjk0@mail.das-netzwerkteam.de> X-X2go-PR-Keywords: pending X-X2go-PR-Message: they-closed 143 X-X2go-PR-Package: nx-libs Date: Sat, 23 Mar 2013 00:03:03 +0000 Content-Type: multipart/mixed; boundary="----------=_1363996983-29707-2" This is a multi-part message in MIME format... ------------=_1363996983-29707-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 This is an automatic notification regarding your Bug report which was filed against the nx-libs package: #143: nx-libs installs into wrong location It has been closed by Mike Gabriel . Their explanation is attached below along with your original report. If this explanation is unsatisfactory and you have not received a better one in a separate message then please contact Mike Gabriel by replying to this email. --=20 X2Go Bug Tracking System Contact owner@bugs.x2go.org with problems ------------=_1363996983-29707-2 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at control) by bugs.x2go.org; 22 Mar 2013 23:48:42 +0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=URIBL_BLOCKED autolearn=unavailable version=3.3.2 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir (Postfix) with ESMTPS id D1EB45DB16; Sat, 23 Mar 2013 00:48:17 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [78.46.204.98]) by freya.das-netzwerkteam.de (Postfix) with ESMTPS id A8A00D50; Sat, 23 Mar 2013 00:48:17 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 93BFD3BADC; Sat, 23 Mar 2013 00:48:17 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at grimnir.das-netzwerkteam.de Received: from grimnir.das-netzwerkteam.de ([127.0.0.1]) by localhost (grimnir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vWs5qrQTLvvx; Sat, 23 Mar 2013 00:48:17 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 6402B3BB4B; Sat, 23 Mar 2013 00:48:17 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 3F39B3BADC; Sat, 23 Mar 2013 00:48:17 +0100 (CET) Received: by grimnir.das-netzwerkteam.de (Postfix, from userid 33) id E72D13BB4B; Sat, 23 Mar 2013 00:48:16 +0100 (CET) Received: from 7-135-142-46.pool.kielnet.net (7-135-142-46.pool.kielnet.net [46.142.135.7]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Sat, 23 Mar 2013 00:48:16 +0100 Message-ID: <20130323004816.22926ri5tjsrnjk0@mail.das-netzwerkteam.de> X-Priority: 3 (Normal) Date: Sat, 23 Mar 2013 00:48:16 +0100 From: Mike Gabriel To: 104@bugs.x2go.org, 107@bugs.x2go.org, 143@bugs.x2go.org, 145@bugs.x2go.org Cc: control@bugs.x2go.org Subject: The reported issue has been fixed in NX (redistributed) 3.5.0.18 MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=_6om4u9svvc1s"; protocol="application/pgp-signature"; micalg="pgp-sha1" Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.3.4) This message is in MIME format and has been PGP signed. --=_6om4u9svvc1s Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit close #104 close #107 close #143 close #145 thanks The reported issue has been fixed for release 3.5.0.18 of NX (redistributed). light+love, Mike -- DAS-NETZWERKTEAM mike gabriel, rothenstein 5, 24214 neudorf-bornstein fon: +49 (1520) 1976 148 GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de freeBusy: https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb --=_6om4u9svvc1s Content-Type: application/pgp-signature Content-Description: Digitale PGP-Unterschrift Content-Disposition: inline Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iQIcBAABAgAGBQJRTO3AAAoJEJr0azAldxsxRe8P+wZdMH1iFY7QOm7OHaixU/jS ZWZ3I/MGIWmMcsNO0ZFuOnnVjH78ky0mXNlZe4OtWyI2iVrcSxxhbgNi6Er189Si W6RjWtkISWYGKNmoAhrPaHm/X2nvzuJX8p3HBvndKbbKVeTkQlpR3Do4jgFwWW5h PdaF2a9lpVnD9Z303f+CrpdhuXmiv8naUxB2kTHjSpSRBiGRaqaVbZUVtzTkNwaH NpiCVKl+i2mWCOs/l5hIeI8NA9xqbyEpfssisZOT6CVl0z+Rx3cAbqXIJQRnjpli +dzpsfEiD0O5rgAg0ET0KrrDfK4Anoek9HOn9EwNUIFTV1e0nAQ3b23RT8LHDKcj BKIPQ4Q3BgJK3TNSlj0zmeaUGIhtELhTOD7/oYkRxIO4oZak9P4OXlh9ZpasjEPZ Nt3mcIAuu146vQkpRAWWH1QIRDkwX8sIAVkiPcPp6ZmlyjNQShgXXh/GXFoYzYhN 9tktQcTEf3JX1aZqdTZ+FOoD8SN/n7PC5+asi3tYapWhKhsv5AOkzMXUuCYK/dP9 DlYV0KcwHSLkm3ZBK4MBEOBfXREHTzGh6ru+xb+3nKZweyLMq5tgS2tHKFnQZ/Jb hS88dcW4F5IqkzSDQEKZDgpS5qSde1pGEkCTL9il0xRv9uswGjSxEPXqCDZHJmd3 Bds5OztJs8s0FI3OgDcC =tkvB -----END PGP SIGNATURE----- --=_6om4u9svvc1s-- ------------=_1363996983-29707-2 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by bugs.x2go.org; 7 Mar 2013 17:25:25 +0000 Received: from ares07.inai.de (ares07.inai.de [5.9.24.206]) by ymir (Postfix) with ESMTPS id 00D495DB0D for ; Thu, 7 Mar 2013 18:25:25 +0100 (CET) Received: by ares07.inai.de (Postfix, from userid 25121) id BFFE696A06C9; Thu, 7 Mar 2013 18:25:24 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ares07.inai.de (Postfix) with ESMTP id 9F9D696A0684 for ; Thu, 7 Mar 2013 18:25:24 +0100 (CET) Date: Thu, 7 Mar 2013 18:25:24 +0100 (CET) From: Jan Engelhardt To: submit@bugs.x2go.org Subject: nx-libs installs into wrong location Message-ID: User-Agent: Alpine 2.01 (LNX 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Package: nx-libs Version: 3.5.0.17 Installation is done using make install \ INSTALL_DIR="install -dm0755" \ INSTALL_FILE="install -pm0644" \ INSTALL_PROGRAM="install -pm0755" \ DESTDIR="/var/tmp/whatever" PREFIX="/usr" \ NXLIBDIR="/usr/lib64/nx" X2GOLIBDIR="/usr/lib/x2go" And at the end of the day, rpm notices the following broken link: [ 126s] ERROR: link target doesn't exist (neither in build root nor in installed sys... [ 126s] /usr/lib/x2go/bin/x2goagent -> /usr/lib/nx/bin/nxagent This is because the top-level Makefile does a rather dumb command: cd $(DESTDIR)$(X2GOLIBDIR)/bin/ && ln -sf ../../nx/bin/nxagent x2goagent so it creates a pointer to a non-existing target. ------------=_1363996983-29707-2-- From unknown Thu Mar 28 17:24:49 2024 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@bugs.x2go.org From: Debbugs Internal Request Subject: Internal Control Message-Id: Bug archived. Date: Sa, 20 Apr 2013 05:24:01 +0000 User-Agent: Fakemail v42.6.9 # A New Hope # A long time ago, in a galaxy far, far away # something happened. # # Magically this resulted in the following # action being taken, but this fake control # message doesn't tell you why it happened # # The action: # Bug archived. thanks # This fakemail brought to you by your local debbugs # administrator