unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Giacomo Leidi via Guix-patches via <guix-patches@gnu.org>
To: 73956@debbugs.gnu.org
Cc: Giacomo Leidi <goodoldpaul@autistici.org>,
	Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#73956] [PATCH rust-team 25/27] gnu: Add rust-gtk4-sys-0.8.
Date: Wed, 23 Oct 2024 01:31:10 +0200	[thread overview]
Message-ID: <c20ff57c3c26aff9fecf4ad379a4d1b56ac6cb1f.1729639872.git.goodoldpaul@autistici.org> (raw)
In-Reply-To: <ea984ed01398b2e4c8b335283f84437c7e647c1b.1729639872.git.goodoldpaul@autistici.org>

* gnu/packages/crates-gtk.scm (rust-gtk4-sys-0.8): New variable;
(rust-gtk4-sys-0.7): intherit from rust-gtk4-sys-0.8.

Change-Id: Id31435c704b9163d77e8a4d8f017bc630ac1788a
---
 gnu/packages/crates-gtk.scm | 38 +++++++++++++++++++++++++++++++++++--
 1 file changed, 36 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/crates-gtk.scm b/gnu/packages/crates-gtk.scm
index 86feff444e..3ff52856e1 100644
--- a/gnu/packages/crates-gtk.scm
+++ b/gnu/packages/crates-gtk.scm
@@ -3315,8 +3315,43 @@ (define-public rust-gtk4-macros-0.7
     (description "Macros helpers for GTK 4 bindings.")
     (license license:expat)))
 
+(define-public rust-gtk4-sys-0.8
+  (package
+    (name "rust-gtk4-sys")
+    (version "0.8.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "gtk4-sys" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1dapgvbkhf0kcm2jfmj8r98wzyhwmr5iv358dvb73sl5gxmsi2lc"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:tests? #f ; Can't find gtk/gtk-a11y.h from gtk+
+       #:cargo-inputs (("rust-cairo-sys-rs" ,rust-cairo-sys-rs-0.19)
+                       ("rust-gdk-pixbuf-sys" ,rust-gdk-pixbuf-sys-0.19)
+                       ("rust-gdk4-sys" ,rust-gdk4-sys-0.8)
+                       ("rust-gio-sys" ,rust-gio-sys-0.19)
+                       ("rust-glib-sys" ,rust-glib-sys-0.19)
+                       ("rust-gobject-sys" ,rust-gobject-sys-0.19)
+                       ("rust-graphene-sys" ,rust-graphene-sys-0.19)
+                       ("rust-gsk4-sys" ,rust-gsk4-sys-0.8)
+                       ("rust-libc" ,rust-libc-0.2)
+                       ("rust-pango-sys" ,rust-pango-sys-0.19)
+                       ("rust-system-deps" ,rust-system-deps-6))
+       #:cargo-development-inputs (("rust-shell-words" ,rust-shell-words-1)
+                                   ("rust-tempfile" ,rust-tempfile-3))))
+    (native-inputs (list pkg-config))
+    (inputs (list cairo gdk-pixbuf graphene gtk pango))
+    (home-page "https://gtk-rs.org/")
+    (synopsis "FFI bindings of GTK 4")
+    (description "This package provides FFI bindings of GTK 4.")
+    (license license:expat)))
+
 (define-public rust-gtk4-sys-0.7
   (package
+    (inherit rust-gtk4-sys-0.8)
     (name "rust-gtk4-sys")
     (version "0.7.3")
     (source
@@ -3326,7 +3361,6 @@ (define-public rust-gtk4-sys-0.7
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
         (base32 "1f2ylskyqkjdik9fij2m46pra4jagnif5xyalbxfk3334fmc9n2l"))))
-    (build-system cargo-build-system)
     (arguments
      `(#:tests? #f ; Can't find gtk/gtk-a11y.h from gtk+
        #:cargo-inputs (("rust-cairo-sys-rs" ,rust-cairo-sys-rs-0.18)
@@ -3341,7 +3375,7 @@ (define-public rust-gtk4-sys-0.7
                        ("rust-pango-sys" ,rust-pango-sys-0.18)
                        ("rust-system-deps" ,rust-system-deps-6))
        #:cargo-development-inputs (("rust-shell-words" ,rust-shell-words-1)
-                                   ("rust-tempfile" ,rust-tempfile-3))))
+                                   ("rust-tempfile" ,rust-tempfile-3))))))
     (native-inputs (list pkg-config))
     (inputs (list cairo gdk-pixbuf graphene gtk pango))
     (home-page "https://gtk-rs.org/")
-- 
2.46.0





  parent reply	other threads:[~2024-10-22 23:33 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-22 23:05 [bug#73956] [PATCH rust-team] Add rust-libadwaita-0.6 paul via Guix-patches via
2024-10-22 23:30 ` [bug#73956] [PATCH rust-team 01/27] gnu: Add rust-cfg-expr-0.17 Giacomo Leidi via Guix-patches via
2024-10-22 23:30   ` [bug#73956] [PATCH rust-team 02/27] gnu: Add rust-system-deps-7 Giacomo Leidi via Guix-patches via
2024-10-22 23:30   ` [bug#73956] [PATCH rust-team 03/27] gnu: Add rust-glib-sys-0.20 Giacomo Leidi via Guix-patches via
2024-10-22 23:30   ` [bug#73956] [PATCH rust-team 04/27] gnu: Add rust-bitflags-2.6 Giacomo Leidi via Guix-patches via
2024-10-22 23:30   ` [bug#73956] [PATCH rust-team 05/27] gnu: Add rust-gobject-sys-0.20 Giacomo Leidi via Guix-patches via
2024-10-22 23:30   ` [bug#73956] [PATCH rust-team 06/27] gnu: Add rust-gio-sys-0.20 Giacomo Leidi via Guix-patches via
2024-10-22 23:30   ` [bug#73956] [PATCH rust-team 07/27] gnu: Add rust-glib-macros-0.20 Giacomo Leidi via Guix-patches via
2024-10-22 23:30   ` [bug#73956] [PATCH rust-team 08/27] gnu: Add rust-glib-0.20 Giacomo Leidi via Guix-patches via
2024-10-22 23:30   ` [bug#73956] [PATCH rust-team 09/27] gnu: Add rust-cairo-sys-rs-0.20 Giacomo Leidi via Guix-patches via
2024-10-22 23:30   ` [bug#73956] [PATCH rust-team 10/27] gnu: Add rust-freetype-sys-0.21 Giacomo Leidi via Guix-patches via
2024-10-22 23:30   ` [bug#73956] [PATCH rust-team 11/27] gnu: Add rust-freetype-rs-0.37 Giacomo Leidi via Guix-patches via
2024-10-22 23:30   ` [bug#73956] [PATCH rust-team 12/27] gnu: Add rust-cairo-rs-0.20 Giacomo Leidi via Guix-patches via
2024-10-22 23:30   ` [bug#73956] [PATCH rust-team 13/27] gnu: Add rust-pango-sys-0.20 Giacomo Leidi via Guix-patches via
2024-10-22 23:30   ` [bug#73956] [PATCH rust-team 14/27] gnu: Add rust-libadwaita-sys-0.6 Giacomo Leidi via Guix-patches via
2024-10-22 23:31   ` [bug#73956] [PATCH rust-team 15/27] gnu: Add rust-gdk-pixbuf-sys-0.20 Giacomo Leidi via Guix-patches via
2024-10-22 23:31   ` [bug#73956] [PATCH rust-team 16/27] gnu: Add rust-gio-0.20 Giacomo Leidi via Guix-patches via
2024-10-22 23:31   ` [bug#73956] [PATCH rust-team 17/27] gnu: Add rust-gdk-pixbuf-0.20 Giacomo Leidi via Guix-patches via
2024-10-22 23:31   ` [bug#73956] [PATCH rust-team 18/27] gnu: Add rust-pango-0.20 Giacomo Leidi via Guix-patches via
2024-10-22 23:31   ` [bug#73956] [PATCH rust-team 19/27] gnu: Add rust-gdk4-sys-0.8 Giacomo Leidi via Guix-patches via
2024-10-22 23:31   ` [bug#73956] [PATCH rust-team 20/27] gnu: Add rust-gdk4-0.8 Giacomo Leidi via Guix-patches via
2024-10-22 23:31   ` [bug#73956] [PATCH rust-team 21/27] gnu: Add rust-graphene-sys-0.19 Giacomo Leidi via Guix-patches via
2024-10-22 23:31   ` [bug#73956] [PATCH rust-team 22/27] gnu: Add rust-gsk4-sys-0.8 Giacomo Leidi via Guix-patches via
2024-10-22 23:31   ` [bug#73956] [PATCH rust-team 23/27] gnu: Add rust-graphene-rs-0.19 Giacomo Leidi via Guix-patches via
2024-10-22 23:31   ` [bug#73956] [PATCH rust-team 24/27] gnu: Add rust-gsk4-0.8 Giacomo Leidi via Guix-patches via
2024-10-22 23:31   ` Giacomo Leidi via Guix-patches via [this message]
2024-10-22 23:31   ` [bug#73956] [PATCH rust-team 26/27] gnu: Add rust-gtk4-0.8 and rust-gtk4-macros-0.8 Giacomo Leidi via Guix-patches via
2024-10-22 23:31   ` [bug#73956] [PATCH rust-team 27/27] gnu: Add rust-libadwaita-0.6 Giacomo Leidi via Guix-patches via

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

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=c20ff57c3c26aff9fecf4ad379a4d1b56ac6cb1f.1729639872.git.goodoldpaul@autistici.org \
    --to=guix-patches@gnu.org \
    --cc=73956@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    --cc=goodoldpaul@autistici.org \
    /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 public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).