From: Herman Rimm via Guix-patches via <guix-patches@gnu.org>
To: 75060@debbugs.gnu.org
Cc: Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#75060] [PATCH rust-team 1/5] gnu: rust-x11-clipboard-0.9: Order alphabetically.
Date: Tue, 24 Dec 2024 11:02:24 +0100 [thread overview]
Message-ID: <af73e72da18d71c8a07b15bffa4252638e062ea3.1735034375.git.herman@rimm.ee> (raw)
* 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
next reply other threads:[~2024-12-24 10:04 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-24 10:02 Herman Rimm via Guix-patches via [this message]
2024-12-24 10:11 ` [bug#75060] [PATCH rust-team 2/5] gnu: rust-x11-clipboard-0.8: Order alphabetically Herman Rimm via Guix-patches via
2024-12-24 10:11 ` [bug#75060] [PATCH rust-team 3/5] gnu: rust-x11-clipboard-0.7: " Herman Rimm via Guix-patches via
2024-12-24 10:11 ` [bug#75060] [PATCH rust-team 4/5] gnu: rust-x11-dl-2: " Herman Rimm via Guix-patches via
2024-12-24 10:11 ` [bug#75060] [PATCH rust-team 5/5] gnu: rust-xkb-0.3: " Herman Rimm via Guix-patches via
2024-12-24 12:01 ` bug#75060: [PATCH rust-team 1/5] gnu: rust-x11-clipboard-0.9: " Efraim Flashner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=af73e72da18d71c8a07b15bffa4252638e062ea3.1735034375.git.herman@rimm.ee \
--to=guix-patches@gnu.org \
--cc=75060@debbugs.gnu.org \
--cc=efraim@flashner.co.il \
--cc=herman@rimm.ee \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.