From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: [PATCH] gnu: font-dejavu: Update to 2.35. Date: Fri, 11 Mar 2016 13:08:17 +0300 Message-ID: <87r3fhnx7y.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53043) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aeJzN-0001tm-5b for guix-devel@gnu.org; Fri, 11 Mar 2016 05:08:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aeJzI-0002OH-0Z for guix-devel@gnu.org; Fri, 11 Mar 2016 05:08:09 -0500 Received: from mail-lb0-x234.google.com ([2a00:1450:4010:c04::234]:33372) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aeJzH-0002OA-Oa for guix-devel@gnu.org; Fri, 11 Mar 2016 05:08:03 -0500 Received: by mail-lb0-x234.google.com with SMTP id k15so150217300lbg.0 for ; Fri, 11 Mar 2016 02:08:03 -0800 (PST) Received: from leviafan ([217.107.192.146]) by smtp.gmail.com with ESMTPSA id f196sm1240478lfb.49.2016.03.11.02.08.01 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 11 Mar 2016 02:08:01 -0800 (PST) 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain I was going to commit several updates including font-dejavu. Happily, with: guix refresh -l font-dejavu I found that many things would be rebuilt (including some big ones like abiword, libreoffice, gimp, gnome). This happens because 'font-dejavu' is an input of 'cups-filters' which is an input of 'cups' which is an input for several things including 'gtk+'. So my question is: should this update go to master? --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-font-dejavu-Update-to-2.35.patch >From 013b3b5861892dffa6cd72ae4759394276bbe25f Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Fri, 11 Mar 2016 11:32:45 +0300 Subject: [PATCH] gnu: font-dejavu: Update to 2.35. * gnu/packages/fonts.scm (font-dejavu): Update to 2.35. --- gnu/packages/fonts.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/fonts.scm b/gnu/packages/fonts.scm index 9dd9f1e..642f60a 100644 --- a/gnu/packages/fonts.scm +++ b/gnu/packages/fonts.scm @@ -119,7 +119,7 @@ TrueType (TTF) files.") (define-public font-dejavu (package (name "font-dejavu") - (version "2.34") + (version "2.35") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/dejavu/" @@ -127,7 +127,7 @@ TrueType (TTF) files.") version ".tar.bz2")) (sha256 (base32 - "0pgb0a3ngamidacmrvasg51ck3gp8gn93w6sf1s8snwzx4x2r9yh")))) + "122d35y93r820zhi6d7m9xhakdib10z51v63lnlg67qhhrardmzn")))) (build-system trivial-build-system) (arguments `(#:modules ((guix build utils)) -- 2.6.3 --=-=-=--