From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Woodcroft Subject: [PATCH 2/2] gnu: ruby-nokogiri: Update to 1.6.7.2. Date: Sun, 22 May 2016 09:17:01 +1000 Message-ID: <1463872621-17738-3-git-send-email-donttrustben@gmail.com> References: <1463872621-17738-1-git-send-email-donttrustben@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60748) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4G96-0004jr-BX for guix-devel@gnu.org; Sat, 21 May 2016 19:17:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b4G94-0003lE-FE for guix-devel@gnu.org; Sat, 21 May 2016 19:17:23 -0400 Received: from mail-pf0-x243.google.com ([2607:f8b0:400e:c00::243]:32897) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4G94-0003l8-8T for guix-devel@gnu.org; Sat, 21 May 2016 19:17:22 -0400 Received: by mail-pf0-x243.google.com with SMTP id y7so14933985pfb.0 for ; Sat, 21 May 2016 16:17:21 -0700 (PDT) Received: from localhost.localdomain ([103.25.181.216]) by smtp.googlemail.com with ESMTPSA id e7sm36354692pfa.28.2016.05.21.16.17.18 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 21 May 2016 16:17:20 -0700 (PDT) In-Reply-To: <1463872621-17738-1-git-send-email-donttrustben@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/ruby.scm (ruy-nokogiri): Update to 1.6.7.2. [arguments]: Relax 'mini_portile2' dependency. --- gnu/packages/ruby.scm | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 6c2e08f..7958089 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1882,13 +1882,13 @@ to reproduce user environments.") (define-public ruby-nokogiri (package (name "ruby-nokogiri") - (version "1.6.7.1") + (version "1.6.7.2") (source (origin (method url-fetch) (uri (rubygems-uri "nokogiri" version)) (sha256 (base32 - "12nwv3lad5k2k73aa1d1xy4x577c143ixks6rs70yp78sinbglk2")))) + "11sbmpy60ynak6s3794q32lc99hs448msjy8rkp84ay7mq7zqspv")))) (build-system ruby-build-system) (arguments ;; Tests fail because Nokogiri can only test with an installed extension, @@ -1897,7 +1897,14 @@ to reproduce user environments.") #:gem-flags (list "--" "--use-system-libraries" (string-append "--with-xml2-include=" (assoc-ref %build-inputs "libxml2") - "/include/libxml2" )))) + "/include/libxml2" )) + #:phases + (modify-phases %standard-phases + (add-after 'configure 'update-dependency + (lambda _ + (substitute* ".gemspec" + (("2.0.0.rc2") "2.0")) + #t))))) (native-inputs `(("ruby-hoe" ,ruby-hoe) ("ruby-rake-compiler" ,ruby-rake-compiler))) -- 2.7.4