[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#56759] [PATCH 12/20] gnu: Add ruby-edtf.
From: |
Philip McGrath |
Subject: |
[bug#56759] [PATCH 12/20] gnu: Add ruby-edtf. |
Date: |
Mon, 25 Jul 2022 08:16:27 -0400 |
* gnu/packages/ruby.scm (ruby-edtf): New variable.
---
gnu/packages/ruby.scm | 60 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 60 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 2cc83d2f82..32d5fe89ae 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -13315,3 +13315,63 @@ (define-public ruby-citeproc
process citations, a dedicated processor engine is required: a pure Ruby
engine is available in the @code{citeproc-ruby} gem.")
(license (list license:agpl3+ license:bsd-2))))
+
+(define-public ruby-edtf
+ (package
+ (name "ruby-edtf")
+ (version "3.1.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/inukshuk/edtf-ruby")
+ (commit (string-append "v" version))))
+ (sha256
+ (base32
+ "18j8xq8zmrn41cs2gpd1i87agi9905asvnjqndky2cqb5zg3q14g"))
+ (snippet
+ ;; remove generated file
+ #~(delete-file "lib/edtf/parser.rb"))
+ (file-name (git-file-name name version))))
+ (build-system ruby-build-system)
+ (propagated-inputs
+ (list ruby-activesupport))
+ (native-inputs
+ (list ruby-cucumber
+ ruby-rspec))
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'extract-gemspec 'avoid-bundler
+ (lambda args
+ (substitute* "Rakefile"
+ (("require 'bundler" orig)
+ (string-append "# " orig " # patched for Guix"))
+ (("bundle exec racc")
+ "racc")
+ (("Cucumber::Rake::Task\\.new[(]:cucumber[)]" orig)
+ (string-append orig " do |c|\n"
+ " c.bundler = false # patched for Guix\n"
+ "end"))
+ (("Bundler\\.setup" orig)
+ (string-append "true # " orig " # patched for Guix")))))
+ (add-after 'avoid-bundler 'patch-cucumber-options
+ (lambda args
+ (substitute* "cucumber.yml"
+ ;; this option is not supported, at least in our configuration
+ ((" --publish-quiet")
+ ""))))
+ (add-before 'build 'compile
+ (lambda args
+ (invoke "rake" "racc")))
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "rake")))))))
+ (home-page "https://github.com/inukshuk/edtf-ruby")
+ (synopsis "Ruby implementation of Extended Date/Time Format")
+ (description
+ "EDTF-Ruby provides a parser and an API for the @acronym{EDTF, Extended
+Date/Time Format} standard, implemented as an extension to Ruby's @code{Date}
+class.")
+ (license license:bsd-2)))
--
2.32.0
- [bug#56759] [PATCH 02/20] gnu: Add ruby-namae., (continued)
- [bug#56759] [PATCH 02/20] gnu: Add ruby-namae., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 04/20] gnu: Add ruby-ritex., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 01/20] gnu: Add ruby-wapiti., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 06/20] gnu: Add ruby-link-header., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 07/20] gnu: Add ruby-rdf., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 08/20] gnu: Add ruby-rdf-vocab., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 03/20] gnu: Add itex2mml., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 09/20] gnu: Add ruby-bibtex-ruby., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 05/20] gnu: Add ruby-latex-decode., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 10/20] gnu: Add ruby-unicode-scripts., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 12/20] gnu: Add ruby-edtf.,
Philip McGrath <=
- [bug#56759] [PATCH 13/20] gnu: Add ruby-gli., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 15/20] gnu: Add ruby-anystyle., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 17/20] gnu: ruby-anystyle-data: Don't write to installed gem., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 11/20] gnu: Add ruby-citeproc., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 16/20] gnu: Add anystyle., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 20/20] gnu: anystyle: Use GDBM by default., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 14/20] gnu: Add ruby-anystyle-data., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 18/20] gnu: ruby-anystyle: Initialize dictionary files., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH 19/20] gnu: anystyle: Add tests for dictionary adapters., Philip McGrath, 2022/07/25
- [bug#56759] [PATCH v2 05/20] gnu: Add ruby-latex-decode., Philip McGrath, 2022/07/25