GNU bug report logs - #76380
[PATCH ruby-team 0/1] Fix broken packages.

Previous Next

Package: guix-patches;

Reported by: Nicolas Graves <ngraves <at> ngraves.fr>

Date: Tue, 18 Feb 2025 00:31:02 UTC

Severity: normal

Tags: patch

Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 76380 in the body.
You can then email your comments to 76380 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#76380; Package guix-patches. (Tue, 18 Feb 2025 00:31:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Nicolas Graves <ngraves <at> ngraves.fr>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 18 Feb 2025 00:31:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Graves <ngraves <at> ngraves.fr>
To: guix-patches <at> gnu.org
Cc: Nicolas Graves <ngraves <at> ngraves.fr>, sharlatanus <at> gmail.com
Subject: [PATCH ruby-team 0/1] Fix broken packages.
Date: Tue, 18 Feb 2025 01:21:51 +0100
Hi!

This is according to [1] one of the last remaining ruby-team broken
packages, which is quite encouraging!

There are only two ruby-related other failures :
1. ruby-hydra : IIRC, this has no know fix other than disabling tests
and lowering the ruby version (which is what its working minimal
version does).
2. ruby-puma: I can build the package locally. Online, the only
failing test is
TestIntegrationSingle#test_hot_restart_does_not_drop_connections_threads
so the most probable is that it is a flaky test, or that we don't have
enough resources to run the test on the server. I'm not sure what's
the recommended process in this case, because we already have code for
more ressources during the test phase.

Other new failures include skktools, cawbird and cozy, but it looks
unrelated.

[1]: https://ci.guix.gnu.org/eval/2042038?status=newly-failed

Nicolas Graves (1):
  gnu: ruby-terminfo: Update to 0.2-0.f4a597d.

 gnu/packages/ruby.scm | 81 ++++++++++++++++++++++---------------------
 1 file changed, 42 insertions(+), 39 deletions(-)

-- 
2.48.1





Information forwarded to guix-patches <at> gnu.org:
bug#76380; Package guix-patches. (Tue, 18 Feb 2025 00:35:02 GMT) Full text and rfc822 format available.

Message #8 received at 76380 <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Graves <ngraves <at> ngraves.fr>
To: 76380 <at> debbugs.gnu.org
Cc: Nicolas Graves <ngraves <at> ngraves.fr>, sharlatanus <at> gmail.com
Subject: [PATCH] gnu: ruby-terminfo: Update to 0.2-0.f4a597d.
Date: Tue, 18 Feb 2025 01:33:55 +0100
* gnu/packages/ruby.scm (ruby-terminfo): Update to 0.2-0.f4a597d.
---
 gnu/packages/ruby.scm | 81 ++++++++++++++++++++++---------------------
 1 file changed, 42 insertions(+), 39 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 46b48e94ec..3b484e5d56 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -13616,45 +13616,48 @@ (define-public ruby-sass-listen
     (license license:expat)))
 
 (define-public ruby-terminfo
-  (package
-    (name "ruby-terminfo")
-    (version "0.2")
-    (source
-      (origin
-        (method url-fetch)
-        (uri (string-append
-              "http://www.a-k-r.org/" name "/" name "-" version ".tar.gz"))
-        (sha256
-          (base32
-            "1n59dw351z6nzylgj0gpx4rpz6qhf8lrhzcbp1xqfpqvryhaxrjh"))))
-    (build-system ruby-build-system)
-    (arguments
-     (list
-      #:test-target "test"
-      #:phases
-      #~(modify-phases %standard-phases
-          (delete 'replace-git-ls-files)
-          (replace 'build
-            (lambda _
-              (invoke "ruby" "extconf.rb")
-              (invoke "make")))
-          (replace 'check
-            (lambda* (#:key tests? #:allow-other-keys)
-              (when tests?
-                (for-each (lambda (f)
-                            (invoke "ruby" "-I" "test" f))
-                          (find-files "test" "^test_.*\\.rb$")))))
-          (replace 'install
-            (lambda _
-              (invoke "make" "install" (string-append "prefix=" #$output)))))))
-    (inputs
-     (list ncurses))
-    (native-inputs
-     (list ruby-rubygems-tasks ruby-rdoc))
-    (home-page "http://www.a-k-r.org/ruby-terminfo/")
-    (synopsis "Terminfo binding for Ruby")
-    (description "Ruby-terminfo provides terminfo binding for Ruby.")
-    (license license:bsd-3)))
+  (let ((commit "f4a597d92dcc465e7b343f9afb8cd45607c8e969")
+        (revision "0"))
+    (package
+      (name "ruby-terminfo")
+      (version (git-version "0.2" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri
+          (git-reference
+           (url "https://github.com/genki/ruby-terminfo")
+           (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0b24sqf0jwj8m106nh35hjayw1kiyrpramb6vg7fnz32mqni6hdi"))))
+      (build-system ruby-build-system)
+      (arguments
+       (list
+        #:phases
+        #~(modify-phases %standard-phases
+            (delete 'replace-git-ls-files)
+            (replace 'build
+              (lambda _
+                (invoke "ruby" "extconf.rb")
+                (invoke "make")))
+            (replace 'check
+              (lambda* (#:key tests? #:allow-other-keys)
+                (when tests?
+                  (for-each (lambda (f)
+                              (invoke "ruby" "-Ilib:test" "-Ilib:." f))
+                            (find-files "test" "^test_.*\\.rb$")))))
+            (replace 'install
+              (lambda _
+                (invoke "make" "install" (string-append "prefix=" #$output)))))))
+      (inputs
+       (list ncurses))
+      (native-inputs
+       (list ruby-rubygems-tasks ruby-rdoc))
+      (home-page "http://www.a-k-r.org/ruby-terminfo/")
+      (synopsis "Terminfo binding for Ruby")
+      (description "Ruby-terminfo provides terminfo binding for Ruby.")
+      (license license:bsd-3))))
 
 (define-public ruby-diffy
   (package
-- 
2.48.1





Reply sent to Sharlatan Hellseher <sharlatanus <at> gmail.com>:
You have taken responsibility. (Tue, 18 Feb 2025 23:02:02 GMT) Full text and rfc822 format available.

Notification sent to Nicolas Graves <ngraves <at> ngraves.fr>:
bug acknowledged by developer. (Tue, 18 Feb 2025 23:02:03 GMT) Full text and rfc822 format available.

Message #13 received at 76380-done <at> debbugs.gnu.org (full text, mbox):

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: 76380-done <at> debbugs.gnu.org
Subject: [PATCH ruby-team 0/1] Fix broken packages.
Date: Tue, 18 Feb 2025 23:01:49 +0000
[Message part 1 (text/plain, inline)]
Hi,

Pushed to ruby-team with some other fixes.

---
Oleg
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 19 Mar 2025 11:24:26 GMT) Full text and rfc822 format available.

This bug report was last modified 92 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.