From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:35999) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iHlkt-0006we-4o for guix-patches@gnu.org; Tue, 08 Oct 2019 05:26:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iHlko-0000pG-1a for guix-patches@gnu.org; Tue, 08 Oct 2019 05:26:06 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:40744) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iHlkn-0000oe-U6 for guix-patches@gnu.org; Tue, 08 Oct 2019 05:26:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iHlkn-0002gO-Q0 for guix-patches@gnu.org; Tue, 08 Oct 2019 05:26:01 -0400 Subject: [bug#37657] [PATCH] gnu: sakura: Update to 3.7.0. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:35874) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iHlka-0006Xo-W2 for guix-patches@gnu.org; Tue, 08 Oct 2019 05:25:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iHlkY-0000Uw-MJ for guix-patches@gnu.org; Tue, 08 Oct 2019 05:25:48 -0400 Received: from mout.gmx.net ([212.227.17.22]:41189) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iHlkY-0000Pd-Bh for guix-patches@gnu.org; Tue, 08 Oct 2019 05:25:46 -0400 From: Pierre Langlois Date: Tue, 08 Oct 2019 10:25:35 +0100 Message-ID: <871rvnpp0w.fsf@gmx.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 37657@debbugs.gnu.org Cc: Pierre Langlois --=-=-= Content-Type: text/plain Hello Guix! I noticed there was a new version of sakura around. Thanks, Pierre --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-sakura-Update-to-3.7.0.patch Content-Transfer-Encoding: quoted-printable >From acbce95fb1a1006232582131ee875782b1d41a15 Mon Sep 17 00:00:00 2001 From: Pierre Langlois Date: Sun, 6 Oct 2019 12:53:40 +0100 Subject: [PATCH] gnu: sakura: Update to 3.7.0. * gnu/packages/terminals.scm (sakura): Update to 3.7.0. --- gnu/packages/terminals.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index d9a5f1db9a..98e964fa44 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -15,6 +15,7 @@ ;;; Copyright =C2=A9 2019 Rutger Helling ;;; Copyright =C2=A9 2018, 2019 Eric Bavier ;;; Copyright =C2=A9 2019 Julien Lepiller +;;; Copyright =C2=A9 2019 Pierre Langlois ;;; ;;; This file is part of GNU Guix. ;;; @@ -665,15 +666,15 @@ eye-candy, customizable, and reasonably lightweight.") (define-public sakura (package (name "sakura") - (version "3.6.0") + (version "3.7.0") (source (origin (method url-fetch) (uri (string-append "https://launchpad.net/" name "/trunk/" version "/+download/" name "-" version - ".tar.bz2")) + ".tar.gz")) (sha256 (base32 - "1q463qm41ym7jb3kbzjz7b6x549vmgkb70arpkhsf86yxly1y5m1")))) + "15gskj5yv5qs3cj4ps43735kfx2nzjlhq4dk9ghirl8lvhhxsm5m")))) (build-system cmake-build-system) (arguments '(#:tests? #f)) ; no check phase --=20 2.23.0 --=-=-=--