* [bug#51998] [PATCH] gnu: Add guile-gitlab
@ 2021-11-20 14:13 Artyom V. Poptsov
2021-11-25 11:28 ` Mathieu Othacehe
0 siblings, 1 reply; 8+ messages in thread
From: Artyom V. Poptsov @ 2021-11-20 14:13 UTC (permalink / raw)
To: 51998
[-- Attachment #1.1: Type: text/plain, Size: 263 bytes --]
Hello Guixers,
here's my first patch for GNU Guix that adds Guile-GitLab[1] -- my Guile
module that allows to interact with GitLab Community Edition REST API
and provides a useful tool for that.
Thanks,
- avp
1. https://github.com/artyom-poptsov/guile-gitlab
[-- Attachment #1.2: 0001-gnu-Add-guile-gitlab.patch --]
[-- Type: text/x-diff, Size: 2990 bytes --]
From 6702a25439e480b45432915f68b64f7177c53fa0 Mon Sep 17 00:00:00 2001
From: "Artyom V. Poptsov" <poptsov.artyom@gmail.com>
Date: Sat, 20 Nov 2021 15:32:10 +0300
Subject: [PATCH] gnu: Add guile-gitlab
* gnu/packages/guile-xyz.scm (guile-gitlab): Add new package.
---
gnu/packages/guile-xyz.scm | 47 ++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 628d81710a..65e30c2618 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -38,6 +38,7 @@
;;; Copyright © 2021 Leo Le Bouter <lle-bout@zaclys.net>
;;; Copyright © 2021 Zelphir Kaltstahl <zelphirkaltstahl@posteo.de>
;;; Copyright © 2021 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2021 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -4795,3 +4796,49 @@ It provides a generic library for writing implementations of a netlink
protocol, a low-level rtnetlink implementation that uses that library and a
high-level API for network management that uses rtnetlink.")
(license license:gpl3+)))
+
+(define-public guile-gitlab
+ (package
+ (name "guile-gitlab")
+ (version "0.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/artyom-poptsov/guile-gitlab.git")
+ (commit (string-append "v" version))))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32
+ "1vpwwnxxglla8ci9mz6smm3nyqvdz2k082qyrp36ad14v9y70l86"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("pkg-config" ,pkg-config)
+ ("texinfo" ,texinfo)))
+ (inputs `(("guile" ,guile-2.2)
+ ("guile-json" ,guile-json-1)
+ ("guile-gnutls" ,guile2.2-gnutls)))
+ (propagated-inputs `(("guile-lib" ,guile2.2-lib)))
+ (arguments
+ '(#:phases (modify-phases %standard-phases
+ (add-before 'configure 'set-guilesitedir
+ (let ((files (find-files "." "Makefile.in")))
+ (lambda _
+ (substitute* files
+ (("^guilesitedir =.*$")
+ "guilesitedir = \
+$(datadir)/guile/site/$(GUILE_EFFECTIVE_VERSION)\n"))
+ #t)))
+ (add-after 'unpack 'autoreconf
+ (lambda _
+ (zero? (system* "autoreconf" "-vfi")))))))
+ (home-page "https://github.com/artyom-poptsov/guile-gitlab")
+ (synopsis "GitLab module for Guile")
+ (description
+ "GNU Guile interface to GitLab Community Edition REST API.
+
+This package provides @samp{gitlab-cli} command line tool for interacting with
+a GitLab instance.")
+ (license license:gpl3)))
--
2.25.1
[-- Attachment #1.3: Type: text/plain, Size: 205 bytes --]
--
Artyom "avp" Poptsov <poptsov.artyom@gmail.com>
Home page: https://memory-heap.org/~avp/
CADR Hackerspace co-founder: https://cadrspace.ru/
GPG: D0C2 EAC1 3310 822D 98DE B57C E9C5 A2D9 0898 A02F
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [bug#51998] [PATCH] gnu: Add guile-gitlab
2021-11-20 14:13 [bug#51998] [PATCH] gnu: Add guile-gitlab Artyom V. Poptsov
@ 2021-11-25 11:28 ` Mathieu Othacehe
2021-11-26 19:20 ` Artyom V. Poptsov
0 siblings, 1 reply; 8+ messages in thread
From: Mathieu Othacehe @ 2021-11-25 11:28 UTC (permalink / raw)
To: Artyom V. Poptsov; +Cc: 51998
Hello Artyom,
Thanks for this first contribution! I think that there is a small issue
with the library path. The gitlab.scm files is in:
--8<---------------cut here---------------start------------->8---
/gnu/store/xn0bnrh23iscxy7xsvzqffyjy4wqy1q6-guile-gitlab-0.1.0/share/guile-gitlab/gitlab.scm
--8<---------------cut here---------------end--------------->8---
whereas it should be in:
--8<---------------cut here---------------start------------->8---
/gnu/store/xn0bnrh23iscxy7xsvzqffyjy4wqy1q6-guile-gitlab-0.1.0/share/guile/site/2.2/gitlab.scm
--8<---------------cut here---------------end--------------->8---
I also have the following error when running gitlab-cli:
--8<---------------cut here---------------start------------->8---
0 (scm-error misc-error #f "~A ~S" ("no code for modu…" …) …)
ERROR: In procedure scm-error:
no code for module (gitlab)
--8<---------------cut here---------------end--------------->8---
that should be solved by adjusting the library path.
Thanks,
Mathieu
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#51998] [PATCH] gnu: Add guile-gitlab
2021-11-25 11:28 ` Mathieu Othacehe
@ 2021-11-26 19:20 ` Artyom V. Poptsov
2021-11-27 11:21 ` Mathieu Othacehe
0 siblings, 1 reply; 8+ messages in thread
From: Artyom V. Poptsov @ 2021-11-26 19:20 UTC (permalink / raw)
To: Mathieu Othacehe; +Cc: 51998
[-- Attachment #1.1: Type: text/plain, Size: 116 bytes --]
Hello Mathieu,
thank you for the feedback.
I fixed my patch, please find the updated version attached.
- Artyom
[-- Attachment #1.2: 0001-gnu-Add-guile-gitlab.patch --]
[-- Type: text/x-diff, Size: 4383 bytes --]
From 2e53ae7cda8d704d38633636f6e602abe411498c Mon Sep 17 00:00:00 2001
From: "Artyom V. Poptsov" <poptsov.artyom@gmail.com>
Date: Sat, 20 Nov 2021 15:32:10 +0300
Subject: [PATCH] gnu: Add guile-gitlab
* gnu/packages/guile-xyz.scm (guile-gitlab): Add new package.
---
gnu/packages/guile-xyz.scm | 69 ++++++++++++++++++++++++++++++++++++++
1 file changed, 69 insertions(+)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 628d81710a..5aae47da1d 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -38,6 +38,7 @@
;;; Copyright © 2021 Leo Le Bouter <lle-bout@zaclys.net>
;;; Copyright © 2021 Zelphir Kaltstahl <zelphirkaltstahl@posteo.de>
;;; Copyright © 2021 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2021 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -4795,3 +4796,71 @@ It provides a generic library for writing implementations of a netlink
protocol, a low-level rtnetlink implementation that uses that library and a
high-level API for network management that uses rtnetlink.")
(license license:gpl3+)))
+
+(define-public guile-gitlab
+ (package
+ (name "guile-gitlab")
+ (version "0.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/artyom-poptsov/guile-gitlab")
+ (commit (string-append "v" version))))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32
+ "1vpwwnxxglla8ci9mz6smm3nyqvdz2k082qyrp36ad14v9y70l86"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; no tests
+ #:modules (((guix build guile-build-system)
+ #:select (target-guile-effective-version))
+ ,@%gnu-build-system-modules)
+ #:imported-modules ((guix build guile-build-system)
+ ,@%gnu-build-system-modules)
+ #:phases (modify-phases %standard-phases
+ (add-before 'configure 'set-guilesitedir
+ (lambda _
+ (substitute* (find-files "." "Makefile.in")
+ (("^guilesitedir = .*$")
+ "guilesitedir = \
+$(datadir)/guile/site/$(GUILE_EFFECTIVE_VERSION)\n")
+ (("guilemoduledir =.*guile/site" all)
+ (string-append all "/@GUILE_EFFECTIVE_VERSION@")))
+ #t))
+ (add-after 'install 'wrap-program
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (bin (string-append out "/bin"))
+ (guile-lib (assoc-ref inputs "guile-lib"))
+ (version (target-guile-effective-version))
+ (scm (string-append "/share/guile/site/"
+ version))
+ (go (string-append "/lib/guile/"
+ version "/site-ccache")))
+ (wrap-program (string-append bin "/gitlab-cli")
+ `("GUILE_LOAD_PATH" prefix
+ (,(string-append out scm)
+ ,(string-append guile-lib scm)))
+ `("GUILE_LOAD_COMPILED_PATH" prefix
+ (,(string-append out go)
+ ,(string-append guile-lib go)))))
+ #t)))))
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("pkg-config" ,pkg-config)
+ ("texinfo" ,texinfo)))
+ (inputs `(("guile" ,guile-2.2)
+ ("guile-json" ,guile-json-1)
+ ("guile-gnutls" ,guile2.2-gnutls)))
+ (propagated-inputs `(("guile-lib" ,guile2.2-lib)))
+ (home-page "https://github.com/artyom-poptsov/guile-gitlab")
+ (synopsis "GitLab module for Guile")
+ (description
+ "GNU Guile interface to GitLab Community Edition REST API.
+
+This package provides @samp{gitlab-cli} command line tool for interacting with
+a GitLab instance.")
+ (license license:gpl3)))
--
2.25.1
[-- Attachment #1.3: Type: text/plain, Size: 207 bytes --]
--
Artyom "avp" Poptsov <poptsov.artyom@gmail.com>
Home page: https://memory-heap.org/~avp/
CADR Hackerspace co-founder: https://cadrspace.ru/
GPG: D0C2 EAC1 3310 822D 98DE B57C E9C5 A2D9 0898 A02F
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [bug#51998] [PATCH] gnu: Add guile-gitlab
2021-11-26 19:20 ` Artyom V. Poptsov
@ 2021-11-27 11:21 ` Mathieu Othacehe
2021-11-27 19:02 ` Artyom V. Poptsov
0 siblings, 1 reply; 8+ messages in thread
From: Mathieu Othacehe @ 2021-11-27 11:21 UTC (permalink / raw)
To: Artyom V. Poptsov; +Cc: 51998
Привет Артём,
Спасибо за вторую версию.
> + (substitute* (find-files "." "Makefile.in")
> + (("^guilesitedir = .*$")
> + "guilesitedir = \
> +$(datadir)/guile/site/$(GUILE_EFFECTIVE_VERSION)\n")
> + (("guilemoduledir =.*guile/site" all)
Any reason not to write this directly in the project Makefile.am? For
instance, in Guile-Parted Makefile.am, there is:
--8<---------------cut here---------------start------------->8---
include guile.am
moddir=$(prefix)/share/guile/site/$(GUILE_EFFECTIVE_VERSION)
godir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/site-ccache
--8<---------------cut here---------------end--------------->8---
Thanks,
Mathieu
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#51998] [PATCH] gnu: Add guile-gitlab
2021-11-27 11:21 ` Mathieu Othacehe
@ 2021-11-27 19:02 ` Artyom V. Poptsov
2021-11-28 10:04 ` bug#51998: " Mathieu Othacehe
0 siblings, 1 reply; 8+ messages in thread
From: Artyom V. Poptsov @ 2021-11-27 19:02 UTC (permalink / raw)
To: Mathieu Othacehe; +Cc: 51998
[-- Attachment #1.1: Type: text/plain, Size: 364 bytes --]
Hello Mathieu,
I just released Guile-GitLab 0.2.0[1] with fixed Autotools scripts. Thanks
for the hints, I appreciate it.
Could you please check if my package is OK?
- Artyom
P.S.
> Спасибо за вторую версию.
Ты знаешь русский язык?
1. https://github.com/artyom-poptsov/guile-gitlab/releases/tag/v0.2.0
[-- Attachment #1.2: 0001-gnu-Add-guile-gitlab.patch --]
[-- Type: text/x-diff, Size: 3926 bytes --]
From 146fb0e85382ba58e324af99b4bef39a261c0da0 Mon Sep 17 00:00:00 2001
From: "Artyom V. Poptsov" <poptsov.artyom@gmail.com>
Date: Sat, 20 Nov 2021 15:32:10 +0300
Subject: [PATCH] gnu: Add guile-gitlab
* gnu/packages/guile-xyz.scm (guile-gitlab): Add new package.
---
gnu/packages/guile-xyz.scm | 61 ++++++++++++++++++++++++++++++++++++++
1 file changed, 61 insertions(+)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 628d81710a..841fd49f18 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -38,6 +38,7 @@
;;; Copyright © 2021 Leo Le Bouter <lle-bout@zaclys.net>
;;; Copyright © 2021 Zelphir Kaltstahl <zelphirkaltstahl@posteo.de>
;;; Copyright © 2021 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2021 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -4795,3 +4796,63 @@ It provides a generic library for writing implementations of a netlink
protocol, a low-level rtnetlink implementation that uses that library and a
high-level API for network management that uses rtnetlink.")
(license license:gpl3+)))
+
+(define-public guile-gitlab
+ (package
+ (name "guile-gitlab")
+ (version "0.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/artyom-poptsov/guile-gitlab")
+ (commit (string-append "v" version))))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32
+ "1yq8w507vw9n7f626sbnsk8prsdk337d6acr7f9k3j500lhlvxj5"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:modules (((guix build guile-build-system)
+ #:select (target-guile-effective-version))
+ ,@%gnu-build-system-modules)
+ #:imported-modules ((guix build guile-build-system)
+ ,@%gnu-build-system-modules)
+ #:phases (modify-phases %standard-phases
+ (add-after 'install 'wrap-program
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (bin (string-append out "/bin"))
+ (guile-lib (assoc-ref inputs "guile-lib"))
+ (version (target-guile-effective-version))
+ (scm (string-append "/share/guile/site/"
+ version))
+ (go (string-append "/lib/guile/"
+ version "/site-ccache")))
+ (wrap-program (string-append bin "/gitlab-cli")
+ `("GUILE_LOAD_PATH" prefix
+ (,(string-append out scm)
+ ,(string-append guile-lib scm)))
+ `("GUILE_LOAD_COMPILED_PATH" prefix
+ (,(string-append out go)
+ ,(string-append guile-lib go)))))
+ #t)))))
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("pkg-config" ,pkg-config)
+ ("texinfo" ,texinfo)))
+ (inputs
+ `(("guile" ,guile-2.2)
+ ("guile-json" ,guile-json-1)
+ ("guile-gnutls" ,guile2.2-gnutls)))
+ (propagated-inputs
+ `(("guile-lib" ,guile2.2-lib)))
+ (home-page "https://github.com/artyom-poptsov/guile-gitlab")
+ (synopsis "GitLab module for Guile")
+ (description
+ "GNU Guile interface to GitLab Community Edition REST API.
+
+This package provides @samp{gitlab-cli} command line tool for interacting with
+a GitLab instance.")
+ (license license:gpl3)))
--
2.25.1
[-- Attachment #1.3: Type: text/plain, Size: 207 bytes --]
--
Artyom "avp" Poptsov <poptsov.artyom@gmail.com>
Home page: https://memory-heap.org/~avp/
CADR Hackerspace co-founder: https://cadrspace.ru/
GPG: D0C2 EAC1 3310 822D 98DE B57C E9C5 A2D9 0898 A02F
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply related [flat|nested] 8+ messages in thread
* bug#51998: [PATCH] gnu: Add guile-gitlab
2021-11-27 19:02 ` Artyom V. Poptsov
@ 2021-11-28 10:04 ` Mathieu Othacehe
2021-11-28 18:07 ` [bug#51998] " Artyom V. Poptsov
0 siblings, 1 reply; 8+ messages in thread
From: Mathieu Othacehe @ 2021-11-28 10:04 UTC (permalink / raw)
To: Artyom V. Poptsov; +Cc: 51998-done
Hello Artyom,
I edited a bit the package definition:
* Added bash-minimal to the inputs as suggested by "guix lint".
* Moved guile-lib to the inputs.
* Added json and tls to the wrap so that they can always be found.
* Wrapped a few lines.
and pushed as a0352562505cfced63ca415e2bb4cbce29f7fc35.
Note that I also have the following error on two different Gitlab
servers:
--8<---------------cut here---------------start------------->8---
mathieu@meije ~/guix [env]$ gitlab-cli project list --token "xxx" --server "https://gitlab.com"
Backtrace:
4 (apply-smob/1 #<catch-closure 7fc671915920>)
In ice-9/boot-9.scm:
705:2 3 (call-with-prompt _ _ #<procedure default-prompt-handle?>)
In ice-9/eval.scm:
619:8 2 (_ #(#(#<directory (guile-user) 7fc6715ad140>)))
In gitlab/cli/project.scm:
116:19 1 (gitlab-cli-project/list _ _)
In gitlab/api/common.scm:
74:21 0 (api-get #<<session> 7fc6715e2cf0> "/api/v4/projects" # ?)
gitlab/api/common.scm:74:21: In procedure api-get:
In procedure vector-length: Wrong type argument in position 1 (expecting
vector): (#<hash-table 7fc67039eda0 91/113> #<hash-table 7fc67067e060
91/113> #<hash-table 7fc67032a8e0 91/113> #<hash-table 7fc670376e20
91/113> #<hash-table 7fc67039062 ...
--8<---------------cut here---------------end--------------->8---
Are you expecting a specific Gitlab revision or the error is elsewhere?
Thanks,
Mathieu
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#51998] [PATCH] gnu: Add guile-gitlab
2021-11-28 10:04 ` bug#51998: " Mathieu Othacehe
@ 2021-11-28 18:07 ` Artyom V. Poptsov
2021-11-28 21:36 ` Mathieu Othacehe
0 siblings, 1 reply; 8+ messages in thread
From: Artyom V. Poptsov @ 2021-11-28 18:07 UTC (permalink / raw)
To: Mathieu Othacehe; +Cc: 51998-done
[-- Attachment #1.1: Type: text/plain, Size: 965 bytes --]
Hello Mathieu,
> I edited a bit the package definition:
> * Added bash-minimal to the inputs as suggested by "guix lint".
> * Moved guile-lib to the inputs.
> * Added json and tls to the wrap so that they can always be found.
> * Wrapped a few lines.
> and pushed as a0352562505cfced63ca415e2bb4cbce29f7fc35.
Thanks for helping me with this package! I'm looking forward to package
other projects for GNU Guix in the near future.
> Note that I also have the following error on two different Gitlab
> servers:
that's strange as I don's see this error; tested 'gitlab-cli' on two
servers as well -- one where I have admin rights and gitlab.com with a
regular non-admin token.
I think I need to investigate the problem further, but for now I fixed
another bug that lead to 'guile-cli' fails if a user passed non-existing
command (like "projects" instead of "project".)
So here's a patch attached that updates Guile-GitLab to 0.2.1 with this
bugfix.
- Artyom
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-guile-gitlab-Update-to-0.2.1.patch --]
[-- Type: text/x-diff, Size: 1261 bytes --]
From c932be626bdfc0c74d4d366fd0fe4a65de200a7f Mon Sep 17 00:00:00 2001
From: "Artyom V. Poptsov" <poptsov.artyom@gmail.com>
Date: Sun, 28 Nov 2021 20:54:45 +0300
Subject: [PATCH] gnu: guile-gitlab: Update to 0.2.1
* gnu/packages/guile-xyz.scm (guile-gitlab): Update to 0.2.1.
---
gnu/packages/guile-xyz.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 841fd49f18..658f810be8 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -4800,7 +4800,7 @@ high-level API for network management that uses rtnetlink.")
(define-public guile-gitlab
(package
(name "guile-gitlab")
- (version "0.2.0")
+ (version "0.2.1")
(source
(origin
(method git-fetch)
@@ -4810,7 +4810,7 @@ high-level API for network management that uses rtnetlink.")
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
- "1yq8w507vw9n7f626sbnsk8prsdk337d6acr7f9k3j500lhlvxj5"))))
+ "0srkmchd4kmfa7q65r6fdzwklhgdlck1ll0s7smzs8ddjdgz2lwm"))))
(build-system gnu-build-system)
(arguments
`(#:modules (((guix build guile-build-system)
--
2.25.1
[-- Attachment #1.3: Type: text/plain, Size: 207 bytes --]
--
Artyom "avp" Poptsov <poptsov.artyom@gmail.com>
Home page: https://memory-heap.org/~avp/
CADR Hackerspace co-founder: https://cadrspace.ru/
GPG: D0C2 EAC1 3310 822D 98DE B57C E9C5 A2D9 0898 A02F
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [bug#51998] [PATCH] gnu: Add guile-gitlab
2021-11-28 18:07 ` [bug#51998] " Artyom V. Poptsov
@ 2021-11-28 21:36 ` Mathieu Othacehe
0 siblings, 0 replies; 8+ messages in thread
From: Mathieu Othacehe @ 2021-11-28 21:36 UTC (permalink / raw)
To: Artyom V. Poptsov; +Cc: 51998-done
Hey,
> I think I need to investigate the problem further, but for now I fixed
> another bug that lead to 'guile-cli' fails if a user passed non-existing
> command (like "projects" instead of "project".)
Nice, also experienced that issue. Regarding the issue I reported, this
is related to the Guile-Json version. Seems that you are assuming array
data to be represented as vectors whereas with Guile-Json 1 they are
represented as lists.
I took the liberty to switch to guile2.2-json package that uses Guile
Json 4.5.2 and applied your patch.
Thanks,
Mathieu
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2021-11-28 21:37 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-20 14:13 [bug#51998] [PATCH] gnu: Add guile-gitlab Artyom V. Poptsov
2021-11-25 11:28 ` Mathieu Othacehe
2021-11-26 19:20 ` Artyom V. Poptsov
2021-11-27 11:21 ` Mathieu Othacehe
2021-11-27 19:02 ` Artyom V. Poptsov
2021-11-28 10:04 ` bug#51998: " Mathieu Othacehe
2021-11-28 18:07 ` [bug#51998] " Artyom V. Poptsov
2021-11-28 21:36 ` Mathieu Othacehe
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).