From: gemmaro <gemmaro.dev@gmail.com>
To: 71519@debbugs.gnu.org
Cc: gemmaro <gemmaro.dev@gmail.com>, gemmaro <gemmaro.dev@gmail.com>,
Christopher Baines <guix@cbaines.net>
Subject: [bug#71519] [PATCH] gnu: Add ruby-prism.
Date: Fri, 1 Nov 2024 21:42:05 +0900 [thread overview]
Message-ID: <cde3b6606a32d0eaa5eb7ac68b30c786d9ed2543.1730464809.git.gemmaro.dev@gmail.com> (raw)
In-Reply-To: <d6d318e21db7a9baaf228e6bd05638b76d316a76.1718197929.git.gemmaro.dev@gmail.com>
* gnu/packages/ruby.scm (ruby-prism): New variable.
Change-Id: I612191bec56f086507d91dcb93d6779f5db61c09
---
This updates to 1.2.0.
gnu/packages/ruby.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 5af1bb1cef..2f38007c3b 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -6987,6 +6987,41 @@ (define-public ruby-parser
(home-page "https://github.com/whitequark/parser")
(license license:expat)))
+(define-public ruby-prism
+ (package
+ (name "ruby-prism")
+ (version "1.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ruby/prism")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1h9hsykhkr5hnh04akhv5zkfc7pgq5cpzfvkpfwdhkkmc6jai1lm"))
+ (modules '((guix build utils)))))
+ (build-system ruby-build-system)
+ (arguments
+ (list
+ #:phases #~(modify-phases %standard-phases
+ (add-before 'build 'compile
+ (lambda _
+ (setenv "CC"
+ #$(cc-for-target))
+ (invoke "rake" "compile"))))))
+ (native-inputs (list ruby-rake-compiler ruby-ffi))
+ (synopsis "Parser for the Ruby programming language")
+ (description
+ "Prism is a parser for the Ruby programming language. It is designed
+to be portable, error tolerant, and maintainable. It is written in
+C99 and has no dependencies.")
+ ;; Some tests fail on i686-linux and armhf-linux.
+ (supported-systems '("x86_64-linux" "aarch64-linux" "riscv64-linux"
+ "powerpc64le-linux"))
+ (home-page "https://ruby.github.io/prism/")
+ (license license:expat)))
+
(define-public ruby-set
(package
(name "ruby-set")
base-commit: a007045b7c6d26a8a051356c51481beaed6a2bfd
--
2.46.0
prev parent reply other threads:[~2024-11-01 12:44 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-12 13:12 [bug#71519] [PATCH] gnu: Add ruby-prism gemmaro
2024-06-27 13:46 ` [bug#71519] [PATCH v2] " gemmaro
2024-11-01 12:42 ` gemmaro [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cde3b6606a32d0eaa5eb7ac68b30c786d9ed2543.1730464809.git.gemmaro.dev@gmail.com \
--to=gemmaro.dev@gmail.com \
--cc=71519@debbugs.gnu.org \
--cc=guix@cbaines.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.