From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55035) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ii1Q0-0002Rz-4n for guix-patches@gnu.org; Thu, 19 Dec 2019 14:25:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ii1Py-0001nS-R2 for guix-patches@gnu.org; Thu, 19 Dec 2019 14:25:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:39569) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ii1Py-0001k1-5B for guix-patches@gnu.org; Thu, 19 Dec 2019 14:25:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ii1Py-0001SJ-0J for guix-patches@gnu.org; Thu, 19 Dec 2019 14:25:02 -0500 Subject: [bug#38676] [PATCH 1/2] gnu: libgtextutils: Build with GCC 5 References: <5bda0f11-1af4-0e9e-273f-325a36332126@mdc-berlin.de> In-Reply-To: <5bda0f11-1af4-0e9e-273f-325a36332126@mdc-berlin.de> Resent-Message-ID: From: =?UTF-8?Q?M=C4=83d=C4=83lin?= Ionel =?UTF-8?Q?Patra=C8=99cu?= Date: Thu, 19 Dec 2019 20:24:08 +0100 Message-ID: <20191219192409.16812-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit 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: 38676@debbugs.gnu.org Cc: =?UTF-8?Q?M=C4=83d=C4=83lin?= Ionel =?UTF-8?Q?Patra=C8=99cu?= * gnu/packages/textutils.scm (libgtextutils)[native-inputs]: Add gcc-5. --- gnu/packages/textutils.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 668260b7d8..cf90779978 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2018 Pierre Neidhardt ;;; Copyright © 2018 Meiyo Peng ;;; Copyright © 2019 Yoshinori Arai +;;; Copyright © 2019 Mădălin Ionel Patrașcu ;;; ;;; This file is part of GNU Guix. ;;; @@ -47,6 +48,7 @@ #:use-module (gnu packages autotools) #:use-module (gnu packages base) #:use-module (gnu packages compression) + #:use-module (gnu packages gcc) #:use-module (gnu packages gettext) #:use-module (gnu packages java) #:use-module (gnu packages ncurses) @@ -232,6 +234,7 @@ nested include statements).") (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) + ("gcc" ,gcc-5) ;; doesn't build with later versions ("libtool" ,libtool))) (home-page "https://github.com/agordon/libgtextutils") (synopsis "Gordon's text utils library") -- 2.24.1