GNU bug report logs - #74376
[PATCH 0/2] gnu: ruby-rubocop-ast: Update to 1.36.1.

Previous Next

Package: guix-patches;

Reported by: gemmaro <gemmaro.dev <at> gmail.com>

Date: Sat, 16 Nov 2024 01:11:02 UTC

Severity: normal

Tags: patch

Done: Andreas Enge <andreas <at> enge.fr>

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 74376 in the body.
You can then email your comments to 74376 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 <at> cbaines.net, guix-patches <at> gnu.org:
bug#74376; Package guix-patches. (Sat, 16 Nov 2024 01:11:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to gemmaro <gemmaro.dev <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix <at> cbaines.net, guix-patches <at> gnu.org. (Sat, 16 Nov 2024 01:11:02 GMT) Full text and rfc822 format available.

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

From: gemmaro <gemmaro.dev <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: gemmaro <gemmaro.dev <at> gmail.com>
Subject: [PATCH 0/2] gnu: ruby-rubocop-ast: Update to 1.36.1.
Date: Sat, 16 Nov 2024 10:09:47 +0900
Hello,

This updates the RuboCop AST gem and its dependency, the parser gem.

Thank you,

gemmaro (2):
  gnu: ruby-parser: Update to 3.3.6.0.
  gnu: ruby-rubocop-ast: Update to 1.36.1.

 gnu/packages/ruby.scm | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)


base-commit: 0bde2b4fd4d0e2460f318c4d21269a73ff44a839
-- 
2.46.0





Information forwarded to gemmaro.dev <at> gmail.com, guix <at> cbaines.net, guix-patches <at> gnu.org:
bug#74376; Package guix-patches. (Sat, 16 Nov 2024 01:34:02 GMT) Full text and rfc822 format available.

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

From: gemmaro <gemmaro.dev <at> gmail.com>
To: 74376 <at> debbugs.gnu.org
Cc: gemmaro <gemmaro.dev <at> gmail.com>
Subject: [PATCH 1/2] gnu: ruby-parser: Update to 3.3.6.0.
Date: Sat, 16 Nov 2024 10:31:42 +0900
* gnu/packages/ruby.scm (ruby-parser): Update to 3.3.6.0.

Change-Id: I8e589a3df90abe13a50f567818ebc9595c35b7b3
---
 gnu/packages/ruby.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 12c439b3a9..5a736d0980 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -6976,14 +6976,14 @@ (define-public ruby-parallel-tests
 (define-public ruby-parser
   (package
     (name "ruby-parser")
-    (version "3.2.2.0")
+    (version "3.3.6.0")
     (source
      (origin
        (method url-fetch)
        (uri (rubygems-uri "parser" version))
        (sha256
         (base32
-         "0s5afi89p76k8vpwiqvh343pm5l23ijqlpszhz65afym3zpkxhzx"))))
+         "0fxw738al3qxa4s4ghqkxb908sav03i3h7xflawwmxzhqiyfdm15"))))
     (build-system ruby-build-system)
     (arguments '(#:tests? #f))          ; tests not included in gem
     (native-inputs (list bundler ruby-cliver ruby-simplecov ruby-racc))
-- 
2.46.0





Information forwarded to gemmaro.dev <at> gmail.com, guix <at> cbaines.net, guix-patches <at> gnu.org:
bug#74376; Package guix-patches. (Sat, 16 Nov 2024 01:34:03 GMT) Full text and rfc822 format available.

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

From: gemmaro <gemmaro.dev <at> gmail.com>
To: 74376 <at> debbugs.gnu.org
Cc: gemmaro <gemmaro.dev <at> gmail.com>
Subject: [PATCH 2/2] gnu: ruby-rubocop-ast: Update to 1.36.1.
Date: Sat, 16 Nov 2024 10:31:43 +0900
* gnu/packages/ruby.scm (ruby-rubocop-ast): Update to 1.36.1.
[arguments]<#:phases>: Remove the relax-dependencies phase since SimpleCov
version constraint has been updated.
Remove the Prism gem entry from the Gemfile.

Change-Id: I20b51226b697eeb87aa1bef1837967b55edc3dd9
---
 gnu/packages/ruby.scm | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 5a736d0980..afb0a6426e 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -9109,7 +9109,7 @@ (define-public ruby-rest-client
 (define-public ruby-rubocop-ast
   (package
     (name "ruby-rubocop-ast")
-    (version "1.28.0")
+    (version "1.36.1")
     (source
      (origin
        (method git-fetch)               ;no test suite in distributed gem
@@ -9119,16 +9119,15 @@ (define-public ruby-rubocop-ast
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "1dp09gcmahmdfi3s6xsksr3ka9dddjpy9ymhr9wjwv67y1falffr"))))
+         "17qln4pwc3x09l17k6sb4bjkxb16qbv194bi3fkwfgs9jmyvh9yn"))))
     (build-system ruby-build-system)
     (arguments
      `(#:test-target "spec"
        #:phases (modify-phases %standard-phases
-                  (add-after 'unpack 'relax-dependencies
+                  (add-after 'extract-gemspec 'remove-dependencies
                     (lambda _
                       (substitute* "Gemfile"
-                        (("gem 'simplecov', '~> 0.10', '< 0.18'")
-                         "gem 'simplecov', '~> 0.10'"))))
+                        (("gem 'prism'.*") "")))) ;Prism gem has not yet been packaged.
                   (add-before 'build 'generate-lexer
                     (lambda _
                       (setenv "RUBOCOP_VERSION" "none")
-- 
2.46.0





Reply sent to Andreas Enge <andreas <at> enge.fr>:
You have taken responsibility. (Mon, 07 Jul 2025 15:17:02 GMT) Full text and rfc822 format available.

Notification sent to gemmaro <gemmaro.dev <at> gmail.com>:
bug acknowledged by developer. (Mon, 07 Jul 2025 15:17:02 GMT) Full text and rfc822 format available.

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

From: Andreas Enge <andreas <at> enge.fr>
To: 74376-done <at> debbugs.gnu.org
Subject: Close
Date: Mon, 7 Jul 2025 17:16:45 +0200
Newer version on master.

Andreas





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

This bug report was last modified 3 days ago.

Previous Next


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