GNU bug report logs - #75060
[PATCH rust-team 1/5] gnu: rust-x11-clipboard-0.9: Order alphabetically.

Previous Next

Package: guix-patches;

Reported by: Herman Rimm <herman <at> rimm.ee>

Date: Tue, 24 Dec 2024 10:04:02 UTC

Severity: normal

Tags: patch

Done: Efraim Flashner <efraim <at> flashner.co.il>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Herman Rimm <herman <at> rimm.ee>
Subject: bug#75060: closed (Re: [bug#75060] [PATCH rust-team 1/5] gnu:
 rust-x11-clipboard-0.9: Order alphabetically.)
Date: Tue, 24 Dec 2024 12:03:03 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#75060: [PATCH rust-team 1/5] gnu: rust-x11-clipboard-0.9: Order alphabetically.

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 75060 <at> debbugs.gnu.org.

-- 
75060: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=75060
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Efraim Flashner <efraim <at> flashner.co.il>
To: Herman Rimm <herman <at> rimm.ee>
Cc: 75060-done <at> debbugs.gnu.org
Subject: Re: [bug#75060] [PATCH rust-team 1/5] gnu: rust-x11-clipboard-0.9:
 Order alphabetically.
Date: Tue, 24 Dec 2024 14:01:19 +0200
[Message part 3 (text/plain, inline)]
Thanks. Patches pushed to the rust-team branch.

-- 
Efraim Flashner   <efraim <at> flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
From: Herman Rimm <herman <at> rimm.ee>
To: guix-patches <at> gnu.org
Subject: [PATCH rust-team 1/5] gnu: rust-x11-clipboard-0.9: Order
 alphabetically.
Date: Tue, 24 Dec 2024 11:02:24 +0100
* gnu/packages/crates-graphics.scm (rust-x11-clipboard-0.9): Order.

Change-Id: I07a80145fd6c2b7cea983a2c6b083ea0d1f9e800
---
 gnu/packages/crates-graphics.scm | 66 ++++++++++++++++----------------
 1 file changed, 33 insertions(+), 33 deletions(-)

diff --git a/gnu/packages/crates-graphics.scm b/gnu/packages/crates-graphics.scm
index e521750e73..d1626a2b4b 100644
--- a/gnu/packages/crates-graphics.scm
+++ b/gnu/packages/crates-graphics.scm
@@ -6446,6 +6446,39 @@ (define-public rust-x11-2
     (description "This crate provides X11 library bindings for Rust.")
     (license license:expat)))
 
+(define-public rust-x11-clipboard-0.9
+  (package
+    (name "rust-x11-clipboard")
+    (version "0.9.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "x11-clipboard" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "18rmsm0lrcc4hy2wqs7gn90czv59sv5bj07bbf76nfbysyrp8bb6"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-test-flags '("--release" "--"
+                            "--skip=tests::should_work_but_does_not")
+       #:cargo-inputs (("rust-libc" ,rust-libc-0.2)
+                       ("rust-x11rb" ,rust-x11rb-0.13))
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'pre-check
+           (lambda* (#:key native-inputs inputs #:allow-other-keys)
+             ;; Most tests require an X server.
+             (let ((xvfb (search-input-file (or native-inputs inputs)
+                                            "bin/Xvfb"))
+                   (display ":1"))
+               (setenv "DISPLAY" display)
+               (system (string-append xvfb " " display " &"))))))))
+    (native-inputs (list xorg-server-for-tests))
+    (home-page "https://github.com/quininer/x11-clipboard")
+    (synopsis "X11 clipboard support for Rust")
+    (description "This package provides x11 clipboard support for Rust.")
+    (license license:expat)))
+
 (define-public rust-x11rb-0.13
   (package
     (name "rust-x11rb")
@@ -6644,39 +6677,6 @@ (define-public rust-x11rb-protocol-0.10
        #:cargo-development-inputs
        (("rust-criterion" ,rust-criterion-0.3))))))
 
-(define-public rust-x11-clipboard-0.9
-  (package
-    (name "rust-x11-clipboard")
-    (version "0.9.3")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (crate-uri "x11-clipboard" version))
-       (file-name (string-append name "-" version ".tar.gz"))
-       (sha256
-        (base32 "18rmsm0lrcc4hy2wqs7gn90czv59sv5bj07bbf76nfbysyrp8bb6"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-test-flags '("--release" "--"
-                            "--skip=tests::should_work_but_does_not")
-       #:cargo-inputs (("rust-libc" ,rust-libc-0.2)
-                       ("rust-x11rb" ,rust-x11rb-0.13))
-       #:phases
-       (modify-phases %standard-phases
-         (add-before 'check 'pre-check
-           (lambda* (#:key native-inputs inputs #:allow-other-keys)
-             ;; Most tests require an X server.
-             (let ((xvfb (search-input-file (or native-inputs inputs)
-                                            "bin/Xvfb"))
-                   (display ":1"))
-               (setenv "DISPLAY" display)
-               (system (string-append xvfb " " display " &"))))))))
-    (native-inputs (list xorg-server-for-tests))
-    (home-page "https://github.com/quininer/x11-clipboard")
-    (synopsis "X11 clipboard support for Rust")
-    (description "This package provides x11 clipboard support for Rust.")
-    (license license:expat)))
-
 (define-public rust-x11-clipboard-0.8
   (package
     (inherit rust-x11-clipboard-0.9)

base-commit: e793fbbd5282713fe5c9aad512c5784b0afff175
-- 
2.45.2




This bug report was last modified 205 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.