From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56881) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d9v33-0002KV-GQ for guix-patches@gnu.org; Sun, 14 May 2017 11:03:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d9v30-0005EJ-E6 for guix-patches@gnu.org; Sun, 14 May 2017 11:03:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42219) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d9v30-0005EE-AQ for guix-patches@gnu.org; Sun, 14 May 2017 11:03:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d9v30-00018m-1z for guix-patches@gnu.org; Sun, 14 May 2017 11:03:02 -0400 Subject: bug#26924: [PATCH 01/12] Update Calibre to 2.85.1 Resent-Message-ID: References: From: Brendan Tildesley Message-ID: Date: Mon, 15 May 2017 01:02:16 +1000 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/mixed; boundary="------------5B2A8267CEE5A1726BC22653" 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: 26924@debbugs.gnu.org This is a multi-part message in MIME format. --------------5B2A8267CEE5A1726BC22653 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit --------------5B2A8267CEE5A1726BC22653 Content-Type: text/x-patch; name="0001-gnu-Update-Calibre-to-2.85.1.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="0001-gnu-Update-Calibre-to-2.85.1.patch" >From 3f7aa793ef8debe9bb60d76a7ba491e66296a908 Mon Sep 17 00:00:00 2001 From: Brendan Tildesley Date: Sat, 13 May 2017 20:40:45 +1000 Subject: [PATCH 01/12] gnu: Update Calibre to 2.85.1 * gnu/packages/ebooks.scm (calibre): Bump version number to 2.85.1 --- gnu/packages/ebook.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index 0a53e6ca9..a2b26c931 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2015, 2016 Andreas Enge ;;; Copyright © 2016 Efraim Flashner ;;; Copyright © 2016, 2017 Alex Griffin +;;; Copyright © 2017 Brendan Tildesley ;;; ;;; This file is part of GNU Guix. ;;; @@ -61,7 +62,7 @@ (define-public calibre (package (name "calibre") - (version "2.76.0") + (version "2.85.1") (source (origin (method url-fetch) @@ -70,7 +71,7 @@ version ".tar.xz")) (sha256 (base32 - "1xfm586n6gm44mkyn25mbiyhj6w9ji9yl6fvmnr4zk1q6qcga3v8")) + "1g8s0kp1gj05yysfgqpp2lgrxvzc0fsny1hwzx5jh9hvqn0b53cc")) ;; Remove non-free or doubtful code, see ;; https://lists.gnu.org/archive/html/guix-devel/2015-02/msg00478.html (modules '((guix build utils))) -- 2.12.2 --------------5B2A8267CEE5A1726BC22653--