unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#29869] [PATCH 1/2] gnu: Add ruby-rubypants.
@ 2017-12-27 19:33 Clément Lassieur
  2017-12-27 19:33 ` [bug#29870] [PATCH 2/2] gnu: Add ruby-org-ruby Clément Lassieur
  2017-12-28  5:21 ` [bug#29869] [PATCH 1/2] gnu: Add ruby-rubypants Leo Famulari
  0 siblings, 2 replies; 5+ messages in thread
From: Clément Lassieur @ 2017-12-27 19:33 UTC (permalink / raw)
  To: 29869

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

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index c66c0a414..6eaaef4f1 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -4466,3 +4466,25 @@ are doing, you can fiddle with every last bit of your email directly.")
 more robust and work for non rails projects.")
     (home-page "http://github.com/danmayer/code_statistics")
     (license license:expat)))
+
+(define-public ruby-rubypants
+  (package
+    (name "ruby-rubypants")
+    (version "0.6.0")
+    (source (origin
+              (method url-fetch)
+              (uri (rubygems-uri "rubypants" version))
+              (sha256
+               (base32
+                "0xpqkslan2wkyal2h9qhplkr5d4sdn7q6csigrhnljjpp8j4qfsh"))))
+    (build-system ruby-build-system)
+    (arguments
+     '(#:tests? #f)) ; need Codecov
+    (synopsis "Port of the smart-quotes library SmartyPants")
+    (description
+     "RubyPants is a Ruby port of the smart-quotes library
+SmartyPants.  The original SmartyPants is a free web publishing plug-in for
+Movable Type, Blosxom, and BBEdit that easily translates plain ASCII
+punctuation characters into smart typographic punctuation HTML entities.")
+    (home-page "https://github.com/jmcnevin/rubypants")
+    (license license:bsd-2)))
-- 
2.15.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#29870] [PATCH 2/2] gnu: Add ruby-org-ruby.
  2017-12-27 19:33 [bug#29869] [PATCH 1/2] gnu: Add ruby-rubypants Clément Lassieur
@ 2017-12-27 19:33 ` Clément Lassieur
  2017-12-28  5:21   ` Leo Famulari
  2017-12-28  5:21 ` [bug#29869] [PATCH 1/2] gnu: Add ruby-rubypants Leo Famulari
  1 sibling, 1 reply; 5+ messages in thread
From: Clément Lassieur @ 2017-12-27 19:33 UTC (permalink / raw)
  To: 29870

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

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 6eaaef4f1..0d1db4838 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -4488,3 +4488,26 @@ Movable Type, Blosxom, and BBEdit that easily translates plain ASCII
 punctuation characters into smart typographic punctuation HTML entities.")
     (home-page "https://github.com/jmcnevin/rubypants")
     (license license:bsd-2)))
+
+(define-public ruby-org-ruby
+  (package
+    (name "ruby-org-ruby")
+    (version "0.9.12")
+    (source (origin
+              (method url-fetch)
+              (uri (rubygems-uri "org-ruby" version))
+              (sha256
+               (base32
+                "0x69s7aysfiwlcpd9hkvksfyld34d8kxr62adb59vjvh8hxfrjwk"))))
+    (build-system ruby-build-system)
+    (arguments
+     '(#:tests? #f)) ; no rakefile
+    (propagated-inputs
+     `(("ruby-rubypants" ,ruby-rubypants)))
+    (synopsis "Org-mode parser written in Ruby")
+    (description
+     "Org-ruby is an org-mode parser written in Ruby.  The most significant
+thing this library does today is convert org-mode files to HTML or Textile or
+Markdown.")
+    (home-page "https://github.com/wallyqs/org-ruby")
+    (license license:expat)))
-- 
2.15.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#29869] [PATCH 1/2] gnu: Add ruby-rubypants.
  2017-12-27 19:33 [bug#29869] [PATCH 1/2] gnu: Add ruby-rubypants Clément Lassieur
  2017-12-27 19:33 ` [bug#29870] [PATCH 2/2] gnu: Add ruby-org-ruby Clément Lassieur
@ 2017-12-28  5:21 ` Leo Famulari
  2017-12-28  6:26   ` bug#29869: " Clément Lassieur
  1 sibling, 1 reply; 5+ messages in thread
From: Leo Famulari @ 2017-12-28  5:21 UTC (permalink / raw)
  To: Clément Lassieur; +Cc: 29869

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

On Wed, Dec 27, 2017 at 08:33:14PM +0100, Clément Lassieur wrote:
> * gnu/packages/ruby.scm (ruby-rubypants): New variable.

Overall LGTM!

> +    (description
> +     "RubyPants is a Ruby port of the smart-quotes library
> +SmartyPants.  The original SmartyPants is a free web publishing plug-in for
> +Movable Type, Blosxom, and BBEdit that easily translates plain ASCII
> +punctuation characters into smart typographic punctuation HTML entities.")

Since everything in Guix is free software, we don't need to mention it
in the descriptions :)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#29870] [PATCH 2/2] gnu: Add ruby-org-ruby.
  2017-12-27 19:33 ` [bug#29870] [PATCH 2/2] gnu: Add ruby-org-ruby Clément Lassieur
@ 2017-12-28  5:21   ` Leo Famulari
  0 siblings, 0 replies; 5+ messages in thread
From: Leo Famulari @ 2017-12-28  5:21 UTC (permalink / raw)
  To: Clément Lassieur; +Cc: 29870

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

On Wed, Dec 27, 2017 at 08:33:15PM +0100, Clément Lassieur wrote:
> * gnu/packages/ruby.scm (ruby-org-ruby): New variable.

LGTM, thanks!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#29869: [PATCH 1/2] gnu: Add ruby-rubypants.
  2017-12-28  5:21 ` [bug#29869] [PATCH 1/2] gnu: Add ruby-rubypants Leo Famulari
@ 2017-12-28  6:26   ` Clément Lassieur
  0 siblings, 0 replies; 5+ messages in thread
From: Clément Lassieur @ 2017-12-28  6:26 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 29869-done

Leo Famulari <leo@famulari.name> writes:

> On Wed, Dec 27, 2017 at 08:33:14PM +0100, Clément Lassieur wrote:
>> * gnu/packages/ruby.scm (ruby-rubypants): New variable.
>
> Overall LGTM!
>
>> +    (description
>> +     "RubyPants is a Ruby port of the smart-quotes library
>> +SmartyPants.  The original SmartyPants is a free web publishing plug-in for
>> +Movable Type, Blosxom, and BBEdit that easily translates plain ASCII
>> +punctuation characters into smart typographic punctuation HTML entities.")
>
> Since everything in Guix is free software, we don't need to mention it
> in the descriptions :)

Oh right!  I removed the "free" then.  Thank you for reviewing :-)

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-12-28  6:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-27 19:33 [bug#29869] [PATCH 1/2] gnu: Add ruby-rubypants Clément Lassieur
2017-12-27 19:33 ` [bug#29870] [PATCH 2/2] gnu: Add ruby-org-ruby Clément Lassieur
2017-12-28  5:21   ` Leo Famulari
2017-12-28  5:21 ` [bug#29869] [PATCH 1/2] gnu: Add ruby-rubypants Leo Famulari
2017-12-28  6:26   ` bug#29869: " Clément Lassieur

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).