* [bug#75309] [PATCH] gnu: dico: Update to 2.12, gcide: Update to 0.54.
@ 2025-01-03 8:13 Andy Tai
2025-01-16 12:24 ` Ludovic Courtès
0 siblings, 1 reply; 3+ messages in thread
From: Andy Tai @ 2025-01-03 8:13 UTC (permalink / raw)
To: 75309; +Cc: Andy Tai
* gnu/packages/dico.scm (dico): Update to 2.12.
* gnu/packages/dictionaries.scm (gcide): Update to 0.54.
Change-Id: I5e8bcc47c996642dd3b5a840f390debdfd3280e4
---
gnu/packages/dico.scm | 4 ++--
gnu/packages/dictionaries.scm | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/dico.scm b/gnu/packages/dico.scm
index 9f8c5cccc1..af0b6fd348 100644
--- a/gnu/packages/dico.scm
+++ b/gnu/packages/dico.scm
@@ -41,14 +41,14 @@ (define-module (gnu packages dico)
(define-public dico
(package
(name "dico")
- (version "2.11")
+ (version "2.12")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnu/dico/dico-"
version ".tar.xz"))
(sha256
(base32
- "0nic4mggc0yhms130k7x4qp5k9c42fwg6n8hmk5cmynh6gi9h7xc"))))
+ "1xvahrav8aml90qcj4cj3a33y0n7nm1k0ywgks1zy2q91v2qk2vj"))))
(build-system gnu-build-system)
(arguments
'(#:configure-flags (list (string-append "--with-guile-site-dir=" %output
diff --git a/gnu/packages/dictionaries.scm b/gnu/packages/dictionaries.scm
index 21c3f668d2..a046764b21 100644
--- a/gnu/packages/dictionaries.scm
+++ b/gnu/packages/dictionaries.scm
@@ -119,14 +119,14 @@ (define-public vera
(define-public gcide
(package
(name "gcide")
- (version "0.53")
+ (version "0.54")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://gnu/gcide/gcide-" version ".tar.xz"))
(sha256
(base32
- "17rigzfmih5i1z5s5v1hdr1jw8rngf40768kblnh5kp19ncbvb6k"))))
+ "0hhxqlkgp3kkin4pqzfgfd24ckai29sm9dw8qc6icnqp6rpnyh92"))))
(build-system copy-build-system)
(arguments
'(#:install-plan
base-commit: a707ebe5d3875a49523bc17de2d36af6f1c18f7e
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#75309] [PATCH] gnu: dico: Update to 2.12, gcide: Update to 0.54.
2025-01-03 8:13 [bug#75309] [PATCH] gnu: dico: Update to 2.12, gcide: Update to 0.54 Andy Tai
@ 2025-01-16 12:24 ` Ludovic Courtès
2025-01-19 0:08 ` Andy Tai
0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2025-01-16 12:24 UTC (permalink / raw)
To: Andy Tai; +Cc: 75309
Andy Tai <atai@atai.org> skribis:
> * gnu/packages/dico.scm (dico): Update to 2.12.
> * gnu/packages/dictionaries.scm (gcide): Update to 0.54.
>
> Change-Id: I5e8bcc47c996642dd3b5a840f390debdfd3280e4
Hi! I split it in two commits, since the two upgrades are unrelated.
However, the dico upgrade breaks its system test:
--8<---------------cut here---------------start------------->8---
$ make check-system TESTS=dicod
[…]
Test begin:
test-name: "connect"
source-file: "/gnu/store/qyzjhz26fj846hsxfh4jnzsxvhmxc4h3-dicod-builder"
source-line: 1
source-form: (test-assert "connect" (let ((addr (make-socket-address AF_INET INADDR_LOOPBACK )
Test end:
result-kind: pass
actual-value: #<eof>
Test begin:
test-name: "CLIENT"
source-file: "/gnu/store/qyzjhz26fj846hsxfh4jnzsxvhmxc4h3-dicod-builder"
source-line: 1
source-form: (test-equal "CLIENT" "250 ok\r\n" (begin (display "CLIENT \"GNU Guile\"\r\n" %di)
Test end:
result-kind: fail
actual-value: #<eof>
expected-value: "250 ok\r\n"
Test begin:
test-name: "DEFINE"
source-file: "/gnu/store/qyzjhz26fj846hsxfh4jnzsxvhmxc4h3-dicod-builder"
source-line: 1
source-form: (test-assert "DEFINE" (begin (display "DEFINE ! hello\r\n" %dico-socket) (displa)
Test end:
result-kind: fail
actual-value: #f
actual-error: (system-error "fport_write" "~A" ("Broken pipe") (32))
Group end: dicod
# of expected passes 3
# of unexpected failures 2
--8<---------------cut here---------------end--------------->8---
Could you take a look?
For now I’ve only kept the gcide upgrade.
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [bug#75309] [PATCH] gnu: dico: Update to 2.12, gcide: Update to 0.54.
2025-01-16 12:24 ` Ludovic Courtès
@ 2025-01-19 0:08 ` Andy Tai
0 siblings, 0 replies; 3+ messages in thread
From: Andy Tai @ 2025-01-19 0:08 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 75309
Interesting.... GNU Guix itself has a test for dico
I will take a look
On Thu, Jan 16, 2025 at 4:24 AM Ludovic Courtès <ludo@gnu.org> wrote
> However, the dico upgrade breaks its system test:
>
> --8<---------------cut here---------------start------------->8---
> $ make check-system TESTS=dicod
> […]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-01-19 0:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-03 8:13 [bug#75309] [PATCH] gnu: dico: Update to 2.12, gcide: Update to 0.54 Andy Tai
2025-01-16 12:24 ` Ludovic Courtès
2025-01-19 0:08 ` Andy Tai
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).