unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#69792] [PATCH] Fix inputs in guile-scheme-json-rpc, update to 0.4.5a
@ 2024-03-14  6:31 Ilya Chernyshov
  2024-03-15 17:10 ` Sharlatan Hellseher
  2024-03-15 23:26 ` bug#69792: " Sharlatan Hellseher
  0 siblings, 2 replies; 3+ messages in thread
From: Ilya Chernyshov @ 2024-03-14  6:31 UTC (permalink / raw)
  To: 69792

[-- Attachment #1: Type: text/plain, Size: 121 bytes --]


Hi. The patch moves guile packages from inputs list to
propagated-inputs, since they are obviously needed at run time.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-guile-scheme-json-rpc-Fix-inputs-update-to-0.4.5.patch --]
[-- Type: text/x-patch, Size: 1754 bytes --]

From 19820f79efce29f32e35ff2b39021f25c39d10c4 Mon Sep 17 00:00:00 2001
From: Ilya Chernyshov <ichernyshovvv@gmail.com>
Date: Mon, 4 Mar 2024 21:14:41 +0700
Subject: [PATCH] gnu: guile-scheme-json-rpc: Fix inputs, update to 0.4.5a

* gnu/packages/guile-xyz.scm (guile-scheme-json-rpc): Move guile packages from
inputs to propagated-inputs.  Update to 0.4.5a version.
---
 gnu/packages/guile-xyz.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 9d683199ac..7a10f9e6d0 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -1088,7 +1088,7 @@ (define-public guile2.2-sjson
 (define-public guile-scheme-json-rpc
   (package
     (name "guile-scheme-json-rpc")
-    (version "0.4.0")
+    (version "0.4.5a")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -1097,14 +1097,15 @@ (define-public guile-scheme-json-rpc
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0jsampz2ahs18z6yh9b5l3lkj8ycnavs0vg9sjngdj3w3zvrdcvm"))))
+                "0356hm6phcfgvwvx3ys6b927v40jzb7qrfgvql7g78na24zp2cmi"))))
     (build-system gnu-build-system)
     (arguments
      `(#:phases (modify-phases %standard-phases
                   (add-after 'unpack 'change-to-guile-dir
                     (lambda _
                       (chdir "guile"))))))
-    (inputs (list guile-3.0 guile-srfi-145 guile-srfi-180))
+    (inputs (list guile-3.0))
+    (propagated-inputs (list guile-srfi-145 guile-srfi-180))
     (native-inputs (list pkg-config))
     (synopsis "Library providing JSON-RPC capability for Guile Scheme")
     (description
-- 
2.41.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#69792] [PATCH] Fix inputs in guile-scheme-json-rpc, update to 0.4.5a
  2024-03-14  6:31 [bug#69792] [PATCH] Fix inputs in guile-scheme-json-rpc, update to 0.4.5a Ilya Chernyshov
@ 2024-03-15 17:10 ` Sharlatan Hellseher
  2024-03-15 23:26 ` bug#69792: " Sharlatan Hellseher
  1 sibling, 0 replies; 3+ messages in thread
From: Sharlatan Hellseher @ 2024-03-15 17:10 UTC (permalink / raw)
  To: 69792

[-- Attachment #1: Type: text/plain, Size: 898 bytes --]


Hi,

Thank you for the patch.

Consider to use 'etc/commiter.scm'  for trivial updates, it will
generate commit message as well.

--8<---------------cut here---------------start------------->8---
[PATCH] gnu: guile-scheme-json-rpc: Fix inputs, update to 0.4.5a

* gnu/packages/guile-xyz.scm (guile-scheme-json-rpc): Move guile packages from
inputs to propagated-inputs.  Update to 0.4.5a version.
--8<---------------cut here---------------end--------------->8---

Format of commit message needs to follow GNU change log, e.g.
--8<---------------cut here---------------start------------->8---
[PATCH] gnu: guile-scheme-json-rpc: Update to 0.4.5a

* gnu/packages/guile-xyz.scm (guile-scheme-json-rpc): Update to 0.4.5a.
[inputs]: Remove guile-srfi-145 guile-srfi-180.
[propagated-inputs]: Add guile-srfi-145 guile-srfi-180.
--8<---------------cut here---------------end--------------->8---

--
Oleg

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#69792: [PATCH] Fix inputs in guile-scheme-json-rpc, update to 0.4.5a
  2024-03-14  6:31 [bug#69792] [PATCH] Fix inputs in guile-scheme-json-rpc, update to 0.4.5a Ilya Chernyshov
  2024-03-15 17:10 ` Sharlatan Hellseher
@ 2024-03-15 23:26 ` Sharlatan Hellseher
  1 sibling, 0 replies; 3+ messages in thread
From: Sharlatan Hellseher @ 2024-03-15 23:26 UTC (permalink / raw)
  To: 69792-done

[-- Attachment #1: Type: text/plain, Size: 77 bytes --]


Hi,

Pushed as 868e21bb76728f460cf16e21fbf38e54df32819f to master.

--
Oleg

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-03-15 23:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-14  6:31 [bug#69792] [PATCH] Fix inputs in guile-scheme-json-rpc, update to 0.4.5a Ilya Chernyshov
2024-03-15 17:10 ` Sharlatan Hellseher
2024-03-15 23:26 ` bug#69792: " Sharlatan Hellseher

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).