all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Pjotr Prins <pjotr.public12@thebird.nl>
To: guix-devel@gnu.org
Subject: [PATCH] ruby-rake-compiler
Date: Sat, 4 Jul 2015 15:08:29 +0200	[thread overview]
Message-ID: <20150704130829.GA14470@thebird.nl> (raw)

[-- Attachment #1: Type: text/plain, Size: 389 bytes --]

Attached a Ruby module in preparation of Nokogiri support.

(I am pretty close as described in
https://github.com/pjotrp/guix-notes/blob/master/RUBYGEMS-Nokogiri.org).

Cucumber support comes later (it depends on Nokogiri itself).

David: there are quite a few modules now that build gems through 'rake
gem'.  Would it be an idea to try that by default when there is no
gemspec file?

Pj.

[-- Attachment #2: 0001-gnu-Add-Ruby-rake-compiler.patch --]
[-- Type: text/x-diff, Size: 2056 bytes --]

From e54bb659ccc3a91072214b00e5bdb6b9fbe448e5 Mon Sep 17 00:00:00 2001
From: pjotrp <pjotr.public01@thebird.nl>
Date: Sat, 4 Jul 2015 15:00:09 +0200
Subject: [PATCH]     gnu: Add Ruby rake-compiler.

    * gnu/packages/ruby.scm (ruby-rake-compiler): New variable.
---
 gnu/packages/ruby.scm |   36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index af87cf5..8c86a14 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -177,6 +177,42 @@ announcement.")
     (home-page "http://www.zenspider.com/projects/hoe.html")
     (license license:expat)))
 
+(define-public ruby-rake-compiler
+  (package
+    (name "ruby-rake-compiler")
+    (version "0.9.5")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://github.com/rake-compiler/rake-compiler/archive/v"
+                                  version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "07lk1vl0jqcaqwjjhmg0qshqwcxdyr5kscc9xxm13m03835xgpf3"))
+    (snippet
+     '(begin
+	;; Remove cucumber test file (dependencies do not resolve right now)
+	(delete-file "tasks/cucumber.rake")))))
+    (build-system ruby-build-system)
+    (arguments
+     '(
+       #:tests? #f
+       #:phases (alist-replace
+                 'build
+                 (lambda _ (zero? (system* "rake" "gem")))
+                 %standard-phases))
+
+     )
+    (native-inputs
+     `(("ruby-rspec" ,ruby-rspec)))
+    (synopsis "Building and packaging helper for Ruby extensions")
+    (description "A productivity tool for Ruby developers. Its goal is
+to make the busy developer's life easier by simplifying the building
+and packaging of Ruby extensions by simplifying code and reducing
+duplication.")
+    (home-page "https://github.com/rake-compiler/rake-compiler")
+    (license license:x11)))
+
 (define-public ruby-i18n
   (package
     (name "ruby-i18n")
-- 
1.7.10.4


             reply	other threads:[~2015-07-04 13:09 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-04 13:08 Pjotr Prins [this message]
2015-07-04 13:55 ` [PATCH] ruby-rake-compiler Thompson, David
2015-07-04 14:28   ` Pjotr Prins
2015-07-04 14:45     ` Thompson, David

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=20150704130829.GA14470@thebird.nl \
    --to=pjotr.public12@thebird.nl \
    --cc=guix-devel@gnu.org \
    /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.