emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#37429: closed ([PATCH] gnu: Add autocutsel.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#37429: closed ([PATCH] gnu: Add autocutsel.)
Date: Fri, 20 Sep 2019 20:46:01 +0000

Your message dated Fri, 20 Sep 2019 22:45:22 +0200
with message-id <address@hidden>
and subject line Re: [bug#37429] [PATCH] gnu: Add autocutsel.
has caused the debbugs.gnu.org bug report #37429,
regarding [PATCH] gnu: Add autocutsel.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
37429: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=37429
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add autocutsel. Date: Mon, 16 Sep 2019 18:15:49 +0200
From: Wiktor Żelazny <address@hidden>

* gnu/packages/xdisorg.scm (autocutsel): New variable.
---
 gnu/packages/xdisorg.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index bcc61f59af..4d7119a693 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -25,6 +25,7 @@
 ;;; Copyright © 2018, 2019 Rutger Helling <address@hidden>
 ;;; Copyright © 2018, 2019 Pierre Neidhardt <address@hidden>
 ;;; Copyright © 2018 Nam Nguyen <address@hidden>
+;;; Copyright © 2019 Wiktor Żelazny <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1708,3 +1709,28 @@ temperature of the screen.")
     (description "Wl-clipboard is a set of command-line copy/paste utilities 
for
 Wayland.")
     (license license:gpl3+)))
+
+(define-public autocutsel
+  (package
+    (name "autocutsel")
+    (version "0.10.0")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://github.com/sigmike/"; name
+                                  "/releases/download/" version "/"
+                                  name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0gsys2dzh4az51ndcsabhlbbrjn2nm75lnjr45kg6r8sm8q66dx2"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:tests? #f)) ; no "check" target
+    (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)))
-- 
2.23.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#37429] [PATCH] gnu: Add autocutsel. Date: Fri, 20 Sep 2019 22:45:22 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux)
Hi Wiktor,

Wiktor Żelazny <address@hidden> skribis:

> From: Wiktor Żelazny <address@hidden>
>
> * gnu/packages/xdisorg.scm (autocutsel): New variable.

I took the liberty to adjust as show below: the license is ‘gpl2+’
because headers carry the “or any later version” wording.  The other
changes are just purely cosmetic, for the sake of consistency.

Thank you!

Ludo’.

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+)))

--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]