unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Aaron Covrig via Guix-patches via <guix-patches@gnu.org>
To: 74234@debbugs.gnu.org
Cc: Aaron Covrig <aaron.covrig.us@ieee.org>
Subject: [bug#74234] [PATCH rust-team v3 11/23] gnu: Add rust-svg-metadata-0.5.
Date: Sun,  8 Dec 2024 20:11:35 -0500	[thread overview]
Message-ID: <20241209011150.1455224-12-aaron.covrig.us@ieee.org> (raw)
In-Reply-To: <20241209011150.1455224-1-aaron.covrig.us@ieee.org>

* gnu/packages/crates-graphics.scm (rust-svg-metadata-0.5): New variable.
---
 gnu/packages/crates-graphics.scm | 37 ++++++++++++++++++++++++--------
 1 file changed, 28 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/crates-graphics.scm b/gnu/packages/crates-graphics.scm
index f95dc7b0a4..20bf6f2ab1 100644
--- a/gnu/packages/crates-graphics.scm
+++ b/gnu/packages/crates-graphics.scm
@@ -4525,8 +4525,35 @@ (define-public rust-softbuffer-0.3
                (setenv "DISPLAY" display)
                (system (string-append xvfb " " display " &"))))))))))
 
+(define-public rust-svg-metadata-0.5
+  (package
+    (name "rust-svg-metadata")
+    (version "0.5.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "svg_metadata" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0717wb4zkj5qdypg58zs7m1x45i49pdrhzga0k0wvqn2g2y7qk17"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs (("rust-doc-comment" ,rust-doc-comment-0.3)
+                       ("rust-once-cell" ,rust-once-cell-1)
+                       ("rust-regex" ,rust-regex-1)
+                       ("rust-roxmltree" ,rust-roxmltree-0.20))
+       #:cargo-development-inputs (("rust-doc-comment" ,rust-doc-comment-0.3))))
+    (home-page "https://github.com/mre/svg-metadata")
+    (synopsis
+     "Extracts metadata (like the viewBox, width, and height) from SVG graphics")
+    (description
+     "This package provides Extracts metadata (like the @code{viewBox}, width,
+and height) from SVG graphics.")
+    (license (list license:asl2.0 license:expat))))
+
 (define-public rust-svg-metadata-0.4
   (package
+    (inherit rust-svg-metadata-0.5)
     (name "rust-svg-metadata")
     (version "0.4.4")
     (source
@@ -4536,7 +4563,6 @@ (define-public rust-svg-metadata-0.4
        (file-name (string-append name "-" version ".tar.gz"))
        (sha256
         (base32 "002j0na1kfz4pgi43hdcz5baygzk6irnjd5lrmbqqfjldwn3sbx4"))))
-    (build-system cargo-build-system)
     (arguments
      `(#:cargo-test-flags '("--"
                             ;; error[E0432]: unresolved import `svg_metadata`
@@ -4545,14 +4571,7 @@ (define-public rust-svg-metadata-0.4
                        ("rust-lazy-static" ,rust-lazy-static-1)
                        ("rust-regex" ,rust-regex-1)
                        ("rust-roxmltree" ,rust-roxmltree-0.18))
-       #:cargo-development-inputs (("rust-skeptic" ,rust-skeptic-0.13))))
-    (home-page "https://github.com/mre/svg-metadata")
-    (synopsis
-     "Extracts metadata (like the viewBox, width, and height) from SVG graphics")
-    (description
-     "This package provides Extracts metadata (like the @code{viewBox}, width,
-and height) from SVG graphics.")
-    (license (list license:asl2.0 license:expat))))
+       #:cargo-development-inputs (("rust-skeptic" ,rust-skeptic-0.13))))))
 
 (define-public rust-tiff-0.9
   (package
-- 
2.47.0





  parent reply	other threads:[~2024-12-09  1:17 UTC|newest]

Thread overview: 66+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-06 20:48 [bug#74234] [PATCH rust-team] Add gnome-authenticator paul via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 01/20] gnu: Add rust-ashpd-0.6 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 02/20] gnu: Add rust-migrations-internals-2 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 03/20] gnu: Add rust-migrations-macros-2 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 04/20] gnu: Add rust-diesel-migrations-2 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 05/20] gnu: Add rust-blocking-1.5 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 06/20] gnu: Add rust-oo7-0.2 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 07/20] gnu: Add rust-percent-encoding-2.1 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 08/20] gnu: Add rust-checked-int-cast-1 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 09/20] gnu: Add rust-qrencode-0.14 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 10/20] gnu: Add rust-search-provider-0.6 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 11/20] gnu: Add rust-enum-ordinalize-derive-4 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 12/20] gnu: Add rust-enum-ordinalize-4 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 13/20] gnu: Add rust-qrcodegen-1 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 14/20] gnu: Add rust-manifest-dir-macros-0.1 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 15/20] gnu: Add rust-qrcode-generator-4 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 16/20] gnu: Add rust-zbar-rust-0.0 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 17/20] gnu: Add rust-roxmltree-0.20 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 18/20] gnu: Add rust-roxmltree-0.18 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 19/20] gnu: Add rust-svg-metadata-0.4 Giacomo Leidi via Guix-patches via
2024-11-06 20:50   ` [bug#74234] [PATCH rust-team 20/20] gnu: Add gnome-authenticator Giacomo Leidi via Guix-patches via
2024-11-07 22:26 ` [bug#74234] [PATCH rust-team] " paul via Guix-patches via
2024-11-07 22:26 ` [bug#74234] [PATCHv2 rust-team 01/20] gnu: Add rust-ashpd-0.6 Giacomo Leidi via Guix-patches via
2024-11-07 22:26   ` [bug#74234] [PATCHv2 rust-team 02/20] gnu: Add rust-migrations-internals-2 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 03/20] gnu: Add rust-migrations-macros-2 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 04/20] gnu: Add rust-diesel-migrations-2 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 05/20] gnu: Add rust-blocking-1.5 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 06/20] gnu: Add rust-oo7-0.2 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 07/20] gnu: Add rust-percent-encoding-2.1 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 08/20] gnu: Add rust-checked-int-cast-1 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 09/20] gnu: Add rust-qrencode-0.14 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 10/20] gnu: Add rust-search-provider-0.6 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 11/20] gnu: Add rust-enum-ordinalize-derive-4 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 12/20] gnu: Add rust-enum-ordinalize-4 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 13/20] gnu: Add rust-qrcodegen-1 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 14/20] gnu: Add rust-manifest-dir-macros-0.1 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 15/20] gnu: Add rust-qrcode-generator-4 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 16/20] gnu: Add rust-zbar-rust-0.0 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 17/20] gnu: Add rust-roxmltree-0.20 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 18/20] gnu: Add rust-roxmltree-0.18 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 19/20] gnu: Add rust-svg-metadata-0.4 Giacomo Leidi via Guix-patches via
2024-11-07 22:27   ` [bug#74234] [PATCHv2 rust-team 20/20] gnu: Add gnome-authenticator Giacomo Leidi via Guix-patches via
2024-12-09  1:11 ` [bug#74234] [PATCH rust-team v3 00/23] WIP add gnome-authenticator Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 01/23] gnu: Add rust-migrations-internals-2 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 02/23] gnu: Add rust-migrations-macros-2 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 03/23] gnu: Add rust-diesel-migrations-2 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 04/23] gnu: Add rust-search-provider-0.6 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 05/23] gnu: Add rust-manifest-dir-macros-0.1 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 06/23] gnu: rust-xmlparser-0.13: Upgrade to v0.13.6 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 07/23] gnu: Add rust-roxmltree-0.18 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 08/23] gnu: Add rust-roxmltree-0.14: Upgrade to v0.14.1 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 09/23] gnu: Add rust-roxmltree-0.20 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 10/23] gnu: Add rust-svg-metadata-0.4 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` Aaron Covrig via Guix-patches via [this message]
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 12/23] gnu: Add rust-checked-int-cast-1 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 13/23] gnu: Add rust-qrencode-0.14 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 14/23] gnu: Add rust-qrcode-0.14 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 15/23] gnu: Add rust-enum-ordinalize-derive-4 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 16/23] gnu: Add rust-enum-ordinalize-4 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 17/23] gnu: Add rust-qrcodegen-1 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 18/23] gnu: Add rust-qrcode-generator-4 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 19/23] gnu: Add rust-qrcode-generator-5 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 20/23] gnu: Add rust-zbar-rust-0.0 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 21/23] gnu: Add rust-oo7-0.2 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 22/23] gnu: Add rust-ashpd-0.6 Aaron Covrig via Guix-patches via
2024-12-09  1:11   ` [bug#74234] [PATCH rust-team v3 23/23] gnu: Add gnome-authenticator Aaron Covrig 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=20241209011150.1455224-12-aaron.covrig.us@ieee.org \
    --to=guix-patches@gnu.org \
    --cc=74234@debbugs.gnu.org \
    --cc=aaron.covrig.us@ieee.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).