mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 09:02:59 -05:00
gnu: ruby-maxitest: Update to 4.4.1.
* gnu/packages/ruby.scm (ruby-maxitest): Update to 4.4.1. [arguments]: Delete trailing #t. [native-inputs]: Delete labels.
This commit is contained in:
parent
03be7a3612
commit
45c9d6937d
1 changed files with 10 additions and 13 deletions
|
@ -4416,7 +4416,7 @@ (define-public ruby-rerun
|
|||
(define-public ruby-maxitest
|
||||
(package
|
||||
(name "ruby-maxitest")
|
||||
(version "3.6.0")
|
||||
(version "4.4.1")
|
||||
(home-page "https://github.com/grosser/maxitest")
|
||||
(source (origin
|
||||
;; Pull from git because the gem does not contain tests.
|
||||
|
@ -4427,7 +4427,7 @@ (define-public ruby-maxitest
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"07b3j0bv3dx5j42jlvpvl07aaxplyi6wq688y3jl8y528ww2hjz8"))))
|
||||
"0l646lgrgsfgg9qh05b8a3jd43kgrmr6xzbdvyspmdlhchk1qszg"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(#:test-target "default"
|
||||
|
@ -4436,27 +4436,24 @@ (define-public ruby-maxitest
|
|||
(lambda _
|
||||
(substitute* "maxitest.gemspec"
|
||||
(("`git ls-files lib/ bin/ MIT-LICENSE Readme.md`")
|
||||
"`find lib/ bin/ MIT-LICENSE Readme.md -type f | sort`"))
|
||||
#t))
|
||||
"`find lib/ bin/ MIT-LICENSE Readme.md -type f | sort`"))))
|
||||
(add-before 'check 'remove-version-constraints
|
||||
(lambda _
|
||||
;; Don't use specific versions of dependencies, instead
|
||||
;; take whatever is available in Guix.
|
||||
(delete-file "Gemfile.lock")
|
||||
#t))
|
||||
(delete-file "Gemfile.lock")))
|
||||
(add-before 'check 'add-mtest-on-PATH
|
||||
(lambda _
|
||||
;; Tests use 'mtest' which is not automatically added on
|
||||
;; PATH.
|
||||
(setenv "PATH" (string-append (getcwd) "/bin:"
|
||||
(getenv "PATH")))
|
||||
#t)))))
|
||||
(getenv "PATH"))))))))
|
||||
(native-inputs
|
||||
`(("ps" ,procps)
|
||||
("ruby-bump" ,ruby-bump)
|
||||
("ruby-byebug" ,ruby-byebug)
|
||||
("ruby-rspec" ,ruby-rspec)
|
||||
("ruby-wwtd" ,ruby-wwtd)))
|
||||
(list procps
|
||||
ruby-bump
|
||||
ruby-byebug
|
||||
ruby-rspec
|
||||
ruby-wwtd))
|
||||
(propagated-inputs
|
||||
(list ruby-minitest))
|
||||
(synopsis "Minitest with extra features")
|
||||
|
|
Loading…
Reference in a new issue