From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45822) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iBPn1-0005VZ-HW for guix-patches@gnu.org; Fri, 20 Sep 2019 16:46:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iBPn0-00077I-ED for guix-patches@gnu.org; Fri, 20 Sep 2019 16:46:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49807) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iBPn0-00076p-Ax for guix-patches@gnu.org; Fri, 20 Sep 2019 16:46:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iBPn0-0008Cg-4r for guix-patches@gnu.org; Fri, 20 Sep 2019 16:46:02 -0400 Subject: bug#37429: [PATCH] gnu: Add autocutsel. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20190916161549.21294-1-wz@freeshell.de> Date: Fri, 20 Sep 2019 22:45:22 +0200 In-Reply-To: <20190916161549.21294-1-wz@freeshell.de> ("Wiktor \=\?utf-8\?Q\?\=C5\=BBelazny\=22's\?\= message of "Mon, 16 Sep 2019 18:15:49 +0200") Message-ID: <877e62puhp.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Wiktor =?UTF-8?Q?=C5=BBelazny?= Cc: 37429-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Wiktor, Wiktor =C5=BBelazny skribis: > From: Wiktor =C5=BBelazny > > * gnu/packages/xdisorg.scm (autocutsel): New variable. I took the liberty to adjust as show below: the license is =E2=80=98gpl2+= =E2=80=99 because headers carry the =E2=80=9Cor any later version=E2=80=9D wording. = The other changes are just purely cosmetic, for the sake of consistency. Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index 4d7119a693..10ffa6f695 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -1716,21 +1716,21 @@ Wayland.") (version "0.10.0") (source (origin (method url-fetch) - (uri (string-append "https://github.com/sigmike/" name + (uri (string-append "https://github.com/sigmike/autocutsel" "/releases/download/" version "/" - name "-" version ".tar.gz")) + "autocutsel-" version ".tar.gz")) (sha256 (base32 "0gsys2dzh4az51ndcsabhlbbrjn2nm75lnjr45kg6r8sm8q66dx2")))) (build-system gnu-build-system) (arguments '(#:tests? #f)) ; no "check" target - (native-inputs `(("libx11" ,libx11) - ("libxaw" ,libxaw))) + (native-inputs `(("libx11" ,libx11) + ("libxaw" ,libxaw))) (home-page "https://www.nongnu.org/autocutsel/") (synopsis "Automated X11 clipboard and cutbuffer synchronization") (description "@code{autocutsel} tracks changes in the server's cutbuffer and clipboard selection. When the clipboard is changed, it updates the cutbuffer. When the cutbuffer is changed, it owns the clipboard selection. The cutbuffer and clipboard selection are always synchronized.") - (license license:gpl2))) + (license license:gpl2+))) --=-=-=--