From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH] Update libedit, enable Unicode support. Date: Mon, 24 Aug 2015 14:23:02 +0200 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35756) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTqmW-0001YX-Du for guix-devel@gnu.org; Mon, 24 Aug 2015 08:23:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZTqmT-0005q3-79 for guix-devel@gnu.org; Mon, 24 Aug 2015 08:23:20 -0400 Received: from sinope.bbbm.mdc-berlin.de ([141.80.25.23]:36579) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTqmS-0005oO-Ps for guix-devel@gnu.org; Mon, 24 Aug 2015 08:23:17 -0400 Received: from localhost (localhost [127.0.0.1]) by sinope.bbbm.mdc-berlin.de (Postfix) with ESMTP id 1F75D280450 for ; Mon, 24 Aug 2015 14:23:15 +0200 (CEST) Received: from sinope.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (sinope.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xcamsPfoaWrg for ; Mon, 24 Aug 2015 14:23:08 +0200 (CEST) Received: from HTCAONE.mdc-berlin.net (mab.citx.mdc-berlin.de [141.80.36.102]) by sinope.bbbm.mdc-berlin.de (Postfix) with ESMTP for ; Mon, 24 Aug 2015 14:23:08 +0200 (CEST) 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 --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename="0001-gnu-libedit-Update-to-20150325-3.1.patch" >From f9a03d795d96bf83de9c002f1b7542eb42909bff Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 24 Aug 2015 14:19:53 +0200 Subject: [PATCH 1/2] gnu: libedit: Update to 20150325-3.1. * gnu/packages/libedit.scm (libedit): Update to 20150325-3.1. --- gnu/packages/libedit.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/libedit.scm b/gnu/packages/libedit.scm index 1d7b5b6..1feef80 100644 --- a/gnu/packages/libedit.scm +++ b/gnu/packages/libedit.scm @@ -26,7 +26,7 @@ (define-public libedit (package (name "libedit") - (version "20141030-3.1") + (version "20150325-3.1") (source (origin (method url-fetch) @@ -34,7 +34,7 @@ "/" name "-" version ".tar.gz")) (sha256 (base32 - "0h2svwfcdldpbg0fy7fnkld706r2a9k9h1mm0yj7z3zvf1jy20cp")))) + "1if8zi9h52m80ck796an28rrqfljk2n8cn25m3fl0prwz155x2n8")))) (build-system gnu-build-system) (inputs `(("ncurses" ,ncurses))) -- 2.1.0 --=-=-= Content-Type: text/x-patch; charset="utf-8" Content-Disposition: inline; filename="0002-gnu-libedit-Enable-wide-character-support.patch" Content-Transfer-Encoding: quoted-printable >From 93a1051b721dc435f700872000fe15db3c8c39a0 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 24 Aug 2015 14:21:26 +0200 Subject: [PATCH 2/2] gnu: libedit: Enable wide character support. * gnu/packages/libedit.scm (libedit)[arguments]: Add "--enable-widec" to configure flags. --- gnu/packages/libedit.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/libedit.scm b/gnu/packages/libedit.scm index 1feef80..a1a1ac6 100644 --- a/gnu/packages/libedit.scm +++ b/gnu/packages/libedit.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright =C2=A9 2015 Federico Beffa +;;; Copyright =C2=A9 2015 Ricardo Wurmus ;;; ;;; This file is part of GNU Guix. ;;; @@ -36,6 +37,7 @@ (base32 "1if8zi9h52m80ck796an28rrqfljk2n8cn25m3fl0prwz155x2n8")))) (build-system gnu-build-system) + (arguments `(#:configure-flags (list "--enable-widec"))) (inputs `(("ncurses" ,ncurses))) (home-page "http://thrysoee.dk/editline/") --=20 2.1.0 --=-=-=--