mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: ruby-vagrant-cloud: Relax version requirement for rexml.
Relax the version requirement for rexml to allow this package to be used with newer versions of rexml.
This commit is contained in:
parent
b03b8d23e0
commit
db0fdc19ab
1 changed files with 10 additions and 2 deletions
|
@ -34,7 +34,7 @@
|
||||||
;;; Copyright © 2023, 2024 gemmaro <gemmaro.dev@gmail.com>
|
;;; Copyright © 2023, 2024 gemmaro <gemmaro.dev@gmail.com>
|
||||||
;;; Copyright © 2023, 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
|
;;; Copyright © 2023, 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
|
||||||
;;; Copyright © 2023, 2024 Zheng Junjie <873216071@qq.com>
|
;;; Copyright © 2023, 2024 Zheng Junjie <873216071@qq.com>
|
||||||
;;; Copyright © 2023, 2024 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
;;; Copyright © 2023-2025 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||||
;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr>
|
;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -8970,7 +8970,15 @@ source projects must be able to link to it.")
|
||||||
"0bnjd8b86lrgj5ar1l7pg5if95bv0sxa75mz7x2ikqyz6q8rmjb3"))))
|
"0bnjd8b86lrgj5ar1l7pg5if95bv0sxa75mz7x2ikqyz6q8rmjb3"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "spec"))
|
(list
|
||||||
|
#:test-target "spec"
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'extract-gemspec 'relax-requirements
|
||||||
|
(lambda _
|
||||||
|
(substitute* "vagrant_cloud.gemspec"
|
||||||
|
(("dependency 'rexml', .*")
|
||||||
|
"dependency 'rexml'\n")))))))
|
||||||
(native-inputs (list ruby-rspec ruby-webmock))
|
(native-inputs (list ruby-rspec ruby-webmock))
|
||||||
(propagated-inputs (list ruby-excon ruby-log4r ruby-rexml))
|
(propagated-inputs (list ruby-excon ruby-log4r ruby-rexml))
|
||||||
(synopsis "Vagrant Cloud API library")
|
(synopsis "Vagrant Cloud API library")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue