From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51758) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dWA2B-0005uF-5S for guix-patches@gnu.org; Fri, 14 Jul 2017 19:30:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dWA26-0000cV-T9 for guix-patches@gnu.org; Fri, 14 Jul 2017 19:30:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36694) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dWA26-0000cR-Q6 for guix-patches@gnu.org; Fri, 14 Jul 2017 19:30:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dWA26-0003bH-Je for guix-patches@gnu.org; Fri, 14 Jul 2017 19:30:02 -0400 Subject: [bug#27696] [PATCH] gnu: Update g-wrap to use guile-2.2. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51628) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dWA1N-0005XY-Mi for guix-patches@gnu.org; Fri, 14 Jul 2017 19:29:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dWA1J-0008DM-Gz for guix-patches@gnu.org; Fri, 14 Jul 2017 19:29:17 -0400 Received: from lb1.openmailbox.org ([5.79.108.160]:55504 helo=mail.openmailbox.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dWA1J-0008B5-8s for guix-patches@gnu.org; Fri, 14 Jul 2017 19:29:13 -0400 From: Theodoros Foradis Date: Fri, 14 Jul 2017 13:13:58 +0300 Message-Id: <20170714101358.21399-1-theodoros.for@openmailbox.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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: 27696@debbugs.gnu.org * gnu/packages/guile.scm (g-wrap): [propagated-inputs]: Use guile-2.2. [arguments]: Add "--disable-Werror" to configure-flags. --- gnu/packages/guile.scm | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index b654bbc96..f00628ac7 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -13,6 +13,7 @@ ;;; Copyright =C2=A9 2017 Andy Wingo ;;; Copyright =C2=A9 2017 David Thompson ;;; Copyright =C2=A9 2017 Mathieu Othacehe +;;; Copyright =C2=A9 2017 Theodoros Foradis ;;; ;;; This file is part of GNU Guix. ;;; @@ -1339,20 +1340,21 @@ capabilities.") (native-inputs `(("pkg-config" ,pkg-config))) (propagated-inputs - `(("guile" ,guile-2.0) + `(("guile" ,guile-2.2) ("guile-lib" ,guile-lib))) (inputs `(("libffi" ,libffi))) (arguments - `(#:phases - (modify-phases %standard-phases - (add-before 'configure 'pre-configure - (lambda* (#:key outputs #:allow-other-keys) - (let ((out (assoc-ref outputs "out"))) - (substitute* (find-files "." "^Makefile.in$") - (("guilemoduledir =3D.*guile/site" all) - (string-append all "/2.0"))) - #t)))))) + `(#:configure-flags '("--disable-Werror") + #:phases + (modify-phases %standard-phases + (add-before 'configure 'pre-configure + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (substitute* (find-files "." "^Makefile.in$") + (("guilemoduledir =3D.*guile/site" all) + (string-append all "/2.2"))) + #t)))))) (synopsis "Generate C bindings for Guile") (description "G-Wrap is a tool and Guile library for generating func= tion wrappers for inter-language calls. It currently only supports generatin= g Guile --=20 2.13.2