* [bug#74376] [PATCH 0/2] gnu: ruby-rubocop-ast: Update to 1.36.1.
@ 2024-11-16 1:09 gemmaro
2024-11-16 1:31 ` [bug#74376] [PATCH 1/2] gnu: ruby-parser: Update to 3.3.6.0 gemmaro
2024-11-16 1:31 ` [bug#74376] [PATCH 2/2] gnu: ruby-rubocop-ast: Update to 1.36.1 gemmaro
0 siblings, 2 replies; 3+ messages in thread
From: gemmaro @ 2024-11-16 1:09 UTC (permalink / raw)
To: 74376; +Cc: gemmaro, Christopher Baines
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
^ permalink raw reply [flat|nested] 3+ messages in thread
* [bug#74376] [PATCH 1/2] gnu: ruby-parser: Update to 3.3.6.0.
2024-11-16 1:09 [bug#74376] [PATCH 0/2] gnu: ruby-rubocop-ast: Update to 1.36.1 gemmaro
@ 2024-11-16 1:31 ` gemmaro
2024-11-16 1:31 ` [bug#74376] [PATCH 2/2] gnu: ruby-rubocop-ast: Update to 1.36.1 gemmaro
1 sibling, 0 replies; 3+ messages in thread
From: gemmaro @ 2024-11-16 1:31 UTC (permalink / raw)
To: 74376; +Cc: gemmaro, gemmaro, Christopher Baines
* 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
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#74376] [PATCH 2/2] gnu: ruby-rubocop-ast: Update to 1.36.1.
2024-11-16 1:09 [bug#74376] [PATCH 0/2] gnu: ruby-rubocop-ast: Update to 1.36.1 gemmaro
2024-11-16 1:31 ` [bug#74376] [PATCH 1/2] gnu: ruby-parser: Update to 3.3.6.0 gemmaro
@ 2024-11-16 1:31 ` gemmaro
1 sibling, 0 replies; 3+ messages in thread
From: gemmaro @ 2024-11-16 1:31 UTC (permalink / raw)
To: 74376; +Cc: gemmaro, gemmaro, Christopher Baines
* 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
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-11-16 1:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-16 1:09 [bug#74376] [PATCH 0/2] gnu: ruby-rubocop-ast: Update to 1.36.1 gemmaro
2024-11-16 1:31 ` [bug#74376] [PATCH 1/2] gnu: ruby-parser: Update to 3.3.6.0 gemmaro
2024-11-16 1:31 ` [bug#74376] [PATCH 2/2] gnu: ruby-rubocop-ast: Update to 1.36.1 gemmaro
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).