[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#56759] [PATCH 14/20] gnu: Add ruby-anystyle-data.
From: |
Philip McGrath |
Subject: |
[bug#56759] [PATCH 14/20] gnu: Add ruby-anystyle-data. |
Date: |
Mon, 25 Jul 2022 08:16:29 -0400 |
* gnu/packages/ruby.scm (ruby-anystyle-data): New variable.
---
gnu/packages/ruby.scm | 51 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 53269423e3..4efc3d5a41 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -13427,3 +13427,54 @@ (define-public ruby-gli
@command{gem}. GLI uses a simple domain-specific language, but retains all
the power of the built-in @code{OptionParser}.")
(license license:asl2.0)))
+
+(define-public ruby-anystyle-data
+ (package
+ (name "ruby-anystyle-data")
+ (version "1.2.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/inukshuk/anystyle-data")
+ (commit version)))
+ (sha256
+ (base32
+ "025mxa7r9d7izqn6bc1wr40ijp64da0jh211prlpjl6svilgd6rm"))
+ (snippet
+ ;; remove pre-built file
+ #~(delete-file "lib/anystyle/data/dict.txt.gz"))
+ (file-name (git-file-name name version))))
+ (build-system ruby-build-system)
+ (arguments
+ (list
+ #:tests? #f ;; there are none
+ #:modules
+ `((guix build ruby-build-system)
+ (guix build utils)
+ (srfi srfi-26))
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'replace-git-ls-files 'replace-another-git-ls-files
+ (lambda args
+ (substitute* "anystyle-data.gemspec"
+ (("`git ls-files lib README\\.md LICENSE`\\.split[(][^)]*[)]")
+ (string-append
+ "["
+ (string-join
+ (map (cut string-append "\"" <> "\"")
+ `("README.md"
+ "LICENSE"
+ "lib/anystyle/data.rb"
+ "lib/anystyle/data/dict.txt.gz"
+ "lib/anystyle/data/setup.rb"
+ "lib/anystyle/data/version.rb"))
+ ", ")
+ "]")))))
+ (add-before 'build 'compile-dict
+ (lambda args
+ (invoke "rake" "compile"))))))
+ (home-page "https://anystyle.io")
+ (synopsis "AnyStyle parser dictionary data")
+ (description
+ "This gem provides parser dictionary data for AnyStyle.")
+ (license license:bsd-2)))
--
2.32.0
- [bug#56759] [PATCH 09/20] gnu: Add ruby-bibtex-ruby., (continued)
- [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, 2022/07/25
- [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 <=
- [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