From patchwork Sun Jul 31 17:25:10 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Patterson X-Patchwork-Id: 14170 Received: (qmail 64237 invoked by uid 89); 31 Jul 2016 17:25:39 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.99.1 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.2 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_PASS, WEIRD_PORT autolearn=ham version=3.3.2 spammy=H*r:sk:mailser, Hx-spam-relays-external:sk:mailser, H*RU:sk:mailser, Yet X-Spam-Status: No, score=-3.2 required=5.0 tests=BAYES_00, RP_MATCHES_RCVD, SPF_PASS, WEIRD_PORT autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-HELO: lists.gnu.org Received: from lists.gnu.org (HELO lists.gnu.org) (208.118.235.17) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Sun, 31 Jul 2016 17:25:29 +0000 Received: from localhost ([::1]:40295 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bTuUQ-0004XB-UD for patchwork@sourceware.org; Sun, 31 Jul 2016 13:25:26 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50544) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bTuUL-0004Wv-Ny for guix-devel@gnu.org; Sun, 31 Jul 2016 13:25:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bTuUI-0007NO-Fq for guix-devel@gnu.org; Sun, 31 Jul 2016 13:25:21 -0400 Received: from mailservices.uwaterloo.ca ([129.97.128.141]:40508 helo=mailchk-m03.uwaterloo.ca) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bTuUI-0007My-9U for guix-devel@gnu.org; Sun, 31 Jul 2016 13:25:18 -0400 Received: from localhost ([206.174.179.37]) (authenticated bits=0) by mailchk-m03.uwaterloo.ca (8.14.4/8.14.4) with ESMTP id u6VHPAVq011153 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NO) for ; Sun, 31 Jul 2016 13:25:13 -0400 Date: Sun, 31 Jul 2016 13:25:10 -0400 From: Andy Patterson To: guix-devel@gnu.org Subject: Re: Ecl Message-ID: <20160731132510.2d368b95@uwaterloo.ca> In-Reply-To: <20160731100025.GA9786@solar> References: <20160731100025.GA9786@solar> X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.30; x86_64-unknown-linux-gnu) MIME-Version: 1.0 X-UUID: 2ccfee15-bc8d-431f-976f-96478280ac59 X-Miltered: at mailchk-m03 with ID 579E3476.003 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Virus-Scanned: clamav-milter 0.99.1 at mailchk-m03 X-Virus-Status: Clean X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.5.9 (mailchk-m03.uwaterloo.ca [129.97.128.141]); Sun, 31 Jul 2016 13:25:14 -0400 (EDT) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 129.97.128.141 X-BeenThere: guix-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list 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+patchwork=sourceware.org@gnu.org Sender: "Guix-devel" On Sun, 31 Jul 2016 12:00:25 +0200 Andreas Enge wrote: > Yet another package which fails on all architectures: > http://hydra.gnu.org:3000/build/1313690 > If someone is interested in it, please have a look. This patch should address the issue. It's for core-updates. I've tested it locally. Andy From 3306dfad4dbb2288a6a689596e3a14abac5a093b Mon Sep 17 00:00:00 2001 From: Andy Patterson Date: Sun, 31 Jul 2016 13:21:07 -0400 Subject: [PATCH] gnu: ecl: Use "kernel-headers" instead of "linux-headers" to designate input. * gnu/packages/lisp.scm (ecl)[arguments]: Use "kernel-headers" as the identifier for an input. This is a follow-up to commit 55de892b435657f82a25c6499174d09b4a680f15. --- gnu/packages/lisp.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 5c0df4e..1772780 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -148,7 +148,7 @@ interface to the Tk widget system.") `("CPATH" suffix ,(map (lambda (lib) (input-path lib "/include")) - `("linux-headers" ,@libraries))) + `("kernel-headers" ,@libraries))) `("LIBRARY_PATH" suffix ,library-directories) `("LD_LIBRARY_PATH" suffix ,library-directories))))) (add-after 'wrap 'check (assoc-ref %standard-phases 'check))))) -- 2.9.2