mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 07:27:48 -05:00
gnu: ruby-regexp-property-values: Update to 1.0.0-1.03007a6.
* gnu/packages/ruby.scm (ruby-regexp-property-values): Update to 1.0.0-1.03007a6. [native-inputs]: Add ruby-rake.
This commit is contained in:
parent
5d31be6bf6
commit
8ba17bda9b
1 changed files with 28 additions and 25 deletions
|
@ -7229,35 +7229,38 @@ (define-public ruby-range-compressor
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-regexp-property-values
|
(define-public ruby-regexp-property-values
|
||||||
(package
|
(let ((commit "03007a66c912949a7130b973cc0eca109c20811f")
|
||||||
(name "ruby-regexp-property-values")
|
(revision "1"))
|
||||||
(version "1.0.0")
|
(package
|
||||||
(source
|
(name "ruby-regexp-property-values")
|
||||||
(origin
|
(version (git-version "1.0.0" revision commit))
|
||||||
(method git-fetch)
|
(source
|
||||||
(uri (git-reference ;no test suite in distributed gem
|
(origin
|
||||||
(url "https://github.com/jaynetics/regexp_property_values")
|
(method git-fetch)
|
||||||
(commit (string-append "v" version))))
|
(uri (git-reference ;no test suite in distributed gem
|
||||||
(file-name (git-file-name name version))
|
(url "https://github.com/jaynetics/regexp_property_values")
|
||||||
(sha256
|
(commit commit)))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"0l3fjmscg1wxn7kc6bl022cc6k5d91pwb7daq1b5w36kvsx52w1j"))))
|
(sha256
|
||||||
(build-system ruby-build-system)
|
(base32
|
||||||
(arguments
|
"1zsax784p16zdkf60lyq9z924zvsafhx9ckxx9srsgkyiqrifi1s"))))
|
||||||
'(#:test-target "default"))
|
(build-system ruby-build-system)
|
||||||
(native-inputs
|
(arguments
|
||||||
`(("ruby-character-set" ,ruby-character-set)
|
'(#:test-target "default"))
|
||||||
("ruby-rake-compiler" ,ruby-rake-compiler)
|
(native-inputs
|
||||||
("ruby-range-compressor" ,ruby-range-compressor)
|
`(("ruby-character-set" ,ruby-character-set)
|
||||||
("ruby-rspec" ,ruby-rspec)))
|
("ruby-rake" ,ruby-rake)
|
||||||
(synopsis "Inspect Ruby's regex engine property values")
|
("ruby-rake-compiler" ,ruby-rake-compiler)
|
||||||
(description "This small library lets you see which property values are
|
("ruby-range-compressor" ,ruby-range-compressor)
|
||||||
|
("ruby-rspec" ,ruby-rspec)))
|
||||||
|
(synopsis "Inspect Ruby's regex engine property values")
|
||||||
|
(description "This small library lets you see which property values are
|
||||||
supported by the regular expression engine of the Ruby version you are running
|
supported by the regular expression engine of the Ruby version you are running
|
||||||
and can directly read out their code point ranges. In other words, it
|
and can directly read out their code point ranges. In other words, it
|
||||||
determines all supported values for @code{\\p{value}} expressions and what
|
determines all supported values for @code{\\p{value}} expressions and what
|
||||||
they match.")
|
they match.")
|
||||||
(home-page "https://github.com/jaynetics/regexp_property_values")
|
(home-page "https://github.com/jaynetics/regexp_property_values")
|
||||||
(license license:expat)))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public ruby-regexp-parser
|
(define-public ruby-regexp-parser
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue