From unknown Thu Mar 28 16:55:31 2024 X-Loop: owner@bugs.x2go.org Subject: Bug#393: Improvements for RPM package (Xinerama support) Reply-To: Mike Gabriel , 393@bugs.x2go.org Resent-From: Mike Gabriel Resent-To: x2go-dev@lists.berlios.de Resent-CC: X2Go Developers X-Loop: owner@bugs.x2go.org Resent-Date: Mon, 06 Jan 2014 15:15:01 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.x2go.org X-X2Go-PR-Message: report 393 X-X2Go-PR-Package: x2goagent X-X2Go-PR-Keywords: Received: via spool by submit@bugs.x2go.org id=B.138902105220753 (code B); Mon, 06 Jan 2014 15:15:01 +0000 Received: (at submit) by bugs.x2go.org; 6 Jan 2014 15:10:52 +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.8 required=5.0 tests=BAYES_00,TO_NO_BRKTS_PCNT autolearn=no version=3.3.2 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir (Postfix) with ESMTPS id 2E6345DB1E for ; Mon, 6 Jan 2014 16:10:52 +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 B51F939C for ; Mon, 6 Jan 2014 16:10:51 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id A9D2D3C2EC for ; Mon, 6 Jan 2014 16:10:51 +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 m7WLD00UAg0I for ; Mon, 6 Jan 2014 16:10:51 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTPSA id 648BA3BF80 for ; Mon, 6 Jan 2014 16:10:51 +0100 (CET) Received: from listrac.informatik.uni-kiel.de (listrac.informatik.uni-kiel.de [134.245.252.114]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Mon, 06 Jan 2014 15:10:51 +0000 Date: Mon, 06 Jan 2014 15:10:51 +0000 Message-ID: <20140106151051.Horde.PvAmwBzPnB8p32mz1K3H6Q1@mail.das-netzwerkteam.de> From: Mike Gabriel To: submit@bugs.x2go.org User-Agent: Internet Messaging Program (IMP) H5 (6.1.4) Accept-Language: en,de Organization: DAS-NETZWERKTEAM X-Originating-IP: 134.245.252.114 X-Remote-Browser: Mozilla/5.0 (X11; Linux i686; rv:23.0) Gecko/20100101 Firefox/23.0 Iceweasel/23.0 Content-Type: multipart/signed; boundary="=_d5PZUIuFTK5u_bL0sdJ-jQ1"; protocol="application/pgp-signature"; micalg=pgp-sha1 MIME-Version: 1.0 This message is in MIME format and has been PGP signed. --=_d5PZUIuFTK5u_bL0sdJ-jQ1 Content-Type: text/plain; charset=UTF-8; format=flowed; DelSp=Yes Content-Disposition: inline Package: x2goagent Severity: minor Version: 3.5.0.22 Tag: rpm-packages patch Some more improvements for our nx-libs.spec as suggested by Orion via x2go-dev. Mike ----- Weitergeleitete Nachricht von Orion Poplawski ----- Datum: Sun, 05 Jan 2014 20:46:26 -0700 Von: Orion Poplawski Betreff: Re: [X2Go-Dev] Bug#370: RPM package: nx-libs lacks Xinerama support An: Mike Gabriel Cc: x2go-dev@lists.berlios.de On 12/16/2013 12:37 AM, Mike Gabriel wrote: > Hi Orion, > > On Mo 16 Dez 2013 03:14:02 CET, Orion Poplawski wrote: > >> On 12/14/2013 02:00 PM, Mike Gabriel wrote: >>> Package: nx-libs Severity: important Tag: rpm-package >>> >>> The current RPMs built from nx-libs HEAD lack Xinerama support >>> because of missing symlinks. The links should be created like >>> below when the package libNX_Xinerama gets installed: >>> >>> mike@minobo:/usr/lib64/nx/X11$ ls Xinerama/ -al insgesamt 16 >>> libNX_X11.so.6 -> /usr/lib64/libX11.so.6 libNX_Xext.so.6 -> >>> /usr/lib64//libXext.so.6 libXinerama.so -> ../libNX_Xinerama.so >>> libXinerama.so.1 -> ../libNX_Xinerama.so.1 >> >> Shouldn't NX be taught to just use libXinerama.so.1 directly >> instead? > > The libNX_Xinerama.so.1 is very much different from libXinerama.so > as it retrieves its data about number of screens and screen > resolutions from a file (and not from hardware). > > Scan for NX_XINERAMA_CONF in [1] for details. > > Mike > > [1] > http://code.x2go.org/gitweb?p=nx-libs.git;a=blob;f=debian/patches/202_nx-X11_enable-xinerama.full.patch > > > Hmm, okay, I think I get more of the game being played here. I've implemented it differently in the Fedora spec: In %install: # Need for Xinerama support ln -s -f ../../../../%{_lib}/libX11.so.6 %{buildroot}%{_libdir}/nx/X11/Xinerama/libNX_X11.so.6 ln -s -f ../../../../%{_lib}/libXext.so.6 %{buildroot}%{_libdir}/nx/X11/Xinerama/libNX_Xext.so.6 Though these probably should just get done in the Makefile. But the relative paths might be tricky. and: Summary: Xinerama extension to the NX Protocol Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: libX11%{?_isa} +Requires: libXext%{?_isa} (%{?_isa} gets the architecture correct) %files -n libNX_Xinerama %{_libdir}/nx/X11/libNX_Xinerama.so.1* +%{_libdir}/nx/X11/Xinerama/ No need for %pre/%post - -- Orion Poplawski Technical Manager 303-415-9701 x222 NWRA/CoRA Division FAX: 303-415-9702 3380 Mitchell Lane orion@cora.nwra.com Boulder, CO 80301 http://www.cora.nwra.com ----- Ende der weitergeleiteten Nachricht ----- -- DAS-NETZWERKTEAM mike gabriel, herweg 7, 24357 fleckeby 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 --=_d5PZUIuFTK5u_bL0sdJ-jQ1 Content-Type: application/pgp-signature Content-Description: Digitale PGP-Signatur Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (GNU/Linux) iQIcBAABAgAGBQJSysd7AAoJEJr0azAldxsxWpAP/2L2UpcZUuXDpvsoPqG5g7B/ okJX63VGL3lC0F+2hjG10uVFTxK2fKdG9GbyVVn7WId4OhN09o+LLkXBBCrYu7pt PH/PhIiWd8Na0zI3Mm69TKbjrEfaon4Ubmw2f+iDG5rJbvCow8mcmJzrhgvztcqT D22yd4U6RoOID82a4En66oemar8EVAcIe86SWu9ny6spJiz+JrIHPxaCQQ0WHqtk DMD2lGbl7Nfjq0vP3EokLtAPPz6X8Gew0zNxt0HoFpCouu1tisq5cfyclrCZyBWz WnKvqxcPJGhsMlTaGXPp2IMskKp/iqROuFBGW3Od4Nt4TtvE+kNpA8h7+DfugwGH rkOdFE3FCeN/DPam1xU4a0MZLfT1aEp2xrrM6ZctQVUn/fLuONg1yqAZRF1oG4N1 Dy+7YFnggZlHAQWv+Y3rbotVTe8IT4M0lNUGMvAXlyuVUqnVbgUu9mduj04VrriJ JmkVGQ0X9ZXsSn/lwELlnio6/7jTpn39db3L14GBn3T76y1VwkY+Xh9IZ79d44/t d+Emfz7LS0zGePpnso82+xafuCoq9nnc4RdCPd0jxMJ/O3qVNTE5JdRM3MJeTmRp LXhFpcAxRsMV3ydoqU44Ua02GSzs+0DHCsxQutaC+4RkxdeUeBJK7kJDEMt64xnL xHxWWNVegnnjxilyecwD =IhDz -----END PGP SIGNATURE----- --=_d5PZUIuFTK5u_bL0sdJ-jQ1-- From unknown Thu Mar 28 16:55:31 2024 X-Loop: owner@bugs.x2go.org Subject: Bug#393: X2Go issue (in src:nx-libs) has been marked as pending for release Reply-To: Mike Gabriel , 393@bugs.x2go.org Resent-From: Mike Gabriel Resent-To: x2go-dev@lists.berlios.de Resent-CC: X2Go Developers X-Loop: owner@bugs.x2go.org Resent-Date: Tue, 28 Jan 2014 18:50:01 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.x2go.org X-X2Go-PR-Message: followup 393 X-X2Go-PR-Package: x2goagent X-X2Go-PR-Keywords: Received: via spool by 393-submit@bugs.x2go.org id=B393.13909349243956 (code B ref 393); Tue, 28 Jan 2014 18:50:01 +0000 Received: (at 393) by bugs.x2go.org; 28 Jan 2014 18:48:44 +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=-1.9 required=5.0 tests=BAYES_00,NO_RELAYS autolearn=unavailable version=3.3.2 Received: by ymir (Postfix, from userid 1005) id 104D95DB17; Tue, 28 Jan 2014 19:48:36 +0100 (CET) From: Mike Gabriel To: 393-submitter@bugs.x2go.org Cc: control@bugs.x2go.org, 393@bugs.x2go.org Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: http://snipr.com/post-receive-tag-pending Message-Id: <20140128184836.104D95DB17@ymir> Date: Tue, 28 Jan 2014 19:48:36 +0100 (CET) tag #393 pending fixed #393 2:3.5.0.23 thanks Hello, X2Go issue #393 (src:nx-libs) reported by you has been fixed in X2Go Git. You can see the changelog below, and you can check the diff of the fix at: http://code.x2go.org/gitweb?p=nx-libs.git;a=commitdiff;h=faa289a The issue will most likely be fixed in src:nx-libs (2:3.5.0.23). light+love X2Go Git Admin (on behalf of the sender of this mail) --- commit faa289a82954860c9dfb44dc7eb4d39ea6d99f25 Author: Mike Gabriel Date: Tue Jan 28 19:48:21 2014 +0100 nx-libs.spec: Sync nx-libs.spec in Fedora with upstream's nx-libs.spec file. (Fixes: #393). diff --git a/debian/changelog b/debian/changelog index 8b1a782..d52b685 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,9 @@ nx-libs (2:3.5.0.23-0x2go1) UNRELEASED; urgency=low * Add patch: 055_nx-X11_imake-Werror-format-security.full.patch. Fix FTBFS of imake on current Fedora rawhide (21) which uses the compiler option -Werror=format-security for all builds. (Fixes: #412). + * nx-libs.spec: + - Sync nx-libs.spec in Fedora with upstream's nx-libs.spec file. (Fixes: + #393). -- Mike Gabriel Sat, 04 Jan 2014 22:02:16 +0100 From unknown Thu Mar 28 16:55:31 2024 X-Loop: owner@bugs.x2go.org Subject: Bug#393: X2Go issue (in src:nx-libs) has been marked as closed Reply-To: Mike Gabriel , 393@bugs.x2go.org Resent-From: Mike Gabriel Resent-To: x2go-dev@lists.berlios.de Resent-CC: X2Go Developers X-Loop: owner@bugs.x2go.org Resent-Date: Tue, 06 May 2014 16:10:02 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.x2go.org X-X2Go-PR-Message: followup 393 X-X2Go-PR-Package: x2goagent X-X2Go-PR-Keywords: pending Received: via spool by 393-submit@bugs.x2go.org id=B393.139939245817989 (code B ref 393); Tue, 06 May 2014 16:10:02 +0000 Received: (at 393) by bugs.x2go.org; 6 May 2014 16:07: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=-1.9 required=5.0 tests=BAYES_00,NO_RELAYS, URIBL_BLOCKED autolearn=ham version=3.3.2 Received: by ymir.das-netzwerkteam.de (Postfix, from userid 1005) id ECC973D161; Tue, 6 May 2014 18:07:36 +0200 (CEST) From: Mike Gabriel To: 393-submitter@bugs.x2go.org Cc: control@bugs.x2go.org, 393@bugs.x2go.org Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit Message-Id: <20140506160736.ECC973D161@ymir.das-netzwerkteam.de> Date: Tue, 6 May 2014 18:07:36 +0200 (CEST) close #393 thanks Hello, we are very hopeful that X2Go issue #393 reported by you has been resolved in the new release (2:3.5.0.23) of the X2Go source project »src:nx-libs«. You can view the complete changelog entry of src:nx-libs (2:3.5.0.23) below, and you can use the following link to view all the code changes between this and the last release of src:nx-libs. http://code.x2go.org/gitweb?p=nx-libs.git;a=commitdiff;h=fdeaafb5e2f4520857ca4757261df79d233e05cb;hp=626b5dbae6b7b432d573f88abc8e3e8ae2bdba85 If you feel that the issue has not been resolved satisfyingly, feel free to reopen this bug report or submit a follow-up report with further observations described based on the new released version of src:nx-libs. Thanks a lot for contributing to X2Go!!! light+love X2Go Git Admin (on behalf of the sender of this mail) --- X2Go Component: src:nx-libs Version: 2:3.5.0.23-0x2go1 Status: RELEASE Date: Tue, 06 May 2014 18:05:47 +0200 Fixes: 393 411 412 423 Changes: nx-libs (2:3.5.0.23-0x2go1) RELEASED; urgency=low . [ Orion Poplawski ] * Add patch: 054_nx-X11_ppc64-ftbfs.full.patch. Fix FTBFS on ppc64 architecture. (Fixes: #411). * Add patch: 055_nx-X11_imake-Werror-format-security.full.patch. Fix FTBFS of imake on current Fedora rawhide (21) which uses the compiler option -Werror=format-security for all builds. (Fixes: #412). * Add patch: 056_nx-X11-Werror-format-security.patch. Fix more -Werror=format-security errors that only show up on ARM builds. (Fixes: #423). * nx-libs.spec: - Sync nx-libs.spec in Fedora with upstream's nx-libs.spec file. (Fixes: #393). . [ Mike Gabriel ] * debian/control: + Build our imake against x11proto-core-dev headers. * nx-libs.spec: + Build our imake against xorg-x11-proto-devel. . [ Oleksandr Shneyder ] * Add patch: 205_nxagent_refresh-adsl.full.patch. Fix refresh error on RDP connections to Windows 2012 if speed=ADSL. From unknown Thu Mar 28 16:55:31 2024 X-Loop: owner@bugs.x2go.org Subject: Bug#393: X2Go issue (in src:nx-libs) has been marked as closed Reply-To: Mike Gabriel , 393@bugs.x2go.org Resent-From: Mike Gabriel Resent-To: x2go-dev@lists.berlios.de Resent-CC: X2Go Developers X-Loop: owner@bugs.x2go.org Resent-Date: Tue, 06 May 2014 16:10:02 +0000 Resent-Message-ID: Resent-Sender: owner@bugs.x2go.org X-X2Go-PR-Message: followup 393 X-X2Go-PR-Package: x2goagent X-X2Go-PR-Keywords: pending Received: via spool by 393-submit@bugs.x2go.org id=B393.139939246417999 (code B ref 393); Tue, 06 May 2014 16:10:02 +0000 Received: (at 393) by bugs.x2go.org; 6 May 2014 16:07:44 +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=-1.9 required=5.0 tests=BAYES_00,NO_RELAYS, URIBL_BLOCKED autolearn=unavailable version=3.3.2 Received: by ymir.das-netzwerkteam.de (Postfix, from userid 1005) id B8CAF5DB17; Tue, 6 May 2014 18:07:35 +0200 (CEST) From: Mike Gabriel To: 393-submitter@bugs.x2go.org Cc: control@bugs.x2go.org, 393@bugs.x2go.org Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit Message-Id: <20140506160735.B8CAF5DB17@ymir.das-netzwerkteam.de> Date: Tue, 6 May 2014 18:07:35 +0200 (CEST) close #393 thanks Hello, we are very hopeful that X2Go issue #393 reported by you has been resolved in the new release (2:3.5.0.23) of the X2Go source project »src:nx-libs«. You can view the complete changelog entry of src:nx-libs (2:3.5.0.23) below, and you can use the following link to view all the code changes between this and the last release of src:nx-libs. http://code.x2go.org/gitweb?p=nx-libs.git;a=commitdiff;h=4f56401ad0df9cf6380910418e283267a04bbf2e;hp=626b5dbae6b7b432d573f88abc8e3e8ae2bdba85 If you feel that the issue has not been resolved satisfyingly, feel free to reopen this bug report or submit a follow-up report with further observations described based on the new released version of src:nx-libs. Thanks a lot for contributing to X2Go!!! light+love X2Go Git Admin (on behalf of the sender of this mail) --- X2Go Component: src:nx-libs Version: 2:3.5.0.23-0x2go1 Status: RELEASE Date: Tue, 06 May 2014 18:05:47 +0200 Fixes: 393 411 412 423 Changes: nx-libs (2:3.5.0.23-0x2go1) RELEASED; urgency=low . [ Orion Poplawski ] * Add patch: 054_nx-X11_ppc64-ftbfs.full.patch. Fix FTBFS on ppc64 architecture. (Fixes: #411). * Add patch: 055_nx-X11_imake-Werror-format-security.full.patch. Fix FTBFS of imake on current Fedora rawhide (21) which uses the compiler option -Werror=format-security for all builds. (Fixes: #412). * Add patch: 056_nx-X11-Werror-format-security.patch. Fix more -Werror=format-security errors that only show up on ARM builds. (Fixes: #423). * nx-libs.spec: - Sync nx-libs.spec in Fedora with upstream's nx-libs.spec file. (Fixes: #393). . [ Mike Gabriel ] * debian/control: + Build our imake against x11proto-core-dev headers. * nx-libs.spec: + Build our imake against xorg-x11-proto-devel. . [ Oleksandr Shneyder ] * Add patch: 205_nxagent_refresh-adsl.full.patch. Fix refresh error on RDP connections to Windows 2012 if speed=ADSL. From unknown Thu Mar 28 16:55:31 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#393 closed by Mike Gabriel (X2Go issue (in src:nx-libs) has been marked as closed) Message-ID: References: <20140506160735.B8CAF5DB17@ymir.das-netzwerkteam.de> X-X2go-PR-Keywords: pending X-X2go-PR-Message: they-closed 393 X-X2go-PR-Package: x2goagent X-X2go-PR-Source: nx-libs Date: Tue, 06 May 2014 16:10:06 +0000 Content-Type: multipart/mixed; boundary="----------=_1399392606-21390-0" This is a multi-part message in MIME format... ------------=_1399392606-21390-0 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 x2goagent package: #393: Improvements for RPM package (Xinerama support) 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 ------------=_1399392606-21390-0 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at control) by bugs.x2go.org; 6 May 2014 16:07:52 +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=-1.9 required=5.0 tests=BAYES_00,NO_RELAYS, URIBL_BLOCKED autolearn=unavailable version=3.3.2 Received: by ymir.das-netzwerkteam.de (Postfix, from userid 1005) id B8CAF5DB17; Tue, 6 May 2014 18:07:35 +0200 (CEST) From: Mike Gabriel To: 393-submitter@bugs.x2go.org Cc: control@bugs.x2go.org, 393@bugs.x2go.org Subject: X2Go issue (in src:nx-libs) has been marked as closed Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit Message-Id: <20140506160735.B8CAF5DB17@ymir.das-netzwerkteam.de> Date: Tue, 6 May 2014 18:07:35 +0200 (CEST) close #393 thanks Hello, we are very hopeful that X2Go issue #393 reported by you has been resolved in the new release (2:3.5.0.23) of the X2Go source project »src:nx-libs«. You can view the complete changelog entry of src:nx-libs (2:3.5.0.23) below, and you can use the following link to view all the code changes between this and the last release of src:nx-libs. http://code.x2go.org/gitweb?p=nx-libs.git;a=commitdiff;h=4f56401ad0df9cf6380910418e283267a04bbf2e;hp=626b5dbae6b7b432d573f88abc8e3e8ae2bdba85 If you feel that the issue has not been resolved satisfyingly, feel free to reopen this bug report or submit a follow-up report with further observations described based on the new released version of src:nx-libs. Thanks a lot for contributing to X2Go!!! light+love X2Go Git Admin (on behalf of the sender of this mail) --- X2Go Component: src:nx-libs Version: 2:3.5.0.23-0x2go1 Status: RELEASE Date: Tue, 06 May 2014 18:05:47 +0200 Fixes: 393 411 412 423 Changes: nx-libs (2:3.5.0.23-0x2go1) RELEASED; urgency=low . [ Orion Poplawski ] * Add patch: 054_nx-X11_ppc64-ftbfs.full.patch. Fix FTBFS on ppc64 architecture. (Fixes: #411). * Add patch: 055_nx-X11_imake-Werror-format-security.full.patch. Fix FTBFS of imake on current Fedora rawhide (21) which uses the compiler option -Werror=format-security for all builds. (Fixes: #412). * Add patch: 056_nx-X11-Werror-format-security.patch. Fix more -Werror=format-security errors that only show up on ARM builds. (Fixes: #423). * nx-libs.spec: - Sync nx-libs.spec in Fedora with upstream's nx-libs.spec file. (Fixes: #393). . [ Mike Gabriel ] * debian/control: + Build our imake against x11proto-core-dev headers. * nx-libs.spec: + Build our imake against xorg-x11-proto-devel. . [ Oleksandr Shneyder ] * Add patch: 205_nxagent_refresh-adsl.full.patch. Fix refresh error on RDP connections to Windows 2012 if speed=ADSL. ------------=_1399392606-21390-0 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by bugs.x2go.org; 6 Jan 2014 15:10:52 +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.8 required=5.0 tests=BAYES_00,TO_NO_BRKTS_PCNT autolearn=no version=3.3.2 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir (Postfix) with ESMTPS id 2E6345DB1E for ; Mon, 6 Jan 2014 16:10:52 +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 B51F939C for ; Mon, 6 Jan 2014 16:10:51 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id A9D2D3C2EC for ; Mon, 6 Jan 2014 16:10:51 +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 m7WLD00UAg0I for ; Mon, 6 Jan 2014 16:10:51 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTPSA id 648BA3BF80 for ; Mon, 6 Jan 2014 16:10:51 +0100 (CET) Received: from listrac.informatik.uni-kiel.de (listrac.informatik.uni-kiel.de [134.245.252.114]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Mon, 06 Jan 2014 15:10:51 +0000 Date: Mon, 06 Jan 2014 15:10:51 +0000 Message-ID: <20140106151051.Horde.PvAmwBzPnB8p32mz1K3H6Q1@mail.das-netzwerkteam.de> From: Mike Gabriel To: submit@bugs.x2go.org Subject: Improvements for RPM package (Xinerama support) User-Agent: Internet Messaging Program (IMP) H5 (6.1.4) Accept-Language: en,de Organization: DAS-NETZWERKTEAM X-Originating-IP: 134.245.252.114 X-Remote-Browser: Mozilla/5.0 (X11; Linux i686; rv:23.0) Gecko/20100101 Firefox/23.0 Iceweasel/23.0 Content-Type: multipart/signed; boundary="=_d5PZUIuFTK5u_bL0sdJ-jQ1"; protocol="application/pgp-signature"; micalg=pgp-sha1 MIME-Version: 1.0 This message is in MIME format and has been PGP signed. --=_d5PZUIuFTK5u_bL0sdJ-jQ1 Content-Type: text/plain; charset=UTF-8; format=flowed; DelSp=Yes Content-Disposition: inline Package: x2goagent Severity: minor Version: 3.5.0.22 Tag: rpm-packages patch Some more improvements for our nx-libs.spec as suggested by Orion via x2go-dev. Mike ----- Weitergeleitete Nachricht von Orion Poplawski ----- Datum: Sun, 05 Jan 2014 20:46:26 -0700 Von: Orion Poplawski Betreff: Re: [X2Go-Dev] Bug#370: RPM package: nx-libs lacks Xinerama support An: Mike Gabriel Cc: x2go-dev@lists.berlios.de On 12/16/2013 12:37 AM, Mike Gabriel wrote: > Hi Orion, > > On Mo 16 Dez 2013 03:14:02 CET, Orion Poplawski wrote: > >> On 12/14/2013 02:00 PM, Mike Gabriel wrote: >>> Package: nx-libs Severity: important Tag: rpm-package >>> >>> The current RPMs built from nx-libs HEAD lack Xinerama support >>> because of missing symlinks. The links should be created like >>> below when the package libNX_Xinerama gets installed: >>> >>> mike@minobo:/usr/lib64/nx/X11$ ls Xinerama/ -al insgesamt 16 >>> libNX_X11.so.6 -> /usr/lib64/libX11.so.6 libNX_Xext.so.6 -> >>> /usr/lib64//libXext.so.6 libXinerama.so -> ../libNX_Xinerama.so >>> libXinerama.so.1 -> ../libNX_Xinerama.so.1 >> >> Shouldn't NX be taught to just use libXinerama.so.1 directly >> instead? > > The libNX_Xinerama.so.1 is very much different from libXinerama.so > as it retrieves its data about number of screens and screen > resolutions from a file (and not from hardware). > > Scan for NX_XINERAMA_CONF in [1] for details. > > Mike > > [1] > http://code.x2go.org/gitweb?p=nx-libs.git;a=blob;f=debian/patches/202_nx-X11_enable-xinerama.full.patch > > > Hmm, okay, I think I get more of the game being played here. I've implemented it differently in the Fedora spec: In %install: # Need for Xinerama support ln -s -f ../../../../%{_lib}/libX11.so.6 %{buildroot}%{_libdir}/nx/X11/Xinerama/libNX_X11.so.6 ln -s -f ../../../../%{_lib}/libXext.so.6 %{buildroot}%{_libdir}/nx/X11/Xinerama/libNX_Xext.so.6 Though these probably should just get done in the Makefile. But the relative paths might be tricky. and: Summary: Xinerama extension to the NX Protocol Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: libX11%{?_isa} +Requires: libXext%{?_isa} (%{?_isa} gets the architecture correct) %files -n libNX_Xinerama %{_libdir}/nx/X11/libNX_Xinerama.so.1* +%{_libdir}/nx/X11/Xinerama/ No need for %pre/%post - -- Orion Poplawski Technical Manager 303-415-9701 x222 NWRA/CoRA Division FAX: 303-415-9702 3380 Mitchell Lane orion@cora.nwra.com Boulder, CO 80301 http://www.cora.nwra.com ----- Ende der weitergeleiteten Nachricht ----- -- DAS-NETZWERKTEAM mike gabriel, herweg 7, 24357 fleckeby 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 --=_d5PZUIuFTK5u_bL0sdJ-jQ1 Content-Type: application/pgp-signature Content-Description: Digitale PGP-Signatur Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.15 (GNU/Linux) iQIcBAABAgAGBQJSysd7AAoJEJr0azAldxsxWpAP/2L2UpcZUuXDpvsoPqG5g7B/ okJX63VGL3lC0F+2hjG10uVFTxK2fKdG9GbyVVn7WId4OhN09o+LLkXBBCrYu7pt PH/PhIiWd8Na0zI3Mm69TKbjrEfaon4Ubmw2f+iDG5rJbvCow8mcmJzrhgvztcqT D22yd4U6RoOID82a4En66oemar8EVAcIe86SWu9ny6spJiz+JrIHPxaCQQ0WHqtk DMD2lGbl7Nfjq0vP3EokLtAPPz6X8Gew0zNxt0HoFpCouu1tisq5cfyclrCZyBWz WnKvqxcPJGhsMlTaGXPp2IMskKp/iqROuFBGW3Od4Nt4TtvE+kNpA8h7+DfugwGH rkOdFE3FCeN/DPam1xU4a0MZLfT1aEp2xrrM6ZctQVUn/fLuONg1yqAZRF1oG4N1 Dy+7YFnggZlHAQWv+Y3rbotVTe8IT4M0lNUGMvAXlyuVUqnVbgUu9mduj04VrriJ JmkVGQ0X9ZXsSn/lwELlnio6/7jTpn39db3L14GBn3T76y1VwkY+Xh9IZ79d44/t d+Emfz7LS0zGePpnso82+xafuCoq9nnc4RdCPd0jxMJ/O3qVNTE5JdRM3MJeTmRp LXhFpcAxRsMV3ydoqU44Ua02GSzs+0DHCsxQutaC+4RkxdeUeBJK7kJDEMt64xnL xHxWWNVegnnjxilyecwD =IhDz -----END PGP SIGNATURE----- --=_d5PZUIuFTK5u_bL0sdJ-jQ1-- ------------=_1399392606-21390-0--