From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37103) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eUHTl-0004GG-Vu for guix-patches@gnu.org; Wed, 27 Dec 2017 14:35:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eUHTj-0005kN-Hy for guix-patches@gnu.org; Wed, 27 Dec 2017 14:35:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:45481) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eUHTj-0005jn-AM for guix-patches@gnu.org; Wed, 27 Dec 2017 14:35:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eUHTj-0008Ap-1D for guix-patches@gnu.org; Wed, 27 Dec 2017 14:35:03 -0500 Subject: [bug#29870] [PATCH 2/2] gnu: Add ruby-org-ruby. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36265) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eUHSb-00044h-Qi for guix-patches@gnu.org; Wed, 27 Dec 2017 14:33:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eUHSZ-0004E5-Fd for guix-patches@gnu.org; Wed, 27 Dec 2017 14:33:53 -0500 Received: from mail.lassieur.org ([83.152.10.219]:49048) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eUHSZ-000497-4x for guix-patches@gnu.org; Wed, 27 Dec 2017 14:33:51 -0500 Received: from localhost.localdomain (192.168.0.254 [192.168.0.254]) by mail.lassieur.org (OpenSMTPD) with ESMTPSA id 347a18ad (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128:NO) for ; Wed, 27 Dec 2017 19:33:45 +0000 (UTC) From: =?UTF-8?Q?Cl=C3=A9ment?= Lassieur Date: Wed, 27 Dec 2017 20:33:15 +0100 Message-Id: <20171227193315.27267-2-clement@lassieur.org> In-Reply-To: <20171227193315.27267-1-clement@lassieur.org> References: <20171227193315.27267-1-clement@lassieur.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29870@debbugs.gnu.org * 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