diff mbox series

[bug#63207] gnu: guile-smc: Update to 0.6.0 and update the related projects

Message ID 87ttww6nco.fsf@gmail.com
State New
Headers show
Series [bug#63207] gnu: guile-smc: Update to 0.6.0 and update the related projects | expand

Commit Message

Artyom V. Poptsov May 1, 2023, 4:13 p.m. UTC
Hello Guixers,

this patch series updates Guile-SMC along with the related projects.
While I was on it I also fixed cross-building for the updated projects.

- avp

Comments

Ludovic Courtès May 24, 2023, 1:01 p.m. UTC | #1
Hi Artyom,

"Artyom V. Poptsov" <poptsov.artyom@gmail.com> skribis:

> this patch series updates Guile-SMC along with the related projects.
> While I was on it I also fixed cross-building for the updated projects.

Applied the whole series, including the latest guile-png update.

Thanks!

Ludo’.
diff mbox series

Patch

From 0323d4b88daf6ebae4c962a658dd8d8f5a0827a8 Mon Sep 17 00:00:00 2001
From: "Artyom V. Poptsov" <poptsov.artyom@gmail.com>
Date: Mon, 1 May 2023 19:08:24 +0300
Subject: [PATCH 7/7] gnu: guile-png: Fix cross-building.

* gnu/packages/guile-xyz.scm (guile-png)[native-inputs]: Add guile-3.0,
  guile-lib, guile-zlib and guile-smc.
---
 gnu/packages/guile-xyz.scm | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 461e700fb6..241672f377 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -3869,7 +3869,15 @@  (define-public guile-png
                 (string-append "             (png graphics)\n"
                                "             (png fsm context))\n"
                                "(log-clear-handlers!)"))))))))
-    (native-inputs (list autoconf automake pkg-config texinfo))
+    (native-inputs (list autoconf
+                         automake
+                         pkg-config
+                         texinfo
+                         ;; needed when cross-compiling.
+                         guile-3.0
+                         guile-lib
+                         guile-zlib
+                         guile-smc))
     (inputs (list bash-minimal guile-3.0 guile-lib guile-zlib))
     (propagated-inputs (list guile-smc))
     (home-page "https://github.com/artyom-poptsov/guile-png")
-- 
2.34.1