diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2021-09-12 14:28:34 +0300 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2021-09-12 15:35:21 +0300 |
| commit | 8ba17bda9b6f9cceeb3edbf4650e36d3f08befb4 (patch) | |
| tree | 9b8ce11007079132c536b8248b6f6c048cb4630f /gnu/packages/ruby.scm | |
| parent | 5d31be6bf64184eaf77421e6789311aea4aa0c3d (diff) | |
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.
Diffstat (limited to 'gnu/packages/ruby.scm')
| -rw-r--r-- | gnu/packages/ruby.scm | 53 |
1 files changed, 28 insertions, 25 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 68cdc429267..d9b50b9a432 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm | |||
| @@ -7229,35 +7229,38 @@ following: @code{[1, 2, 3, 4, 6, 8, 9, 10]} into @code{[1..4, 6..6, 8..10]}.") | |||
| 7229 | (license license:expat))) | 7229 | (license license:expat))) |
| 7230 | 7230 | ||
| 7231 | (define-public ruby-regexp-property-values | 7231 | (define-public ruby-regexp-property-values |
| 7232 | (package | 7232 | (let ((commit "03007a66c912949a7130b973cc0eca109c20811f") |
| 7233 | (name "ruby-regexp-property-values") | 7233 | (revision "1")) |
| 7234 | (version "1.0.0") | 7234 | (package |
| 7235 | (source | 7235 | (name "ruby-regexp-property-values") |
| 7236 | (origin | 7236 | (version (git-version "1.0.0" revision commit)) |
| 7237 | (method git-fetch) | 7237 | (source |
| 7238 | (uri (git-reference ;no test suite in distributed gem | 7238 | (origin |
| 7239 | (url "https://github.com/jaynetics/regexp_property_values") | 7239 | (method git-fetch) |
| 7240 | (commit (string-append "v" version)))) | 7240 | (uri (git-reference ;no test suite in distributed gem |
| 7241 | (file-name (git-file-name name version)) | 7241 | (url "https://github.com/jaynetics/regexp_property_values") |
| 7242 | (sha256 | 7242 | (commit commit))) |
| 7243 | (base32 | 7243 | (file-name (git-file-name name version)) |
| 7244 | "0l3fjmscg1wxn7kc6bl022cc6k5d91pwb7daq1b5w36kvsx52w1j")))) | 7244 | (sha256 |
| 7245 | (build-system ruby-build-system) | 7245 | (base32 |
| 7246 | (arguments | 7246 | "1zsax784p16zdkf60lyq9z924zvsafhx9ckxx9srsgkyiqrifi1s")))) |
| 7247 | '(#:test-target "default")) | 7247 | (build-system ruby-build-system) |
| 7248 | (native-inputs | 7248 | (arguments |
| 7249 | `(("ruby-character-set" ,ruby-character-set) | 7249 | '(#:test-target "default")) |
| 7250 | ("ruby-rake-compiler" ,ruby-rake-compiler) | 7250 | (native-inputs |
| 7251 | ("ruby-range-compressor" ,ruby-range-compressor) | 7251 | `(("ruby-character-set" ,ruby-character-set) |
| 7252 | ("ruby-rspec" ,ruby-rspec))) | 7252 | ("ruby-rake" ,ruby-rake) |
| 7253 | (synopsis "Inspect Ruby's regex engine property values") | 7253 | ("ruby-rake-compiler" ,ruby-rake-compiler) |
| 7254 | (description "This small library lets you see which property values are | 7254 | ("ruby-range-compressor" ,ruby-range-compressor) |
| 7255 | ("ruby-rspec" ,ruby-rspec))) | ||
| 7256 | (synopsis "Inspect Ruby's regex engine property values") | ||
| 7257 | (description "This small library lets you see which property values are | ||
| 7255 | supported by the regular expression engine of the Ruby version you are running | 7258 | supported by the regular expression engine of the Ruby version you are running |
| 7256 | and can directly read out their code point ranges. In other words, it | 7259 | and can directly read out their code point ranges. In other words, it |
| 7257 | determines all supported values for @code{\\p{value}} expressions and what | 7260 | determines all supported values for @code{\\p{value}} expressions and what |
| 7258 | they match.") | 7261 | they match.") |
| 7259 | (home-page "https://github.com/jaynetics/regexp_property_values") | 7262 | (home-page "https://github.com/jaynetics/regexp_property_values") |
| 7260 | (license license:expat))) | 7263 | (license license:expat)))) |
| 7261 | 7264 | ||
| 7262 | (define-public ruby-regexp-parser | 7265 | (define-public ruby-regexp-parser |
| 7263 | (package | 7266 | (package |
