From mboxrd@z Thu Jan 1 00:00:00 1970 From: Al McElrath Subject: [PATCH] gnu: sane-backends: Update to 1.0.25 Date: Thu, 06 Oct 2016 20:36:20 -0700 Message-ID: <87lgy0u8y3.fsf@arch.yrns.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54771) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bsLxg-0001CB-7B for guix-devel@gnu.org; Thu, 06 Oct 2016 23:36:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bsLxc-0007CJ-27 for guix-devel@gnu.org; Thu, 06 Oct 2016 23:36:39 -0400 Received: from atonesir.com ([23.239.4.175]:51426 helo=mail.atonesir.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bsLxb-00072j-S2 for guix-devel@gnu.org; Thu, 06 Oct 2016 23:36:35 -0400 Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.atonesir.com (Postfix) with ESMTPSA id 332EF220BD for ; Fri, 7 Oct 2016 03:36:21 +0000 (UTC) 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 --=-=-= Content-Type: text/plain Attached is a patch to update sane-backends to 1.0.25. I checked and the tests are still failing. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-sane-backends-Update-to-1.0.25.patch >From deaf7c884363361b043e5b1008e30bfc84f7216c Mon Sep 17 00:00:00 2001 From: Al McElrath Date: Thu, 6 Oct 2016 12:01:31 -0700 Subject: [PATCH] gnu: sane-backends: Update to 1.0.25. * gnu/packages/scanner.scm (sane-backends): Update to 1.0.25. --- gnu/packages/scanner.scm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gnu/packages/scanner.scm b/gnu/packages/scanner.scm index 76e11a9..76817b3 100644 --- a/gnu/packages/scanner.scm +++ b/gnu/packages/scanner.scm @@ -29,15 +29,15 @@ (define-public sane-backends (package (name "sane-backends") - (version "1.0.24") + (version "1.0.25") (source (origin (method url-fetch) - (uri (string-append - "https://alioth.debian.org/frs/download.php/file/3958/" + (uri (string-append + "https://alioth.debian.org/frs/download.php/file/4146/" name "-" version ".tar.gz")) (sha256 (base32 - "0ba68m6bzni54axjk15i51rya7hfsdliwvqyan5msl7iaid0iir7")))) + "0b3fvhrxl4l82bf3v0j47ypjv6a0k5lqbgknrq1agpmjca6vmmx4")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) @@ -73,4 +73,3 @@ proving access to any raster image scanner hardware (flatbed scanner, hand-held scanner, video- and still-cameras, frame-grabbers, etc.). The package contains the library and drivers.") (license licence:gpl2+))) ; plus linking exception - -- 2.6.3 --=-=-=--