From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:38378) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gzPk3-0003h7-7N for guix-patches@gnu.org; Thu, 28 Feb 2019 12:45:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gzPjz-0000q6-SY for guix-patches@gnu.org; Thu, 28 Feb 2019 12:45:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:41929) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gzPjz-0000pX-17 for guix-patches@gnu.org; Thu, 28 Feb 2019 12:45:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gzPjy-0001mE-Sq for guix-patches@gnu.org; Thu, 28 Feb 2019 12:45:02 -0500 Subject: [bug#34650] [PATCH 2/7] gnu: Add ruby-tilt. Resent-Message-ID: From: Pierre Neidhardt Date: Thu, 28 Feb 2019 18:44:30 +0100 Message-Id: <20190228174435.14499-2-mail@ambrevar.xyz> In-Reply-To: <20190228174435.14499-1-mail@ambrevar.xyz> References: <87ftsa24ts.fsf@ambrevar.xyz> <20190228174435.14499-1-mail@ambrevar.xyz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 34650@debbugs.gnu.org * gnu/packages/ruby.scm (ruby-tilt): New variable. --- gnu/packages/ruby.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 63cfa8cf4..f6b6a19d5 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7684,3 +7684,27 @@ uniquely identify it.") serves JavaScript, CoffeeScript, CSS, LESS, Sass, and SCSS.") (home-page "https://github.com/rails/sprockets") (license license:expat))) + +(define-public ruby-tilt + (package + (name "ruby-tilt") + (version "2.0.9") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "tilt" version)) + (sha256 + (base32 + "0ca4k0clwf0rkvy7726x4nxpjxkpv67w043i39saxgldxd97zmwz")))) + (build-system ruby-build-system) + (arguments + ;; TODO: Fix tests. + `(#:tests? #f)) + (synopsis "Generic interface to multiple Ruby template engines") + (description "Tilt is a thin interface over a bunch of different Ruby +template engines in an attempt to make their usage as generic as +possible. This is useful for web frameworks, static site generators, and other +systems that support multiple template engines but don't want to code for each +of them individually.") + (home-page "https://github.com/rtomayko/tilt/") + (license license:expat))) -- 2.20.1